diff --git a/package.json b/package.json index 53988e1b..68912d53 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,8 @@ "@mui/icons-material": "^5.11.11", "@mui/material": "^5.11.14", "@reduxjs/toolkit": "^1.8.5", + "@superset-ui/embedded-sdk": "^0.1.0-alpha.8", + "@superset-ui/switchboard": "^1.5.0", "@testing-library/jest-dom": "^4.2.4", "@testing-library/react": "^9.3.2", "@testing-library/user-event": "^7.1.2", @@ -23,7 +25,7 @@ "highcharts": "^8.2.2", "highcharts-react-official": "^3.0.0", "lodash": "^4.17.20", - "moment": "^2.27.0", + "moment": "^2.29.0", "mui-datatables": "^4.3.0", "oidc-client": "^1.10.1", "powerbi-client": "^2.22.2", @@ -87,7 +89,8 @@ ] }, "devDependencies": { - "prettier": "^2.2.1" + "prettier": "^2.2.1", + "react-syntax-highlighter": "^15.5.0" }, "homepage": "." } diff --git a/src/actions/CT/OTZ/OtzAlhivOnArtByAgeSexActions.js b/src/actions/CT/OTZ/OtzAlhivOnArtByAgeSexActions.js new file mode 100644 index 00000000..f2273a1a --- /dev/null +++ b/src/actions/CT/OTZ/OtzAlhivOnArtByAgeSexActions.js @@ -0,0 +1,36 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../../constants'; +import * as actionTypes from '../../types'; +import { getAll } from '../../../views/Shared/Api'; + +export const loadAlhivOnArtByAgeSex = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().otzAlhivOnArtByAgeSex.lastFetch), + 'minutes' + ); + if (getState().ui.ctTab !== 'otz' && + getState().ui.currentPage !== PAGES.ct) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchAlhivOnArtByAgeSex()); + } +} + +export const fetchAlhivOnArtByAgeSex = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + project: getState().filters.projects, + gender: getState().filters.genders, + datimAgeGroup: getState().filters.datimAgeGroups, + }; + const response = await getAll('care-treatment/getAlhivOnArtByAgeSex', params); + dispatch({ type: actionTypes.CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/CT/OTZ/OtzTotalWithDurableVlResultsActions.js b/src/actions/CT/OTZ/OtzTotalWithDurableVlResultsActions.js new file mode 100644 index 00000000..a59efe35 --- /dev/null +++ b/src/actions/CT/OTZ/OtzTotalWithDurableVlResultsActions.js @@ -0,0 +1,36 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../../constants'; +import * as actionTypes from '../../types'; +import { getAll } from '../../../views/Shared/Api'; + +export const loadOtzTotalWithDurableVLResults = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().otzTotalWithDurableVlResults.lastFetch), + 'minutes' + ); + if (getState().ui.ctTab !== 'otz' && + getState().ui.currentPage !== PAGES.ct) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchOtzTotalWithDurableVLResults()); + } +} + +export const fetchOtzTotalWithDurableVLResults = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + project: getState().filters.projects, + gender: getState().filters.genders, + datimAgeGroup: getState().filters.datimAgeGroups + }; + const response = await getAll('care-treatment/getOtzTotalWithDurableVl', params); + dispatch({ type: actionTypes.CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/RR/hisFacilityArtHtsMnchActions.js b/src/actions/RR/hisFacilityArtHtsMnchActions.js new file mode 100644 index 00000000..76f9b71d --- /dev/null +++ b/src/actions/RR/hisFacilityArtHtsMnchActions.js @@ -0,0 +1,32 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../constants'; +import * as actionTypes from '../types'; +import { getAll } from '../../views/Shared/Api'; + +export const loadHisFacilityArtHtsMnchAction = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().hisFacilityArtHtsMnch.lastFetch), + 'minutes' + ); + if (getState().ui.currentPage !== PAGES.rr) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchHisFacilityTxcurr()); + } +} + +export const fetchHisFacilityTxcurr = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.HIS_FACILITY_ART_HTS_MNCH_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + }; + const response = await getAll('common/facilityArtHtsMnch', params); + dispatch({ type: actionTypes.HIS_FACILITY_ART_HTS_MNCH_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/RR/hisFacilityByInfrastructureActions.js b/src/actions/RR/hisFacilityByInfrastructureActions.js new file mode 100644 index 00000000..e49371ac --- /dev/null +++ b/src/actions/RR/hisFacilityByInfrastructureActions.js @@ -0,0 +1,34 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../constants'; +import * as actionTypes from '../types'; +import { getAll } from '../../views/Shared/Api'; + +export const loadHisFacilityByInfrastructureActions = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().hisFacilityByInfrastructure.lastFetch), + 'minutes' + ); + if (getState().ui.currentPage !== PAGES.rr) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchHisFacilityByInfrastructure()); + } +} + +export const fetchHisFacilityByInfrastructure = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.HIS_FACILITY_BY_INFRASTRUCTURE_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + year: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("YYYY") : '', + month: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("MM") : '', + }; + const response = await getAll('common/facilityByInfrastructure', params); + dispatch({ type: actionTypes.HIS_FACILITY_BY_INFRASTRUCTURE_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/RR/hisFacilityByInfrastructureCountyActions.js b/src/actions/RR/hisFacilityByInfrastructureCountyActions.js new file mode 100644 index 00000000..53e52fe2 --- /dev/null +++ b/src/actions/RR/hisFacilityByInfrastructureCountyActions.js @@ -0,0 +1,34 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../constants'; +import * as actionTypes from '../types'; +import { getAll } from '../../views/Shared/Api'; + +export const loadHisFacilityByInfrastructureCountyActions = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().hisFacilityByInfrastructureCounty.lastFetch), + 'minutes' + ); + if (getState().ui.currentPage !== PAGES.rr) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchHisFacilityByInfrastructure()); + } +} + +export const fetchHisFacilityByInfrastructure = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + year: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("YYYY") : '', + month: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("MM") : '', + }; + const response = await getAll('common/facilityByInfrastructureCounty', params); + dispatch({ type: actionTypes.HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/RR/hisFacilityLevelByCountyActions.js b/src/actions/RR/hisFacilityLevelByCountyActions.js new file mode 100644 index 00000000..f98f26bd --- /dev/null +++ b/src/actions/RR/hisFacilityLevelByCountyActions.js @@ -0,0 +1,34 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../constants'; +import * as actionTypes from '../types'; +import { getAll } from '../../views/Shared/Api'; + +export const loadHisFacilityLevelByCountyAction = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().hisFacilityStatusByCounty.lastFetch), + 'minutes' + ); + if (getState().ui.currentPage !== PAGES.rr) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchHisFacilityLevelByCounty()); + } +} + +export const fetchHisFacilityLevelByCounty = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.HIS_FACILITY_LEVEL_BY_COUNTY_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + year: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("YYYY") : '', + month: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("MM") : '', + }; + const response = await getAll('common/facilityLevelByOwnershipCounty', params); + dispatch({ type: actionTypes.HIS_FACILITY_LEVEL_BY_COUNTY_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/RR/hisFacilityLevelByPartnerActions.js b/src/actions/RR/hisFacilityLevelByPartnerActions.js new file mode 100644 index 00000000..8679b312 --- /dev/null +++ b/src/actions/RR/hisFacilityLevelByPartnerActions.js @@ -0,0 +1,34 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../constants'; +import * as actionTypes from '../types'; +import { getAll } from '../../views/Shared/Api'; + +export const loadHisFacilityLevelByPartnerAction = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().hisFacilityStatusByPartner.lastFetch), + 'minutes' + ); + if (getState().ui.currentPage !== PAGES.rr) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchHisFacilityLevelByPartner()); + } +} + +export const fetchHisFacilityLevelByPartner = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.HIS_FACILITY_LEVEL_BY_PARTNER_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + year: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("YYYY") : '', + month: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("MM") : '', + }; + const response = await getAll('common/facilityLevelByOwnershipPartner', params); + dispatch({ type: actionTypes.HIS_FACILITY_LEVEL_BY_PARTNER_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/RR/hisFacilityLinelistActions.js b/src/actions/RR/hisFacilityLinelistActions.js new file mode 100644 index 00000000..d79e9276 --- /dev/null +++ b/src/actions/RR/hisFacilityLinelistActions.js @@ -0,0 +1,34 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../constants'; +import * as actionTypes from '../types'; +import { getAll } from '../../views/Shared/Api'; + +export const loadHisFacilityLinelistAction = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().hisFacilityLinelist.lastFetch), + 'minutes' + ); + if (getState().ui.currentPage !== PAGES.rr) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchHisFacilityLinelist()); + } +} + +export const fetchHisFacilityLinelist = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.HIS_FACILITY_LINELIST_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + year: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("YYYY") : '', + month: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("MM") : '', + }; + const response = await getAll('common/facilityLinelist', params); + dispatch({ type: actionTypes.HIS_FACILITY_LINELIST_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/RR/hisFacilityStatusActions.js b/src/actions/RR/hisFacilityStatusActions.js new file mode 100644 index 00000000..f8451695 --- /dev/null +++ b/src/actions/RR/hisFacilityStatusActions.js @@ -0,0 +1,34 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../constants'; +import * as actionTypes from '../types'; +import { getAll } from '../../views/Shared/Api'; + +export const loadHisFacilityStatusAction = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().hisFacilityStatus.lastFetch), + 'minutes' + ); + if (getState().ui.currentPage !== PAGES.rr) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchHisFacilityStatus()); + } +} + +export const fetchHisFacilityStatus = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.HIS_FACILITY_STATUS_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + year: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("YYYY") : '', + month: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("MM") : '', + }; + const response = await getAll('common/facilityStatus', params); + dispatch({ type: actionTypes.HIS_FACILITY_STATUS_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/RR/hisFacilityStatusByCountyActions.js b/src/actions/RR/hisFacilityStatusByCountyActions.js new file mode 100644 index 00000000..f700d5e2 --- /dev/null +++ b/src/actions/RR/hisFacilityStatusByCountyActions.js @@ -0,0 +1,32 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../constants'; +import * as actionTypes from '../types'; +import { getAll } from '../../views/Shared/Api'; + +export const loadHisFacilityStatusByCountyAction = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().hisFacilityStatusByPartner.lastFetch), + 'minutes' + ); + if (getState().ui.currentPage !== PAGES.rr) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchHisFacilityStatusByPartner()); + } +} + +export const fetchHisFacilityStatusByPartner = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.HIS_FACILITY_STATUS_BY_COUNTY_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + }; + const response = await getAll('common/facilityStatusByCounty', params); + dispatch({ type: actionTypes.HIS_FACILITY_STATUS_BY_COUNTY_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/RR/hisFacilityStatusByPartnerActions.js b/src/actions/RR/hisFacilityStatusByPartnerActions.js new file mode 100644 index 00000000..025030d1 --- /dev/null +++ b/src/actions/RR/hisFacilityStatusByPartnerActions.js @@ -0,0 +1,34 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../constants'; +import * as actionTypes from '../types'; +import { getAll } from '../../views/Shared/Api'; + +export const loadHisFacilityStatusByPartnerAction = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().hisFacilityStatusByPartner.lastFetch), + 'minutes' + ); + if (getState().ui.currentPage !== PAGES.rr) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchHisFacilityStatusByPartner()); + } +} + +export const fetchHisFacilityStatusByPartner = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.HIS_FACILITY_STATUS_BY_PARTNER_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + year: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("YYYY") : '', + month: getState().filters.fromDate ? moment(getState().filters.fromDate, "MMM YYYY").format("MM") : '', + }; + const response = await getAll('common/facilityStatusByPartner', params); + dispatch({ type: actionTypes.HIS_FACILITY_STATUS_BY_PARTNER_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/RR/hisFacilityTxcurrActions.js b/src/actions/RR/hisFacilityTxcurrActions.js new file mode 100644 index 00000000..c4115977 --- /dev/null +++ b/src/actions/RR/hisFacilityTxcurrActions.js @@ -0,0 +1,32 @@ +import moment from 'moment'; +import { CACHING, PAGES } from '../../constants'; +import * as actionTypes from '../types'; +import { getAll } from '../../views/Shared/Api'; + +export const loadHisFacilityTxcurrAction = () => async (dispatch, getState) => { + const diffInMinutes = moment().diff( + moment(getState().hisFacilityTxcurr.lastFetch), + 'minutes' + ); + if (getState().ui.currentPage !== PAGES.rr) { + return; + } + else if ((diffInMinutes < CACHING.LONG) && getState().filters.filtered === false) { + return; + } else { + await dispatch(fetchHisFacilityTxcurr()); + } +} + +export const fetchHisFacilityTxcurr = () => async (dispatch, getState) => { + dispatch({ type: actionTypes.HIS_FACILITY_TXCURR_REQUEST }); + const params = { + county: getState().filters.counties, + subCounty: getState().filters.subCounties, + facility: getState().filters.facilities, + partner: getState().filters.partners, + agency: getState().filters.agencies, + }; + const response = await getAll('common/facilityTxcurr', params); + dispatch({ type: actionTypes.HIS_FACILITY_TXCURR_FETCH, payload: { filtered: getState().filters.filtered, list: response }}); +}; diff --git a/src/actions/types.js b/src/actions/types.js index 1cf33da2..b03a5439 100644 --- a/src/actions/types.js +++ b/src/actions/types.js @@ -511,6 +511,46 @@ export const RR_OVERALL_REPORTING_RATES_BY_FACILITY_REPORTED_REQUEST = 'RR_OVERA export const RR_OVERALL_REPORTING_RATES_BY_FACILITY_REPORTED_FETCH = 'RR_OVERALL_REPORTING_RATES_BY_FACILITY_REPORTED_FETCH' export const RR_OVERALL_REPORTING_RATES_BY_FACILITY_REPORTED_REQUEST_FAILED = 'RR_OVERALL_REPORTING_RATES_BY_FACILITY_REPORTED_REQUEST_FAILED' +export const HIS_FACILITY_STATUS_REQUEST = 'HIS_FACILITY_STATUS_REQUEST' +export const HIS_FACILITY_STATUS_FETCH = 'HIS_FACILITY_STATUS_FETCH' +export const HIS_FACILITY_STATUS_FAILED = 'HIS_FACILITY_STATUS_FAILED' + +export const HIS_FACILITY_STATUS_BY_PARTNER_REQUEST = 'HIS_FACILITY_STATUS_BY_PARTNER_REQUEST' +export const HIS_FACILITY_STATUS_BY_PARTNER_FETCH = 'HIS_FACILITY_STATUS_BY_PARTNER_FETCH' +export const HIS_FACILITY_STATUS_BY_PARTNER_FAILED = 'HIS_FACILITY_STATUS_BY_PARTNER_FAILED' + +export const HIS_FACILITY_STATUS_BY_COUNTY_REQUEST = 'HIS_FACILITY_STATUS_BY_COUNTY_REQUEST' +export const HIS_FACILITY_STATUS_BY_COUNTY_FETCH = 'HIS_FACILITY_STATUS_BY_COUNTY_FETCH' +export const HIS_FACILITY_STATUS_BY_COUNTY_FAILED = 'HIS_FACILITY_STATUS_BY_COUNTY_FAILED' + +export const HIS_FACILITY_LEVEL_BY_PARTNER_REQUEST = 'HIS_FACILITY_LEVEL_BY_PARTNER_REQUEST' +export const HIS_FACILITY_LEVEL_BY_PARTNER_FETCH = 'HIS_FACILITY_LEVEL_BY_PARTNER_FETCH' +export const HIS_FACILITY_LEVEL_BY_PARTNER_FAILED = 'HIS_FACILITY_LEVEL_BY_PARTNER_FAILED' + +export const HIS_FACILITY_LEVEL_BY_COUNTY_REQUEST = 'HIS_FACILITY_LEVEL_BY_COUNTY_REQUEST' +export const HIS_FACILITY_LEVEL_BY_COUNTY_FETCH = 'HIS_FACILITY_LEVEL_BY_COUNTY_FETCH' +export const HIS_FACILITY_LEVEL_BY_COUNTY_FAILED = 'HIS_FACILITY_LEVEL_BY_COUNTY_FAILED' + +export const HIS_FACILITY_BY_INFRASTRUCTURE_REQUEST = 'HIS_FACILITY_BY_INFRASTRUCTURE_REQUEST' +export const HIS_FACILITY_BY_INFRASTRUCTURE_FETCH = 'HIS_FACILITY_BY_INFRASTRUCTURE_FETCH' +export const HIS_FACILITY_BY_INFRASTRUCTURE_FAILED = 'HIS_FACILITY_BY_INFRASTRUCTURE_FAILED' + +export const HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_REQUEST = 'HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_REQUEST' +export const HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_FETCH = 'HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_FETCH' +export const HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_FAILED = 'HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_FAILED' + +export const HIS_FACILITY_LINELIST_REQUEST = 'HIS_FACILITY_LINELIST_REQUEST' +export const HIS_FACILITY_LINELIST_FETCH = 'HIS_FACILITY_LINELIST_FETCH' +export const HIS_FACILITY_LINELIST_FAILED = 'HIS_FACILITY_LINELIST_FAILED' + +export const HIS_FACILITY_ART_HTS_MNCH_REQUEST = 'HIS_FACILITY_ART_HTS_MNCH_REQUEST' +export const HIS_FACILITY_ART_HTS_MNCH_FETCH = 'HIS_FACILITY_ART_HTS_MNCH_FETCH' +export const HIS_FACILITY_ART_HTS_MNCH_FAILED = 'HIS_FACILITY_ART_HTS_MNCH_FAILED' + +export const HIS_FACILITY_TXCURR_REQUEST = 'HIS_FACILITY_TXCURR_REQUEST' +export const HIS_FACILITY_TXCURR_FETCH = 'HIS_FACILITY_TXCURR_FETCH' +export const HIS_FACILITY_TXCURR_FAILED = 'HIS_FACILITY_TXCURR_FAILED' + export const RR_OVERALL_REPORTING_RATES_BY_FACILITY_NOT_REPORTED_REQUEST = 'RR_OVERALL_REPORTING_RATES_BY_FACILITY_NOT_REPORTED_REQUEST' export const RR_OVERALL_REPORTING_RATES_BY_FACILITY_NOT_REPORTED_FETCH = 'RR_OVERALL_REPORTING_RATES_BY_FACILITY_NOT_REPORTED_FETCH' export const RR_OVERALL_REPORTING_RATES_BY_FACILITY_NOT_REPORTED_REQUEST_FAILED = 'RR_OVERALL_REPORTING_RATES_BY_FACILITY_NOT_REPORTED_REQUEST_FAILED' @@ -586,6 +626,11 @@ export const CT_OTZ_ENROLLED_FAILED = 'CT_OTZ_ENROLLED_FAILED' export const CT_OTZ_TOTAL_WITH_VL_RESULTS_REQUEST = 'CT_OTZ_TOTAL_WITH_VL_RESULTS_REQUEST' export const CT_OTZ_TOTAL_WITH_VL_RESULTS_FETCH = 'CT_OTZ_TOTAL_WITH_VL_RESULTS_FETCH' export const CT_OTZ_TOTAL_WITH_VL_RESULTS_FAILED = 'CT_OTZ_TOTAL_WITH_VL_RESULTS_FAILED' + +export const CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_REQUEST = 'CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_REQUEST' +export const CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_FETCH = 'CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_FETCH' +export const CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_FAILED = 'CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_FAILED' + export const CT_OTZ_TOTAL_WITH_VL_RESULTS_LESS_THAN_1000_REQUEST = 'CT_OTZ_TOTAL_WITH_VL_RESULTS_LESS_THAN_1000_REQUEST' export const CT_OTZ_TOTAL_WITH_VL_RESULTS_LESS_THAN_1000_FETCH = 'CT_OTZ_TOTAL_WITH_VL_RESULTS_LESS_THAN_1000_FETCH' export const CT_OTZ_TOTAL_WITH_VL_RESULTS_LESS_THAN_1000_FAILED = 'CT_OTZ_TOTAL_WITH_VL_RESULTS_LESS_THAN_1000_FAILED' @@ -625,6 +670,10 @@ export const CT_OTZ_VL_SUPPRESSION_NOT_ENROLLED_BY_PARTNER_REQUEST = 'CT_OTZ_VL_ export const CT_OTZ_VL_SUPPRESSION_NOT_ENROLLED_BY_PARTNER_FETCH = 'CT_OTZ_VL_SUPPRESSION_NOT_ENROLLED_BY_PARTNER_FETCH'; export const CT_OTZ_VL_SUPPRESSION_NOT_ENROLLED_BY_PARTNER_FAILED = 'CT_OTZ_VL_SUPPRESSION_NOT_ENROLLED_BY_PARTNER_FAILED'; +export const CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_REQUEST = 'CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_REQUEST'; +export const CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_FETCH = 'CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_FETCH'; +export const CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_FAILED = 'CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_FAILED'; + export const CT_OVC_OVERALL_SERV_REQUEST = 'CT_OVC_OVERALL_SERV_REQUEST' export const CT_OVC_OVERALL_SERV_FETCH = 'CT_OVC_OVERALL_SERV_FETCH' export const CT_OVC_OVERALL_SERV_FAILED = 'CT_OVC_OVERALL_SERV_FAILED' diff --git a/src/constants.js b/src/constants.js index 49295a42..2840bf4a 100644 --- a/src/constants.js +++ b/src/constants.js @@ -8,6 +8,7 @@ export const HOME_TABS = { export const RR_TABS = { ct: 'CARE & TREATMENT', hts: 'HIV TESTING SERVICES', + his: 'HIS DEPLOYMENTS' }; export const HTS_TABS = { diff --git a/src/containers/DefaultLayout/DefaultHeader.js b/src/containers/DefaultLayout/DefaultHeader.js index cc83ddea..fc949909 100644 --- a/src/containers/DefaultLayout/DefaultHeader.js +++ b/src/containers/DefaultLayout/DefaultHeader.js @@ -34,7 +34,7 @@ const DefaultHeader = () => { setCookie('metabase.SESSION', sessionId, { path: '/' }); } } - }, []); + }, []); const login = async () => { const res = await getUserType(); if (user && !user.expired) { @@ -62,7 +62,7 @@ const DefaultHeader = () => { const clearCacheData = async () => { await localStorage.clear(); if (localStorage.length === 0){ - alert('Complete Cache Cleared'); + alert('Complete Cache Cleared'); window.location.reload(); } }; @@ -212,6 +212,9 @@ const Adhoc = () => { > <strong>Superset</strong> </DropdownItem> + <DropdownItem disabled={false} tag={Link} to="/tafsiri"> + <strong>TAFSIRI</strong> + </DropdownItem> </DropdownMenu> </UncontrolledDropdown> ); diff --git a/src/index.js b/src/index.js index 6784cd50..808e74ab 100644 --- a/src/index.js +++ b/src/index.js @@ -1,17 +1,17 @@ -import React from "react"; -import ReactDOM from "react-dom"; -import { Provider } from "react-redux"; +import React from 'react'; +import ReactDOM from 'react-dom'; +import { Provider } from 'react-redux'; import { PersistGate } from 'redux-persist/integration/react'; -import "./index.css"; -import App from "./App"; -import Loading from "./views/Shared/Loading"; +import './index.css'; +import App from './App'; +import Loading from './views/Shared/Loading'; import { store, persistor } from './store'; import { RecoilRoot, atom, selector, useRecoilState, - useRecoilValue, + useRecoilValue } from 'recoil'; import { CookiesProvider } from 'react-cookie'; @@ -25,5 +25,5 @@ ReactDOM.render( </RecoilRoot> </PersistGate> </Provider>, - document.getElementById("root") -) + document.getElementById('root') +); diff --git a/src/reducers/CT/OTZ/otzAlhivOnArtByAgeSex.js b/src/reducers/CT/OTZ/otzAlhivOnArtByAgeSex.js new file mode 100644 index 00000000..ca0705ab --- /dev/null +++ b/src/reducers/CT/OTZ/otzAlhivOnArtByAgeSex.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_REQUEST: + newState.loading = true; + return newState; + case actionTypes.CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.CT_OTZ_ALHIV_ON_ART_BY_AGE_SEX_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/CT/OTZ/otzTotalWithDurableVlResults.js b/src/reducers/CT/OTZ/otzTotalWithDurableVlResults.js new file mode 100644 index 00000000..a1721b62 --- /dev/null +++ b/src/reducers/CT/OTZ/otzTotalWithDurableVlResults.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_REQUEST: + newState.loading = true; + return newState; + case actionTypes.CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.CT_OTZ_TOTAL_WITH_DURABLE_VL_RESULTS_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/RR/hisFacilityArtHtsMnch.js b/src/reducers/RR/hisFacilityArtHtsMnch.js new file mode 100644 index 00000000..fe86e065 --- /dev/null +++ b/src/reducers/RR/hisFacilityArtHtsMnch.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.HIS_FACILITY_ART_HTS_MNCH_REQUEST: + newState.loading = true; + return newState; + case actionTypes.HIS_FACILITY_ART_HTS_MNCH_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.HIS_FACILITY_ART_HTS_MNCH_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/RR/hisFacilityByInfrastructure.js b/src/reducers/RR/hisFacilityByInfrastructure.js new file mode 100644 index 00000000..b5a607d9 --- /dev/null +++ b/src/reducers/RR/hisFacilityByInfrastructure.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.HIS_FACILITY_BY_INFRASTRUCTURE_REQUEST: + newState.loading = true; + return newState; + case actionTypes.HIS_FACILITY_BY_INFRASTRUCTURE_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.HIS_FACILITY_BY_INFRASTRUCTURE_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/RR/hisFacilityByInfrastructureCounty.js b/src/reducers/RR/hisFacilityByInfrastructureCounty.js new file mode 100644 index 00000000..66409901 --- /dev/null +++ b/src/reducers/RR/hisFacilityByInfrastructureCounty.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_REQUEST: + newState.loading = true; + return newState; + case actionTypes.HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.HIS_FACILITY_BY_INFRASTRUCTURE_COUNTY_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/RR/hisFacilityLevelByCounty.js b/src/reducers/RR/hisFacilityLevelByCounty.js new file mode 100644 index 00000000..dfd01590 --- /dev/null +++ b/src/reducers/RR/hisFacilityLevelByCounty.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.HIS_FACILITY_LEVEL_BY_COUNTY_REQUEST: + newState.loading = true; + return newState; + case actionTypes.HIS_FACILITY_LEVEL_BY_COUNTY_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.HIS_FACILITY_LEVEL_BY_COUNTY_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/RR/hisFacilityLevelByPartner.js b/src/reducers/RR/hisFacilityLevelByPartner.js new file mode 100644 index 00000000..9e9eba11 --- /dev/null +++ b/src/reducers/RR/hisFacilityLevelByPartner.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.HIS_FACILITY_LEVEL_BY_PARTNER_REQUEST: + newState.loading = true; + return newState; + case actionTypes.HIS_FACILITY_LEVEL_BY_PARTNER_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.HIS_FACILITY_LEVEL_BY_PARTNER_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/RR/hisFacilityLinelist.js b/src/reducers/RR/hisFacilityLinelist.js new file mode 100644 index 00000000..c10a0034 --- /dev/null +++ b/src/reducers/RR/hisFacilityLinelist.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.HIS_FACILITY_LINELIST_REQUEST: + newState.loading = true; + return newState; + case actionTypes.HIS_FACILITY_LINELIST_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.HIS_FACILITY_LINELIST_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/RR/hisFacilityStatus.js b/src/reducers/RR/hisFacilityStatus.js new file mode 100644 index 00000000..df2ed34f --- /dev/null +++ b/src/reducers/RR/hisFacilityStatus.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.HIS_FACILITY_STATUS_REQUEST: + newState.loading = true; + return newState; + case actionTypes.HIS_FACILITY_STATUS_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.HIS_FACILITY_STATUS_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/RR/hisFacilityStatusByCounty.js b/src/reducers/RR/hisFacilityStatusByCounty.js new file mode 100644 index 00000000..654fc748 --- /dev/null +++ b/src/reducers/RR/hisFacilityStatusByCounty.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.HIS_FACILITY_STATUS_BY_COUNTY_REQUEST: + newState.loading = true; + return newState; + case actionTypes.HIS_FACILITY_STATUS_BY_COUNTY_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.HIS_FACILITY_STATUS_BY_COUNTY_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/RR/hisFacilityStatusByPartner.js b/src/reducers/RR/hisFacilityStatusByPartner.js new file mode 100644 index 00000000..c15e5de0 --- /dev/null +++ b/src/reducers/RR/hisFacilityStatusByPartner.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.HIS_FACILITY_STATUS_BY_PARTNER_REQUEST: + newState.loading = true; + return newState; + case actionTypes.HIS_FACILITY_STATUS_BY_PARTNER_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.HIS_FACILITY_STATUS_BY_PARTNER_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/RR/hisFacilityTxcurr.js b/src/reducers/RR/hisFacilityTxcurr.js new file mode 100644 index 00000000..95f889da --- /dev/null +++ b/src/reducers/RR/hisFacilityTxcurr.js @@ -0,0 +1,31 @@ +import * as actionTypes from "../../actions/types"; + +const initialState = { + lastFetch: null, + loading: false, + listUnfiltered: [], + listFiltered: [], +}; + +export default (state = initialState, action) => { + let newState = { ...state }; + switch (action.type) { + case actionTypes.HIS_FACILITY_TXCURR_REQUEST: + newState.loading = true; + return newState; + case actionTypes.HIS_FACILITY_TXCURR_FETCH: + if (action.payload.filtered === true) { + newState.listFiltered = action.payload.list; + } else { + newState.listUnfiltered = action.payload.list; + newState.lastFetch = Date.now(); + } + newState.loading = false; + return newState; + case actionTypes.HIS_FACILITY_TXCURR_FAILED: + newState.loading = false; + return newState; + default: + return state; + } +} diff --git a/src/reducers/index.js b/src/reducers/index.js index a5652607..245886f4 100644 --- a/src/reducers/index.js +++ b/src/reducers/index.js @@ -149,6 +149,7 @@ import otzOutcomesByPartner from './CT/OTZ/otzOutcomesByPartner'; import otzTotalAdolescents from './CT/OTZ/otzTotalAdolescents'; import otzEnrolled from './CT/OTZ/otzEnrolled'; import otzTotalWithVlResults from './CT/OTZ/otzTotalWithVlResults'; +import otzAlhivOnArtByAgeSex from './CT/OTZ/otzAlhivOnArtByAgeSex'; import otzTotalWithWithResultsLessThan1000 from './CT/OTZ/otzTotalWithWithResultsLessThan1000'; import ovcOverallServ from './CT/OVC/ovcOverallServ'; import ovcServByGender from './CT/OVC/ovcServByGender'; @@ -177,6 +178,7 @@ import otzVlSuppressionByAgeNotEnrolled from './CT/OTZ/otzVlSuppressionByAgeNotE import otzVlSuppressionByCountyNotEnrolled from './CT/OTZ/otzVlSuppressionByCountyNotEnrolled'; import otzVlSuppressionByPartnerNotEnrolled from './CT/OTZ/otzVlSuppressionByPartnerNotEnrolled'; import otzVlSuppressionBySexNotEnrolled from './CT/OTZ/otzVlSuppressionBySexNotEnrolled'; +import otzTotalWithDurableVlResults from './CT/OTZ/otzTotalWithDurableVlResults'; import CovidAdultPLHIVCurrentOnTreatment from './CT/Covid/covidAdultPLHIVCurrentOnTreatment'; import CovidAdultPLHIVPartiallyVaccinated from './CT/Covid/covidAdultPLHIVPartiallyVaccinated'; @@ -324,6 +326,17 @@ import missedEIDOverview from './PMTCTRRI/MissedEID/missedEIDOverview'; import missedEIDSDP from './PMTCTRRI/MissedEID/missedEIDSDP'; import missedEIDMissingPCR from './PMTCTRRI/MissedEID/missedEIDMissingPCR'; +import hisFacilityByInfrastructure from './RR/hisFacilityByInfrastructure'; +import hisFacilityLinelist from './RR/hisFacilityLinelist'; +import hisFacilityLevelByCounty from './RR/hisFacilityLevelByCounty'; +import hisFacilityStatus from './RR/hisFacilityStatus'; +import hisFacilityStatusByPartner from './RR/hisFacilityStatusByPartner'; +import hisFacilityLevelByPartner from './RR/hisFacilityLevelByPartner'; +import hisFacilityTxcurr from './RR/hisFacilityTxcurr'; +import hisFacilityByInfrastructureCounty from './RR/hisFacilityByInfrastructureCounty'; +import hisFacilityStatusByCounty from './RR/hisFacilityStatusByCounty'; +import hisFacilityArtHtsMnch from './RR/hisFacilityArtHtsMnch'; + import missedInfantProphylaxis from './PMTCTRRI/MissedInfantProphylaxis/missedInfantProphylaxis'; import missedViralLoad from './PMTCTRRI/MissedViralLoad/missedViralLoad'; @@ -456,6 +469,7 @@ export default combineReducers({ consistencyByFacilityNotReported, + otzAlhivOnArtByAgeSex, otzEnrollmentAmongAlhivOnArtBySex, otzEnrollmentAmongAlhivOnArtByAge, otzEnrollmentAmongAlhivOnArtByCounty, @@ -496,6 +510,7 @@ export default combineReducers({ otzVlSuppressionBySexNotEnrolled, otzVlSuppressionByPartnerNotEnrolled, otzVlSuppressionByCountyNotEnrolled, + otzTotalWithDurableVlResults, ovcOverallServ, ovcServByGender, @@ -646,4 +661,15 @@ export default combineReducers({ missedInfantProphylaxis, missedViralLoad, missedDTG, + + hisFacilityByInfrastructure, + hisFacilityLevelByCounty, + hisFacilityLevelByPartner, + hisFacilityLinelist, + hisFacilityStatus, + hisFacilityStatusByPartner, + hisFacilityTxcurr, + hisFacilityByInfrastructureCounty, + hisFacilityStatusByCounty, + hisFacilityArtHtsMnch, }); diff --git a/src/routes.js b/src/routes.js index c14d12b0..7ff27153 100644 --- a/src/routes.js +++ b/src/routes.js @@ -1,21 +1,73 @@ -import React from 'react'; import Loadable from 'react-loadable'; import withTracker from './withTracker'; import Loading from './views/Shared/Loading'; -import { LOADING_DELAY } from "./constants"; +import { LOADING_DELAY } from './constants'; -const Home = Loadable({ loader: () => import('./views/Home/Home'), loading: Loading, delay: LOADING_DELAY }); -const RR = Loadable({ loader: () => import('./views/RR/RR'), loading: Loading, delay: LOADING_DELAY }); -const HTS = Loadable({ loader: () => import('./views/HTS/HTS'), loading: Loading, delay: LOADING_DELAY }); -const CT = Loadable({ loader: () => import('./views/CT/CT'), loading: Loading, delay: LOADING_DELAY }); -const SD = Loadable({ loader: () => import('./views/ServiceDesk/ServiceDesk'), loading: Loading, delay: LOADING_DELAY }); -const OperationalHIS = Loadable({ loader: () => import('./views/Operational&HIS/OperationalHIS'), loading: Loading, delay: LOADING_DELAY }); -const PMTCTRRI = Loadable({ loader: () => import('./views/PMTCTRRI/PMTCTRRI'), loading: Loading, delay: LOADING_DELAY,}); -const GIS = Loadable({ loader: () => import('./views/GIS/GIS'), loading: Loading, delay: LOADING_DELAY }); -const HRH = Loadable({ loader: () => import('./views/HRH/HRH'), loading: Loading, delay: LOADING_DELAY }); -const Resources = Loadable({ loader: () => import('./views/Resources/Resources'), loading: Loading, delay: LOADING_DELAY }); -const Organizations = Loadable({ loader: () => import('./views/Administration/Organizations/Organizations'), loading: Loading, delay: LOADING_DELAY }); -const Profile = Loadable({ loader: () => import('./views/Users/Profile'), loading: Loading, delay: LOADING_DELAY }); +const Home = Loadable({ + loader: () => import('./views/Home/Home'), + loading: Loading, + delay: LOADING_DELAY, +}); +const RR = Loadable({ + loader: () => import('./views/RR/RR'), + loading: Loading, + delay: LOADING_DELAY, +}); +const HTS = Loadable({ + loader: () => import('./views/HTS/HTS'), + loading: Loading, + delay: LOADING_DELAY, +}); +const CT = Loadable({ + loader: () => import('./views/CT/CT'), + loading: Loading, + delay: LOADING_DELAY, +}); +const SD = Loadable({ + loader: () => import('./views/ServiceDesk/ServiceDesk'), + loading: Loading, + delay: LOADING_DELAY, +}); +const OperationalHIS = Loadable({ + loader: () => import('./views/Operational&HIS/OperationalHIS'), + loading: Loading, + delay: LOADING_DELAY, +}); +const PMTCTRRI = Loadable({ + loader: () => import('./views/PMTCTRRI/PMTCTRRI'), + loading: Loading, + delay: LOADING_DELAY, +}); +const GIS = Loadable({ + loader: () => import('./views/GIS/GIS'), + loading: Loading, + delay: LOADING_DELAY, +}); +const HRH = Loadable({ + loader: () => import('./views/HRH/HRH'), + loading: Loading, + delay: LOADING_DELAY, +}); +const Resources = Loadable({ + loader: () => import('./views/Resources/Resources'), + loading: Loading, + delay: LOADING_DELAY, +}); +const Organizations = Loadable({ + loader: () => import('./views/Administration/Organizations/Organizations'), + loading: Loading, + delay: LOADING_DELAY, +}); +const Profile = Loadable({ + loader: () => import('./views/Users/Profile'), + loading: Loading, + delay: LOADING_DELAY, +}); +const Tafsiri = Loadable({ + loader: () => import('./views/Tafsiri/Tafsiri'), + loading: Loading, + delay: LOADING_DELAY, +}); const routes = [ { @@ -108,6 +160,13 @@ const routes = [ name: 'Highlight of the month', private: false, }, + { + path: '/tafsiri', + exact: true, + name: 'TAFSIRI', + private: true, + component: withTracker(Tafsiri), + }, ]; export default routes; diff --git a/src/selectors/AgeGroupsArray.js b/src/selectors/AgeGroupsArray.js index a0f3ce23..5e428b69 100644 --- a/src/selectors/AgeGroupsArray.js +++ b/src/selectors/AgeGroupsArray.js @@ -1,3 +1,4 @@ export let childrenAgeGroups = [' Under 1', '01 to 04','05 to 09','10 to 14']; export let adultAgeGroups = ['15 to 19','20 to 24','25 to 29','30 to 34','35 to 39','40 to 44','45 to 49','50 to 54','55 to 59','60 to 64','65+']; export let ovcAgeGroups = [' Under 1', '01 to 04','05 to 09','10 to 14', '15 to 19']; +export let otzAgeGroups = ['10 to 14', '15 to 19']; diff --git a/src/selectors/CT/OTZ/otzAlhivOnArtByAgeSex.js b/src/selectors/CT/OTZ/otzAlhivOnArtByAgeSex.js new file mode 100644 index 00000000..916d413b --- /dev/null +++ b/src/selectors/CT/OTZ/otzAlhivOnArtByAgeSex.js @@ -0,0 +1,40 @@ +import { createSelector } from 'reselect'; +import * as ageGroups from '../../AgeGroupsArray'; +import _ from 'lodash'; + +const filtered = state => state.filters.filtered; +const listFiltered = state => state.otzAlhivOnArtByAgeSex.listFiltered; +const listUnfiltered = state => state.otzAlhivOnArtByAgeSex.listUnfiltered; + +export const getOtzAlhivOnArtByAgeSex = createSelector( + [listUnfiltered, listFiltered, filtered], + (listUnfiltered, listFiltered, filtered) => { + const list = filtered ? listFiltered : listUnfiltered; + let otzAgeGroups = ageGroups.otzAgeGroups; + + let distributionMale = []; + let distributionFemale = []; + + for (const ageGroup of otzAgeGroups) { + const ageGroupMaleFilter = list?.filter(obj => obj.AgeGroup === ageGroup && (obj.Gender.toLowerCase() === "M".toLowerCase() || obj.Gender.toLowerCase() === "Male".toLowerCase())); + const ageGroupFemaleFilter = list.filter(obj => obj.AgeGroup === ageGroup && (obj.Gender.toLowerCase() === "F".toLowerCase() || obj.Gender.toLowerCase() === "Female".toLowerCase())); + if (ageGroupMaleFilter.length > 0) { + distributionMale.push(ageGroupMaleFilter[0].CALHIVonART); + } else { + distributionMale.push(0); + } + + if (ageGroupFemaleFilter.length > 0) { + distributionFemale.push(ageGroupFemaleFilter[0].CALHIVonART); + } else { + distributionFemale.push(0); + } + } + + let max = _.max([_.max(distributionMale), _.max(distributionFemale)]); + distributionMale = distributionMale.map(x => x * -1); + + return { max, otzAgeGroups, distributionMale, distributionFemale }; + // return filtered ? listFiltered : listUnfiltered; + } +); diff --git a/src/selectors/CT/OTZ/otzDistributionOfPatientsByAgeSex.js b/src/selectors/CT/OTZ/otzDistributionOfPatientsByAgeSex.js index b8244286..8458e7e2 100644 --- a/src/selectors/CT/OTZ/otzDistributionOfPatientsByAgeSex.js +++ b/src/selectors/CT/OTZ/otzDistributionOfPatientsByAgeSex.js @@ -11,8 +11,8 @@ export const getOtzDistributionOfPatientsByAgeSex = createSelector( [listUnfiltered, listFiltered, filtered], (listUnfiltered, listFiltered, filtered) => { const list = filtered ? listFiltered : listUnfiltered; - - let otzAgeGroups = ['10 to 14', '15 to 19', '20 to 24']; + + let otzAgeGroups = ['10 to 14', '15 to 19']; let distributionMale = []; let distributionFemale = []; diff --git a/src/selectors/CT/OTZ/otzNotEnrolledAmongAlHivByPartner.js b/src/selectors/CT/OTZ/otzNotEnrolledAmongAlHivByPartner.js index 75b147be..e4f37595 100644 --- a/src/selectors/CT/OTZ/otzNotEnrolledAmongAlHivByPartner.js +++ b/src/selectors/CT/OTZ/otzNotEnrolledAmongAlHivByPartner.js @@ -19,7 +19,7 @@ export const getOtzNotEnrolledAmongAlHivOnArtByPartner = createSelector( (obj) =>{ return obj.partner === listElement.CTPartner; }); - + if (filterTotalAdolescents.length > 0) { const percentage = (listElement.Num / @@ -33,7 +33,7 @@ export const getOtzNotEnrolledAmongAlHivOnArtByPartner = createSelector( }); } } - + arrayVal.sort((a, b) => { return b.y - a.y; }); diff --git a/src/selectors/CT/OTZ/otzOutcomesAmongAlhivWithBaselineVL.js b/src/selectors/CT/OTZ/otzOutcomesAmongAlhivWithBaselineVL.js index 9592902f..9a2b6333 100644 --- a/src/selectors/CT/OTZ/otzOutcomesAmongAlhivWithBaselineVL.js +++ b/src/selectors/CT/OTZ/otzOutcomesAmongAlhivWithBaselineVL.js @@ -9,21 +9,31 @@ export const getOtzOutcomesAmongAlHivWithBaselineVL = createSelector( (listUnfiltered, listFiltered, filtered) => { const list = filtered ? listFiltered : listUnfiltered; - const ArrayVal = list.map(val => ({ - AlHivEnrolledInOTZ: val.AlHivEnrolledInOTZ, - AlHivEnrolledInOTZPerc: 100, + return list.map(val => ({ + AlHivEnrolledInOTZ: val.AlHivEnrolledInOTZ, + AlHivEnrolledInOTZPerc: 100, - AlHivWithBaselineVl: val.AlHivWithBaselineVl, - AlHivWithBaselineVlPerc: Math.round(((val.AlHivWithBaselineVl/val.AlHivEnrolledInOTZ)*100)), + AlHiv: val.AlHiv, + AlHivPerc: 100, - AlHivWithVlGreaterThan1000: val.AlHivWithVlGreaterThan1000, - AlHivWithVlGreaterThan1000Perc: Math.round(((val.AlHivWithVlGreaterThan1000/val.AlHivEnrolledInOTZ)*100)), + AlHivWithBaselineVl: val.AlHivWithBaselineVl, + AlHivWithBaselineVlPerc: Math.round(((val.AlHivWithBaselineVl/val.AlHiv)*100)), - AlHivWithVlLessThan1000: val.AlHivWithVlLessThan1000, - AlHivWithVlLessThan1000Perc: Math.round(((val.AlHivWithVlLessThan1000/val.AlHivEnrolledInOTZ)*100)), - })); + AlHivWithVlGreaterThan1000: val.AlHivWithVlGreaterThan1000, + AlHivWithVlGreaterThan1000Perc: Math.round(((val.AlHivWithVlGreaterThan1000/val.AlHiv)*100)), - return ArrayVal; + AlHivWithVlLessThan1000: val.AlHivWithVlLessThan1000, + AlHivWithVlLessThan1000Perc: Math.round(((val.AlHivWithVlLessThan1000/val.AlHiv)*100)), + + AlHivWithBaselineVlEnrolled: val.AlHivWithBaselineVlEnrolled, + AlHivWithBaselineVlEnrolledPerc: Math.round(((val.AlHivWithBaselineVlEnrolled/val.AlHivEnrolledInOTZ)*100)), + + AlHivWithVlGreaterThan1000Enrolled: val.AlHivWithVlGreaterThan1000Enrolled, + AlHivWithVlGreaterThan1000EnrolledPerc: Math.round(((val.AlHivWithVlGreaterThan1000Enrolled/val.AlHivEnrolledInOTZ)*100)), + + AlHivWithVlLessThan1000Enrolled: val.AlHivWithVlLessThan1000Enrolled, + AlHivWithVlLessThan1000EnrolledPerc: Math.round(((val.AlHivWithVlLessThan1000Enrolled/val.AlHivEnrolledInOTZ)*100)), + })); } ); diff --git a/src/selectors/CT/OTZ/otzProportionOfAlHivEnrolledInOtzWhoHaveCompletedTrainingByCounty.js b/src/selectors/CT/OTZ/otzProportionOfAlHivEnrolledInOtzWhoHaveCompletedTrainingByCounty.js index 89175481..ecaea5bb 100644 --- a/src/selectors/CT/OTZ/otzProportionOfAlHivEnrolledInOtzWhoHaveCompletedTrainingByCounty.js +++ b/src/selectors/CT/OTZ/otzProportionOfAlHivEnrolledInOtzWhoHaveCompletedTrainingByCounty.js @@ -17,7 +17,7 @@ export const getProportionOfAlhivEnrolledInOtzWhoHaveCompletedTrainingByCounty = let percent = 0; const selectedCounty = listCounty.filter(obj => obj.County === listElement.County); if (selectedCounty.length > 0) { - percent = ((listElement.count_training / selectedCounty[0].count_training) * 100); + percent = ((listElement.count_training / selectedCounty[0].alhiv) * 100); } ArrayList.push( { diff --git a/src/selectors/CT/OTZ/otzProportionOfAlHivEnrolledInOtzWhoHaveCompletedTrainingByPartner.js b/src/selectors/CT/OTZ/otzProportionOfAlHivEnrolledInOtzWhoHaveCompletedTrainingByPartner.js index a6c867c6..0bc793a7 100644 --- a/src/selectors/CT/OTZ/otzProportionOfAlHivEnrolledInOtzWhoHaveCompletedTrainingByPartner.js +++ b/src/selectors/CT/OTZ/otzProportionOfAlHivEnrolledInOtzWhoHaveCompletedTrainingByPartner.js @@ -17,7 +17,7 @@ export const getProportionOfAlhivEnrolledInOtzWhoHaveCompletedTrainingByPartner let percent = 0; const selectedPartner = listPartner.filter(obj => obj.partner === listElement.partner); if (selectedPartner.length > 0) { - percent = ((listElement.count_training / selectedPartner[0].count_training) * 100); + percent = ((listElement.count_training / selectedPartner[0].alhiv) * 100); } ArrayList.push( { diff --git a/src/selectors/CT/OTZ/otzTotalWithDurableVlResults.js b/src/selectors/CT/OTZ/otzTotalWithDurableVlResults.js new file mode 100644 index 00000000..b7a9d7f2 --- /dev/null +++ b/src/selectors/CT/OTZ/otzTotalWithDurableVlResults.js @@ -0,0 +1,12 @@ +import { createSelector } from 'reselect'; + +const filtered = state => state.filters.filtered; +const listFiltered = state => state.otzTotalWithDurableVlResults.listFiltered; +const listUnfiltered = state => state.otzTotalWithDurableVlResults.listUnfiltered; + +export const getOtzTotalWithDurableVlResults = createSelector( + [listUnfiltered, listFiltered, filtered], + (listUnfiltered, listFiltered, filtered) => { + return filtered ? listFiltered : listUnfiltered; + } +); diff --git a/src/selectors/RR/HisDeploymentsSelector.js b/src/selectors/RR/HisDeploymentsSelector.js new file mode 100644 index 00000000..a5185011 --- /dev/null +++ b/src/selectors/RR/HisDeploymentsSelector.js @@ -0,0 +1,310 @@ +import { createSelector } from 'reselect'; +import { formatNumber } from '../../utils/utils'; + +const listStatusUnfiltered = state => state.hisFacilityStatus.listUnfiltered; +const listStatusFiltered = state => state.hisFacilityStatus.listFiltered; +const filtered = state => state.filters.filtered; + +const listStatusByPartnerUnfiltered = state => state.hisFacilityStatusByPartner.listUnfiltered; +const listStatusByPartnerFiltered = state => state.hisFacilityStatusByPartner.listFiltered; + +const listStatusByCountyUnfiltered = state => state.hisFacilityStatusByCounty.listUnfiltered; +const listStatusByCountyFiltered = state => state.hisFacilityStatusByCounty.listFiltered; + +const listLevelByPartnerUnfiltered = state => state.hisFacilityLevelByPartner.listUnfiltered; +const listLevelByPartnerFiltered = state => state.hisFacilityLevelByPartner.listFiltered; + +const listLevelByCountyUnfiltered = state => state.hisFacilityLevelByCounty.listUnfiltered; +const listLevelByCountyFiltered = state => state.hisFacilityLevelByCounty.listFiltered; + +const listByInfrastructureUnfiltered = state => state.hisFacilityByInfrastructure.listUnfiltered; +const listByInfrastructureFiltered = state => state.hisFacilityByInfrastructure.listFiltered; + +const listByInfrastructureCountyUnfiltered = state => state.hisFacilityByInfrastructureCounty.listUnfiltered; +const listByInfrastructureCountyFiltered = state => state.hisFacilityByInfrastructureCounty.listFiltered; + +const listLinelistUnfiltered = state => state.hisFacilityLinelist.listUnfiltered; +const listLinelistFiltered = state => state.hisFacilityLinelist.listFiltered; +const listLinelistLoading = state => state.hisFacilityLinelist.loading; + +const listTxcurrUnfiltered = state => state.hisFacilityTxcurr.listUnfiltered; +const listTxcurrFiltered = state => state.hisFacilityTxcurr.listFiltered; +const listTxcurrLoading = state => state.hisFacilityTxcurr.loading; + +const listFacilityArtHtsMnchUnfiltered = state => state.hisFacilityArtHtsMnch.listUnfiltered; +const listFacilityArtHtsMnchFiltered = state => state.hisFacilityArtHtsMnch.listFiltered; +const listFacilityArtHtsMnchLoading = state => state.hisFacilityArtHtsMnch.loading; + +export const getFacilityStatus = createSelector( + [listStatusUnfiltered, listStatusFiltered, filtered], + (listUnfiltered, listFiltered, filtered) => { + const list = filtered ? listFiltered : listUnfiltered; + let active = list.find(x => x.EMR_Status.toLowerCase() === 'active')?.facilities + let discontinued = list.find(x => x.EMR_Status.toLowerCase() === "discontinued")?.facilities + let stalled = list.find(x => x.EMR_Status.toLowerCase() === "stalled/inactive")?.facilities + list.find(x => x.EMR_Status.toLowerCase() === "inactive")?.facilities + + return { active, discontinued, stalled }; + } +); + +export const getFacilityStatusByPartner = createSelector( + [listStatusByPartnerUnfiltered, listStatusByPartnerFiltered, filtered], + (listUnfiltered, listFiltered, filtered) => { + const list = filtered ? listFiltered : listUnfiltered; + let data = list.reduce((acc, curr) => { + const { facilities, EMR_Status, PartnerName } = curr + if(!acc[PartnerName]) { + acc[PartnerName] = { + "PartnerName": PartnerName, + "Active": 0, + "Discontinued": 0, + "Inactive/Stalled": 0, + "Total": 0 + } + } + const statusKey = (EMR_Status === "Stalled/Inactive" || EMR_Status === "Inactive") ? "Inactive/Stalled" : EMR_Status; + + acc[PartnerName][statusKey] += parseInt(facilities); + acc[PartnerName].Total += parseInt(facilities); + return acc + }, {}); + let formattedResult = Object.values(data); + formattedResult.sort((a, b) => b.Active - a.Active); + formattedResult = formattedResult.map(partner => { + partner.activePerc = partner.Total ? (partner.Active/partner.Total)*100 : 0 + return partner + }).sort((a, b) => b.activePerc - a.activePerc) + + const partnerNames = formattedResult.map(i => i.PartnerName?.toUpperCase()) + const actives = formattedResult.map(i => i.Active) + const discontinueds = formattedResult.map(i => i.Discontinued) + const inactives = formattedResult.map(i => i["Inactive/Stalled"]) + + return { partnerNames, actives, discontinueds, inactives } + } +); + +export const getFacilityStatusByCounty = createSelector( + [listStatusByCountyUnfiltered, listStatusByCountyFiltered, filtered], + (listUnfiltered, listFiltered, filtered) => { + const list = filtered ? listFiltered : listUnfiltered; + let data = list.reduce((acc, curr) => { + const { facilities, EMR_Status, County } = curr + if(!acc[County]) { + acc[County] = { + "County": County, + "Active": 0, + "Discontinued": 0, + "Inactive/Stalled": 0, + "Total": 0 + } + } + + const statusKey = (EMR_Status === "Stalled/Inactive" || EMR_Status === "Inactive") ? "Inactive/Stalled" : EMR_Status; + + acc[County][statusKey] += parseInt(facilities); + acc[County].Total += parseInt(facilities); + return acc + }, {}); + let formattedResult = Object.values(data); + formattedResult.sort((a, b) => b.Active - a.Active); + formattedResult = formattedResult.map(partner => { + partner.activePerc = partner.Total ? (partner.Active/partner.Total)*100 : 0 + return partner + }).sort((a, b) => b.activePerc - a.activePerc) + + const counties = formattedResult.map(i => i.County?.toUpperCase()) + const actives = formattedResult.map(i => i.Active) + const discontinueds = formattedResult.map(i => i.Discontinued) + const inactives = formattedResult.map(i => i["Inactive/Stalled"]) + + return { counties, actives, discontinueds, inactives } + } +); + +export const getFacilityByInfrastructure = createSelector( + [listByInfrastructureUnfiltered, listByInfrastructureFiltered, filtered], + (listUnfiltered, listFiltered, filtered) => { + const list = filtered ? listFiltered : listUnfiltered; + let data = list.reduce((acc, curr) => { + const { facilities, InfrastructureType, PartnerName } = curr + if(!acc[PartnerName]) { + acc[PartnerName] = { + "PartnerName": PartnerName, + "On Premises": 0, + "On Cloud": 0, + "Total": 0 + } + } + + acc[PartnerName][InfrastructureType] += parseInt(facilities); + acc[PartnerName].Total += parseInt(facilities); + return acc + }, {}); + let formattedResult = Object.values(data); + formattedResult.sort((a, b) => b["On Premises"] - a["On Premises"]); + formattedResult = formattedResult.map(partner => { + partner.onPremPerc = partner.Total ? (partner["On Premises"]/partner.Total)*100 : 0 + return partner + }).sort((a, b) => b.onPremPerc - a.onPremPerc) + + const partnerNames = formattedResult.map(i => i.PartnerName?.toUpperCase()) + const onPremises = formattedResult.map(i => i["On Premises"]) + const onCloud = formattedResult.map(i => i["On Cloud"]) + + return { partnerNames, onPremises, onCloud } + } +); + +export const getFacilityByInfrastructureCounty = createSelector( + [listByInfrastructureCountyUnfiltered, listByInfrastructureCountyFiltered, filtered], + (listUnfiltered, listFiltered, filtered) => { + const list = filtered ? listFiltered : listUnfiltered; + let data = list.reduce((acc, curr) => { + const { facilities, InfrastructureType, County } = curr + if(!acc[County]) { + acc[County] = { + "County": County, + "On Premises": 0, + "On Cloud": 0, + "Total": 0 + } + } + + acc[County][InfrastructureType] += parseInt(facilities); + acc[County].Total += parseInt(facilities); + return acc + }, {}); + let formattedResult = Object.values(data); + formattedResult.sort((a, b) => b["On Premises"] - a["On Premises"]); + formattedResult = formattedResult.map(partner => { + partner.onPremPerc = partner.Total ? (partner["On Premises"]/partner.Total)*100 : 0 + return partner + }).sort((a, b) => b.onPremPerc - a.onPremPerc) + + const counties = formattedResult.map(i => i.County?.toUpperCase()) + const onPremises = formattedResult.map(i => i["On Premises"]) + const onCloud = formattedResult.map(i => i["On Cloud"]) + + return { counties, onPremises, onCloud } + } +); + +export const getFacilityLevelByPartner = createSelector( + [listLevelByPartnerUnfiltered, listLevelByPartnerFiltered, filtered], + (listUnfiltered, listFiltered, filtered) => { + const list = filtered ? listFiltered : listUnfiltered; + let data = list.reduce((acc, curr) => { + const { facilities, Keph_level, PartnerName } = curr + if(!acc[PartnerName]) { + acc[PartnerName] = { + "PartnerName": PartnerName, + "Level 1": 0, + "Level 2": 0, + "Level 3": 0, + "Level 4": 0, + "Level 5": 0, + "Level 6": 0, + "Total": 0 + } + } + + acc[PartnerName][Keph_level] += parseInt(facilities); + acc[PartnerName].Total += parseInt(facilities); + return acc + }, {}); + let formattedResult = Object.values(data); + formattedResult.sort((a, b) => b["Level 2"] - a["Level 2"]); + formattedResult = formattedResult.map(partner => { + partner.lvl2Perc = partner.Total ? (partner["Level 2"]/partner.Total)*100 : 0 + return partner + }).sort((a, b) => b.lvl2Perc - a.lvl2Perc) + + const partnerNames = formattedResult.map(i => i.PartnerName?.toUpperCase()) + const lvl1 = formattedResult.map(i => i["Level 1"]) + const lvl2 = formattedResult.map(i => i["Level 2"]) + const lvl3 = formattedResult.map(i => i["Level 3"]) + const lvl4 = formattedResult.map(i => i["Level 4"]) + const lvl5 = formattedResult.map(i => i["Level 5"]) + const lvl6 = formattedResult.map(i => i["Level 6"]) + + return { partnerNames, lvl1, lvl2, lvl3, lvl4, lvl5, lvl6 } + } +); + +export const getFacilityLevelByCounty = createSelector( + [listLevelByCountyUnfiltered, listLevelByCountyFiltered, filtered], + (listUnfiltered, listFiltered, filtered) => { + const list = filtered ? listFiltered : listUnfiltered; + let data = list.reduce((acc, curr) => { + const { facilities, Keph_level, County } = curr + if(!acc[County]) { + acc[County] = { + "County": County, + "Level 1": 0, + "Level 2": 0, + "Level 3": 0, + "Level 4": 0, + "Level 5": 0, + "Level 6": 0, + "Total": 0 + } + } + + acc[County][Keph_level] += parseInt(facilities); + acc[County].Total += parseInt(facilities); + return acc + }, {}); + let formattedResult = Object.values(data); + formattedResult.sort((a, b) => b["Level 2"] - a["Level 2"]); + formattedResult = formattedResult.map(partner => { + partner.lvl2Perc = partner.Total ? (partner["Level 2"]/partner.Total)*100 : 0 + return partner + }).sort((a, b) => b.lvl2Perc - a.lvl2Perc) + + const counties = formattedResult.map(i => i.County?.toUpperCase()) + const lvl1 = formattedResult.map(i => i["Level 1"]) + const lvl2 = formattedResult.map(i => i["Level 2"]) + const lvl3 = formattedResult.map(i => i["Level 3"]) + const lvl4 = formattedResult.map(i => i["Level 4"]) + const lvl5 = formattedResult.map(i => i["Level 5"]) + const lvl6 = formattedResult.map(i => i["Level 6"]) + + return { counties, lvl1, lvl2, lvl3, lvl4, lvl5, lvl6 } + } +); + +export const getFacilityLinelist = createSelector( + [listLinelistUnfiltered, listLinelistFiltered, filtered, listLinelistLoading], + (listUnfiltered, listFiltered, filtered, loading) => { + const list = filtered ? listFiltered : listUnfiltered; + + return { list, loading }; + } +); + +export const getFacilityArtHtsMnchLinelist = createSelector( + [listFacilityArtHtsMnchUnfiltered, listFacilityArtHtsMnchFiltered, filtered, listFacilityArtHtsMnchLoading], + (listUnfiltered, listFiltered, filtered, loading) => { + const list = filtered ? listFiltered : listUnfiltered; + let data = list.map(d => { + return { ...d, 'CurrentOnART_Total': formatNumber(d.CurrentOnART_Total), 'Tested_Total': formatNumber(d.Tested_Total), 'onMaternalHAARTtotal': formatNumber(d.onMaternalHAARTtotal) }; + }) + + return { 'list': data, loading }; + } +); + +export const getFacilityTxCurr = createSelector( + [listTxcurrUnfiltered, listTxcurrFiltered, filtered, listTxcurrLoading], + (listUnfiltered, listFiltered, filtered, loading) => { + const list = filtered ? listFiltered : listUnfiltered; + + let data = list.map((d) => { + d = d.KEPH_Level === null ? { ...d, 'KEPH_Level': 'Missing' } : d; + return {...d, 'TxCurr': formatNumber(d.TxCurr)} + }) + + return { 'list': data, loading }; + } +); diff --git a/src/utils/highcharts.js b/src/utils/highcharts.js index dc33031c..c9789f65 100644 --- a/src/utils/highcharts.js +++ b/src/utils/highcharts.js @@ -4,6 +4,7 @@ import HighchartsMap from 'highcharts/modules/map'; import ke from './map-ke.json'; import keAll from './map-ke-all.json'; import keCounty from './map-ke-county.json'; +import keCountyAll from './map-ke-county-all.json'; import keProvince from './map-ke-province.json'; if (typeof window !== 'undefined') { @@ -11,7 +12,8 @@ if (typeof window !== 'undefined') { Highcharts.maps["custom/ke"] = ke; Highcharts.maps["custom/ke-all"] = keAll; Highcharts.maps["custom/ke-county"] = keCounty; + Highcharts.maps["custom/ke-county-all"] = keCountyAll; Highcharts.maps["custom/ke-province"] = keProvince; } -export default Highcharts; \ No newline at end of file +export default Highcharts; diff --git a/src/utils/map-ke-county-all.json b/src/utils/map-ke-county-all.json new file mode 100644 index 00000000..67d7c88c --- /dev/null +++ b/src/utils/map-ke-county-all.json @@ -0,0 +1,105 @@ +{ +"type": "FeatureCollection", + "hc-transform":{"default": { + "crs": "+proj=longlat +datum=WGS84 +no_defs" + }}, + +"features": [ +{ "type": "Feature", "id": 0, "properties": { "OBJECTID": 1, "ID_": 5543, "COUNTY_NAM": "NAIROBI", "CONST_CODE": 288, "CONSTITUEN": "KAMUKUNJI", "COUNTY_COD": 47, "Shape_Leng": 1.55978672217, "Shape_Area": 0.057422949 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.904582592483159, -1.160707895679255 ], [ 36.908086312483185, -1.161573011679254 ], [ 36.912297738483169, -1.161450941679223 ], [ 36.915715707483166, -1.161573011679254 ], [ 36.920720589483203, -1.163343031679235 ], [ 36.924504769483171, -1.165967543679247 ], [ 36.926702035483167, -1.168164808679253 ], [ 36.930730355483199, -1.168836195679264 ], [ 36.934331429483159, -1.170056898679266 ], [ 36.938298714483203, -1.171948988679221 ], [ 36.941533578483181, -1.174573500679233 ], [ 36.940740121483195, -1.177930433679253 ], [ 36.931706918483194, -1.187329847679225 ], [ 36.922490609483184, -1.197339613679221 ], [ 36.919499886483202, -1.198743422679231 ], [ 36.917912972483172, -1.20228346167926 ], [ 36.915898812483185, -1.204663832679219 ], [ 36.91351844148317, -1.207959730679252 ], [ 36.916509164483152, -1.212476332679219 ], [ 36.919744027483198, -1.21473463267927 ], [ 36.922124398483156, -1.217176039679262 ], [ 36.925115121483195, -1.218152601679267 ], [ 36.928288949483196, -1.219739515679239 ], [ 36.931706918483194, -1.223340589679256 ], [ 36.934087289483152, -1.221631605679252 ], [ 36.939092171483189, -1.222180922679231 ], [ 36.947515023483156, -1.225965101679267 ], [ 36.955693734483184, -1.228040297679231 ], [ 36.960088265483186, -1.228162367679263 ], [ 36.964543832483166, -1.228833754679274 ], [ 36.971501839483203, -1.228162367679263 ], [ 36.979131234483184, -1.224744398679266 ], [ 36.982305062483185, -1.224256117679263 ], [ 36.985295785483167, -1.22346266067922 ], [ 36.988713754483165, -1.224073011679254 ], [ 36.991887582483166, -1.225354750679233 ], [ 36.993535531483182, -1.228162367679263 ], [ 36.995122445483155, -1.231336195679264 ], [ 36.997685921483189, -1.233350355679252 ], [ 37.001103890483186, -1.234754164679262 ], [ 37.004521859483184, -1.236646254679274 ], [ 37.012517464483203, -1.235547621679248 ], [ 37.013738168483194, -1.23158033667926 ], [ 37.016545785483167, -1.228467543679247 ], [ 37.02094031648317, -1.226880629679274 ], [ 37.023931039483152, -1.223828871679248 ], [ 37.030522836483151, -1.220655043679247 ], [ 37.033696664483152, -1.216931898679266 ], [ 37.038335336483151, -1.213147718679241 ], [ 37.049321664483152, -1.208570082679219 ], [ 37.054936898483156, -1.206861097679225 ], [ 37.058110726483157, -1.208631117679263 ], [ 37.061101449483196, -1.206861097679225 ], [ 37.07031775748316, -1.217664320679264 ], [ 37.073491586483151, -1.22376783667926 ], [ 37.08093787548318, -1.237256605679252 ], [ 37.087712778483187, -1.234143812679238 ], [ 37.091496957483166, -1.237866957679219 ], [ 37.095525277483198, -1.244763929679268 ], [ 37.087529671483189, -1.248975355679252 ], [ 37.102300179483159, -1.262464125679233 ], [ 37.103887093483188, -1.264844496679248 ], [ 37.101689828483181, -1.274182875679233 ], [ 37.097539437483185, -1.274060804679268 ], [ 37.093144906483182, -1.275769789679262 ], [ 37.088140023483156, -1.277478773679266 ], [ 37.085088265483186, -1.279431898679266 ], [ 37.084111703483181, -1.282544691679223 ], [ 37.0823416834832, -1.284741957679219 ], [ 37.078740609483184, -1.283765394679224 ], [ 37.076909554483159, -1.28626783667926 ], [ 37.076116097483172, -1.291333754679274 ], [ 37.073491586483151, -1.295362074679249 ], [ 37.073918832483166, -1.29963453567922 ], [ 37.076726449483196, -1.302442152679251 ], [ 37.066106332483166, -1.301343519679224 ], [ 37.026494515483186, -1.291944105679252 ], [ 37.009892953483181, -1.297864515679239 ], [ 37.002690804483159, -1.300733168679247 ], [ 37.000737679483159, -1.294751722679225 ], [ 36.995488656483182, -1.281446058679253 ], [ 36.974309457483166, -1.289563734679237 ], [ 36.977300179483159, -1.29676588267927 ], [ 36.984319222483172, -1.314832289679262 ], [ 36.974126351483157, -1.33704908667926 ], [ 36.966924203483181, -1.353162367679263 ], [ 36.963689339483203, -1.351331312679238 ], [ 36.961125863483169, -1.34846266067922 ], [ 36.934514535483167, -1.338758070679264 ], [ 36.915898812483185, -1.355847914679262 ], [ 36.907292855483199, -1.363355238679221 ], [ 36.914311898483156, -1.373365004679274 ], [ 36.916936410483167, -1.37775953567922 ], [ 36.921941293483194, -1.387464125679233 ], [ 36.923894418483194, -1.393933851679267 ], [ 36.928533089483203, -1.394544203679234 ], [ 36.932134164483152, -1.398267347679225 ], [ 36.936345589483203, -1.39924391067922 ], [ 36.940740121483195, -1.402661879679274 ], [ 36.943486703483181, -1.405530531679235 ], [ 36.945745004483165, -1.408765394679224 ], [ 36.947515023483156, -1.421948988679221 ], [ 36.949712289483152, -1.42493971167926 ], [ 36.953496468483188, -1.427136976679267 ], [ 36.95593787548318, -1.429273207679219 ], [ 36.959538949483196, -1.436536390679239 ], [ 36.961736214483203, -1.438672621679248 ], [ 36.961125863483169, -1.44447096167926 ], [ 36.958318246483195, -1.441663343679241 ], [ 36.955510629483165, -1.437635023679266 ], [ 36.951116097483172, -1.437940199679249 ], [ 36.94812537548318, -1.435681898679266 ], [ 36.944890511483202, -1.433850843679241 ], [ 36.941106332483166, -1.432935316679223 ], [ 36.931890023483156, -1.432935316679223 ], [ 36.909490121483195, -1.422864515679239 ], [ 36.8928885584832, -1.415662367679263 ], [ 36.890691293483194, -1.413770277679251 ], [ 36.894292367483153, -1.411145765679239 ], [ 36.891118539483152, -1.409680922679231 ], [ 36.88812781648317, -1.408582289679262 ], [ 36.885320199483196, -1.407178480679252 ], [ 36.882512582483166, -1.406262953679234 ], [ 36.87891150748316, -1.406873304679268 ], [ 36.875127328483181, -1.406568129679274 ], [ 36.87109900748316, -1.40705641067922 ], [ 36.869328988483169, -1.403882582679219 ], [ 36.865300668483194, -1.404065687679238 ], [ 36.86273719148317, -1.402478773679266 ], [ 36.859746468483188, -1.399976332679219 ], [ 36.852910531483182, -1.397840101679267 ], [ 36.849736703483181, -1.396070082679219 ], [ 36.846745980483199, -1.392346937679238 ], [ 36.844304574483196, -1.387647230679252 ], [ 36.8342948084832, -1.387952406679235 ], [ 36.829900277483198, -1.387647230679252 ], [ 36.822331918483194, -1.384351332679219 ], [ 36.819890511483202, -1.381543714679256 ], [ 36.816106332483166, -1.382276136679254 ], [ 36.811101449483196, -1.386060316679223 ], [ 36.809087289483152, -1.388135511679254 ], [ 36.80609656648317, -1.388074476679267 ], [ 36.803105843483188, -1.38856275767927 ], [ 36.800115121483195, -1.387769300679227 ], [ 36.79633094148317, -1.387158949679249 ], [ 36.793096078483181, -1.385755140679239 ], [ 36.790105355483199, -1.387952406679235 ], [ 36.786931527483198, -1.38783033667926 ], [ 36.783940804483159, -1.389051039679262 ], [ 36.781316293483194, -1.387281019679224 ], [ 36.777104867483153, -1.387464125679233 ], [ 36.773137582483166, -1.388745863679221 ], [ 36.769902718483188, -1.387464125679233 ], [ 36.766545785483167, -1.387952406679235 ], [ 36.764287484483184, -1.38587721167926 ], [ 36.760686410483167, -1.385083754679274 ], [ 36.757146371483195, -1.385144789679262 ], [ 36.754338754483165, -1.384534437679238 ], [ 36.750493539483152, -1.384534437679238 ], [ 36.743901742483153, -1.381482679679268 ], [ 36.734929574483196, -1.378430922679231 ], [ 36.731694711483151, -1.376233656679235 ], [ 36.728703988483169, -1.374463636679254 ], [ 36.722295296483189, -1.369275648679266 ], [ 36.718938363483169, -1.36634596167926 ], [ 36.715520394483171, -1.362378675679227 ], [ 36.71234656648317, -1.359632093679241 ], [ 36.709538949483196, -1.358167250679233 ], [ 36.706120980483199, -1.355054457679219 ], [ 36.702703011483202, -1.352246839679256 ], [ 36.695500863483169, -1.352979261679254 ], [ 36.689885629483165, -1.347669203679234 ], [ 36.687139046483189, -1.343335707679219 ], [ 36.686528695483155, -1.339978773679266 ], [ 36.684697640483186, -1.33704908667926 ], [ 36.680486214483203, -1.32893141067922 ], [ 36.675542367483153, -1.330274183679253 ], [ 36.669744027483198, -1.32606275767927 ], [ 36.673528207483166, -1.324353773679266 ], [ 36.664128793483194, -1.319654066679223 ], [ 36.670903695483155, -1.306043226679267 ], [ 36.674321664483152, -1.307263929679268 ], [ 36.678716195483155, -1.300855238679221 ], [ 36.681706918483194, -1.298047621679248 ], [ 36.686101449483196, -1.289136488679221 ], [ 36.686528695483155, -1.28596266067922 ], [ 36.689092171483189, -1.282666761679254 ], [ 36.689702523483156, -1.279248793679247 ], [ 36.68890906648317, -1.275464613679221 ], [ 36.691899789483152, -1.275464613679221 ], [ 36.691899789483152, -1.271436293679247 ], [ 36.695134652483198, -1.269971449679249 ], [ 36.696904671483189, -1.267530043679247 ], [ 36.694097054483159, -1.263928968679241 ], [ 36.69672156648317, -1.260633070679264 ], [ 36.701543343483188, -1.261670668679247 ], [ 36.704289925483174, -1.258557875679233 ], [ 36.707097543483194, -1.259351332679219 ], [ 36.713933480483199, -1.260449964679256 ], [ 36.717290414483152, -1.261548597679225 ], [ 36.719731820483155, -1.263745863679221 ], [ 36.721745980483199, -1.258130629679274 ], [ 36.725530160483167, -1.251538832679219 ], [ 36.726140511483202, -1.247571547679231 ], [ 36.728337777483198, -1.245740492679263 ], [ 36.72852088248316, -1.241651136679254 ], [ 36.731145394483171, -1.234754164679262 ], [ 36.735295785483167, -1.235730726679267 ], [ 36.738530648483156, -1.236280043679247 ], [ 36.745915902483198, -1.23713453567922 ], [ 36.754094613483169, -1.225965101679267 ], [ 36.75671912548318, -1.219983656679235 ], [ 36.762090218483188, -1.221448500679233 ], [ 36.770513070483155, -1.226270277679251 ], [ 36.77234412548318, -1.22346266067922 ], [ 36.778935921483189, -1.226758558679253 ], [ 36.781743539483152, -1.221753675679227 ], [ 36.784734261483202, -1.215161879679274 ], [ 36.788945687483185, -1.207654554679268 ], [ 36.785100472483172, -1.20496900767927 ], [ 36.787724984483184, -1.198560316679223 ], [ 36.791692269483171, -1.191480238679221 ], [ 36.799321664483152, -1.195264418679247 ], [ 36.826116097483172, -1.210034925679227 ], [ 36.835088265483186, -1.216077406679235 ], [ 36.83289100048318, -1.208936293679247 ], [ 36.838323129483165, -1.210340101679267 ], [ 36.850286019483171, -1.212964613679221 ], [ 36.850713265483186, -1.208570082679219 ], [ 36.852727425483174, -1.202649672679231 ], [ 36.856145394483171, -1.201734144679224 ], [ 36.859929574483196, -1.201673109679237 ], [ 36.861699593483188, -1.196973402679251 ], [ 36.863896859483184, -1.190442640679239 ], [ 36.866338265483186, -1.192151625679233 ], [ 36.870488656483182, -1.194531996679248 ], [ 36.874516976483157, -1.196057875679233 ], [ 36.878545296483189, -1.196363050679227 ], [ 36.882329476483157, -1.196240980679252 ], [ 36.885930550483174, -1.195874769679224 ], [ 36.88953162548318, -1.194043714679256 ], [ 36.892705453483181, -1.193433363679221 ], [ 36.896916879483165, -1.192273695679264 ], [ 36.896306527483198, -1.187146742679263 ], [ 36.895329964483203, -1.183667738679221 ], [ 36.889104379483165, -1.174329359679237 ], [ 36.894719613483169, -1.168531019679224 ], [ 36.897710336483151, -1.162549574679249 ], [ 36.900334847483172, -1.16096266067922 ], [ 36.903142464483203, -1.160352308679253 ], [ 36.904582592483159, -1.160707895679255 ] ] ] } } +, +{ "type": "Feature", "id": 1, "properties": { "OBJECTID": 2, "ID_": 6634, "COUNTY_NAM": "MOMBASA", "CONST_CODE": 3, "CONSTITUEN": "KISAUNI", "COUNTY_COD": 1, "Shape_Leng": 0.88558616055, "Shape_Area": 0.02332510618 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.683110726483157, -4.060742933679253 ], [ 39.680913461483208, -4.062329847679226 ], [ 39.681890023483156, -4.065869886679255 ], [ 39.682317269483171, -4.069959242679263 ], [ 39.680120004483165, -4.07307203567922 ], [ 39.677312386483202, -4.073865492679263 ], [ 39.674932015483186, -4.075330336679261 ], [ 39.673100961483208, -4.078260023679266 ], [ 39.665532601483157, -4.079053480679252 ], [ 39.662908089483203, -4.082166273679266 ], [ 39.665898812483185, -4.08283766067922 ], [ 39.670720589483203, -4.083142836679261 ], [ 39.674321664483152, -4.084363539679262 ], [ 39.673894418483194, -4.088574964679256 ], [ 39.674932015483186, -4.092176039679262 ], [ 39.673894418483194, -4.096143324679249 ], [ 39.67273475048318, -4.098950941679223 ], [ 39.669316781483182, -4.105237562679238 ], [ 39.667119515483186, -4.108655531679236 ], [ 39.664311898483156, -4.112439711679261 ], [ 39.663335336483208, -4.116162855679252 ], [ 39.656926644483171, -4.126477797679232 ], [ 39.655339730483199, -4.129346449679249 ], [ 39.654546273483156, -4.132764418679247 ], [ 39.650945199483196, -4.142163832679219 ], [ 39.64929725048318, -4.144849379679275 ], [ 39.64453650748316, -4.153638441679223 ], [ 39.6409354334832, -4.153455336679261 ], [ 39.627507699483196, -4.144666273679266 ], [ 39.631291879483165, -4.136975843679241 ], [ 39.632329476483157, -4.133252699679249 ], [ 39.632695687483185, -4.129468519679224 ], [ 39.633489144483171, -4.126660902679251 ], [ 39.637334359483184, -4.124341566679223 ], [ 39.638494027483198, -4.121167738679222 ], [ 39.633916390483186, -4.119580824679249 ], [ 39.631902230483199, -4.116956312679238 ], [ 39.63031531648317, -4.113843519679224 ], [ 39.627690804483159, -4.110547621679248 ], [ 39.615911019483171, -4.098157484679237 ], [ 39.608708871483195, -4.089673597679226 ], [ 39.607305062483185, -4.094861586679261 ], [ 39.605290902483198, -4.098340589679256 ], [ 39.601689828483181, -4.099866468679241 ], [ 39.599492562483185, -4.102857191679223 ], [ 39.600713265483186, -4.106031019679224 ], [ 39.600896371483195, -4.110242445679265 ], [ 39.599309457483166, -4.113050062679238 ], [ 39.59711219148317, -4.115552504679275 ], [ 39.592534554483159, -4.116162855679252 ], [ 39.58789588248316, -4.119580824679249 ], [ 39.584111703483181, -4.119458754679275 ], [ 39.580693734483184, -4.121472914679262 ], [ 39.576543343483188, -4.122266371679248 ], [ 39.583745492483153, -4.112439711679261 ], [ 39.584905160483167, -4.108655531679236 ], [ 39.585332406483182, -4.104566175679227 ], [ 39.584722054483159, -4.100476820679265 ], [ 39.58289100048318, -4.096448500679233 ], [ 39.580693734483184, -4.093579847679226 ], [ 39.57953406648317, -4.089246351679267 ], [ 39.579289925483174, -4.085340101679267 ], [ 39.57953406648317, -4.073255140679239 ], [ 39.57953406648317, -4.048169691679223 ], [ 39.579717171483189, -4.044751722679226 ], [ 39.580693734483184, -4.041883070679265 ], [ 39.58148719148317, -4.038465101679267 ], [ 39.580693734483184, -4.036267836679261 ], [ 39.578496468483188, -4.032971937679238 ], [ 39.575688851483157, -4.030469496679248 ], [ 39.572698129483165, -4.028272230679252 ], [ 39.569097054483159, -4.026136000679233 ], [ 39.565129769483171, -4.024365980679252 ], [ 39.563115609483184, -4.022046644679224 ], [ 39.564336312483185, -4.015637953679234 ], [ 39.565923226483157, -4.012952406679236 ], [ 39.567937386483202, -4.010877211679261 ], [ 39.568913949483196, -4.007154068679259 ], [ 39.569097054483159, -4.002881605679252 ], [ 39.569707406483182, -3.997754652679252 ], [ 39.574712289483152, -3.985547621679249 ], [ 39.570500863483169, -3.982129652679252 ], [ 39.57031775748316, -3.977735121679249 ], [ 39.572942269483171, -3.975965101679268 ], [ 39.583318246483195, -3.972364027679252 ], [ 39.5842948084832, -3.967847425679228 ], [ 39.595525277483198, -3.956861097679226 ], [ 39.597722543483194, -3.954480726679268 ], [ 39.601140511483202, -3.953260023679267 ], [ 39.604497445483155, -3.956128675679228 ], [ 39.607305062483185, -3.957654554679269 ], [ 39.608708871483195, -3.960462172679232 ], [ 39.613103402483198, -3.960645277679252 ], [ 39.616704476483157, -3.960279066679224 ], [ 39.620305550483174, -3.959058363679223 ], [ 39.627324593483188, -3.965467054679269 ], [ 39.631291879483165, -3.964734632679271 ], [ 39.63812781648317, -3.96137769967925 ], [ 39.641301644483171, -3.960034925679228 ], [ 39.649907601483157, -3.960767347679226 ], [ 39.649114144483171, -3.958142836679262 ], [ 39.647099984483184, -3.955640394679225 ], [ 39.647527230483199, -3.951856214679257 ], [ 39.650945199483196, -3.949353773679267 ], [ 39.653691781483182, -3.947583754679275 ], [ 39.6507010584832, -3.945081312679239 ], [ 39.650090707483166, -3.941663343679242 ], [ 39.650517953483181, -3.93794019967925 ], [ 39.646733773483156, -3.936841566679224 ], [ 39.643132699483196, -3.933057386679256 ], [ 39.643132699483196, -3.928235609679238 ], [ 39.647527230483199, -3.926160414679263 ], [ 39.6507010584832, -3.92536695767922 ], [ 39.656743539483152, -3.924451429679269 ], [ 39.672917855483199, -3.922681410679221 ], [ 39.676946175483174, -3.92426832467925 ], [ 39.681706918483194, -3.924756605679253 ], [ 39.686101449483196, -3.925550062679239 ], [ 39.689336312483185, -3.925855238679223 ], [ 39.692143929483159, -3.924756605679253 ], [ 39.695500863483169, -3.922681410679221 ], [ 39.699346078483181, -3.923169691679224 ], [ 39.6995291834832, -3.928845961679262 ], [ 39.698491586483208, -3.93317945767922 ], [ 39.69812537548318, -3.936170179679269 ], [ 39.698918832483166, -3.939466078679235 ], [ 39.700932992483153, -3.94294508267922 ], [ 39.702886117483153, -3.945630629679275 ], [ 39.708928597483172, -3.948560316679224 ], [ 39.711736214483203, -3.950635511679256 ], [ 39.714910043483194, -3.952649672679232 ], [ 39.718328011483202, -3.953748304679269 ], [ 39.722539437483185, -3.954480726679268 ], [ 39.727544320483155, -3.954969007679271 ], [ 39.731694711483208, -3.955640394679225 ], [ 39.735112679483159, -3.95216139067924 ], [ 39.739324105483199, -3.95356519967925 ], [ 39.741521371483195, -3.955762464679257 ], [ 39.744939339483203, -3.957776625679234 ], [ 39.747685921483189, -3.958264906679236 ], [ 39.750920785483167, -3.959363539679263 ], [ 39.754338754483165, -3.95997389067924 ], [ 39.7581229334832, -3.959546644679225 ], [ 39.762090218483188, -3.961133558679254 ], [ 39.761296761483202, -3.964063246679249 ], [ 39.758733285483167, -3.96583326567924 ], [ 39.755925668483194, -3.968152601679268 ], [ 39.752507699483196, -3.971570570679265 ], [ 39.750127328483181, -3.975843031679236 ], [ 39.747319711483208, -3.979627211679262 ], [ 39.738103402483198, -3.989759047679232 ], [ 39.735295785483167, -3.993665297679232 ], [ 39.732488168483194, -4.000928480679252 ], [ 39.731511605483199, -4.005445082679219 ], [ 39.726933968483188, -4.008069593679241 ], [ 39.726933968483188, -4.012281019679224 ], [ 39.72852088248316, -4.015882093679241 ], [ 39.730718148483156, -4.019849379679275 ], [ 39.72852088248316, -4.023572523679266 ], [ 39.725530160483167, -4.024549086679261 ], [ 39.72351600048318, -4.026929457679219 ], [ 39.721135629483165, -4.030164320679265 ], [ 39.714910043483194, -4.040357191679223 ], [ 39.712712777483198, -4.043164808679253 ], [ 39.711125863483169, -4.046460707679219 ], [ 39.70789100048318, -4.050427992679263 ], [ 39.70313025748316, -4.058057386679255 ], [ 39.698918832483166, -4.06135328567922 ], [ 39.695500863483169, -4.063062269679224 ], [ 39.691533578483181, -4.063733656679236 ], [ 39.686711800483174, -4.063367445679265 ], [ 39.683110726483157, -4.060742933679253 ] ], [ [ 39.683110726483157, -4.060742933679253 ], [ 39.683537972483172, -4.058240492679263 ], [ 39.681340707483166, -4.057263929679269 ], [ 39.683110726483157, -4.060742933679253 ] ], [ [ 39.680488408483193, -4.048673268679241 ], [ 39.680120004483165, -4.04768141067922 ], [ 39.678716195483155, -4.051770765679239 ], [ 39.680303109483184, -4.055127699679249 ], [ 39.681706918483194, -4.051953871679248 ], [ 39.680488408483193, -4.048673268679241 ] ] ] } } +, +{ "type": "Feature", "id": 2, "properties": { "OBJECTID": 3, "ID_": 6600, "COUNTY_NAM": "KWALE", "CONST_CODE": 10, "CONSTITUEN": "KINANGO", "COUNTY_COD": 2, "Shape_Leng": 4.28418177601, "Shape_Area": 0.75826601303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.320928109483184, -3.570447523679267 ], [ 39.319341195483155, -3.575147230679253 ], [ 39.32031775748316, -3.579358656679236 ], [ 39.322698129483165, -3.581555922679232 ], [ 39.324346078483181, -3.584058363679223 ], [ 39.325688851483157, -3.586682875679234 ], [ 39.328496468483188, -3.58888014067924 ], [ 39.331120980483199, -3.59138258267922 ], [ 39.335332406483182, -3.592359144679225 ], [ 39.346135629483165, -3.598279554679269 ], [ 39.347722543483194, -3.600843031679236 ], [ 39.347722543483194, -3.607740004679275 ], [ 39.346929086483208, -3.611829359679238 ], [ 39.347295296483189, -3.616040785679221 ], [ 39.347295296483189, -3.62544019967925 ], [ 39.344731820483155, -3.635144789679263 ], [ 39.345342171483189, -3.638562757679271 ], [ 39.349309457483166, -3.639844496679249 ], [ 39.352910531483182, -3.642835218679242 ], [ 39.354314339483203, -3.646558363679223 ], [ 39.355290902483198, -3.650037367679264 ], [ 39.355901254483165, -3.653272230679253 ], [ 39.356938851483157, -3.656568129679275 ], [ 39.356145394483171, -3.660352308679254 ], [ 39.354741586483208, -3.662854750679234 ], [ 39.35492469148317, -3.666638929679269 ], [ 39.355535043483194, -3.671948988679223 ], [ 39.353887093483188, -3.676160414679263 ], [ 39.353887093483188, -3.679334242679264 ], [ 39.354314339483203, -3.68305739067927 ], [ 39.353887093483188, -3.686841566679224 ], [ 39.353887093483188, -3.691175062679239 ], [ 39.352544320483155, -3.69434889067924 ], [ 39.349126351483157, -3.694531996679249 ], [ 39.348332894483171, -3.697949964679257 ], [ 39.347722543483194, -3.702527601679268 ], [ 39.350286019483171, -3.707776625679234 ], [ 39.353703988483169, -3.711438734679238 ], [ 39.35492469148317, -3.715650160679221 ], [ 39.356938851483157, -3.718579847679226 ], [ 39.359136117483153, -3.722730238679223 ], [ 39.357915414483152, -3.72614820767922 ], [ 39.358525765483186, -3.729383070679265 ], [ 39.360112679483159, -3.732678968679242 ], [ 39.36414100048318, -3.736280043679248 ], [ 39.367742074483196, -3.737256605679253 ], [ 39.371343148483156, -3.739331800679228 ], [ 39.374089730483199, -3.741345961679262 ], [ 39.376897347483172, -3.742932875679234 ], [ 39.385320199483196, -3.741162855679253 ], [ 39.388738168483194, -3.73927076567924 ], [ 39.391911996483195, -3.740064222679226 ], [ 39.392339242483153, -3.743360121679249 ], [ 39.391911996483195, -3.74653394967925 ], [ 39.392522347483172, -3.749646742679264 ], [ 39.394902718483188, -3.753125746679249 ], [ 39.395085824483196, -3.757276136679256 ], [ 39.393926156483182, -3.760938246679249 ], [ 39.392095101483157, -3.769849379679275 ], [ 39.387517464483203, -3.77107008267922 ], [ 39.384099496483195, -3.77387769967925 ], [ 39.385137093483188, -3.776868422679232 ], [ 39.38953162548318, -3.778150160679221 ], [ 39.390325082483166, -3.784436781679236 ], [ 39.387517464483203, -3.787183363679223 ], [ 39.383916390483186, -3.788037855679253 ], [ 39.382512582483166, -3.790540297679232 ], [ 39.379888070483155, -3.792859632679271 ], [ 39.378728402483198, -3.796582777679252 ], [ 39.381902230483199, -3.799573500679234 ], [ 39.380742562483185, -3.807141859679238 ], [ 39.379888070483155, -3.809461195679265 ], [ 39.383733285483167, -3.811475355679253 ], [ 39.38672400748316, -3.81544264067924 ], [ 39.390141976483157, -3.818860609679238 ], [ 39.393926156483182, -3.820081312679239 ], [ 39.396306527483198, -3.822644789679263 ], [ 39.398137582483166, -3.825940687679239 ], [ 39.401128304483159, -3.827344496679249 ], [ 39.404119027483198, -3.823926527679252 ], [ 39.407903207483166, -3.82575758267922 ], [ 39.411138070483155, -3.825940687679239 ], [ 39.413335336483208, -3.823072035679221 ], [ 39.416936410483167, -3.822461683679254 ], [ 39.420720589483203, -3.824170668679248 ], [ 39.422307504483165, -3.828076918679248 ], [ 39.425908578483181, -3.829541761679256 ], [ 39.430730355483199, -3.832959730679253 ], [ 39.434941781483182, -3.835156996679249 ], [ 39.436894906483182, -3.83942945767922 ], [ 39.442143929483159, -3.84473951567924 ], [ 39.448308480483199, -3.850659925679228 ], [ 39.450139535483167, -3.853040297679232 ], [ 39.451543343483188, -3.855664808679254 ], [ 39.454717171483189, -3.85645826567924 ], [ 39.459111703483181, -3.857129652679252 ], [ 39.464910043483194, -3.859754164679263 ], [ 39.468328011483202, -3.861951429679269 ], [ 39.471135629483165, -3.865369398679267 ], [ 39.475102914483152, -3.871350843679242 ], [ 39.47852088248316, -3.87403639067924 ], [ 39.480718148483156, -3.876477797679232 ], [ 39.485295785483167, -3.882642347679226 ], [ 39.4905448084832, -3.884534437679239 ], [ 39.494695199483196, -3.886731703679235 ], [ 39.498113168483194, -3.890149672679232 ], [ 39.497930062483185, -3.89356764067924 ], [ 39.499089730483199, -3.897046644679225 ], [ 39.499944222483172, -3.900464613679223 ], [ 39.500737679483159, -3.904676039679263 ], [ 39.502934945483155, -3.906934339679257 ], [ 39.507939828483181, -3.908155043679248 ], [ 39.51312781648317, -3.913953382679271 ], [ 39.516301644483171, -3.91505201567924 ], [ 39.519292367483153, -3.916761000679234 ], [ 39.521306527483198, -3.919263441679224 ], [ 39.520696175483174, -3.923230726679268 ], [ 39.521916879483165, -3.927075941679224 ], [ 39.523503793483194, -3.931165297679232 ], [ 39.527715218483188, -3.932874281679236 ], [ 39.530889046483189, -3.938245375679234 ], [ 39.529546273483156, -3.943067152679252 ], [ 39.528325570483155, -3.948682386679256 ], [ 39.531926644483171, -3.954236586679262 ], [ 39.534490121483195, -3.956250746679249 ], [ 39.53992225048318, -3.959363539679263 ], [ 39.545903695483155, -3.959851820679265 ], [ 39.547124398483156, -3.962537367679264 ], [ 39.548345101483157, -3.966443617679264 ], [ 39.548345101483157, -3.970777113679223 ], [ 39.546514046483189, -3.978833754679275 ], [ 39.545110238483169, -3.982068617679264 ], [ 39.540898812483185, -3.989942152679252 ], [ 39.542302621483195, -3.992932875679234 ], [ 39.546086800483174, -3.994947035679221 ], [ 39.548711312483185, -3.991040785679221 ], [ 39.551702035483167, -3.987927992679264 ], [ 39.555120004483165, -3.986646254679275 ], [ 39.558537972483172, -3.987561781679236 ], [ 39.562322152483198, -3.988843519679225 ], [ 39.566106332483166, -3.99067457467925 ], [ 39.569341195483155, -3.993665297679232 ], [ 39.569707406483182, -3.997754652679252 ], [ 39.569097054483159, -4.002881605679252 ], [ 39.568913949483196, -4.007276136679255 ], [ 39.567937386483202, -4.010877211679261 ], [ 39.565923226483157, -4.013257582679219 ], [ 39.564336312483185, -4.015882093679241 ], [ 39.56390906648317, -4.018872816679223 ], [ 39.563115609483184, -4.022046644679224 ], [ 39.564885629483165, -4.02424391067922 ], [ 39.567327035483167, -4.026074964679256 ], [ 39.571111214483203, -4.027173597679226 ], [ 39.574712289483152, -4.029676039679262 ], [ 39.578496468483188, -4.033155043679247 ], [ 39.581120980483199, -4.036939222679226 ], [ 39.580693734483184, -4.041883070679265 ], [ 39.579717171483189, -4.044751722679226 ], [ 39.57953406648317, -4.048169691679223 ], [ 39.57953406648317, -4.073255140679239 ], [ 39.579289925483174, -4.085340101679267 ], [ 39.57953406648317, -4.089246351679267 ], [ 39.580693734483184, -4.093579847679226 ], [ 39.58289100048318, -4.096448500679233 ], [ 39.584722054483159, -4.100476820679265 ], [ 39.585332406483182, -4.104566175679227 ], [ 39.584905160483167, -4.108655531679236 ], [ 39.583745492483153, -4.112439711679261 ], [ 39.578740609483184, -4.119153578679234 ], [ 39.576299203483181, -4.122083265679239 ], [ 39.581120980483199, -4.121167738679222 ], [ 39.584111703483181, -4.119458754679275 ], [ 39.58789588248316, -4.119580824679249 ], [ 39.592534554483159, -4.116162855679252 ], [ 39.59711219148317, -4.115552504679275 ], [ 39.599309457483166, -4.113050062679238 ], [ 39.600896371483195, -4.110242445679265 ], [ 39.600713265483186, -4.106031019679224 ], [ 39.599492562483185, -4.102857191679223 ], [ 39.601689828483181, -4.099866468679241 ], [ 39.605290902483198, -4.098340589679256 ], [ 39.607305062483185, -4.094861586679261 ], [ 39.608525765483186, -4.090161879679275 ], [ 39.611699593483188, -4.094373304679269 ], [ 39.615911019483171, -4.098157484679237 ], [ 39.627690804483159, -4.110547621679248 ], [ 39.63031531648317, -4.113843519679224 ], [ 39.632329476483157, -4.118054945679265 ], [ 39.634709847483172, -4.120374281679236 ], [ 39.638494027483198, -4.121167738679222 ], [ 39.637334359483184, -4.124341566679223 ], [ 39.633489144483171, -4.126660902679251 ], [ 39.632695687483185, -4.129468519679224 ], [ 39.632329476483157, -4.133252699679249 ], [ 39.631291879483165, -4.136975843679241 ], [ 39.627507699483196, -4.144666273679266 ], [ 39.664739144483171, -4.168958265679239 ], [ 39.739324105483199, -4.198255140679239 ], [ 39.720098031483182, -4.242444593679241 ], [ 39.717534554483159, -4.24885328567922 ], [ 39.711919320483155, -4.261853773679266 ], [ 39.703923714483203, -4.279676039679262 ], [ 39.694341195483155, -4.301831800679227 ], [ 39.612493050483174, -4.488477308679253 ], [ 39.548345101483157, -4.57215650767927 ], [ 39.465093148483156, -4.665845472679226 ], [ 39.435491097483172, -4.698865492679263 ], [ 39.381536019483171, -4.759839613679222 ], [ 39.36914588248316, -4.767652113679222 ], [ 39.351323617483153, -4.777783949679249 ], [ 39.315129769483171, -4.801282484679237 ], [ 39.283696664483152, -4.758679945679265 ], [ 39.249516976483157, -4.716931898679266 ], [ 39.236943734483184, -4.702161390679239 ], [ 39.230718148483156, -4.695081312679238 ], [ 39.226140511483202, -4.689466078679234 ], [ 39.216741097483172, -4.679273207679219 ], [ 39.21234656648317, -4.677564222679226 ], [ 39.207524789483152, -4.678235609679237 ], [ 39.205144418483194, -4.675366957679219 ], [ 39.202519906483182, -4.669751722679226 ], [ 39.198918832483166, -4.668347914679262 ], [ 39.192937386483202, -4.66877516067922 ], [ 39.192143929483159, -4.663648207679219 ], [ 39.190740121483195, -4.659741957679219 ], [ 39.176518929483159, -4.650464613679222 ], [ 39.168096078483181, -4.643750746679248 ], [ 39.156743539483152, -4.636548597679226 ], [ 39.153691781483182, -4.634839613679222 ], [ 39.14594031648317, -4.629041273679266 ], [ 39.1409354334832, -4.625562269679224 ], [ 39.13031531648317, -4.618360121679248 ], [ 39.1253104334832, -4.615247328679234 ], [ 39.102727425483174, -4.598950941679223 ], [ 39.080510629483165, -4.583448011679255 ], [ 39.068913949483196, -4.575635511679255 ], [ 39.052312386483202, -4.563855726679267 ], [ 39.032536996483195, -4.550244886679255 ], [ 39.022710336483208, -4.543042738679222 ], [ 39.010930550483174, -4.535352308679253 ], [ 39.001103890483186, -4.527844984679237 ], [ 38.975530160483167, -4.510144789679262 ], [ 38.608342660483167, -4.253369886679255 ], [ 38.602544320483155, -4.249463636679255 ], [ 38.583135140483186, -4.235669691679223 ], [ 38.561894906483182, -4.221082289679262 ], [ 38.556890023483156, -4.217359144679224 ], [ 38.531133187483185, -4.199353773679266 ], [ 38.460515511483202, -4.150464613679222 ], [ 38.45313025748316, -4.144971449679249 ], [ 38.44672156648317, -4.140576918679247 ], [ 38.452886117483153, -4.138074476679267 ], [ 38.534734261483202, -4.109143812679238 ], [ 38.5510916834832, -4.103162367679263 ], [ 38.570134652483198, -4.096570570679265 ], [ 38.591924203483181, -4.088636000679233 ], [ 38.670720589483203, -4.060681898679266 ], [ 38.74609900748316, -4.033582289679262 ], [ 38.764104379483165, -4.026929457679219 ], [ 38.800542367483153, -4.014051039679262 ], [ 38.819097054483159, -4.007337172679232 ], [ 38.835088265483186, -4.000867445679265 ], [ 38.857121957483166, -3.993360121679249 ], [ 38.867314828483181, -3.989453871679249 ], [ 38.877324593483188, -3.986280043679248 ], [ 38.88171912548318, -3.984571058679254 ], [ 38.908940804483159, -3.974866468679242 ], [ 38.94672156648317, -3.962232191679224 ], [ 38.956120980483199, -3.940564711679262 ], [ 38.965520394483171, -3.919873793679248 ], [ 38.970891488483169, -3.90723951567924 ], [ 38.972905648483156, -3.903150160679221 ], [ 38.977910531483182, -3.891736586679262 ], [ 38.984929574483196, -3.876355726679268 ], [ 38.987493050483174, -3.870069105679253 ], [ 38.990911019483171, -3.862744886679256 ], [ 38.993718636483202, -3.855847914679263 ], [ 39.005925668483194, -3.828748304679269 ], [ 39.012090218483188, -3.814771254679275 ], [ 39.013494027483198, -3.811231214679257 ], [ 39.015141976483157, -3.807874281679236 ], [ 39.02094031648317, -3.794873793679248 ], [ 39.033086312483185, -3.766736586679262 ], [ 39.035527718483188, -3.761731703679235 ], [ 39.019109261483202, -3.750745375679234 ], [ 38.9924979334832, -3.734632093679242 ], [ 38.985539925483174, -3.730237562679239 ], [ 38.973332894483171, -3.722852308679254 ], [ 38.93109656648317, -3.69825514067924 ], [ 38.936528695483155, -3.690381605679253 ], [ 38.944341195483155, -3.677259047679232 ], [ 38.947087777483198, -3.673047621679249 ], [ 38.96570350048318, -3.641553480679253 ], [ 38.969121468483188, -3.636060316679224 ], [ 39.018498910483167, -3.664563734679238 ], [ 39.024907601483157, -3.668531019679225 ], [ 39.032903207483166, -3.67286451567924 ], [ 39.038701546483189, -3.676465589679257 ], [ 39.049932015483186, -3.683057386679256 ], [ 39.052922738483169, -3.684644300679228 ], [ 39.057134164483152, -3.686048109679238 ], [ 39.061711800483174, -3.669141371679249 ], [ 39.06390906648317, -3.661756117679264 ], [ 39.069341195483155, -3.641858656679236 ], [ 39.073491586483208, -3.627454359679238 ], [ 39.08148719148317, -3.596265394679225 ], [ 39.08289100048318, -3.59138258267922 ], [ 39.08789588248316, -3.572034437679239 ], [ 39.146123421483189, -3.571973402679252 ], [ 39.1760916834832, -3.571729261679256 ], [ 39.283330453483181, -3.572034437679239 ], [ 39.303105843483188, -3.571363050679228 ], [ 39.306523812483185, -3.569470961679262 ], [ 39.309941781483182, -3.569165785679221 ], [ 39.313725961483208, -3.568555433679254 ], [ 39.318913949483196, -3.566968519679225 ], [ 39.320928109483184, -3.570447523679267 ] ] ] } } +, +{ "type": "Feature", "id": 3, "properties": { "OBJECTID": 4, "ID_": 6731, "COUNTY_NAM": "KILIFI", "CONST_CODE": 13, "CONSTITUEN": "KALOLENI", "COUNTY_COD": 3, "Shape_Leng": 5.33308007101, "Shape_Area": 1.02533838151 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.711125863483169, -3.91114576567924 ], [ 39.706914437483185, -3.911573011679256 ], [ 39.702092660483167, -3.912366468679242 ], [ 39.69812537548318, -3.918469984679238 ], [ 39.695500863483169, -3.91645582467925 ], [ 39.693120492483153, -3.914136488679223 ], [ 39.6917166834832, -3.917249281679236 ], [ 39.691533578483181, -3.92146070767922 ], [ 39.69031287548318, -3.92536695767922 ], [ 39.686101449483196, -3.925550062679239 ], [ 39.681706918483194, -3.924756605679253 ], [ 39.676946175483174, -3.92426832467925 ], [ 39.67273475048318, -3.922559339679257 ], [ 39.656743539483152, -3.924451429679269 ], [ 39.6507010584832, -3.92536695767922 ], [ 39.647527230483199, -3.926160414679263 ], [ 39.643132699483196, -3.928235609679238 ], [ 39.6409354334832, -3.932141859679238 ], [ 39.643926156483182, -3.933545668679248 ], [ 39.64594031648317, -3.93653639067924 ], [ 39.649907601483157, -3.937573988679223 ], [ 39.650945199483196, -3.945874769679225 ], [ 39.653691781483182, -3.947461683679254 ], [ 39.647527230483199, -3.951856214679257 ], [ 39.64648963248316, -3.955274183679254 ], [ 39.649114144483171, -3.958936293679248 ], [ 39.644902718483188, -3.960279066679224 ], [ 39.641301644483171, -3.960034925679228 ], [ 39.63812781648317, -3.96137769967925 ], [ 39.631291879483165, -3.964734632679271 ], [ 39.627324593483188, -3.965467054679269 ], [ 39.620305550483174, -3.958936293679248 ], [ 39.611089242483153, -3.961255629679275 ], [ 39.608342660483167, -3.958264906679236 ], [ 39.601140511483202, -3.953260023679267 ], [ 39.596929086483208, -3.955457289679263 ], [ 39.5842948084832, -3.967847425679228 ], [ 39.583318246483195, -3.972364027679252 ], [ 39.572942269483171, -3.975965101679268 ], [ 39.57031775748316, -3.977735121679249 ], [ 39.570500863483169, -3.982129652679252 ], [ 39.575139535483167, -3.985974867679264 ], [ 39.569097054483159, -3.993543226679268 ], [ 39.566106332483166, -3.99067457467925 ], [ 39.562322152483198, -3.988843519679225 ], [ 39.558537972483172, -3.987561781679236 ], [ 39.555120004483165, -3.986646254679275 ], [ 39.551702035483167, -3.98786695767922 ], [ 39.548711312483185, -3.991040785679221 ], [ 39.546086800483174, -3.994947035679221 ], [ 39.542302621483195, -3.992932875679234 ], [ 39.540898812483185, -3.989942152679252 ], [ 39.545293343483188, -3.981763441679224 ], [ 39.546514046483189, -3.978345472679226 ], [ 39.548345101483157, -3.970532972679226 ], [ 39.548894418483194, -3.965772230679253 ], [ 39.547124398483156, -3.962537367679264 ], [ 39.545903695483155, -3.959851820679265 ], [ 39.53992225048318, -3.959363539679263 ], [ 39.534490121483195, -3.956250746679249 ], [ 39.531926644483171, -3.954236586679262 ], [ 39.528935921483189, -3.94965894967925 ], [ 39.528325570483155, -3.946057875679234 ], [ 39.529729379483165, -3.942578871679249 ], [ 39.53070594148317, -3.939466078679235 ], [ 39.53070594148317, -3.935742933679254 ], [ 39.527715218483188, -3.93263014067924 ], [ 39.523686898483156, -3.931470472679226 ], [ 39.521916879483165, -3.927259047679232 ], [ 39.520696175483174, -3.923230726679268 ], [ 39.522099984483184, -3.919080336679262 ], [ 39.519292367483153, -3.916761000679234 ], [ 39.516301644483171, -3.91505201567924 ], [ 39.51312781648317, -3.913953382679271 ], [ 39.507939828483181, -3.908155043679248 ], [ 39.502934945483155, -3.906934339679257 ], [ 39.500737679483159, -3.904676039679263 ], [ 39.499333871483195, -3.897046644679225 ], [ 39.497930062483185, -3.89356764067924 ], [ 39.498113168483194, -3.890149672679232 ], [ 39.494695199483196, -3.886731703679235 ], [ 39.4905448084832, -3.884534437679239 ], [ 39.48633338248316, -3.883374769679225 ], [ 39.483891976483157, -3.880567152679252 ], [ 39.480718148483156, -3.876477797679232 ], [ 39.47852088248316, -3.87403639067924 ], [ 39.475102914483152, -3.871350843679242 ], [ 39.471135629483165, -3.865369398679267 ], [ 39.468328011483202, -3.861951429679269 ], [ 39.464910043483194, -3.859754164679263 ], [ 39.459111703483181, -3.857129652679252 ], [ 39.454717171483189, -3.85645826567924 ], [ 39.451543343483188, -3.855664808679254 ], [ 39.449712289483152, -3.852674086679262 ], [ 39.436894906483182, -3.83942945767922 ], [ 39.434941781483182, -3.835156996679249 ], [ 39.430730355483199, -3.832959730679253 ], [ 39.425908578483181, -3.829541761679256 ], [ 39.422307504483165, -3.828076918679248 ], [ 39.420720589483203, -3.824170668679248 ], [ 39.415532601483157, -3.822461683679254 ], [ 39.411687386483202, -3.824964125679234 ], [ 39.407903207483166, -3.825879652679252 ], [ 39.404546273483156, -3.823743422679232 ], [ 39.401128304483159, -3.827344496679249 ], [ 39.398137582483166, -3.825940687679239 ], [ 39.396306527483198, -3.822644789679263 ], [ 39.393926156483182, -3.820081312679239 ], [ 39.390141976483157, -3.818860609679238 ], [ 39.38672400748316, -3.81544264067924 ], [ 39.3831229334832, -3.811231214679257 ], [ 39.380132211483208, -3.808545668679248 ], [ 39.381291879483165, -3.803540785679221 ], [ 39.381902230483199, -3.799573500679234 ], [ 39.378728402483198, -3.796582777679252 ], [ 39.379888070483155, -3.792859632679271 ], [ 39.382512582483166, -3.790540297679232 ], [ 39.383916390483186, -3.788037855679253 ], [ 39.387517464483203, -3.787183363679223 ], [ 39.390325082483166, -3.784436781679236 ], [ 39.38953162548318, -3.778150160679221 ], [ 39.385137093483188, -3.776868422679232 ], [ 39.384099496483195, -3.77387769967925 ], [ 39.387517464483203, -3.77107008267922 ], [ 39.392095101483157, -3.769849379679275 ], [ 39.3928885584832, -3.765576918679248 ], [ 39.395513070483155, -3.755139906679236 ], [ 39.394292367483153, -3.751966078679235 ], [ 39.392522347483172, -3.749463636679256 ], [ 39.391911996483195, -3.74653394967925 ], [ 39.392339242483153, -3.743360121679249 ], [ 39.391911996483195, -3.740064222679226 ], [ 39.388738168483194, -3.73927076567924 ], [ 39.385930550483174, -3.741040785679221 ], [ 39.381291879483165, -3.741834242679264 ], [ 39.375920785483167, -3.742383558679254 ], [ 39.367925179483159, -3.737256605679253 ], [ 39.36414100048318, -3.736280043679248 ], [ 39.360112679483159, -3.732678968679242 ], [ 39.358708871483195, -3.729383070679265 ], [ 39.357915414483152, -3.72614820767922 ], [ 39.359136117483153, -3.722730238679223 ], [ 39.356938851483157, -3.718579847679226 ], [ 39.35492469148317, -3.715650160679221 ], [ 39.353703988483169, -3.711438734679238 ], [ 39.350286019483171, -3.707776625679234 ], [ 39.347722543483194, -3.702466566679224 ], [ 39.348332894483171, -3.697949964679257 ], [ 39.349126351483157, -3.694531996679249 ], [ 39.352544320483155, -3.69434889067924 ], [ 39.353703988483169, -3.691052992679264 ], [ 39.354314339483203, -3.68067701567924 ], [ 39.353887093483188, -3.676343519679225 ], [ 39.355290902483198, -3.673474867679264 ], [ 39.355718148483156, -3.670178968679242 ], [ 39.355107796483189, -3.667249281679236 ], [ 39.354741586483208, -3.66364820767922 ], [ 39.356145394483171, -3.660352308679254 ], [ 39.356938851483157, -3.656568129679275 ], [ 39.355901254483165, -3.653272230679253 ], [ 39.355290902483198, -3.650037367679264 ], [ 39.353093636483202, -3.642530043679248 ], [ 39.350713265483186, -3.639783461679262 ], [ 39.346929086483208, -3.639356214679257 ], [ 39.344487679483159, -3.635572035679221 ], [ 39.346135629483165, -3.629956800679228 ], [ 39.347722543483194, -3.622266371679249 ], [ 39.34711219148317, -3.618970472679226 ], [ 39.346929086483208, -3.611341078679235 ], [ 39.347722543483194, -3.607740004679275 ], [ 39.347722543483194, -3.600843031679236 ], [ 39.346135629483165, -3.598279554679269 ], [ 39.335332406483182, -3.592359144679225 ], [ 39.330510629483165, -3.590955336679262 ], [ 39.328313363483169, -3.58833082467925 ], [ 39.325688851483157, -3.586743910679221 ], [ 39.324346078483181, -3.584058363679223 ], [ 39.32172156648317, -3.580640394679225 ], [ 39.318913949483196, -3.577771742679264 ], [ 39.319341195483155, -3.574536879679275 ], [ 39.320928109483184, -3.570447523679267 ], [ 39.318913949483196, -3.566968519679225 ], [ 39.314702523483156, -3.568067152679252 ], [ 39.308293832483166, -3.569043714679257 ], [ 39.30414344148317, -3.570935804679269 ], [ 39.289495004483165, -3.57185133267922 ], [ 39.283330453483181, -3.572034437679239 ], [ 39.1760916834832, -3.571729261679256 ], [ 39.08789588248316, -3.572034437679239 ], [ 39.09570838248316, -3.541761000679234 ], [ 39.10492469148317, -3.507031996679249 ], [ 39.107915414483152, -3.492566664679263 ], [ 39.110112679483159, -3.48396070767922 ], [ 39.111089242483153, -3.481031019679225 ], [ 39.124700082483166, -3.428662855679253 ], [ 39.129094613483169, -3.41254957467925 ], [ 39.137700570483155, -3.379834730679253 ], [ 39.142339242483153, -3.361280043679248 ], [ 39.146916879483165, -3.345532972679226 ], [ 39.178105843483188, -3.226941664679263 ], [ 39.197515023483156, -3.153943617679264 ], [ 39.202092660483167, -3.136060316679224 ], [ 39.205693734483184, -3.123242933679254 ], [ 39.20789100048318, -3.114148695679265 ], [ 39.208928597483172, -3.110730726679268 ], [ 39.213933480483199, -3.091565687679239 ], [ 39.217534554483159, -3.078382093679242 ], [ 39.219487679483159, -3.074781019679225 ], [ 39.22351600048318, -3.068250257679271 ], [ 39.229131234483184, -3.062329847679226 ], [ 39.249944222483172, -3.03864820767922 ], [ 39.280095589483203, -3.003064711679262 ], [ 39.363530648483156, -2.90974195767922 ], [ 39.506108773483156, -2.750684339679257 ], [ 39.538945687483185, -2.71333082467925 ], [ 39.604131234483184, -2.639783461679262 ], [ 39.622685921483189, -2.618543226679268 ], [ 39.668889535483167, -2.566480238679223 ], [ 39.672490609483184, -2.562635023679267 ], [ 39.67773963248316, -2.556165297679232 ], [ 39.722905648483156, -2.50544508267922 ], [ 39.7249198084832, -2.50294264067924 ], [ 39.795903695483155, -2.421948988679223 ], [ 39.855718148483156, -2.354077894679225 ], [ 39.881536019483171, -2.324170668679248 ], [ 39.8928885584832, -2.311658461679262 ], [ 39.97211219148317, -2.423841078679235 ], [ 39.98828650748316, -2.447034437679239 ], [ 40.179936898483156, -2.71833570767922 ], [ 40.185735238483169, -2.727735121679249 ], [ 40.188298714483203, -2.730176527679252 ], [ 40.192327035483167, -2.736157972679226 ], [ 40.188115609483184, -2.734265882679271 ], [ 40.188542855483199, -2.737439711679262 ], [ 40.191533578483181, -2.739575941679224 ], [ 40.194524300483174, -2.740857679679269 ], [ 40.19531775748316, -2.743665297679232 ], [ 40.193486703483181, -2.74763258267922 ], [ 40.190923226483157, -2.753980238679223 ], [ 40.188725961483208, -2.761548597679226 ], [ 40.186345589483203, -2.768140394679225 ], [ 40.184941781483182, -2.772962172679232 ], [ 40.185735238483169, -2.776074964679257 ], [ 40.187688363483169, -2.778150160679221 ], [ 40.184941781483182, -2.798047621679249 ], [ 40.184697640483186, -2.802075941679224 ], [ 40.186711800483174, -2.805432875679234 ], [ 40.185735238483169, -2.819837172679232 ], [ 40.184514535483167, -2.825940687679239 ], [ 40.183293832483166, -2.82966383267922 ], [ 40.181890023483156, -2.835584242679264 ], [ 40.180730355483199, -2.839734632679271 ], [ 40.179509652483198, -2.842542250679234 ], [ 40.176518929483159, -2.848279554679269 ], [ 40.174932015483186, -2.851880629679275 ], [ 40.173100961483208, -2.85505445767922 ], [ 40.172124398483156, -2.858472425679228 ], [ 40.172307504483165, -2.86176832467925 ], [ 40.172917855483199, -2.864942152679252 ], [ 40.171514046483189, -2.868665297679232 ], [ 40.172307504483165, -2.871839125679234 ], [ 40.172124398483156, -2.875562269679225 ], [ 40.17133094148317, -2.880078871679249 ], [ 40.173100961483208, -2.882642347679226 ], [ 40.174321664483152, -2.886853773679267 ], [ 40.17273475048318, -2.895459730679253 ], [ 40.171697152483198, -2.898145277679252 ], [ 40.171514046483189, -2.901441175679228 ], [ 40.168889535483167, -2.908032972679226 ], [ 40.167729867483153, -2.912061293679248 ], [ 40.165898812483185, -2.919751722679226 ], [ 40.164739144483171, -2.925733168679248 ], [ 40.164495004483165, -2.929761488679223 ], [ 40.164495004483165, -2.93653639067924 ], [ 40.165715707483166, -2.940259535679221 ], [ 40.165532601483157, -2.948865492679264 ], [ 40.167729867483153, -2.953443129679275 ], [ 40.171697152483198, -2.955945570679265 ], [ 40.173528207483166, -2.958448011679256 ], [ 40.174932015483186, -2.961560804679269 ], [ 40.179509652483198, -2.968579847679226 ], [ 40.182134164483152, -2.972547132679271 ], [ 40.184331429483159, -2.974866468679242 ], [ 40.186345589483203, -2.978040297679232 ], [ 40.187688363483169, -2.98145826567924 ], [ 40.190129769483171, -2.985852797679232 ], [ 40.195134652483198, -2.986829359679238 ], [ 40.19812537548318, -2.986157972679226 ], [ 40.200688851483157, -2.99067457467925 ], [ 40.204106820483155, -2.992444593679242 ], [ 40.207707894483171, -2.993543226679268 ], [ 40.213689339483203, -2.99317701567924 ], [ 40.217534554483159, -2.991468031679236 ], [ 40.223332894483171, -2.987683851679268 ], [ 40.226323617483153, -2.984265882679271 ], [ 40.229741586483208, -2.980969984679238 ], [ 40.233525765483186, -2.979261000679234 ], [ 40.237126839483203, -2.978467543679248 ], [ 40.239934457483166, -2.979871351679268 ], [ 40.240117562483185, -2.982740004679275 ], [ 40.240727914483152, -2.985730726679268 ], [ 40.240117562483185, -2.989942152679252 ], [ 40.23828650748316, -2.994153578679235 ], [ 40.233891976483157, -2.993238050679228 ], [ 40.230718148483156, -2.99458082467925 ], [ 40.22852088248316, -2.997144300679228 ], [ 40.226323617483153, -2.999341566679224 ], [ 40.222722543483194, -3.001966078679235 ], [ 40.215093148483156, -3.003369886679256 ], [ 40.211308968483188, -3.004651625679234 ], [ 40.207707894483171, -3.006360609679238 ], [ 40.20453406648317, -3.008679945679265 ], [ 40.201543343483188, -3.011548597679226 ], [ 40.199346078483181, -3.014539320679265 ], [ 40.197942269483171, -3.017041761679256 ], [ 40.19672156648317, -3.020032484679238 ], [ 40.196538461483208, -3.023572523679267 ], [ 40.19672156648317, -3.027661879679275 ], [ 40.19531775748316, -3.031079847679226 ], [ 40.191106332483166, -3.032056410679221 ], [ 40.186345589483203, -3.03364332467925 ], [ 40.182317269483171, -3.035779554679269 ], [ 40.17969275748316, -3.037732679679269 ], [ 40.176946175483174, -3.040174086679262 ], [ 40.173711312483185, -3.044080336679262 ], [ 40.171697152483198, -3.048169691679224 ], [ 40.170720589483203, -3.052075941679224 ], [ 40.170293343483188, -3.056958754679275 ], [ 40.170293343483188, -3.061170179679269 ], [ 40.173345101483157, -3.06403883267922 ], [ 40.17468787548318, -3.068250257679271 ], [ 40.172307504483165, -3.072583754679275 ], [ 40.165105355483199, -3.076062757679271 ], [ 40.160100472483172, -3.080274183679254 ], [ 40.158330453483181, -3.082532484679238 ], [ 40.15710975048318, -3.085279066679224 ], [ 40.156316293483194, -3.089856703679235 ], [ 40.158086312483185, -3.093640882679271 ], [ 40.159490121483195, -3.098157484679238 ], [ 40.160100472483172, -3.103833754679275 ], [ 40.161504281483182, -3.112073500679234 ], [ 40.162908089483203, -3.123731214679257 ], [ 40.163701546483189, -3.126844007679271 ], [ 40.163945687483185, -3.129834730679253 ], [ 40.163091195483155, -3.134046156679236 ], [ 40.159734261483202, -3.138928968679242 ], [ 40.155522836483208, -3.144361097679226 ], [ 40.153508675483174, -3.147534925679228 ], [ 40.14929725048318, -3.155469496679249 ], [ 40.144109261483202, -3.166272718679242 ], [ 40.141301644483171, -3.167859632679271 ], [ 40.139897836483208, -3.171765882679271 ], [ 40.137700570483155, -3.174146254679275 ], [ 40.135930550483174, -3.176465589679257 ], [ 40.133733285483167, -3.178662855679253 ], [ 40.128728402483198, -3.185437757679271 ], [ 40.125493539483152, -3.190381605679253 ], [ 40.122319711483208, -3.198072035679221 ], [ 40.12109900748316, -3.203260023679267 ], [ 40.121343148483156, -3.209363539679263 ], [ 40.123113168483194, -3.213574964679257 ], [ 40.1253104334832, -3.216443617679264 ], [ 40.126714242483153, -3.219861586679262 ], [ 40.129094613483169, -3.226575453679235 ], [ 40.128118050483174, -3.231031019679225 ], [ 40.127324593483188, -3.240735609679238 ], [ 40.126531136483202, -3.247876722679226 ], [ 40.12891150748316, -3.250379164679263 ], [ 40.131108773483156, -3.253430922679232 ], [ 40.132695687483185, -3.256055433679254 ], [ 40.131536019483171, -3.259229261679256 ], [ 40.130742562483185, -3.262952406679236 ], [ 40.128728402483198, -3.266431410679221 ], [ 40.126714242483153, -3.26856764067924 ], [ 40.125127328483181, -3.271436293679248 ], [ 40.124089730483199, -3.274671156679236 ], [ 40.125493539483152, -3.278577406679236 ], [ 40.123540414483152, -3.282178480679253 ], [ 40.121892464483203, -3.285779554679269 ], [ 40.12109900748316, -3.288831312679239 ], [ 40.119512093483188, -3.29145582467925 ], [ 40.116704476483157, -3.293469984679238 ], [ 40.11414100048318, -3.296582777679252 ], [ 40.108098519483171, -3.301648695679265 ], [ 40.085332406483182, -3.315869886679256 ], [ 40.081731332483166, -3.317334730679253 ], [ 40.077703011483202, -3.318738539679263 ], [ 40.073308480483199, -3.320935804679269 ], [ 40.07031775748316, -3.324048597679226 ], [ 40.063725961483208, -3.328748304679269 ], [ 40.061101449483196, -3.331555922679232 ], [ 40.054936898483156, -3.336133558679254 ], [ 40.051946175483174, -3.337842543679248 ], [ 40.043340218483188, -3.341748793679248 ], [ 40.040532601483157, -3.342847425679228 ], [ 40.038091195483155, -3.34473951567924 ], [ 40.037724984483184, -3.347730238679223 ], [ 40.034917367483153, -3.349134047679232 ], [ 40.02930213248316, -3.353162367679264 ], [ 40.026128304483159, -3.353162367679264 ], [ 40.023503793483194, -3.356336195679265 ], [ 40.015508187483185, -3.361341078679235 ], [ 40.007512582483166, -3.363172132679271 ], [ 40.003545296483189, -3.366162855679253 ], [ 39.992742074483196, -3.375745375679234 ], [ 39.984929574483196, -3.381055433679254 ], [ 39.977727425483174, -3.38715894967925 ], [ 39.97351600048318, -3.389234144679225 ], [ 39.969731820483155, -3.387830336679262 ], [ 39.970098031483182, -3.384534437679239 ], [ 39.971318734483184, -3.381360609679238 ], [ 39.971929086483208, -3.376844007679271 ], [ 39.9749198084832, -3.374829847679226 ], [ 39.978703988483169, -3.371472914679263 ], [ 39.983098519483171, -3.369031507679271 ], [ 39.987126839483203, -3.370374281679236 ], [ 39.995488656483182, -3.368665297679232 ], [ 39.99609900748316, -3.365369398679267 ], [ 39.992131722483172, -3.366040785679221 ], [ 39.991887582483166, -3.360974867679264 ], [ 39.990117562483185, -3.357678968679242 ], [ 39.9924979334832, -3.353650648679267 ], [ 39.991704476483157, -3.350537855679253 ], [ 39.98828650748316, -3.341870863679223 ], [ 39.985723031483182, -3.33833082467925 ], [ 39.983708871483195, -3.334180433679254 ], [ 39.984929574483196, -3.329846937679239 ], [ 39.987493050483174, -3.326062757679271 ], [ 39.994939339483203, -3.320874769679225 ], [ 39.995488656483182, -3.316480238679223 ], [ 39.990300668483194, -3.317761976679268 ], [ 39.98633338248316, -3.32075269967925 ], [ 39.977910531483182, -3.320874769679225 ], [ 39.973699105483199, -3.321668226679268 ], [ 39.970891488483169, -3.322766859679238 ], [ 39.965520394483171, -3.325635511679256 ], [ 39.96234656648317, -3.326856214679257 ], [ 39.958318246483195, -3.328137953679235 ], [ 39.953923714483203, -3.330030043679248 ], [ 39.951116097483172, -3.331555922679232 ], [ 39.949712289483152, -3.334363539679263 ], [ 39.949712289483152, -3.337964613679223 ], [ 39.952703011483202, -3.340772230679253 ], [ 39.955144418483194, -3.342664320679265 ], [ 39.953740609483184, -3.34614332467925 ], [ 39.949712289483152, -3.348462660679221 ], [ 39.94672156648317, -3.349439222679226 ], [ 39.942693246483195, -3.348035414679263 ], [ 39.939702523483156, -3.348157484679238 ], [ 39.93750525748316, -3.351270277679252 ], [ 39.93750525748316, -3.356336195679265 ], [ 39.937932504483165, -3.363172132679271 ], [ 39.939702523483156, -3.36677320767922 ], [ 39.934697640483186, -3.372937757679271 ], [ 39.938725961483208, -3.375257093679242 ], [ 39.943303597483172, -3.375867445679265 ], [ 39.943486703483181, -3.380567152679252 ], [ 39.94672156648317, -3.379651625679234 ], [ 39.948918832483166, -3.381543714679257 ], [ 39.950688851483157, -3.385083754679275 ], [ 39.95453406648317, -3.387952406679236 ], [ 39.9592948084832, -3.389356214679257 ], [ 39.965337289483152, -3.391675550679228 ], [ 39.966130746483195, -3.395459730679253 ], [ 39.965337289483152, -3.398633558679254 ], [ 39.965886605483199, -3.402051527679252 ], [ 39.968328011483202, -3.403943617679264 ], [ 39.967900765483186, -3.407483656679236 ], [ 39.96570350048318, -3.411328871679249 ], [ 39.963689339483203, -3.414380629679275 ], [ 39.961492074483196, -3.418531019679225 ], [ 39.960332406483182, -3.422254164679263 ], [ 39.957524789483152, -3.42817457467925 ], [ 39.95648719148317, -3.43263014067924 ], [ 39.95453406648317, -3.437146742679264 ], [ 39.948918832483166, -3.448438246679249 ], [ 39.947331918483194, -3.45216139067924 ], [ 39.945134652483198, -3.456250746679249 ], [ 39.942327035483167, -3.460340101679268 ], [ 39.940129769483171, -3.465467054679269 ], [ 39.93750525748316, -3.472852308679254 ], [ 39.936101449483196, -3.475354750679234 ], [ 39.934941781483182, -3.478467543679248 ], [ 39.933537972483172, -3.48145826567924 ], [ 39.931890023483156, -3.484632093679242 ], [ 39.927312386483202, -3.491651136679256 ], [ 39.925542367483153, -3.495862562679239 ], [ 39.925542367483153, -3.501355726679268 ], [ 39.922124398483156, -3.512342054679269 ], [ 39.921086800483174, -3.516370375679234 ], [ 39.919316781483182, -3.520948011679256 ], [ 39.917729867483153, -3.525647718679242 ], [ 39.913091195483155, -3.537366468679242 ], [ 39.910893929483159, -3.544568617679264 ], [ 39.906926644483171, -3.556165297679232 ], [ 39.901921761483202, -3.569165785679221 ], [ 39.899907601483157, -3.573377211679262 ], [ 39.895696175483174, -3.580640394679225 ], [ 39.890325082483166, -3.594068129679275 ], [ 39.887090218483188, -3.600965101679268 ], [ 39.885320199483196, -3.605359632679271 ], [ 39.882939828483181, -3.610181410679221 ], [ 39.881108773483156, -3.613050062679239 ], [ 39.879094613483169, -3.615735609679238 ], [ 39.877324593483188, -3.618665297679232 ], [ 39.874700082483166, -3.624646742679264 ], [ 39.873113168483194, -3.627637464679257 ], [ 39.871709359483184, -3.631482679679269 ], [ 39.869328988483169, -3.635083754679275 ], [ 39.865911019483171, -3.637464125679234 ], [ 39.861516488483169, -3.637342054679269 ], [ 39.857915414483152, -3.636548597679226 ], [ 39.853703988483169, -3.634961683679254 ], [ 39.849126351483157, -3.634534437679239 ], [ 39.844914925483174, -3.63325269967925 ], [ 39.842290414483152, -3.629834730679253 ], [ 39.839116586483208, -3.626782972679226 ], [ 39.832707894483171, -3.624158461679262 ], [ 39.829900277483198, -3.621778089679257 ], [ 39.827519906483182, -3.61958082467925 ], [ 39.824101937483185, -3.612378675679228 ], [ 39.819890511483202, -3.609265882679271 ], [ 39.816899789483152, -3.607678968679242 ], [ 39.81390906648317, -3.607068617679264 ], [ 39.809697640483186, -3.606763441679224 ], [ 39.804509652483198, -3.607129652679252 ], [ 39.7991385584832, -3.606336195679265 ], [ 39.795293343483188, -3.607251722679226 ], [ 39.791509164483152, -3.608472425679228 ], [ 39.78851844148317, -3.611035902679252 ], [ 39.784917367483153, -3.613233168679248 ], [ 39.789311898483156, -3.615430433679254 ], [ 39.79492713248316, -3.614636976679268 ], [ 39.80414344148317, -3.614759047679232 ], [ 39.805120004483165, -3.61817701567924 ], [ 39.806890023483156, -3.621045668679248 ], [ 39.809941781483182, -3.623731214679257 ], [ 39.810674281483152, -3.624000622679265 ], [ 39.811016736483161, -3.624654401679269 ], [ 39.810954472483154, -3.625432710679267 ], [ 39.810549751483158, -3.626024224679274 ], [ 39.810394090483207, -3.626864797679222 ], [ 39.811265795483159, -3.628981796679231 ], [ 39.811545986483161, -3.630382751679239 ], [ 39.81145258948316, -3.63225069167925 ], [ 39.810985604483157, -3.632157294679249 ], [ 39.810144068483162, -3.631407394679233 ], [ 39.809864840483208, -3.63056954567924 ], [ 39.809055399483206, -3.629573310679238 ], [ 39.8085572824832, -3.629230854679239 ], [ 39.808432753483196, -3.628608208679228 ], [ 39.808090297483197, -3.628016693679232 ], [ 39.807529915483194, -3.627611973679226 ], [ 39.805913461483208, -3.627637464679257 ], [ 39.80273963248316, -3.628430922679232 ], [ 39.799638213483199, -3.629584938679219 ], [ 39.798750597483199, -3.630227089679242 ], [ 39.796384539483192, -3.630756339679241 ], [ 39.794143011483179, -3.630009163679237 ], [ 39.793191435483202, -3.628472925679265 ], [ 39.792119516483176, -3.624158461679262 ], [ 39.791749433483169, -3.62318558567927 ], [ 39.790914590483162, -3.622907304679249 ], [ 39.786386199483154, -3.623059094679267 ], [ 39.786588585483166, -3.623539761679243 ], [ 39.786512691483203, -3.624349306679225 ], [ 39.786942761483196, -3.624779376679275 ], [ 39.788055885483168, -3.624931166679236 ], [ 39.788232973483154, -3.62563951867924 ], [ 39.788030587483199, -3.626145483679242 ], [ 39.788701546483189, -3.626660902679252 ], [ 39.789118413483202, -3.627865766679239 ], [ 39.789725572483171, -3.627562187679249 ], [ 39.790256835483198, -3.627663380679227 ], [ 39.790788099483159, -3.628472925679265 ], [ 39.791749433483169, -3.628599416679268 ], [ 39.791268766483192, -3.629434259679275 ], [ 39.791445854483179, -3.630522085679221 ], [ 39.791218170483198, -3.63155931467924 ], [ 39.791875925483161, -3.632191771679235 ], [ 39.792053013483205, -3.632874824679224 ], [ 39.792693777483173, -3.633652224679228 ], [ 39.793849190483165, -3.633633773679268 ], [ 39.79492713248316, -3.63575514067924 ], [ 39.79633094148317, -3.63966139067924 ], [ 39.799321664483152, -3.642774183679254 ], [ 39.803105843483188, -3.643262464679257 ], [ 39.806890023483156, -3.646131117679264 ], [ 39.811528695483155, -3.648267347679226 ], [ 39.817143929483159, -3.648084242679264 ], [ 39.821294320483155, -3.646558363679223 ], [ 39.822942269483171, -3.643262464679257 ], [ 39.829106820483155, -3.638074476679268 ], [ 39.8342948084832, -3.636365492679264 ], [ 39.838689339483203, -3.633679945679265 ], [ 39.841924203483181, -3.636670668679248 ], [ 39.845525277483198, -3.638135511679256 ], [ 39.849736703483181, -3.637342054679269 ], [ 39.854497445483155, -3.639234144679225 ], [ 39.857488168483194, -3.640637953679235 ], [ 39.860723031483182, -3.64106519967925 ], [ 39.862920296483189, -3.643750746679249 ], [ 39.86414100048318, -3.646436293679248 ], [ 39.865727914483152, -3.649060804679269 ], [ 39.8674979334832, -3.65388258267922 ], [ 39.868901742483153, -3.663159925679228 ], [ 39.868901742483153, -3.668653089679257 ], [ 39.868108285483167, -3.673169691679224 ], [ 39.866338265483186, -3.67677076567924 ], [ 39.863713754483165, -3.678540785679221 ], [ 39.866338265483186, -3.679944593679242 ], [ 39.868535531483182, -3.681836683679254 ], [ 39.869512093483188, -3.686658461679262 ], [ 39.869695199483196, -3.692884047679232 ], [ 39.870488656483182, -3.696057875679234 ], [ 39.870305550483174, -3.699536879679275 ], [ 39.864934457483166, -3.710767347679226 ], [ 39.862309945483155, -3.713452894679225 ], [ 39.861516488483169, -3.721631605679253 ], [ 39.859502328483181, -3.724134047679232 ], [ 39.8577323084832, -3.727368910679221 ], [ 39.85632850048318, -3.731641371679249 ], [ 39.85492469148317, -3.740979750679234 ], [ 39.85352088248316, -3.744641859679238 ], [ 39.851140511483202, -3.747937757679271 ], [ 39.849492562483185, -3.751355726679268 ], [ 39.848943246483195, -3.754163343679242 ], [ 39.846745980483199, -3.761365492679264 ], [ 39.844914925483174, -3.764966566679224 ], [ 39.844121468483188, -3.769177992679264 ], [ 39.843144906483182, -3.776746351679268 ], [ 39.841741097483172, -3.77973707467925 ], [ 39.840337289483152, -3.78474195767922 ], [ 39.835515511483202, -3.799329359679238 ], [ 39.831731332483166, -3.807935316679224 ], [ 39.830693734483184, -3.812268812679239 ], [ 39.830327523483156, -3.815564711679262 ], [ 39.830327523483156, -3.819165785679221 ], [ 39.828923714483203, -3.825879652679252 ], [ 39.824712289483152, -3.835156996679249 ], [ 39.820745004483165, -3.842359144679225 ], [ 39.817937386483202, -3.847852308679254 ], [ 39.816106332483166, -3.851880629679275 ], [ 39.813725961483208, -3.858655531679236 ], [ 39.811528695483155, -3.862073500679234 ], [ 39.810491097483172, -3.86567457467925 ], [ 39.808293832483166, -3.86958082467925 ], [ 39.806706918483194, -3.873365004679275 ], [ 39.804936898483156, -3.875867445679265 ], [ 39.80273963248316, -3.879773695679265 ], [ 39.799504769483171, -3.886548597679226 ], [ 39.798345101483157, -3.889539320679265 ], [ 39.796086800483174, -3.892652113679223 ], [ 39.794133675483174, -3.895764906679236 ], [ 39.791936410483167, -3.900281507679271 ], [ 39.78992225048318, -3.903760511679256 ], [ 39.787908089483203, -3.907666761679256 ], [ 39.786504281483182, -3.91114576567924 ], [ 39.784917367483153, -3.917432386679256 ], [ 39.7835135584832, -3.921277601679268 ], [ 39.781743539483152, -3.925061781679236 ], [ 39.780095589483203, -3.92927320767922 ], [ 39.778935921483189, -3.933667738679223 ], [ 39.776738656483182, -3.938672621679249 ], [ 39.774541390483186, -3.942456800679228 ], [ 39.771733773483156, -3.946240980679253 ], [ 39.76953650748316, -3.948865492679264 ], [ 39.7659354334832, -3.952649672679232 ], [ 39.761113656483182, -3.953443129679275 ], [ 39.757512582483166, -3.954846937679239 ], [ 39.755132211483208, -3.956677992679264 ], [ 39.752324593483188, -3.957959730679253 ], [ 39.749089730483199, -3.957166273679267 ], [ 39.74609900748316, -3.956677992679264 ], [ 39.742742074483196, -3.954969007679271 ], [ 39.73633338248316, -3.950147230679253 ], [ 39.733342660483167, -3.951428968679242 ], [ 39.730290902483198, -3.95356519967925 ], [ 39.726140511483202, -3.953748304679269 ], [ 39.717900765483186, -3.952466566679224 ], [ 39.715093148483156, -3.951673109679238 ], [ 39.71289588248316, -3.94965894967925 ], [ 39.711125863483169, -3.947278578679235 ], [ 39.7092948084832, -3.943982679679269 ], [ 39.709538949483196, -3.939832289679263 ], [ 39.7092948084832, -3.936963636679256 ], [ 39.70648719148317, -3.935254652679252 ], [ 39.704106820483155, -3.933545668679248 ], [ 39.703496468483188, -3.929944593679242 ], [ 39.701543343483188, -3.926831800679228 ], [ 39.702886117483153, -3.923535902679252 ], [ 39.705510629483165, -3.919263441679224 ], [ 39.709111703483181, -3.915479261679256 ], [ 39.711125863483169, -3.91114576567924 ] ], [ [ 39.711125863483169, -3.91114576567924 ], [ 39.714543832483166, -3.907544691679224 ], [ 39.715886605483199, -3.905042250679234 ], [ 39.716130746483195, -3.901258070679265 ], [ 39.712102425483174, -3.900464613679223 ], [ 39.709538949483196, -3.902539808679254 ], [ 39.709722054483159, -3.906568129679275 ], [ 39.711125863483169, -3.91114576567924 ] ] ] } } +, +{ "type": "Feature", "id": 4, "properties": { "OBJECTID": 5, "ID_": 5806, "COUNTY_NAM": "TANA RIVER", "CONST_CODE": 19, "CONSTITUEN": "GALOLE", "COUNTY_COD": 4, "Shape_Leng": 10.2804493709, "Shape_Area": 3.18421263617 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.028142464483203, -0.003980238679221 ], [ 39.036321175483174, -0.004163343679241 ], [ 39.040288461483208, -0.005384047679231 ], [ 39.043523324483196, -0.005445082679219 ], [ 39.04773475048318, -0.00697096167926 ], [ 39.052312386483202, -0.007459242679263 ], [ 39.056890023483156, -0.007276136679254 ], [ 39.064702523483156, -0.00575025767927 ], [ 39.068913949483196, -0.005384047679231 ], [ 39.072331918483194, -0.005384047679231 ], [ 39.081304086483208, -0.006848890679239 ], [ 39.08734656648317, -0.008863050679227 ], [ 39.091130746483195, -0.010633070679264 ], [ 39.095098031483182, -0.013135511679254 ], [ 39.098943246483195, -0.01673658667926 ], [ 39.111516488483169, -0.034558851679267 ], [ 39.122136605483199, -0.047437269679224 ], [ 39.126103890483186, -0.052564222679225 ], [ 39.131536019483171, -0.058850843679241 ], [ 39.134709847483172, -0.063062269679224 ], [ 39.139714730483199, -0.068982679679268 ], [ 39.148503793483194, -0.076734144679224 ], [ 39.152287972483172, -0.079175550679227 ], [ 39.155889046483189, -0.080762464679256 ], [ 39.159307015483186, -0.082044203679234 ], [ 39.168706429483159, -0.083570082679219 ], [ 39.173100961483208, -0.084729750679233 ], [ 39.186345589483203, -0.09065016067922 ], [ 39.192143929483159, -0.092481214679256 ], [ 39.197515023483156, -0.093030531679235 ], [ 39.202336800483174, -0.092542250679233 ], [ 39.212712777483198, -0.090039808679253 ], [ 39.217534554483159, -0.089063246679248 ], [ 39.225530160483167, -0.087964613679221 ], [ 39.228703988483169, -0.087842543679246 ], [ 39.231938851483157, -0.087842543679246 ], [ 39.241338265483186, -0.090161879679217 ], [ 39.245122445483155, -0.091443617679263 ], [ 39.249089730483199, -0.093030531679235 ], [ 39.253301156483182, -0.094251234679237 ], [ 39.257329476483157, -0.095044691679223 ], [ 39.261907113483169, -0.095532972679225 ], [ 39.266118539483152, -0.095471937679238 ], [ 39.269902718483188, -0.095166761679254 ], [ 39.28070594148317, -0.094739515679239 ], [ 39.284734261483202, -0.094251234679237 ], [ 39.294499886483202, -0.093762953679234 ], [ 39.298528207483166, -0.092969496679248 ], [ 39.304936898483156, -0.091382582679219 ], [ 39.312688363483169, -0.090161879679217 ], [ 39.319890511483202, -0.090833265679239 ], [ 39.323735726483157, -0.091382582679219 ], [ 39.327092660483167, -0.092053968679241 ], [ 39.330144418483194, -0.093030531679235 ], [ 39.333745492483153, -0.094983656679235 ], [ 39.336308968483188, -0.096631605679252 ], [ 39.339116586483208, -0.098828871679248 ], [ 39.343511117483153, -0.102735121679248 ], [ 39.346745980483199, -0.10535963267927 ], [ 39.36273719148317, -0.116834242679263 ], [ 39.365727914483152, -0.118482191679223 ], [ 39.368718636483202, -0.119763929679268 ], [ 39.371526254483165, -0.120740492679263 ], [ 39.375920785483167, -0.122571547679231 ], [ 39.379704964483203, -0.12385328567922 ], [ 39.384099496483195, -0.125745375679233 ], [ 39.387517464483203, -0.127637464679256 ], [ 39.391118539483152, -0.13056715267925 ], [ 39.398931039483152, -0.13856275767927 ], [ 39.403935921483189, -0.143933851679267 ], [ 39.408086312483185, -0.146680433679253 ], [ 39.412541879483165, -0.147840101679267 ], [ 39.424504769483171, -0.147473890679239 ], [ 39.432134164483152, -0.147534925679227 ], [ 39.436711800483174, -0.14814527767925 ], [ 39.444890511483202, -0.150464613679221 ], [ 39.448308480483199, -0.15205152767925 ], [ 39.452519906483182, -0.154737074679249 ], [ 39.456731332483166, -0.157666761679254 ], [ 39.465093148483156, -0.165479261679254 ], [ 39.469121468483188, -0.168836195679264 ], [ 39.472905648483156, -0.17158277767925 ], [ 39.476933968483188, -0.173657972679225 ], [ 39.482121957483166, -0.176831800679227 ], [ 39.487309945483155, -0.181165297679231 ], [ 39.492131722483172, -0.185559828679234 ], [ 39.494512093483188, -0.188184339679256 ], [ 39.49750281648317, -0.190930922679231 ], [ 39.507329476483157, -0.201856214679256 ], [ 39.510503304483159, -0.204846937679238 ], [ 39.5159354334832, -0.208448011679254 ], [ 39.51953650748316, -0.210279066679223 ], [ 39.52289344148317, -0.212476332679219 ], [ 39.525945199483196, -0.214673597679225 ], [ 39.529119027483198, -0.217664320679264 ], [ 39.533086312483185, -0.22236402767925 ], [ 39.537724984483184, -0.231458265679239 ], [ 39.543096078483181, -0.242566664679262 ], [ 39.545293343483188, -0.246472914679262 ], [ 39.548711312483185, -0.249036390679239 ], [ 39.552312386483202, -0.250867445679264 ], [ 39.5589041834832, -0.252637464679256 ], [ 39.561711800483174, -0.253736097679225 ], [ 39.566106332483166, -0.255872328679234 ], [ 39.569341195483155, -0.258557875679233 ], [ 39.574712289483152, -0.262647230679252 ], [ 39.582097543483194, -0.26923902767925 ], [ 39.585088265483186, -0.272656996679248 ], [ 39.588140023483156, -0.276868422679231 ], [ 39.597295296483189, -0.294873793679246 ], [ 39.5999198084832, -0.29853590267925 ], [ 39.603337777483198, -0.302075941679223 ], [ 39.607488168483194, -0.305554945679264 ], [ 39.612920296483189, -0.308850843679241 ], [ 39.618291390483186, -0.312757093679241 ], [ 39.622136605483199, -0.316175062679238 ], [ 39.626897347483172, -0.321668226679267 ], [ 39.626714242483153, -0.433362562679238 ], [ 39.627934945483155, -0.45197828567922 ], [ 39.630132211483208, -0.455335218679241 ], [ 39.633916390483186, -0.45887525767927 ], [ 39.636907113483169, -0.461072523679266 ], [ 39.636724005483181, -0.464246354679235 ], [ 39.633916390483186, -0.467359144679224 ], [ 39.632512582483166, -0.472058851679267 ], [ 39.63171912548318, -0.475537855679252 ], [ 39.632695687483185, -0.478833754679217 ], [ 39.632512582483166, -0.483045179679268 ], [ 39.631902230483199, -0.487866957679219 ], [ 39.632146371483195, -0.491529066679223 ], [ 39.633489144483171, -0.495069105679252 ], [ 39.693303597483172, -0.495557386679254 ], [ 39.701909554483159, -0.503980238679221 ], [ 39.704717171483189, -0.507154066679223 ], [ 39.706120980483199, -0.511182386679254 ], [ 39.708135140483186, -0.514844496679248 ], [ 39.710332406483182, -0.517530043679246 ], [ 39.717900765483186, -0.522229750679233 ], [ 39.720891488483169, -0.524976332679219 ], [ 39.72351600048318, -0.527967054679268 ], [ 39.725102914483152, -0.530652601679267 ], [ 39.726323617483153, -0.533582289679262 ], [ 39.726933968483188, -0.536573011679254 ], [ 39.726689828483181, -0.540662367679263 ], [ 39.726140511483202, -0.544568617679263 ], [ 39.728337777483198, -0.547742445679264 ], [ 39.733342660483167, -0.547437269679224 ], [ 39.73633338248316, -0.546643812679238 ], [ 39.740300668483194, -0.54603346167926 ], [ 39.74750281648317, -0.545545179679268 ], [ 39.7581229334832, -0.549451429679268 ], [ 39.762090218483188, -0.552136976679267 ], [ 39.765141976483157, -0.554456312679238 ], [ 39.773686898483156, -0.562268812679238 ], [ 39.778691781483182, -0.565137464679256 ], [ 39.784490121483195, -0.568982679679268 ], [ 39.788091195483155, -0.570874769679224 ], [ 39.800298226483157, -0.578076918679246 ], [ 39.805303109483184, -0.580762464679256 ], [ 39.809941781483182, -0.584058363679221 ], [ 39.816106332483166, -0.591565687679238 ], [ 39.818913949483196, -0.596082289679262 ], [ 39.821111214483203, -0.601331312679238 ], [ 39.82172156648317, -0.604261000679233 ], [ 39.822087777483198, -0.610852797679231 ], [ 39.821904671483189, -0.614148695679264 ], [ 39.821111214483203, -0.617444593679241 ], [ 39.820500863483169, -0.621656019679224 ], [ 39.820500863483169, -0.626538832679219 ], [ 39.821904671483189, -0.629956800679227 ], [ 39.823491586483208, -0.633130629679217 ], [ 39.826116097483172, -0.635755140679239 ], [ 39.828740609483184, -0.637464125679233 ], [ 39.833501351483157, -0.643140394679224 ], [ 39.836736214483203, -0.647168714679256 ], [ 39.839910043483194, -0.652173597679225 ], [ 39.841496957483166, -0.655347425679227 ], [ 39.842717660483167, -0.659131605679252 ], [ 39.843328011483202, -0.66377027767925 ], [ 39.843144906483182, -0.667737562679238 ], [ 39.843328011483202, -0.671338636679254 ], [ 39.843938363483169, -0.674268324679249 ], [ 39.845891488483169, -0.678052504679217 ], [ 39.849309457483166, -0.683850843679241 ], [ 39.852727425483174, -0.687451918679246 ], [ 39.855107796483189, -0.691052992679263 ], [ 39.856511605483199, -0.69416578567922 ], [ 39.857488168483194, -0.698255140679239 ], [ 39.858342660483167, -0.703137953679234 ], [ 39.858342660483167, -0.713758070679264 ], [ 39.858525766483176, -0.719251235679226 ], [ 39.859929574483196, -0.723279554679268 ], [ 39.862920296483189, -0.726575453679234 ], [ 39.8655448084832, -0.730054457679219 ], [ 39.867314828483181, -0.733472425679227 ], [ 39.868291390483186, -0.736951429679268 ], [ 39.868901742483153, -0.741468031679235 ], [ 39.868535531483182, -0.745679457679219 ], [ 39.867742074483196, -0.74885328567922 ], [ 39.864324105483199, -0.756177504679217 ], [ 39.86328650748316, -0.761548597679225 ], [ 39.865300668483194, -0.76673658667926 ], [ 39.868901742483153, -0.771436293679246 ], [ 39.872319711483208, -0.776563246679248 ], [ 39.876286996483195, -0.78205641067922 ], [ 39.879888070483155, -0.787976820679264 ], [ 39.882329476483157, -0.79285963267927 ], [ 39.883916390483186, -0.796948988679221 ], [ 39.887700570483155, -0.812329847679225 ], [ 39.890691293483194, -0.819654066679223 ], [ 39.893132699483196, -0.82307203567922 ], [ 39.896916879483165, -0.827649672679231 ], [ 39.899114144483171, -0.831067640679239 ], [ 39.901494515483186, -0.835767347679225 ], [ 39.903935921483189, -0.848950941679223 ], [ 39.90430213248316, -0.855664808679253 ], [ 39.90430213248316, -0.85853346167926 ], [ 39.903508675483174, -0.863050062679238 ], [ 39.90430213248316, -0.87293775767927 ], [ 39.905095589483203, -0.87666090267925 ], [ 39.906133187483185, -0.879651625679233 ], [ 39.906133187483185, -0.883740980679252 ], [ 39.90430213248316, -0.889356214679256 ], [ 39.903691781483182, -0.892652113679221 ], [ 39.90430213248316, -0.897351820679264 ], [ 39.90570594148317, -0.901563246679248 ], [ 39.910893929483159, -0.905774672679231 ], [ 39.91351844148317, -0.908765394679224 ], [ 39.917912972483172, -0.915662367679263 ], [ 39.920293343483188, -0.920484144679224 ], [ 39.921514046483189, -0.923352797679231 ], [ 39.922917855483199, -0.92744215267925 ], [ 39.925115121483195, -0.938184339679256 ], [ 39.926335824483196, -0.941663343679241 ], [ 39.928105843483188, -0.945935804679268 ], [ 39.930486214483203, -0.950452406679235 ], [ 39.933110726483157, -0.95423658667926 ], [ 39.935307992483153, -0.958570082679219 ], [ 39.937322152483198, -0.963147718679241 ], [ 39.938298714483203, -0.967664320679264 ], [ 39.938725961483208, -0.972058851679267 ], [ 39.939336312483185, -0.975965101679267 ], [ 39.939519418483194, -0.980481703679234 ], [ 39.938725961483208, -0.988477308679253 ], [ 39.936894906483182, -0.99525221167926 ], [ 39.935307992483153, -1.001966078679234 ], [ 39.935491097483172, -1.006238539679262 ], [ 39.939885629483165, -1.014173109679237 ], [ 39.941899789483152, -1.017163832679219 ], [ 39.944524300483174, -1.019849379679274 ], [ 39.947087777483198, -1.024060804679268 ], [ 39.948735726483157, -1.027783949679249 ], [ 39.950139535483167, -1.031568129679274 ], [ 39.954900277483198, -1.039746839679256 ], [ 39.957707894483171, -1.046460707679219 ], [ 39.960332406483182, -1.053662855679252 ], [ 39.963140023483156, -1.058850843679241 ], [ 39.968938363483169, -1.070752699679249 ], [ 39.971135629483165, -1.07502516067922 ], [ 39.978703988483169, -1.088147718679241 ], [ 39.982121957483166, -1.094739515679239 ], [ 39.98633338248316, -1.101758558679253 ], [ 39.98828650748316, -1.105847914679262 ], [ 39.990117562483185, -1.110242445679264 ], [ 39.997136605483199, -1.122754652679251 ], [ 39.998113168483194, -1.125867445679264 ], [ 40.000737679483159, -1.132337172679231 ], [ 40.001531136483202, -1.135144789679262 ], [ 40.005498421483189, -1.146253187679238 ], [ 40.006536019483171, -1.150647718679241 ], [ 40.010686410483167, -1.161939222679225 ], [ 40.016118539483152, -1.170178968679241 ], [ 40.019109261483202, -1.174268324679249 ], [ 40.024907601483157, -1.18153150767927 ], [ 40.035893929483159, -1.196057875679233 ], [ 40.037724984483184, -1.198865492679263 ], [ 40.039495004483165, -1.202161390679239 ], [ 40.040898812483185, -1.206128675679227 ], [ 40.041936410483167, -1.210584242679263 ], [ 40.04633094148317, -1.221936781679235 ], [ 40.051518929483159, -1.239575941679223 ], [ 40.054326546483189, -1.246533949679249 ], [ 40.057317269483171, -1.251050550679227 ], [ 40.058110726483157, -1.259046156679235 ], [ 40.058110726483157, -1.264234144679224 ], [ 40.05750037548318, -1.272779066679223 ], [ 40.056706918483194, -1.276868422679231 ], [ 40.055486214483203, -1.281446058679253 ], [ 40.053716195483155, -1.286878187679238 ], [ 40.052495492483153, -1.291333754679274 ], [ 40.051335824483196, -1.29603346167926 ], [ 40.050725472483172, -1.299573500679233 ], [ 40.04968787548318, -1.306348402679251 ], [ 40.04968787548318, -1.311170179679268 ], [ 40.050298226483157, -1.318433363679221 ], [ 40.051335824483196, -1.321363050679227 ], [ 40.058293832483166, -1.333081800679227 ], [ 40.061528695483155, -1.341565687679238 ], [ 40.062322152483198, -1.346753675679227 ], [ 40.063725961483208, -1.358167250679233 ], [ 40.065129769483171, -1.363355238679221 ], [ 40.071904671483189, -1.393933851679267 ], [ 40.075139535483167, -1.406629164679262 ], [ 40.077519906483182, -1.417066175679227 ], [ 40.081914437483185, -1.434949476679267 ], [ 40.083135140483186, -1.441175062679238 ], [ 40.084905160483167, -1.448865492679263 ], [ 40.085515511483202, -1.453748304679268 ], [ 40.086125863483169, -1.456739027679251 ], [ 40.086492074483196, -1.462964613679221 ], [ 40.086492074483196, -1.466931898679266 ], [ 40.086736214483203, -1.470044691679223 ], [ 40.087529671483189, -1.475171644679224 ], [ 40.088323129483165, -1.478833754679274 ], [ 40.090337289483152, -1.485364515679239 ], [ 40.092290414483152, -1.488538343679241 ], [ 40.094487679483159, -1.492566664679262 ], [ 40.097905648483156, -1.497876722679225 ], [ 40.101506722483172, -1.502454359679237 ], [ 40.104131234483184, -1.506360609679237 ], [ 40.105901254483165, -1.511060316679223 ], [ 40.106694711483208, -1.516065199679249 ], [ 40.107915414483152, -1.526441175679227 ], [ 40.108525765483186, -1.529553968679241 ], [ 40.109746468483188, -1.534375746679248 ], [ 40.110539925483174, -1.538648207679219 ], [ 40.111699593483188, -1.54285963267927 ], [ 40.11469031648317, -1.552259047679231 ], [ 40.118901742483153, -1.561170179679268 ], [ 40.120305550483174, -1.563672621679248 ], [ 40.12390662548318, -1.568860609679237 ], [ 40.125737679483159, -1.571363050679227 ], [ 40.127934945483155, -1.573865492679263 ], [ 40.130498421483189, -1.576245863679221 ], [ 40.137334359483184, -1.581983168679247 ], [ 40.140141976483157, -1.584729750679233 ], [ 40.144292367483153, -1.589673597679225 ], [ 40.147527230483199, -1.594251234679237 ], [ 40.149541390483186, -1.597974379679274 ], [ 40.152898324483196, -1.605542738679221 ], [ 40.154912484483184, -1.612073500679233 ], [ 40.155889046483189, -1.616162855679252 ], [ 40.156743539483152, -1.621839125679233 ], [ 40.158330453483181, -1.627576429679268 ], [ 40.159917367483153, -1.638379652679251 ], [ 40.160527718483188, -1.648633558679253 ], [ 40.160710824483196, -1.656079847679225 ], [ 40.160344613483169, -1.665479261679254 ], [ 40.159734261483202, -1.674451429679268 ], [ 40.1585135584832, -1.684949476679267 ], [ 40.158330453483181, -1.688062269679224 ], [ 40.1585135584832, -1.695569593679241 ], [ 40.159307015483186, -1.702039320679264 ], [ 40.161138070483155, -1.706983168679247 ], [ 40.164311898483156, -1.712964613679221 ], [ 40.168523324483196, -1.719434339679256 ], [ 40.16992713248316, -1.722241957679219 ], [ 40.171086800483174, -1.726331312679238 ], [ 40.17133094148317, -1.730542738679221 ], [ 40.170903695483155, -1.733655531679235 ], [ 40.170110238483169, -1.737256605679252 ], [ 40.166936410483167, -1.744275648679266 ], [ 40.164739144483171, -1.748365004679274 ], [ 40.161931527483198, -1.754346449679249 ], [ 40.159123910483167, -1.761853773679266 ], [ 40.1585135584832, -1.764661390679239 ], [ 40.1585135584832, -1.767957289679262 ], [ 40.159307015483186, -1.777173597679225 ], [ 40.159917367483153, -1.786878187679238 ], [ 40.161138070483155, -1.792981703679234 ], [ 40.161687386483202, -1.797071058679253 ], [ 40.162541879483165, -1.800183851679267 ], [ 40.163091195483155, -1.804151136679254 ], [ 40.163335336483208, -1.808362562679238 ], [ 40.162908089483203, -1.815137464679256 ], [ 40.163091195483155, -1.819959242679263 ], [ 40.163701546483189, -1.824781019679224 ], [ 40.165532601483157, -1.831067640679239 ], [ 40.167302621483195, -1.835034925679227 ], [ 40.16992713248316, -1.838941175679227 ], [ 40.175725472483172, -1.845044691679223 ], [ 40.178899300483174, -1.848828871679248 ], [ 40.181340707483166, -1.852857191679223 ], [ 40.183537972483172, -1.855969984679237 ], [ 40.185918343483188, -1.86018141067922 ], [ 40.187322152483198, -1.863782484679237 ], [ 40.188725961483208, -1.868543226679267 ], [ 40.189336312483185, -1.872876722679225 ], [ 40.189336312483185, -1.876782972679225 ], [ 40.188542855483199, -1.886975843679241 ], [ 40.187688363483169, -1.895459730679252 ], [ 40.187688363483169, -1.905347425679227 ], [ 40.188298714483203, -1.912732679679268 ], [ 40.189336312483185, -1.922132093679241 ], [ 40.189336312483185, -1.925061781679235 ], [ 40.19031287548318, -1.932080824679249 ], [ 40.189885629483165, -1.93934400767927 ], [ 40.189885629483165, -1.943860609679237 ], [ 40.189092171483189, -1.948865492679263 ], [ 40.186894906483182, -1.956983168679247 ], [ 40.186894906483182, -1.959973890679239 ], [ 40.187322152483198, -1.963269789679262 ], [ 40.188298714483203, -1.966565687679238 ], [ 40.193486703483181, -1.976148207679219 ], [ 40.19531775748316, -1.979138929679268 ], [ 40.19812537548318, -1.98518141067922 ], [ 40.198491586483208, -1.988233168679247 ], [ 40.198308480483199, -1.991651136679254 ], [ 40.197942269483171, -1.995923597679225 ], [ 40.196904671483189, -2.000928480679253 ], [ 40.197942269483171, -2.003980238679223 ], [ 40.200322640483186, -2.007337172679232 ], [ 40.202336800483174, -2.010572035679221 ], [ 40.205144418483194, -2.015332777679252 ], [ 40.206914437483185, -2.019055922679232 ], [ 40.208928597483172, -2.024549086679262 ], [ 40.211919320483155, -2.033765394679225 ], [ 40.219914925483174, -2.077466566679224 ], [ 40.221745980483199, -2.08888014067924 ], [ 40.223699105483199, -2.098950941679224 ], [ 40.225286019483171, -2.108472425679228 ], [ 40.228887093483188, -2.127759535679221 ], [ 40.233525765483186, -2.154859144679225 ], [ 40.234929574483196, -2.162244398679267 ], [ 40.236516488483169, -2.173657972679226 ], [ 40.23828650748316, -2.181470472679226 ], [ 40.239934457483166, -2.19044264067924 ], [ 40.247136605483199, -2.231763441679224 ], [ 40.247930062483185, -2.23536451567924 ], [ 40.249333871483195, -2.243543226679268 ], [ 40.250127328483181, -2.247266371679249 ], [ 40.251103890483186, -2.250562269679225 ], [ 40.250920785483167, -2.275464613679223 ], [ 40.250493539483152, -2.285230238679223 ], [ 40.250920785483167, -2.306836683679254 ], [ 40.250920785483167, -2.359754164679263 ], [ 40.250737679483159, -2.364759047679232 ], [ 40.251103890483186, -2.373670179679269 ], [ 40.250920785483167, -2.385633070679265 ], [ 40.251103890483186, -2.389356214679257 ], [ 40.250920785483167, -2.395948011679256 ], [ 40.251286996483195, -2.399243910679221 ], [ 40.256108773483156, -2.400464613679223 ], [ 40.270696175483174, -2.400464613679223 ], [ 40.273686898483156, -2.400647718679242 ], [ 40.296086800483174, -2.400769789679263 ], [ 40.299932015483186, -2.401563246679249 ], [ 40.303716195483155, -2.40083082467925 ], [ 40.345891488483169, -2.401074964679257 ], [ 40.349492562483185, -2.403150160679221 ], [ 40.349919813483204, -2.408155048679252 ], [ 40.355290902483198, -2.414563734679238 ], [ 40.358525765483186, -2.417249281679236 ], [ 40.361943734483184, -2.417676527679252 ], [ 40.36469031648317, -2.419263441679224 ], [ 40.368535531483182, -2.421033461679262 ], [ 40.37250281648317, -2.425061781679236 ], [ 40.377690804483159, -2.425244886679256 ], [ 40.38171912548318, -2.42426832467925 ], [ 40.383489144483171, -2.426648695679265 ], [ 40.38672400748316, -2.42927320767922 ], [ 40.392095101483157, -2.429639418679248 ], [ 40.396733773483156, -2.432141859679238 ], [ 40.4007010584832, -2.433240492679264 ], [ 40.40430213248316, -2.431531507679271 ], [ 40.408086312483185, -2.432263929679269 ], [ 40.410100472483172, -2.428968031679236 ], [ 40.412541879483165, -2.426831800679228 ], [ 40.418096078483181, -2.425061781679236 ], [ 40.423100961483208, -2.424451429679269 ], [ 40.426702035483167, -2.423352797679232 ], [ 40.42773963248316, -2.420056898679267 ], [ 40.431523812483185, -2.419141371679249 ], [ 40.434697640483186, -2.418653089679257 ], [ 40.435918343483188, -2.415967543679248 ], [ 40.438542855483199, -2.414563734679238 ], [ 40.440923226483157, -2.412976820679265 ], [ 40.444341195483155, -2.410352308679254 ], [ 40.446294320483155, -2.405774672679232 ], [ 40.443730843483188, -2.402478773679267 ], [ 40.449101937483185, -2.40333326567924 ], [ 40.457707894483171, -2.406262953679235 ], [ 40.465520394483171, -2.408277113679223 ], [ 40.470098031483182, -2.409864027679252 ], [ 40.4827323084832, -2.413465101679268 ], [ 40.4905448084832, -2.415967543679248 ], [ 40.509892953483181, -2.421643812679239 ], [ 40.532720101483157, -2.428662855679253 ], [ 40.537297738483169, -2.430249769679225 ], [ 40.561711800483174, -2.437635023679267 ], [ 40.575688851483157, -2.442029554679269 ], [ 40.600102914483152, -2.449353773679267 ], [ 40.605290902483198, -2.451062757679271 ], [ 40.648503793483194, -2.463941175679228 ], [ 40.663091195483155, -2.468579847679226 ], [ 40.666936410483167, -2.469068129679275 ], [ 40.694890511483202, -2.464673597679226 ], [ 40.700139535483167, -2.464124281679236 ], [ 40.709905160483167, -2.46247633267922 ], [ 40.726933968483188, -2.45997389067924 ], [ 40.731694711483208, -2.460156996679249 ], [ 40.72992469148317, -2.462659437679239 ], [ 40.718328011483202, -2.469434339679257 ], [ 40.712102425483174, -2.473279554679269 ], [ 40.705327523483156, -2.477063734679238 ], [ 40.699346078483181, -2.481153089679257 ], [ 40.690923226483157, -2.488050062679239 ], [ 40.686894906483182, -2.490430433679254 ], [ 40.679509652483198, -2.496778089679257 ], [ 40.667485726483157, -2.509168226679268 ], [ 40.657903207483166, -2.520642836679262 ], [ 40.649541390483186, -2.531934339679257 ], [ 40.64648963248316, -2.535352308679254 ], [ 40.643498910483167, -2.538159925679228 ], [ 40.640141976483157, -2.540662367679264 ], [ 40.624700082483166, -2.551343519679225 ], [ 40.619512093483188, -2.55427320767922 ], [ 40.611943734483184, -2.558972914679263 ], [ 40.607121957483166, -2.560437757679271 ], [ 40.602300179483159, -2.559644300679228 ], [ 40.59851600048318, -2.558545668679248 ], [ 40.59570838248316, -2.556531507679271 ], [ 40.591313851483157, -2.555554945679265 ], [ 40.58789588248316, -2.555066664679263 ], [ 40.577703011483202, -2.552381117679264 ], [ 40.574101937483185, -2.551831800679228 ], [ 40.570928109483184, -2.550550062679239 ], [ 40.568303597483172, -2.548169691679224 ], [ 40.565740121483195, -2.546338636679256 ], [ 40.563725961483208, -2.54395826567924 ], [ 40.559941781483182, -2.542249281679236 ], [ 40.555913461483208, -2.541150648679267 ], [ 40.552129281483182, -2.540662367679264 ], [ 40.539128793483194, -2.536267836679262 ], [ 40.536321175483174, -2.534864027679252 ], [ 40.5335135584832, -2.532971937679239 ], [ 40.52930213248316, -2.53083570767922 ], [ 40.523686898483156, -2.527173597679226 ], [ 40.514897836483208, -2.524182875679234 ], [ 40.514897836483208, -2.526746351679268 ], [ 40.51953650748316, -2.529370863679223 ], [ 40.521306527483198, -2.531873304679269 ], [ 40.516301644483171, -2.532971937679239 ], [ 40.506108773483156, -2.533032972679226 ], [ 40.500127328483181, -2.533338148679267 ], [ 40.490300668483194, -2.534436781679236 ], [ 40.470525277483198, -2.538526136679256 ], [ 40.451116097483172, -2.543653089679257 ], [ 40.446294320483155, -2.545178968679242 ], [ 40.44031287548318, -2.547254164679263 ], [ 40.437322152483198, -2.548474867679264 ], [ 40.425298226483157, -2.553845961679262 ], [ 40.407536996483195, -2.560926039679263 ], [ 40.396306527483198, -2.565930922679232 ], [ 40.392095101483157, -2.567578871679249 ], [ 40.370488656483182, -2.578260023679267 ], [ 40.357488168483194, -2.586438734679238 ], [ 40.35352088248316, -2.588758070679265 ], [ 40.350102914483152, -2.589856703679235 ], [ 40.346135629483165, -2.590161879679275 ], [ 40.342717660483167, -2.592053968679242 ], [ 40.341313851483157, -2.594983656679236 ], [ 40.338140023483156, -2.59724195767922 ], [ 40.331304086483208, -2.600965101679268 ], [ 40.327092660483167, -2.60395582467925 ], [ 40.319890511483202, -2.608472425679228 ], [ 40.296086800483174, -2.625257093679242 ], [ 40.286687386483202, -2.63325269967925 ], [ 40.271306527483198, -2.645948011679256 ], [ 40.263494027483198, -2.649854261679256 ], [ 40.262517464483203, -2.653272230679253 ], [ 40.254338754483165, -2.661939222679226 ], [ 40.250127328483181, -2.665967543679248 ], [ 40.244328988483169, -2.671948988679223 ], [ 40.240117562483185, -2.676038343679242 ], [ 40.232915414483152, -2.683850843679242 ], [ 40.227910531483182, -2.689832289679263 ], [ 40.222539437483185, -2.69685133267922 ], [ 40.220098031483182, -2.700330336679262 ], [ 40.211919320483155, -2.712537367679264 ], [ 40.209722054483159, -2.716138441679224 ], [ 40.206120980483199, -2.721265394679225 ], [ 40.201543343483188, -2.728467543679248 ], [ 40.198918832483166, -2.734265882679271 ], [ 40.195134652483198, -2.736524183679254 ], [ 40.179936898483156, -2.71833570767922 ], [ 40.07312537548318, -2.567029554679269 ], [ 40.062688363483169, -2.551282484679238 ], [ 40.042119515483186, -2.523084242679264 ], [ 39.988713754483165, -2.446668226679268 ], [ 39.97211219148317, -2.423841078679235 ], [ 39.8928885584832, -2.311658461679262 ], [ 39.881536019483171, -2.324170668679248 ], [ 39.855718148483156, -2.354077894679225 ], [ 39.795903695483155, -2.421948988679223 ], [ 39.7249198084832, -2.50294264067924 ], [ 39.722905648483156, -2.50544508267922 ], [ 39.67773963248316, -2.556165297679232 ], [ 39.668889535483167, -2.566480238679223 ], [ 39.622685921483189, -2.618543226679268 ], [ 39.604131234483184, -2.639783461679262 ], [ 39.538945687483185, -2.71333082467925 ], [ 39.506108773483156, -2.750684339679257 ], [ 39.363530648483156, -2.90974195767922 ], [ 39.280095589483203, -3.003064711679262 ], [ 39.249944222483172, -3.03864820767922 ], [ 39.229131234483184, -3.062329847679226 ], [ 39.22351600048318, -3.068250257679271 ], [ 39.219731820483155, -3.069776136679256 ], [ 39.215520394483171, -3.067639906679236 ], [ 39.211308968483188, -3.067884047679232 ], [ 39.20789100048318, -3.068433363679223 ], [ 39.203313363483169, -3.066968519679225 ], [ 39.200322640483186, -3.064466078679235 ], [ 39.196538461483208, -3.063733656679236 ], [ 39.191533578483181, -3.065076429679269 ], [ 39.188298714483203, -3.065747816679224 ], [ 39.183110726483157, -3.064771254679275 ], [ 39.17969275748316, -3.060437757679271 ], [ 39.175908578483181, -3.059766371679249 ], [ 39.1741385584832, -3.062146742679264 ], [ 39.172917855483199, -3.064954359679238 ], [ 39.171086800483174, -3.067334730679253 ], [ 39.167729867483153, -3.068738539679263 ], [ 39.16492225048318, -3.067578871679249 ], [ 39.164311898483156, -3.063184339679257 ], [ 39.157720101483157, -3.053662855679253 ], [ 39.156133187483185, -3.050977308679254 ], [ 39.153691781483182, -3.04786451567924 ], [ 39.150517953483181, -3.047376234679238 ], [ 39.147710336483208, -3.049634535679221 ], [ 39.144292367483153, -3.050672132679271 ], [ 39.1428885584832, -3.046765882679271 ], [ 39.140691293483194, -3.044080336679262 ], [ 39.136113656483182, -3.044446547679232 ], [ 39.134343636483202, -3.042066175679228 ], [ 39.134892953483181, -3.038159925679228 ], [ 39.132146371483195, -3.031079847679226 ], [ 39.13171912548318, -3.026746351679268 ], [ 39.13031531648317, -3.022351820679265 ], [ 39.126286996483195, -3.021863539679263 ], [ 39.122685921483189, -3.023084242679264 ], [ 39.11414100048318, -3.026746351679268 ], [ 39.111516488483169, -3.029431898679267 ], [ 39.106938851483157, -3.037061293679248 ], [ 39.103093636483202, -3.040174086679262 ], [ 39.094304574483196, -3.043531019679225 ], [ 39.090093148483156, -3.046155531679236 ], [ 39.08929969148317, -3.049451429679269 ], [ 39.089543832483166, -3.053052504679275 ], [ 39.086125863483169, -3.05567701567924 ], [ 39.081914437483185, -3.05317457467925 ], [ 39.080693734483184, -3.048535902679252 ], [ 39.079106820483155, -3.044568617679264 ], [ 38.624944222483172, -2.414563734679238 ], [ 38.627934945483155, -2.413770277679252 ], [ 38.632329476483157, -2.41505201567924 ], [ 38.634892953483181, -2.418653089679257 ], [ 38.638494027483198, -2.418042738679223 ], [ 38.6428885584832, -2.419568617679264 ], [ 38.647710336483208, -2.420667250679234 ], [ 38.652287972483172, -2.42036207467925 ], [ 38.661138070483155, -2.42036207467925 ], [ 38.667119515483186, -2.419873793679248 ], [ 38.670720589483203, -2.41895826567924 ], [ 38.673894418483194, -2.41755445767922 ], [ 38.67773963248316, -2.416333754679275 ], [ 38.686894906483182, -2.415174086679262 ], [ 38.692937386483202, -2.412671644679225 ], [ 38.696111214483203, -2.411878187679239 ], [ 38.698308480483199, -2.409864027679252 ], [ 38.701543343483188, -2.408948500679234 ], [ 38.70453406648317, -2.406262953679235 ], [ 38.705693734483184, -2.402539808679254 ], [ 38.709538949483196, -2.401441175679228 ], [ 38.713506234483184, -2.399365980679253 ], [ 38.716130746483195, -2.396741468679242 ], [ 38.717900765483186, -2.392835218679242 ], [ 38.722539437483185, -2.390943129679275 ], [ 38.723943246483195, -2.388135511679256 ], [ 38.726140511483202, -2.386365492679264 ], [ 38.728703988483169, -2.384656507679271 ], [ 38.733891976483157, -2.38044508267922 ], [ 38.735539925483174, -2.373059828679235 ], [ 38.737493050483174, -2.369153578679235 ], [ 38.739507211483208, -2.36677320767922 ], [ 38.742742074483196, -2.366468031679236 ], [ 38.745732796483189, -2.367078382679271 ], [ 38.749089730483199, -2.365735609679238 ], [ 38.753301156483182, -2.364453871679249 ], [ 38.757329476483157, -2.363660414679263 ], [ 38.759526742483153, -2.360852797679232 ], [ 38.763921273483156, -2.357740004679275 ], [ 38.769719613483169, -2.355847914679263 ], [ 38.774907601483157, -2.355542738679223 ], [ 38.778935921483189, -2.355969984679238 ], [ 38.783086312483185, -2.357129652679252 ], [ 38.78711463248316, -2.355237562679239 ], [ 38.789128793483194, -2.352063734679238 ], [ 38.790105355483199, -2.346570570679265 ], [ 38.793523324483196, -2.343946058679254 ], [ 38.796697152483198, -2.343457777679252 ], [ 38.800725472483172, -2.338147718679242 ], [ 38.930303109483184, -2.084058363679223 ], [ 39.0003104334832, -1.948255140679239 ], [ 39.015691293483194, -1.917737562679238 ], [ 39.013921273483156, -1.914929945679264 ], [ 39.007939828483181, -1.889051039679262 ], [ 38.959905160483167, -1.704175550679227 ], [ 38.965886605483199, -1.699658949679249 ], [ 38.969914925483174, -1.697339613679221 ], [ 38.974736703483181, -1.694959242679263 ], [ 38.979131234483184, -1.693982679679268 ], [ 38.98132850048318, -1.691541273679266 ], [ 38.984502328483181, -1.692456800679227 ], [ 38.988530648483156, -1.691541273679266 ], [ 38.990727914483152, -1.688672621679248 ], [ 38.99414588248316, -1.688062269679224 ], [ 38.996526254483165, -1.685865004679274 ], [ 38.998723519483171, -1.682080824679249 ], [ 38.99750281648317, -1.635266859679237 ], [ 38.964116586483208, -1.079846937679238 ], [ 38.96234656648317, -1.05457838267927 ], [ 38.953923714483203, -1.036450941679223 ], [ 38.938298714483203, -1.003552992679263 ], [ 38.9260916834832, -0.978650648679266 ], [ 38.919316781483182, -0.963574964679256 ], [ 38.89929725048318, -0.921155531679235 ], [ 38.889287484483184, -0.900769789679262 ], [ 38.853337777483198, -0.824170668679246 ], [ 38.84570838248316, -0.808362562679238 ], [ 38.826726449483196, -0.768140394679224 ], [ 38.813725961483208, -0.741529066679223 ], [ 38.806890023483156, -0.728772718679241 ], [ 38.78711463248316, -0.695081312679238 ], [ 38.765508187483185, -0.658948500679233 ], [ 38.739507211483208, -0.614636976679267 ], [ 38.715886605483199, -0.575574476679267 ], [ 38.689885629483165, -0.531934339679256 ], [ 38.688298714483203, -0.528943617679263 ], [ 38.678533089483203, -0.51283033667926 ], [ 38.673345101483157, -0.502576429679268 ], [ 38.663335336483208, -0.48518141067922 ], [ 38.639714730483199, -0.445264418679246 ], [ 38.634343636483202, -0.435742933679253 ], [ 38.629704964483203, -0.428235609679237 ], [ 38.623723519483171, -0.417737562679238 ], [ 38.613103402483198, -0.399976332679219 ], [ 38.608342660483167, -0.391553480679252 ], [ 38.602300179483159, -0.38166578567922 ], [ 38.595342171483189, -0.369336683679253 ], [ 38.580327523483156, -0.343762953679234 ], [ 38.562322152483198, -0.313672621679248 ], [ 38.539128793483194, -0.274060804679268 ], [ 38.496343148483156, -0.202344496679248 ], [ 38.480535043483194, -0.175061781679235 ], [ 38.468144906483182, -0.154431898679266 ], [ 38.454717171483189, -0.131238539679262 ], [ 38.444097054483159, -0.113355238679221 ], [ 38.42273475048318, -0.074781019679224 ], [ 38.426946175483174, -0.077466566679223 ], [ 38.430913461483208, -0.078870375679233 ], [ 38.434331429483159, -0.078565199679249 ], [ 38.437932504483165, -0.07502516067922 ], [ 38.442693246483195, -0.07783277767925 ], [ 38.445500863483169, -0.080762464679256 ], [ 38.448491586483208, -0.083448011679254 ], [ 38.452519906483182, -0.086682875679233 ], [ 38.457097543483194, -0.088636000679233 ], [ 38.461125863483169, -0.088269789679262 ], [ 38.464543832483166, -0.08704908667926 ], [ 38.468511117483153, -0.083936293679246 ], [ 38.472539437483185, -0.081677992679263 ], [ 38.47992469148317, -0.080274183679253 ], [ 38.483525765483186, -0.078443129679217 ], [ 38.486516488483169, -0.075452406679235 ], [ 38.48828650748316, -0.072583754679217 ], [ 38.488896859483184, -0.068372328679234 ], [ 38.489934457483166, -0.063367445679264 ], [ 38.493535531483182, -0.061963636679254 ], [ 38.497930062483185, -0.064832289679262 ], [ 38.502690804483159, -0.065869886679254 ], [ 38.507146371483195, -0.064832289679262 ], [ 38.511113656483182, -0.062329847679225 ], [ 38.51953650748316, -0.065442640679239 ], [ 38.522527230483199, -0.064466078679234 ], [ 38.524724496483195, -0.061780531679235 ], [ 38.526921761483202, -0.059461195679264 ], [ 38.53070594148317, -0.058057386679254 ], [ 38.531316293483194, -0.053052504679217 ], [ 38.530522836483208, -0.047559339679256 ], [ 38.534307015483186, -0.04603346167926 ], [ 38.541142953483181, -0.045850355679252 ], [ 38.541692269483171, -0.042066175679227 ], [ 38.541936410483167, -0.038343031679235 ], [ 38.542729867483153, -0.035230238679221 ], [ 38.547124398483156, -0.02705152767925 ], [ 38.548528207483166, -0.023267347679225 ], [ 38.551702035483167, -0.020459730679252 ], [ 38.555120004483165, -0.019666273679266 ], [ 38.558110726483157, -0.02137525767927 ], [ 38.561711800483174, -0.022046644679224 ], [ 38.56531287548318, -0.021131117679263 ], [ 38.570745004483165, -0.022229750679233 ], [ 38.579717171483189, -0.026929457679219 ], [ 38.58929969148317, -0.028943617679263 ], [ 38.5921073084832, -0.03205641067922 ], [ 38.59711219148317, -0.035230238679221 ], [ 38.601506722483172, -0.036634047679231 ], [ 38.60492469148317, -0.035535414679262 ], [ 38.608098519483171, -0.032666761679254 ], [ 38.612309945483155, -0.032666761679254 ], [ 38.617925179483159, -0.037183363679221 ], [ 38.621526254483165, -0.03986891067922 ], [ 38.627507699483196, -0.045240004679217 ], [ 38.630498421483189, -0.04853590267925 ], [ 38.633733285483167, -0.05262525767927 ], [ 38.63672400748316, -0.055860121679248 ], [ 38.639714730483199, -0.057141859679237 ], [ 38.643926156483182, -0.056836683679253 ], [ 38.648320687483185, -0.056165297679231 ], [ 38.650945199483196, -0.053174574679249 ], [ 38.653142464483203, -0.050183851679267 ], [ 38.65570594148317, -0.048963148679266 ], [ 38.658696664483152, -0.04993971167926 ], [ 38.661138070483155, -0.051465589679256 ], [ 38.665532601483157, -0.052381117679263 ], [ 38.670293343483188, -0.05384596167926 ], [ 38.673345101483157, -0.055982191679223 ], [ 38.677129281483182, -0.05744703567922 ], [ 38.682927621483195, -0.057324964679256 ], [ 38.685307992483153, -0.053479750679233 ], [ 38.684941781483182, -0.049878675679227 ], [ 38.685918343483188, -0.046338636679254 ], [ 38.68890906648317, -0.043653089679256 ], [ 38.692327035483167, -0.046460707679219 ], [ 38.694341195483155, -0.049329359679237 ], [ 38.697331918483194, -0.052869398679266 ], [ 38.700688851483157, -0.055554945679264 ], [ 38.704900277483198, -0.05775221167926 ], [ 38.708318246483195, -0.060681898679266 ], [ 38.711125863483169, -0.063367445679264 ], [ 38.71429969148317, -0.064954359679237 ], [ 38.719304574483196, -0.065381605679252 ], [ 38.722539437483185, -0.066541273679266 ], [ 38.726933968483188, -0.067029554679268 ], [ 38.732121957483166, -0.069531996679248 ], [ 38.737309945483155, -0.072644789679262 ], [ 38.741338265483186, -0.073133070679264 ], [ 38.744939339483203, -0.07307203567922 ], [ 38.749516976483157, -0.074842054679268 ], [ 38.758489144483171, -0.075757582679219 ], [ 38.766545785483167, -0.071546156679235 ], [ 38.764287484483184, -0.068860609679237 ], [ 38.761296761483202, -0.067151625679233 ], [ 38.760930550483174, -0.063428480679252 ], [ 38.763738168483194, -0.06043775767927 ], [ 38.764897836483208, -0.056775648679266 ], [ 38.76172400748316, -0.053235609679237 ], [ 38.757695687483185, -0.051038343679241 ], [ 38.753118050483174, -0.049878675679227 ], [ 38.751897347483172, -0.046277601679267 ], [ 38.753301156483182, -0.04212721167926 ], [ 38.751531136483202, -0.03895338267927 ], [ 38.7503104334832, -0.03596266067922 ], [ 38.749516976483157, -0.032971937679238 ], [ 38.75391150748316, -0.029859144679224 ], [ 38.76172400748316, -0.028577406679235 ], [ 38.777532113483169, -0.028882582679219 ], [ 38.782536996483195, -0.030347425679227 ], [ 38.790105355483199, -0.033643324679249 ], [ 38.792912972483172, -0.034558851679267 ], [ 38.800542367483153, -0.039258558679253 ], [ 38.808293832483166, -0.041150648679266 ], [ 38.81250525748316, -0.042371351679267 ], [ 38.822942269483171, -0.045972425679227 ], [ 38.827336800483174, -0.047864515679239 ], [ 38.830327523483156, -0.049756605679252 ], [ 38.834905160483167, -0.051465589679256 ], [ 38.840093148483156, -0.051770765679239 ], [ 38.843328011483202, -0.051282484679237 ], [ 38.847905648483156, -0.050244886679254 ], [ 38.854131234483184, -0.04963453567922 ], [ 38.859746468483188, -0.050244886679254 ], [ 38.866521371483195, -0.053052504679217 ], [ 38.870488656483182, -0.05354078567922 ], [ 38.878118050483174, -0.05384596167926 ], [ 38.884343636483202, -0.053662855679252 ], [ 38.888310921483189, -0.051953871679248 ], [ 38.892339242483153, -0.049756605679252 ], [ 38.900945199483196, -0.045545179679268 ], [ 38.907292855483199, -0.043347914679262 ], [ 38.911504281483182, -0.042554457679219 ], [ 38.916509164483152, -0.042371351679267 ], [ 38.919744027483198, -0.043164808679253 ], [ 38.923528207483166, -0.043469984679237 ], [ 38.929936898483156, -0.044751722679225 ], [ 38.938298714483203, -0.045545179679268 ], [ 38.942143929483159, -0.039258558679253 ], [ 38.944707406483182, -0.035474379679217 ], [ 38.949101937483185, -0.03095777767925 ], [ 38.955693734483184, -0.02528150767927 ], [ 38.962102425483174, -0.020948011679254 ], [ 38.9671073084832, -0.017957289679262 ], [ 38.972722543483194, -0.014966566679223 ], [ 38.982488168483194, -0.011731703679234 ], [ 38.991704476483157, -0.00965650767927 ], [ 38.995488656483182, -0.008557875679233 ], [ 39.000127328483181, -0.007459242679263 ], [ 39.004521859483184, -0.006848890679239 ], [ 39.010320199483196, -0.00556715267925 ], [ 39.014287484483184, -0.004956800679227 ], [ 39.022527230483199, -0.004529554679268 ], [ 39.028142464483203, -0.003980238679221 ] ] ] } } +, +{ "type": "Feature", "id": 5, "properties": { "OBJECTID": 6, "ID_": 6276, "COUNTY_NAM": "LAMU", "CONST_CODE": 22, "CONSTITUEN": "LAMU WEST", "COUNTY_COD": 5, "Shape_Leng": 3.74468915941, "Shape_Area": 0.74374311266 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.077886117483153, -2.382459242679264 ], [ 40.859746468483188, -2.555432875679234 ], [ 40.80609656648317, -2.597730238679223 ], [ 40.753118050483174, -2.457959730679253 ], [ 40.742314828483181, -2.457532484679238 ], [ 40.709905160483167, -2.46247633267922 ], [ 40.700139535483167, -2.464124281679236 ], [ 40.694890511483202, -2.464673597679226 ], [ 40.666936410483167, -2.469068129679275 ], [ 40.663091195483155, -2.468579847679226 ], [ 40.659307015483186, -2.467481214679257 ], [ 40.648503793483194, -2.463941175679228 ], [ 40.63171912548318, -2.458936293679248 ], [ 40.628301156483182, -2.457349379679275 ], [ 40.621892464483203, -2.455945570679265 ], [ 40.605290902483198, -2.451062757679271 ], [ 40.600102914483152, -2.449353773679267 ], [ 40.59570838248316, -2.448133070679265 ], [ 40.537297738483169, -2.430249769679225 ], [ 40.532720101483157, -2.428662855679253 ], [ 40.529119027483198, -2.427136976679268 ], [ 40.525334847483172, -2.426526625679234 ], [ 40.509892953483181, -2.421643812679239 ], [ 40.4905448084832, -2.415967543679248 ], [ 40.4827323084832, -2.413465101679268 ], [ 40.470098031483182, -2.409864027679252 ], [ 40.465520394483171, -2.408277113679223 ], [ 40.461308968483188, -2.407178480679253 ], [ 40.449101937483185, -2.40333326567924 ], [ 40.444524300483174, -2.402967054679269 ], [ 40.446294320483155, -2.405774672679232 ], [ 40.444341195483155, -2.410352308679254 ], [ 40.440923226483157, -2.412976820679265 ], [ 40.438542855483199, -2.414563734679238 ], [ 40.435918343483188, -2.415967543679248 ], [ 40.434697640483186, -2.418775160679221 ], [ 40.431523812483185, -2.419141371679249 ], [ 40.42773963248316, -2.420056898679267 ], [ 40.425542367483153, -2.423780043679248 ], [ 40.416692269483171, -2.42536695767922 ], [ 40.411931527483198, -2.427259047679232 ], [ 40.409123910483167, -2.431165297679232 ], [ 40.406133187483185, -2.43208082467925 ], [ 40.402898324483196, -2.431348402679252 ], [ 40.4007010584832, -2.433240492679264 ], [ 40.396733773483156, -2.432141859679238 ], [ 40.392095101483157, -2.429639418679248 ], [ 40.38672400748316, -2.42927320767922 ], [ 40.383489144483171, -2.426648695679265 ], [ 40.38171912548318, -2.42426832467925 ], [ 40.377690804483159, -2.425244886679256 ], [ 40.37250281648317, -2.425061781679236 ], [ 40.368535531483182, -2.421033461679262 ], [ 40.361699593483188, -2.41755445767922 ], [ 40.358525765483186, -2.417249281679236 ], [ 40.355290902483198, -2.414563734679238 ], [ 40.3499198084832, -2.407971937679239 ], [ 40.349492562483185, -2.403150160679221 ], [ 40.345891488483169, -2.401074964679257 ], [ 40.273686898483156, -2.400647718679242 ], [ 40.269292367483153, -2.400464613679223 ], [ 40.251714242483153, -2.400342543679248 ], [ 40.250920785483167, -2.396863539679263 ], [ 40.252141488483169, -2.394239027679252 ], [ 40.252324593483188, -2.388928968679242 ], [ 40.250920785483167, -2.385633070679265 ], [ 40.251103890483186, -2.373670179679269 ], [ 40.250920785483167, -2.365247328679235 ], [ 40.250920785483167, -2.306836683679254 ], [ 40.251103890483186, -2.299756605679253 ], [ 40.250920785483167, -2.285474379679275 ], [ 40.250920785483167, -2.26215894967925 ], [ 40.251103890483186, -2.250562269679225 ], [ 40.250127328483181, -2.247266371679249 ], [ 40.249333871483195, -2.243543226679268 ], [ 40.247930062483185, -2.23536451567924 ], [ 40.247136605483199, -2.231763441679224 ], [ 40.243535531483182, -2.210645277679252 ], [ 40.233525765483186, -2.154859144679225 ], [ 40.228887093483188, -2.127759535679221 ], [ 40.225286019483171, -2.108472425679228 ], [ 40.219914925483174, -2.077466566679224 ], [ 40.215886605483199, -2.055738050679228 ], [ 40.213140023483156, -2.039929945679265 ], [ 40.218328011483202, -2.036756117679264 ], [ 40.260503304483159, -2.016736586679262 ], [ 40.290898812483185, -2.002637464679257 ], [ 40.300115121483195, -1.997754652679251 ], [ 40.403935921483189, -1.949658949679249 ], [ 40.443486703483181, -1.933667738679221 ], [ 40.488530648483156, -1.914136488679221 ], [ 40.500920785483167, -1.909131605679252 ], [ 40.517705453483181, -1.901258070679264 ], [ 40.522099984483184, -1.898633558679253 ], [ 40.694890511483202, -1.81525953567922 ], [ 40.736089242483153, -1.796948988679221 ], [ 40.746892464483203, -1.79017408667926 ], [ 40.797307504483165, -1.765454847679225 ], [ 40.83789588248316, -1.746167738679221 ], [ 40.8674979334832, -1.73127516067922 ], [ 40.893498910483167, -1.71864088267927 ], [ 41.018498910483167, -1.707654554679268 ], [ 41.077519906483182, -1.701856214679256 ], [ 41.164128793483194, -1.694531996679248 ], [ 41.24414588248316, -1.688184339679256 ], [ 41.338689339483203, -1.67957838267927 ], [ 41.400334847483172, -1.674451429679268 ], [ 41.533696664483152, -1.662183363679221 ], [ 41.563115609483184, -1.66096266067922 ], [ 41.564885629483165, -1.689466078679234 ], [ 41.569341195483155, -1.737744886679254 ], [ 41.569707406483182, -1.785657484679237 ], [ 41.566533578483181, -1.818067152679251 ], [ 41.56531287548318, -1.849439222679225 ], [ 41.467290414483152, -1.979932386679254 ], [ 41.349492562483185, -2.137342054679269 ], [ 41.208928597483172, -2.271375257679271 ], [ 41.16211463248316, -2.315747816679224 ], [ 41.077886117483153, -2.382459242679264 ] ] ] } } +, +{ "type": "Feature", "id": 6, "properties": { "OBJECTID": 7, "ID_": 6467, "COUNTY_NAM": "TAITA TAVETA", "CONST_CODE": 24, "CONSTITUEN": "WUNDANYI", "COUNTY_COD": 6, "Shape_Leng": 5.5844513245, "Shape_Area": 1.39385877374 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.173894418483194, -2.699842054679269 ], [ 38.182134164483152, -2.703931410679221 ], [ 38.184941781483182, -2.705030043679248 ], [ 38.191533578483181, -2.70997389067924 ], [ 38.20789100048318, -2.721631605679253 ], [ 38.215886605483199, -2.72755201567924 ], [ 38.221745980483199, -2.73145826567924 ], [ 38.225530160483167, -2.734448988679223 ], [ 38.235295785483167, -2.741529066679224 ], [ 38.241704476483157, -2.745862562679239 ], [ 38.24750281648317, -2.750135023679267 ], [ 38.250737679483159, -2.753247816679224 ], [ 38.2581229334832, -2.759778578679235 ], [ 38.260930550483174, -2.762830336679262 ], [ 38.279119027483198, -2.784070570679265 ], [ 38.281499398483156, -2.787366468679242 ], [ 38.293340218483188, -2.805066664679263 ], [ 38.300908578483181, -2.815930922679232 ], [ 38.304509652483198, -2.820081312679239 ], [ 38.314092171483189, -2.828931410679221 ], [ 38.3167166834832, -2.831555922679232 ], [ 38.318730843483188, -2.834241468679242 ], [ 38.321904671483189, -2.838941175679228 ], [ 38.33093787548318, -2.854444105679253 ], [ 38.339543832483166, -2.868360121679249 ], [ 38.358525765483186, -2.895154554679269 ], [ 38.36469031648317, -2.90278394967925 ], [ 38.371343148483156, -2.908765394679225 ], [ 38.386113656483182, -2.923047621679249 ], [ 38.393743050483174, -2.928479750679234 ], [ 38.397099984483184, -2.929456312679239 ], [ 38.400517953483181, -2.92927320767922 ], [ 38.405095589483203, -2.92817457467925 ], [ 38.409307015483186, -2.929578382679271 ], [ 38.41351844148317, -2.934766371679249 ], [ 38.416692269483171, -2.939344007679271 ], [ 38.42133094148317, -2.946668226679268 ], [ 38.430730355483199, -2.958081800679228 ], [ 38.433293832483166, -2.960645277679252 ], [ 38.43750525748316, -2.963452894679225 ], [ 38.439885629483165, -2.965650160679221 ], [ 38.446904671483189, -2.97224195767922 ], [ 38.4495291834832, -2.975476820679265 ], [ 38.451543343483188, -2.979138929679269 ], [ 38.457097543483194, -2.990979750679234 ], [ 38.460088265483186, -2.994031507679271 ], [ 38.46234656648317, -2.99177320767922 ], [ 38.465337289483152, -2.990552504679275 ], [ 38.468328011483202, -2.988965589679257 ], [ 38.47211219148317, -2.987561781679236 ], [ 38.476689828483181, -2.98786695767922 ], [ 38.488896859483184, -2.981336195679265 ], [ 38.4924979334832, -2.98536451567924 ], [ 38.495732796483189, -2.985974867679264 ], [ 38.506108773483156, -2.985059339679257 ], [ 38.511113656483182, -2.98536451567924 ], [ 38.515141976483157, -2.983533461679262 ], [ 38.516911996483195, -2.98005445767922 ], [ 38.519719613483169, -2.978162367679264 ], [ 38.522710336483208, -2.977063734679238 ], [ 38.526128304483159, -2.976575453679235 ], [ 38.530339730483199, -2.978040297679232 ], [ 38.5335135584832, -2.97755201567924 ], [ 38.536138070483155, -2.976270277679252 ], [ 38.539311898483156, -2.976331312679239 ], [ 38.544499886483202, -2.981763441679224 ], [ 38.550908578483181, -2.982984144679225 ], [ 38.55414344148317, -2.98536451567924 ], [ 38.557744515483186, -2.987439711679262 ], [ 38.561528695483155, -2.988782484679238 ], [ 38.564702523483156, -2.989331800679228 ], [ 38.568730843483188, -2.988965589679257 ], [ 38.572087777483198, -2.988965589679257 ], [ 38.576116097483172, -2.989636976679268 ], [ 38.579289925483174, -2.989148695679265 ], [ 38.583501351483157, -2.989636976679268 ], [ 38.586736214483203, -2.991834242679264 ], [ 38.588323129483165, -2.994641859679238 ], [ 38.594304574483196, -3.001050550679228 ], [ 38.59851600048318, -3.001355726679268 ], [ 38.602300179483159, -3.001050550679228 ], [ 38.605535043483194, -2.998853285679221 ], [ 38.608891976483157, -2.997449476679268 ], [ 38.609136117483153, -3.000867445679265 ], [ 38.607488168483194, -3.003736097679226 ], [ 38.607121957483166, -3.00684889067924 ], [ 38.610112679483159, -3.009168226679268 ], [ 38.614507211483208, -3.010083754679275 ], [ 38.617742074483196, -3.01215894967925 ], [ 38.626103890483186, -3.012647230679253 ], [ 38.629521859483184, -3.014173109679238 ], [ 38.632512582483166, -3.014051039679263 ], [ 38.635503304483159, -3.013440687679239 ], [ 38.639104379483165, -3.013928968679242 ], [ 38.6428885584832, -3.014966566679224 ], [ 38.646123421483189, -3.017346937679239 ], [ 38.64789344148317, -3.019544203679235 ], [ 38.650517953483181, -3.021863539679263 ], [ 38.652715218483188, -3.024671156679236 ], [ 38.65430213248316, -3.027234632679271 ], [ 38.6585135584832, -3.029065687679239 ], [ 38.66211463248316, -3.031751234679238 ], [ 38.66351844148317, -3.037671644679225 ], [ 38.666692269483171, -3.040967543679248 ], [ 38.671697152483198, -3.039563734679238 ], [ 38.676946175483174, -3.038770277679252 ], [ 38.680730355483199, -3.037732679679269 ], [ 38.684514535483167, -3.037366468679242 ], [ 38.68750525748316, -3.037976820679265 ], [ 38.69531775748316, -3.037976820679265 ], [ 38.704900277483198, -3.034375746679249 ], [ 38.7092948084832, -3.034375746679249 ], [ 38.716130746483195, -3.036634047679232 ], [ 38.719304574483196, -3.038159925679228 ], [ 38.722539437483185, -3.038770277679252 ], [ 38.725713265483186, -3.039746839679257 ], [ 38.72852088248316, -3.041150648679267 ], [ 38.731145394483171, -3.043042738679223 ], [ 38.734319222483172, -3.044629652679252 ], [ 38.73773719148317, -3.045056898679267 ], [ 38.742742074483196, -3.04536207467925 ], [ 38.74890662548318, -3.046765882679271 ], [ 38.753301156483182, -3.048230726679268 ], [ 38.757695687483185, -3.048963148679267 ], [ 38.761296761483202, -3.048230726679268 ], [ 38.765691293483194, -3.046582777679252 ], [ 38.770329964483203, -3.045545179679269 ], [ 38.774114144483171, -3.045667250679234 ], [ 38.777287972483172, -3.047559339679257 ], [ 38.77930213248316, -3.050061781679236 ], [ 38.782536996483195, -3.050733168679248 ], [ 38.785527718483188, -3.050244886679256 ], [ 38.789495004483165, -3.050244886679256 ], [ 38.793889535483167, -3.051648695679265 ], [ 38.79773475048318, -3.053662855679253 ], [ 38.800542367483153, -3.05427320767922 ], [ 38.806890023483156, -3.054761488679223 ], [ 38.810124886483202, -3.056043226679268 ], [ 38.809941781483182, -3.059766371679249 ], [ 38.806706918483194, -3.06153639067924 ], [ 38.802495492483153, -3.060254652679252 ], [ 38.799321664483152, -3.062146742679264 ], [ 38.798711312483185, -3.065869886679256 ], [ 38.800725472483172, -3.069043714679257 ], [ 38.805303109483184, -3.07075269967925 ], [ 38.814092171483189, -3.069776136679256 ], [ 38.818303597483172, -3.069654066679224 ], [ 38.821294320483155, -3.068433363679223 ], [ 38.826116097483172, -3.063672621679249 ], [ 38.830144418483194, -3.062451918679248 ], [ 38.836919320483155, -3.061170179679269 ], [ 38.839726937483185, -3.057752211679262 ], [ 38.842717660483167, -3.055860121679249 ], [ 38.845525277483198, -3.057263929679269 ], [ 38.847905648483156, -3.06294019967925 ], [ 38.851933968483188, -3.062879164679263 ], [ 38.859136117483153, -3.060742933679254 ], [ 38.863103402483198, -3.059766371679249 ], [ 38.865911019483171, -3.05817945767922 ], [ 38.873296273483156, -3.053357679679269 ], [ 38.876531136483202, -3.051648695679265 ], [ 38.879704964483203, -3.049146254679275 ], [ 38.887944711483208, -3.04395826567924 ], [ 38.891545785483167, -3.041272718679242 ], [ 38.895513070483155, -3.040174086679262 ], [ 38.900334847483172, -3.041333754679275 ], [ 38.903691781483182, -3.044568617679264 ], [ 38.90710975048318, -3.044568617679264 ], [ 38.915105355483199, -3.04536207467925 ], [ 38.918889535483167, -3.044934828679235 ], [ 38.925542367483153, -3.042371351679268 ], [ 38.929326546483189, -3.042432386679256 ], [ 38.932744515483186, -3.042066175679228 ], [ 38.934941781483182, -3.039136488679223 ], [ 38.93750525748316, -3.036939222679226 ], [ 38.940740121483195, -3.037061293679248 ], [ 38.944341195483155, -3.038037855679253 ], [ 38.948308480483199, -3.039441664679263 ], [ 38.952703011483202, -3.040662367679264 ], [ 38.96429969148317, -3.04145582467925 ], [ 38.9671073084832, -3.041944105679253 ], [ 38.970342171483189, -3.042066175679228 ], [ 38.9749198084832, -3.041944105679253 ], [ 38.978337777483198, -3.041272718679242 ], [ 38.984319222483172, -3.037183363679223 ], [ 38.987309945483155, -3.034864027679252 ], [ 38.989324105483199, -3.031140882679271 ], [ 38.992131722483172, -3.028455336679262 ], [ 38.996526254483165, -3.027356703679235 ], [ 39.002712621483163, -3.02717994967924 ], [ 39.008306039483152, -3.027967054679269 ], [ 39.013494027483198, -3.027844984679238 ], [ 39.019109261483202, -3.026868422679232 ], [ 39.022527230483199, -3.025159437679239 ], [ 39.025090707483166, -3.023450453679235 ], [ 39.028142464483203, -3.023267347679226 ], [ 39.031133187483185, -3.024549086679262 ], [ 39.034734261483202, -3.026441175679228 ], [ 39.038091195483155, -3.027234632679271 ], [ 39.0413260584832, -3.025952894679225 ], [ 39.045537484483184, -3.024549086679262 ], [ 39.045293343483188, -3.029248793679248 ], [ 39.046086800483174, -3.032666761679256 ], [ 39.050298226483157, -3.03474195767922 ], [ 39.05469275748316, -3.03614576567924 ], [ 39.059697640483186, -3.04145582467925 ], [ 39.062139046483189, -3.043042738679223 ], [ 39.065923226483157, -3.043653089679257 ], [ 39.069097054483159, -3.043164808679254 ], [ 39.072515023483156, -3.042859632679271 ], [ 39.076116097483172, -3.043164808679254 ], [ 39.079289925483174, -3.044629652679252 ], [ 39.080693734483184, -3.048535902679252 ], [ 39.081914437483185, -3.05317457467925 ], [ 39.086125863483169, -3.05567701567924 ], [ 39.089543832483166, -3.053052504679275 ], [ 39.08929969148317, -3.049451429679269 ], [ 39.090093148483156, -3.046155531679236 ], [ 39.094304574483196, -3.043531019679225 ], [ 39.103093636483202, -3.040174086679262 ], [ 39.106938851483157, -3.037061293679248 ], [ 39.111516488483169, -3.029431898679267 ], [ 39.11414100048318, -3.026746351679268 ], [ 39.122319711483208, -3.023267347679226 ], [ 39.126286996483195, -3.021863539679263 ], [ 39.13031531648317, -3.022351820679265 ], [ 39.131536019483171, -3.02638014067924 ], [ 39.132146371483195, -3.031079847679226 ], [ 39.134892953483181, -3.038159925679228 ], [ 39.134343636483202, -3.042066175679228 ], [ 39.136113656483182, -3.044446547679232 ], [ 39.140691293483194, -3.044080336679262 ], [ 39.1428885584832, -3.046765882679271 ], [ 39.144292367483153, -3.050672132679271 ], [ 39.147710336483208, -3.049634535679221 ], [ 39.151738656483182, -3.047254164679263 ], [ 39.156133187483185, -3.050733168679248 ], [ 39.157720101483157, -3.053968031679236 ], [ 39.160710824483196, -3.057935316679224 ], [ 39.164311898483156, -3.063184339679257 ], [ 39.16492225048318, -3.067578871679249 ], [ 39.167729867483153, -3.068738539679263 ], [ 39.171086800483174, -3.067334730679253 ], [ 39.172917855483199, -3.064954359679238 ], [ 39.1741385584832, -3.062146742679264 ], [ 39.175908578483181, -3.059766371679249 ], [ 39.17969275748316, -3.060437757679271 ], [ 39.183110726483157, -3.064771254679275 ], [ 39.188298714483203, -3.065747816679224 ], [ 39.191533578483181, -3.065076429679269 ], [ 39.196538461483208, -3.063733656679236 ], [ 39.200322640483186, -3.064466078679235 ], [ 39.203313363483169, -3.066968519679225 ], [ 39.20789100048318, -3.068433363679223 ], [ 39.211308968483188, -3.067884047679232 ], [ 39.215520394483171, -3.067639906679236 ], [ 39.219914925483174, -3.06934889067924 ], [ 39.208928597483172, -3.110730726679268 ], [ 39.20789100048318, -3.114148695679265 ], [ 39.205693734483184, -3.123242933679254 ], [ 39.202092660483167, -3.136060316679224 ], [ 39.197515023483156, -3.153943617679264 ], [ 39.178105843483188, -3.226941664679263 ], [ 39.146916879483165, -3.345532972679226 ], [ 39.142339242483153, -3.361280043679248 ], [ 39.137700570483155, -3.379834730679253 ], [ 39.129094613483169, -3.41254957467925 ], [ 39.124700082483166, -3.428662855679253 ], [ 39.122136605483199, -3.435559828679235 ], [ 39.120305550483174, -3.445935804679269 ], [ 39.111089242483153, -3.481031019679225 ], [ 39.110112679483159, -3.48396070767922 ], [ 39.107915414483152, -3.492566664679263 ], [ 39.10492469148317, -3.507031996679249 ], [ 39.103093636483202, -3.514234144679225 ], [ 39.102117074483196, -3.517346937679239 ], [ 39.09570838248316, -3.541761000679234 ], [ 39.073491586483208, -3.627454359679238 ], [ 39.069341195483155, -3.641858656679236 ], [ 39.06390906648317, -3.661756117679264 ], [ 39.061711800483174, -3.669141371679249 ], [ 39.057134164483152, -3.686048109679238 ], [ 39.052922738483169, -3.684644300679228 ], [ 39.049932015483186, -3.683057386679256 ], [ 39.038701546483189, -3.676465589679257 ], [ 39.032903207483166, -3.67286451567924 ], [ 39.024907601483157, -3.668531019679225 ], [ 39.018498910483167, -3.664563734679238 ], [ 38.969121468483188, -3.636060316679224 ], [ 38.96570350048318, -3.641553480679253 ], [ 38.956304086483208, -3.657544691679224 ], [ 38.93890906648317, -3.686231214679257 ], [ 38.936528695483155, -3.690381605679253 ], [ 38.93109656648317, -3.69825514067924 ], [ 38.973332894483171, -3.722852308679254 ], [ 38.985539925483174, -3.730237562679239 ], [ 38.9924979334832, -3.734632093679242 ], [ 39.019109261483202, -3.750745375679234 ], [ 39.035527718483188, -3.761731703679235 ], [ 39.033086312483185, -3.766736586679262 ], [ 39.02094031648317, -3.794873793679248 ], [ 39.015141976483157, -3.807874281679236 ], [ 39.013494027483198, -3.811231214679257 ], [ 39.012090218483188, -3.814771254679275 ], [ 39.005925668483194, -3.828748304679269 ], [ 38.993718636483202, -3.855847914679263 ], [ 38.990911019483171, -3.862744886679256 ], [ 38.987493050483174, -3.870069105679253 ], [ 38.984929574483196, -3.876355726679268 ], [ 38.977910531483182, -3.891736586679262 ], [ 38.972905648483156, -3.903150160679221 ], [ 38.970891488483169, -3.90723951567924 ], [ 38.965520394483171, -3.919873793679248 ], [ 38.959111703483181, -3.933850843679242 ], [ 38.950932992483153, -3.952649672679232 ], [ 38.94672156648317, -3.961865980679253 ], [ 38.928105843483188, -3.968457777679252 ], [ 38.903142464483203, -3.976880629679275 ], [ 38.88171912548318, -3.984571058679254 ], [ 38.877324593483188, -3.986280043679248 ], [ 38.867314828483181, -3.989453871679249 ], [ 38.857121957483166, -3.993360121679249 ], [ 38.835088265483186, -4.000867445679265 ], [ 38.819097054483159, -4.007337172679232 ], [ 38.764104379483165, -4.026929457679219 ], [ 38.74609900748316, -4.033582289679262 ], [ 38.670720589483203, -4.060681898679266 ], [ 38.591924203483181, -4.088636000679233 ], [ 38.570134652483198, -4.096570570679265 ], [ 38.5510916834832, -4.103162367679263 ], [ 38.534734261483202, -4.109143812679238 ], [ 38.452886117483153, -4.138074476679267 ], [ 38.446111214483203, -4.140149672679232 ], [ 38.418096078483181, -4.120679457679219 ], [ 38.414128793483194, -4.118177015679239 ], [ 38.39594031648317, -4.105237562679238 ], [ 38.388494027483198, -4.100171644679224 ], [ 38.337712777483198, -4.064282972679226 ], [ 38.307744515483186, -4.043347914679262 ], [ 38.061528695483155, -3.868360121679249 ], [ 38.016728890483186, -3.838941175679228 ], [ 37.991338265483186, -3.820935804679269 ], [ 37.946294320483155, -3.789380629679275 ], [ 37.924321664483152, -3.774365980679253 ], [ 37.884343636483202, -3.746045668679248 ], [ 37.785710824483196, -3.676831800679228 ], [ 37.78210975048318, -3.667859632679271 ], [ 37.778691781483182, -3.659864027679252 ], [ 37.775517953483181, -3.651563246679249 ], [ 37.773931039483152, -3.643872816679224 ], [ 37.776494515483186, -3.645581800679228 ], [ 37.778691781483182, -3.647779066679224 ], [ 37.781926644483171, -3.648267347679226 ], [ 37.784734261483202, -3.647779066679224 ], [ 37.783696664483152, -3.644544203679235 ], [ 37.784307015483186, -3.636365492679264 ], [ 37.782720101483157, -3.630384047679232 ], [ 37.77930213248316, -3.620862562679239 ], [ 37.776128304483159, -3.613050062679239 ], [ 37.776128304483159, -3.607984144679225 ], [ 37.774724496483195, -3.603467543679248 ], [ 37.773686898483156, -3.598950941679224 ], [ 37.772710336483151, -3.592542250679234 ], [ 37.770513070483155, -3.58942945767922 ], [ 37.768926156483182, -3.581555922679232 ], [ 37.767522347483172, -3.576367933679254 ], [ 37.76453162548318, -3.572766859679238 ], [ 37.764714730483199, -3.577039320679265 ], [ 37.764287484483184, -3.580762464679257 ], [ 37.76453162548318, -3.584363539679263 ], [ 37.762517464483203, -3.588574964679257 ], [ 37.760503304483159, -3.586438734679238 ], [ 37.760686410483167, -3.582044203679235 ], [ 37.760137093483188, -3.574231703679235 ], [ 37.757512582483166, -3.571973402679252 ], [ 37.754338754483165, -3.57465894967925 ], [ 37.749944222483172, -3.568433363679223 ], [ 37.748723519483171, -3.563855726679268 ], [ 37.748540414483152, -3.559461195679265 ], [ 37.748113168483194, -3.554883558679254 ], [ 37.747136605483199, -3.55036695767922 ], [ 37.74414588248316, -3.543836195679265 ], [ 37.73969031648317, -3.542981703679235 ], [ 37.727727425483174, -3.539929945679265 ], [ 37.725530160483167, -3.536878187679239 ], [ 37.722722543483194, -3.533582289679263 ], [ 37.719487679483159, -3.531446058679254 ], [ 37.716313851483157, -3.531262953679235 ], [ 37.712529671483189, -3.530652601679268 ], [ 37.708318246483195, -3.530347425679228 ], [ 37.704289925483174, -3.529553968679242 ], [ 37.700322640483186, -3.529431898679267 ], [ 37.695134652483198, -3.527356703679235 ], [ 37.692143929483159, -3.525037367679264 ], [ 37.690129769483171, -3.522351820679265 ], [ 37.687322152483198, -3.517041761679256 ], [ 37.683110726483157, -3.514539320679265 ], [ 37.679326546483189, -3.513867933679254 ], [ 37.676946175483174, -3.511182386679256 ], [ 37.675115121483195, -3.507459242679264 ], [ 37.672124398483156, -3.505567152679252 ], [ 37.668340218483188, -3.506238539679263 ], [ 37.665105355483199, -3.50544508267922 ], [ 37.660710824483196, -3.507154066679224 ], [ 37.657292855483199, -3.509168226679268 ], [ 37.654546273483156, -3.512464125679234 ], [ 37.647099984483184, -3.516248304679269 ], [ 37.64453650748316, -3.51856764067924 ], [ 37.640508187483185, -3.519483168679248 ], [ 37.636907113483169, -3.519666273679267 ], [ 37.6331229334832, -3.520948011679256 ], [ 37.629888070483155, -3.523267347679226 ], [ 37.625493539483152, -3.523633558679254 ], [ 37.621343148483156, -3.525464613679223 ], [ 37.616521371483195, -3.52583082467925 ], [ 37.61133338248316, -3.524549086679262 ], [ 37.606938851483157, -3.522779066679224 ], [ 37.604314339483203, -3.518872816679224 ], [ 37.605535043483194, -3.513745863679223 ], [ 37.607488168483194, -3.509961683679254 ], [ 37.607488168483194, -3.505567152679252 ], [ 37.610906136483202, -3.503247816679224 ], [ 37.61273719148317, -3.500562269679225 ], [ 37.61469031648317, -3.497266371679249 ], [ 37.618108285483167, -3.494275648679267 ], [ 37.620305550483174, -3.490064222679226 ], [ 37.624516976483157, -3.488233168679248 ], [ 37.626103890483186, -3.48536451567924 ], [ 37.625493539483152, -3.481275160679221 ], [ 37.625127328483181, -3.472852308679254 ], [ 37.623296273483156, -3.467176039679263 ], [ 37.619939339483203, -3.465467054679269 ], [ 37.617925179483159, -3.461865980679253 ], [ 37.613530648483156, -3.462964613679223 ], [ 37.609502328483181, -3.46333082467925 ], [ 37.603337777483198, -3.460767347679226 ], [ 37.599736703483181, -3.460340101679268 ], [ 37.596135629483165, -3.459668714679257 ], [ 37.593328011483202, -3.461133558679254 ], [ 37.586308968483188, -3.462232191679224 ], [ 37.585088265483186, -3.454236586679262 ], [ 37.585088265483186, -3.440564711679262 ], [ 37.618718636483202, -3.402661879679275 ], [ 37.629338754483165, -3.392530043679248 ], [ 37.642339242483153, -3.381055433679254 ], [ 37.663945687483185, -3.358533461679262 ], [ 37.680730355483199, -3.356580336679262 ], [ 37.685124886483202, -3.350965101679268 ], [ 37.685124886483202, -3.338758070679265 ], [ 37.685735238483169, -3.323133070679265 ], [ 37.689885629483165, -3.323682386679256 ], [ 37.692143929483159, -3.326551039679263 ], [ 37.695134652483198, -3.326551039679263 ], [ 37.698308480483199, -3.326856214679257 ], [ 37.701909554483159, -3.326367933679254 ], [ 37.704106820483155, -3.322949964679257 ], [ 37.708928597483172, -3.319654066679224 ], [ 37.711308968483188, -3.316968519679225 ], [ 37.71234656648317, -3.312329847679226 ], [ 37.711492074483196, -3.308667738679223 ], [ 37.70789100048318, -3.284680922679232 ], [ 37.706731332483166, -3.277844984679238 ], [ 37.701543343483188, -3.240979750679234 ], [ 37.695500863483169, -3.201734144679225 ], [ 37.694707406483182, -3.191663343679242 ], [ 37.692693246483195, -3.177564222679226 ], [ 37.751103890483186, -3.176038343679242 ], [ 37.76172400748316, -3.17536695767922 ], [ 37.767705453483181, -3.175183851679268 ], [ 37.785893929483159, -3.173841078679235 ], [ 37.792302621483195, -3.173535902679252 ], [ 37.796086800483174, -3.17536695767922 ], [ 37.798711312483185, -3.173230726679268 ], [ 37.8010916834832, -3.171643812679239 ], [ 37.805486214483203, -3.170667250679234 ], [ 37.809514535483167, -3.171155531679236 ], [ 37.81250525748316, -3.171155531679236 ], [ 37.816533578483181, -3.173657972679226 ], [ 37.819524300483174, -3.17677076567924 ], [ 37.823308480483199, -3.177930433679254 ], [ 37.826543343483188, -3.180371839679257 ], [ 37.829900277483198, -3.183545668679248 ], [ 37.831731332483166, -3.186841566679224 ], [ 37.834722055483205, -3.189160902679252 ], [ 37.839910043483194, -3.188855726679268 ], [ 37.844121468483188, -3.187146742679264 ], [ 37.8499198084832, -3.184339125679234 ], [ 37.853337777483198, -3.181165297679232 ], [ 37.853887093483188, -3.177136976679268 ], [ 37.853703988483169, -3.17426832467925 ], [ 37.855290902483198, -3.171765882679271 ], [ 37.854497445483155, -3.166333754679275 ], [ 37.854497445483155, -3.145154554679269 ], [ 37.854741586483151, -3.138379652679252 ], [ 37.854741586483151, -3.131665785679221 ], [ 37.854497445483155, -3.124158461679262 ], [ 37.854741586483151, -3.117383558679254 ], [ 37.854741586483151, -3.089368422679232 ], [ 37.857121957483166, -3.081861097679226 ], [ 37.866521371483195, -3.081677992679264 ], [ 37.871343148483156, -3.079969007679271 ], [ 37.875737679483159, -3.043469984679238 ], [ 37.876286996483195, -3.037183363679223 ], [ 37.880925668483194, -3.002637464679257 ], [ 37.882146371483195, -2.995557386679256 ], [ 37.884892953483181, -2.973462660679221 ], [ 37.886540902483198, -2.958753187679239 ], [ 37.888494027483198, -2.943738539679263 ], [ 37.895085824483196, -2.888135511679256 ], [ 37.918523324483196, -2.870862562679239 ], [ 37.922490609483184, -2.851941664679263 ], [ 37.925298226483157, -2.837781507679271 ], [ 37.926518929483159, -2.830762464679257 ], [ 37.928716195483155, -2.820935804679269 ], [ 37.92969275748316, -2.81544264067924 ], [ 37.930913461483151, -2.809949476679268 ], [ 37.931523812483185, -2.806165297679232 ], [ 37.933293832483166, -2.798352797679232 ], [ 37.938115609483184, -2.773267347679226 ], [ 37.949101937483185, -2.777967054679269 ], [ 37.95789100048318, -2.782178480679253 ], [ 37.975102914483152, -2.789868910679221 ], [ 38.043706429483159, -2.752637464679257 ], [ 38.074346078483181, -2.736829359679238 ], [ 38.100102914483152, -2.723035414679263 ], [ 38.102727425483174, -2.720655043679248 ], [ 38.106511605483199, -2.719434339679257 ], [ 38.110295785483167, -2.717847425679228 ], [ 38.113530648483156, -2.715772230679253 ], [ 38.117314828483181, -2.712781507679271 ], [ 38.118535531483182, -2.708448011679256 ], [ 38.123540414483152, -2.705762464679257 ], [ 38.127934945483155, -2.701428968679242 ], [ 38.131108773483156, -2.700269300679228 ], [ 38.139714730483199, -2.700635511679256 ], [ 38.144109261483202, -2.700574476679268 ], [ 38.14734412548318, -2.701245863679223 ], [ 38.151311410483167, -2.701062757679271 ], [ 38.154912484483184, -2.698865492679264 ], [ 38.157536996483195, -2.69685133267922 ], [ 38.158086312483185, -2.69294508267922 ], [ 38.159123910483167, -2.688977797679232 ], [ 38.160100472483172, -2.685865004679275 ], [ 38.161504281483182, -2.683057386679256 ], [ 38.163091195483155, -2.695447523679267 ], [ 38.168523324483196, -2.696546156679236 ], [ 38.170903695483155, -2.69825514067924 ], [ 38.173894418483194, -2.699842054679269 ] ] ] } } +, +{ "type": "Feature", "id": 7, "properties": { "OBJECTID": 8, "ID_": 2382, "COUNTY_NAM": "GARISSA", "CONST_CODE": 28, "CONSTITUEN": "BALAMBALA", "COUNTY_COD": 7, "Shape_Leng": 10.454326269399999, "Shape_Area": 3.54169829321 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.612192051483184, 0.686615948320761 ], [ 39.613896859483184, 0.683031480320776 ], [ 39.616521371483195, 0.680468003320752 ], [ 39.619512093483188, 0.67802659732075 ], [ 39.623540414483152, 0.675463120320783 ], [ 39.626286996483195, 0.671617906320759 ], [ 39.627507699483196, 0.667833726320734 ], [ 39.63031531648317, 0.66685716332074 ], [ 39.632939828483181, 0.665270249320767 ], [ 39.636296761483202, 0.663866441320747 ], [ 39.63953162548318, 0.66044847232075 ], [ 39.645329964483203, 0.655626695320732 ], [ 39.649724496483195, 0.645861070320732 ], [ 39.6507010584832, 0.642015855320776 ], [ 39.653691781483182, 0.63505784732075 ], [ 39.654119027483198, 0.631639878320752 ], [ 39.654912484483184, 0.628832261320779 ], [ 39.663335336483208, 0.616625230320776 ], [ 39.664495004483165, 0.612841050320751 ], [ 39.666936411483157, 0.609850326320779 ], [ 39.66992713248316, 0.607469956320754 ], [ 39.673528207483166, 0.602831285320744 ], [ 39.675298226483157, 0.600267808320777 ], [ 39.676518929483159, 0.596666734320761 ], [ 39.679326546483189, 0.59263841332074 ], [ 39.680730355483199, 0.589464585320738 ], [ 39.683537972483172, 0.586840074320773 ], [ 39.686345589483203, 0.583849351320734 ], [ 39.688298714483203, 0.580675523320733 ], [ 39.689519418483194, 0.577257554320736 ], [ 39.693303597483172, 0.574816148320733 ], [ 39.696294320483155, 0.572435777320775 ], [ 39.698491586483208, 0.570055406320759 ], [ 39.700505746483195, 0.565416734320761 ], [ 39.703313363483169, 0.562059800320751 ], [ 39.70648719148317, 0.559618394320748 ], [ 39.7092948084832, 0.556871812320762 ], [ 39.712712777483198, 0.553270738320746 ], [ 39.716313851483157, 0.548876206320754 ], [ 39.7171073084832, 0.54606858932078 ], [ 39.718328011483202, 0.543871324320773 ], [ 39.721745980483199, 0.543444077320769 ], [ 39.724126351483157, 0.540636460320738 ], [ 39.726140511483202, 0.537462632320737 ], [ 39.727300179483159, 0.534838120320783 ], [ 39.728887093483188, 0.532030503320752 ], [ 39.73132850048318, 0.528856675320751 ], [ 39.732121957483166, 0.525255601320734 ], [ 39.734319222483172, 0.522447984320761 ], [ 39.736516488483169, 0.520861070320732 ], [ 39.740117562483185, 0.520861070320732 ], [ 39.743535531483182, 0.518846910320744 ], [ 39.746343148483156, 0.515856187320762 ], [ 39.74890662548318, 0.51481858932078 ], [ 39.751286996483195, 0.513475816320747 ], [ 39.75531531648317, 0.512072007320737 ], [ 39.758489144483171, 0.51005784732075 ], [ 39.761540902483198, 0.509630601320734 ], [ 39.763494027483198, 0.507433335320738 ], [ 39.765141976483157, 0.504076402320775 ], [ 39.769292367483153, 0.501634995320783 ], [ 39.773503793483194, 0.498033921320766 ], [ 39.7757010584832, 0.49424974232073 ], [ 39.779912484483184, 0.492418687320762 ], [ 39.784307015483186, 0.489061753320752 ], [ 39.787724984483184, 0.487841050320751 ], [ 39.791142953483181, 0.486864488320746 ], [ 39.795293343483188, 0.486254136320779 ], [ 39.798528207483166, 0.483873765320763 ], [ 39.801518929483159, 0.482042710320738 ], [ 39.805303109483184, 0.481676499320767 ], [ 39.812139046483189, 0.482469956320754 ], [ 39.816899789483152, 0.481432359320761 ], [ 39.822087777483198, 0.480822007320737 ], [ 39.825505746483195, 0.478868882320737 ], [ 39.829289925483174, 0.477648179320736 ], [ 39.833745492483153, 0.47862474232073 ], [ 39.83789588248316, 0.478868882320737 ], [ 39.84070350048318, 0.47667161732073 ], [ 39.844914925483174, 0.476244370320783 ], [ 39.849126351483157, 0.476244370320783 ], [ 39.853093636483202, 0.474657456320754 ], [ 39.855901254483165, 0.470262925320751 ], [ 39.858891976483157, 0.46763841332074 ], [ 39.862309945483155, 0.465441148320733 ], [ 39.8655448084832, 0.464464585320738 ], [ 39.87109900748316, 0.459032456320754 ], [ 39.874944222483172, 0.457262437320762 ], [ 39.878545296483189, 0.457262437320762 ], [ 39.881291879483165, 0.458238999320767 ], [ 39.884343636483202, 0.460253160320744 ], [ 39.887090218483188, 0.46122972232075 ], [ 39.891545785483167, 0.461473863320746 ], [ 39.894902718483188, 0.460070054320736 ], [ 39.898503793483194, 0.460070054320736 ], [ 39.901921761483202, 0.46104661732073 ], [ 39.904912484483184, 0.460863511320779 ], [ 39.907536996483195, 0.458666245320783 ], [ 39.911687386483202, 0.456468980320776 ], [ 39.913701546483189, 0.452623765320763 ], [ 39.916936410483167, 0.451219956320754 ], [ 39.928533089483203, 0.440660874320767 ], [ 39.934697640483186, 0.43565599232073 ], [ 39.948491586483208, 0.425218980320776 ], [ 39.957707894483171, 0.419420640320763 ], [ 39.966313851483157, 0.414415757320737 ], [ 39.979741586483208, 0.407823960320738 ], [ 39.984502328483181, 0.405870835320738 ], [ 39.995915902483198, 0.401659410320744 ], [ 39.999944222483172, 0.400621812320762 ], [ 40.003301156483182, 0.399462144320748 ], [ 40.006291879483165, 0.398668687320762 ], [ 40.014104379483165, 0.396837632320737 ], [ 40.02148963248316, 0.395616929320736 ], [ 40.026494515483186, 0.395250718320765 ], [ 40.043706429483159, 0.395067613320746 ], [ 40.048711312483185, 0.394274156320759 ], [ 40.05414344148317, 0.393053452320769 ], [ 40.058721078483181, 0.391222398320733 ], [ 40.063115609483184, 0.388475816320747 ], [ 40.066289437483185, 0.386217515320763 ], [ 40.070500863483169, 0.38365403832074 ], [ 40.075932992483153, 0.379625718320765 ], [ 40.079289925483174, 0.377672593320765 ], [ 40.094914925483174, 0.366625230320776 ], [ 40.102300179483159, 0.361071031320759 ], [ 40.1155448084832, 0.350634019320748 ], [ 40.125493539483152, 0.343248765320763 ], [ 40.130742562483185, 0.339647691320747 ], [ 40.134892953483181, 0.337023179320736 ], [ 40.140691293483194, 0.333849351320734 ], [ 40.145085824483196, 0.332018296320766 ], [ 40.152898324483196, 0.32927171432078 ], [ 40.156499398483156, 0.327440660320744 ], [ 40.160100472483172, 0.32506028832074 ], [ 40.163091195483155, 0.322435777320775 ], [ 40.166142953483181, 0.320055406320759 ], [ 40.173894418483194, 0.312853257320737 ], [ 40.181706918483194, 0.305040757320737 ], [ 40.196294320483155, 0.288439195320732 ], [ 40.201299203483181, 0.282030503320752 ], [ 40.211736214483203, 0.270433824320773 ], [ 40.215093148483156, 0.267015855320776 ], [ 40.223332894483171, 0.259447495320783 ], [ 40.230718148483156, 0.253221910320744 ], [ 40.236516488483169, 0.248827378320752 ], [ 40.244695199483196, 0.243273179320736 ], [ 40.249333871483195, 0.240648667320781 ], [ 40.256108773483156, 0.237230699320773 ], [ 40.260320199483196, 0.234850327320769 ], [ 40.270513070483155, 0.230638902320775 ], [ 40.281743539483152, 0.226427476320734 ], [ 40.300542367483153, 0.217272202320769 ], [ 40.306340707483166, 0.21403733932078 ], [ 40.309941781483182, 0.211840074320773 ], [ 40.32312537548318, 0.201830308320777 ], [ 40.328740609483184, 0.198473374320767 ], [ 40.333501351483157, 0.196642320320732 ], [ 40.342717660483167, 0.194628160320744 ], [ 40.351933968483188, 0.196276109320761 ], [ 40.357305062483185, 0.196276109320761 ], [ 40.366338265483186, 0.195665757320737 ], [ 40.374516976483157, 0.194261949320773 ], [ 40.379094613483169, 0.193224351320734 ], [ 40.382939828483181, 0.191637437320762 ], [ 40.386113656483182, 0.189623277320775 ], [ 40.38953162548318, 0.187059800320751 ], [ 40.393926156483182, 0.18443528832074 ], [ 40.397099984483184, 0.182665269320748 ], [ 40.399907601483157, 0.181627671320766 ], [ 40.406133187483185, 0.181017320320732 ], [ 40.415715707483166, 0.184069077320769 ], [ 40.418706429483159, 0.186022202320769 ], [ 40.422490609483184, 0.187059800320751 ], [ 40.426335824483196, 0.187426011320779 ], [ 40.430730355483199, 0.187426011320779 ], [ 40.435735238483169, 0.186632554320736 ], [ 40.44031287548318, 0.185228745320783 ], [ 40.444707406483182, 0.18443528832074 ], [ 40.448918832483166, 0.183458726320734 ], [ 40.453313363483169, 0.183031480320776 ], [ 40.458745492483153, 0.182848374320767 ], [ 40.461736214483203, 0.183458726320734 ], [ 40.472905648483156, 0.183641831320754 ], [ 40.475896371483195, 0.183824937320762 ], [ 40.479314339483203, 0.184252183320777 ], [ 40.482121957483166, 0.185045640320763 ], [ 40.485539925483174, 0.187059800320751 ], [ 40.490911019483171, 0.191454331320754 ], [ 40.493535531483182, 0.193834702320769 ], [ 40.496526254483165, 0.194628160320744 ], [ 40.499516976483157, 0.194261949320773 ], [ 40.502324593483188, 0.192064683320777 ], [ 40.505498421483189, 0.190233628320752 ], [ 40.508916390483186, 0.192675035320744 ], [ 40.510930550483174, 0.196642320320732 ], [ 40.511907113483169, 0.199449937320762 ], [ 40.512517464483203, 0.202257554320736 ], [ 40.51453162548318, 0.20622483932078 ], [ 40.518743050483174, 0.209032456320754 ], [ 40.521916879483165, 0.212450425320751 ], [ 40.523686898483156, 0.217455308320777 ], [ 40.527532113483169, 0.221239488320746 ], [ 40.531499398483156, 0.223436753320752 ], [ 40.535344613483169, 0.224657456320754 ], [ 40.540288461483208, 0.224657456320754 ], [ 40.544316781483182, 0.223070542320781 ], [ 40.548100961483208, 0.221239488320746 ], [ 40.5510916834832, 0.219225327320769 ], [ 40.55414344148317, 0.218065660320744 ], [ 40.557927621483195, 0.217272202320769 ], [ 40.560307992483153, 0.215624253320752 ], [ 40.563542855483199, 0.213854234320761 ], [ 40.567327035483167, 0.213060777320775 ], [ 40.573308480483199, 0.213243882320737 ], [ 40.577519906483182, 0.215258042320781 ], [ 40.583928597483172, 0.213671128320752 ], [ 40.587102425483174, 0.213060777320775 ], [ 40.590337289483152, 0.215868394320748 ], [ 40.593144906483182, 0.219652574320773 ], [ 40.597539437483185, 0.223436753320752 ], [ 40.602727425483174, 0.223253648320733 ], [ 40.607121957483166, 0.224047105320776 ], [ 40.609136117483153, 0.227220933320777 ], [ 40.612126839483203, 0.22966233932078 ], [ 40.616521371483195, 0.229845445320732 ], [ 40.620732796483189, 0.229051988320746 ], [ 40.629888070483155, 0.230272691320747 ], [ 40.634343636483202, 0.230028550320751 ], [ 40.637944711483208, 0.230028550320751 ], [ 40.641118539483152, 0.229418199320773 ], [ 40.645696175483174, 0.228868882320737 ], [ 40.650945199483196, 0.231066148320733 ], [ 40.654119027483198, 0.233873765320763 ], [ 40.659123910483167, 0.237841050320751 ], [ 40.666142953483181, 0.24302903832074 ], [ 40.669316781483182, 0.244860093320765 ], [ 40.676702035483167, 0.250048081320754 ], [ 40.681890023483156, 0.254625718320765 ], [ 40.6839041834832, 0.257250230320776 ], [ 40.684514535483167, 0.260668199320773 ], [ 40.684087289483152, 0.264452378320752 ], [ 40.684697640483186, 0.268053452320769 ], [ 40.687322152483198, 0.271044175320751 ], [ 40.691106332483166, 0.27263108932078 ], [ 40.695500863483169, 0.275255601320734 ], [ 40.704717171483189, 0.291246812320762 ], [ 40.705693734483184, 0.294237535320744 ], [ 40.707524789483152, 0.29802171432078 ], [ 40.709111703483181, 0.304674546320766 ], [ 40.712529671483189, 0.312426011320779 ], [ 40.714910043483194, 0.315843980320776 ], [ 40.718694222483172, 0.318834702320769 ], [ 40.721745980483199, 0.320055406320759 ], [ 40.724736703483181, 0.320848863320746 ], [ 40.731511605483199, 0.321642320320732 ], [ 40.734929574483196, 0.322435777320775 ], [ 40.737493050483174, 0.323839585320738 ], [ 40.739507211483208, 0.326219956320754 ], [ 40.74109412548318, 0.328661363320746 ], [ 40.743535531483182, 0.331652085320738 ], [ 40.745488656483182, 0.334459702320769 ], [ 40.748113168483194, 0.337023179320736 ], [ 40.752934945483155, 0.341051499320767 ], [ 40.75671912548318, 0.343676011320779 ], [ 40.77094031648317, 0.35045091332074 ], [ 40.775090707483166, 0.352037827320769 ], [ 40.77930213248316, 0.353258531320759 ], [ 40.783940804483159, 0.354235093320765 ], [ 40.79773475048318, 0.357836167320781 ], [ 40.807927621483195, 0.36021653832074 ], [ 40.819097054483159, 0.363451402320775 ], [ 40.827703011483202, 0.365038316320747 ], [ 40.831120980483199, 0.365465562320762 ], [ 40.842717660483167, 0.367845933320777 ], [ 40.84711219148317, 0.369066636320779 ], [ 40.858708871483195, 0.373461167320781 ], [ 40.88672400748316, 0.388842027320775 ], [ 40.897710336483208, 0.399034898320733 ], [ 40.905095589483203, 0.406237046320766 ], [ 40.917729867483153, 0.419420640320763 ], [ 40.923528207483166, 0.423448960320738 ], [ 40.934514535483167, 0.429430406320759 ], [ 40.942693246483195, 0.432238023320733 ], [ 40.946294320483155, 0.433641831320754 ], [ 40.950322640483186, 0.436022202320769 ], [ 40.958501351483157, 0.44224778832074 ], [ 40.961919320483155, 0.444261949320773 ], [ 40.966130746483195, 0.446031968320765 ], [ 40.972722543483194, 0.447863023320733 ], [ 40.980107796483189, 0.450670640320763 ], [ 40.990117562483185, 0.458238999320767 ], [ 40.993108285483167, 0.460863511320779 ], [ 40.993718636483202, 0.300646226320734 ], [ 40.993718636483202, -0.831372816679223 ], [ 41.109136117483153, -0.98713453567922 ], [ 41.219914925483174, -1.139051039679262 ], [ 41.560735238483169, -1.596753675679227 ], [ 41.56250525748316, -1.598828871679248 ], [ 41.563298714483203, -1.601148207679219 ], [ 41.563115609483184, -1.659864027679251 ], [ 41.533696664483152, -1.662183363679221 ], [ 41.48773719148317, -1.666455824679249 ], [ 41.338689339483203, -1.67957838267927 ], [ 41.24414588248316, -1.687635023679266 ], [ 41.164128793483194, -1.69416578567922 ], [ 41.077519906483182, -1.701856214679256 ], [ 41.018498910483167, -1.707654554679268 ], [ 40.893743050483174, -1.71864088267927 ], [ 40.8674979334832, -1.73127516067922 ], [ 40.852544320483155, -1.737561781679235 ], [ 40.83789588248316, -1.746167738679221 ], [ 40.797307504483165, -1.765454847679225 ], [ 40.735539925483174, -1.795667250679233 ], [ 40.694890511483202, -1.813977797679231 ], [ 40.6077323084832, -1.856458265679239 ], [ 40.517522347483172, -1.900830824679249 ], [ 40.500920785483167, -1.909131605679252 ], [ 40.488530648483156, -1.914136488679221 ], [ 40.443486703483181, -1.933667738679221 ], [ 40.403935921483189, -1.949658949679249 ], [ 40.342900765483186, -1.978040297679231 ], [ 40.300298226483157, -1.997632582679219 ], [ 40.290898812483185, -2.002637464679257 ], [ 40.260503304483159, -2.016736586679262 ], [ 40.218328011483202, -2.036756117679264 ], [ 40.212712777483198, -2.036939222679226 ], [ 40.208928597483172, -2.024549086679262 ], [ 40.206914437483185, -2.019055922679232 ], [ 40.205144418483194, -2.015332777679252 ], [ 40.202336800483174, -2.010572035679221 ], [ 40.200322640483186, -2.007337172679232 ], [ 40.197942269483171, -2.003980238679223 ], [ 40.196904671483189, -2.000928480679253 ], [ 40.197942269483171, -1.995923597679225 ], [ 40.198308480483199, -1.991651136679254 ], [ 40.198491586483208, -1.988233168679247 ], [ 40.19812537548318, -1.98518141067922 ], [ 40.193730843483188, -1.976026136679254 ], [ 40.189702523483156, -1.969251234679237 ], [ 40.188298714483203, -1.966565687679238 ], [ 40.187322152483198, -1.963452894679224 ], [ 40.186894906483182, -1.959973890679239 ], [ 40.186894906483182, -1.956983168679247 ], [ 40.189092171483189, -1.948865492679263 ], [ 40.189885629483165, -1.943860609679237 ], [ 40.189885629483165, -1.93934400767927 ], [ 40.19031287548318, -1.932080824679249 ], [ 40.190129769483171, -1.927869398679266 ], [ 40.189336312483185, -1.925061781679235 ], [ 40.189336312483185, -1.922132093679241 ], [ 40.188298714483203, -1.912732679679268 ], [ 40.187688363483169, -1.905347425679227 ], [ 40.187688363483169, -1.895032484679237 ], [ 40.188542855483199, -1.886975843679241 ], [ 40.189336312483185, -1.876782972679225 ], [ 40.189336312483185, -1.872876722679225 ], [ 40.188725961483208, -1.868543226679267 ], [ 40.187322152483198, -1.863782484679237 ], [ 40.185918343483188, -1.86018141067922 ], [ 40.183537972483172, -1.855969984679237 ], [ 40.181340707483166, -1.852857191679223 ], [ 40.178899300483174, -1.848828871679248 ], [ 40.175725472483172, -1.845044691679223 ], [ 40.16992713248316, -1.838941175679227 ], [ 40.167302621483195, -1.835034925679227 ], [ 40.165532601483157, -1.831067640679239 ], [ 40.163701546483189, -1.824781019679224 ], [ 40.163091195483155, -1.819959242679263 ], [ 40.162908089483203, -1.815137464679256 ], [ 40.163335336483208, -1.81043775767927 ], [ 40.162908089483203, -1.803174574679249 ], [ 40.162541879483165, -1.800183851679267 ], [ 40.161687386483202, -1.797071058679253 ], [ 40.161138070483155, -1.792981703679234 ], [ 40.159917367483153, -1.786878187679238 ], [ 40.159307015483186, -1.777173597679225 ], [ 40.1585135584832, -1.767957289679262 ], [ 40.1585135584832, -1.764661390679239 ], [ 40.159490121483195, -1.76057203567922 ], [ 40.162908089483203, -1.752332289679262 ], [ 40.164739144483171, -1.748365004679274 ], [ 40.166936410483167, -1.744275648679266 ], [ 40.170110238483169, -1.737256605679252 ], [ 40.170903695483155, -1.733655531679235 ], [ 40.17133094148317, -1.730542738679221 ], [ 40.171086800483174, -1.726331312679238 ], [ 40.16992713248316, -1.722241957679219 ], [ 40.168523324483196, -1.719434339679256 ], [ 40.164311898483156, -1.712842543679247 ], [ 40.161138070483155, -1.706983168679247 ], [ 40.159307015483186, -1.702039320679264 ], [ 40.158940804483159, -1.698255140679239 ], [ 40.158330453483181, -1.69416578567922 ], [ 40.158330453483181, -1.688062269679224 ], [ 40.1585135584832, -1.684949476679267 ], [ 40.159734261483202, -1.674451429679268 ], [ 40.160344613483169, -1.665479261679254 ], [ 40.160710824483196, -1.656079847679225 ], [ 40.160527718483188, -1.648572523679266 ], [ 40.159917367483153, -1.638379652679251 ], [ 40.158330453483181, -1.627576429679268 ], [ 40.157292855483199, -1.621961195679264 ], [ 40.154912484483184, -1.612073500679233 ], [ 40.152898324483196, -1.605542738679221 ], [ 40.149541390483186, -1.597974379679274 ], [ 40.147527230483199, -1.594251234679237 ], [ 40.144292367483153, -1.589673597679225 ], [ 40.140141976483157, -1.584729750679233 ], [ 40.134709847483172, -1.579663832679219 ], [ 40.130498421483189, -1.576245863679221 ], [ 40.127934945483155, -1.573865492679263 ], [ 40.125737679483159, -1.571363050679227 ], [ 40.120305550483174, -1.563672621679248 ], [ 40.117131722483172, -1.557569105679252 ], [ 40.11469031648317, -1.552259047679231 ], [ 40.112126839483203, -1.54408033667926 ], [ 40.110906136483202, -1.539380629679274 ], [ 40.108525765483186, -1.529553968679241 ], [ 40.107915414483152, -1.526441175679227 ], [ 40.106694711483208, -1.516065199679249 ], [ 40.105901254483165, -1.511182386679254 ], [ 40.104741586483208, -1.507581312679238 ], [ 40.10352088248316, -1.505078871679248 ], [ 40.097905648483156, -1.497876722679225 ], [ 40.092717660483167, -1.489759047679231 ], [ 40.08929969148317, -1.481946547679231 ], [ 40.088323129483165, -1.478833754679274 ], [ 40.086919320483155, -1.471265394679224 ], [ 40.086492074483196, -1.466931898679266 ], [ 40.086492074483196, -1.462964613679221 ], [ 40.086125863483169, -1.456739027679251 ], [ 40.085515511483202, -1.453748304679268 ], [ 40.084905160483167, -1.448865492679263 ], [ 40.083135140483186, -1.441175062679238 ], [ 40.081914437483185, -1.434949476679267 ], [ 40.077519906483182, -1.417066175679227 ], [ 40.075139535483167, -1.406629164679262 ], [ 40.071904671483189, -1.393933851679267 ], [ 40.068303597483172, -1.377332289679262 ], [ 40.066899789483152, -1.371778089679256 ], [ 40.065923226483157, -1.366834242679263 ], [ 40.06390906648317, -1.35822828567922 ], [ 40.062688363483169, -1.35145338267927 ], [ 40.062322152483198, -1.346753675679227 ], [ 40.061528695483155, -1.341565687679238 ], [ 40.060124886483202, -1.336865980679252 ], [ 40.058721078483181, -1.333936293679247 ], [ 40.051335824483196, -1.321363050679227 ], [ 40.050298226483157, -1.318433363679221 ], [ 40.049504769483171, -1.308728773679266 ], [ 40.050542367483153, -1.300550062679238 ], [ 40.051335824483196, -1.29603346167926 ], [ 40.052495492483153, -1.291333754679274 ], [ 40.053716195483155, -1.286878187679238 ], [ 40.056340707483166, -1.279248793679247 ], [ 40.057317269483171, -1.274060804679268 ], [ 40.058110726483157, -1.264234144679224 ], [ 40.058110726483157, -1.259046156679235 ], [ 40.057317269483171, -1.251050550679227 ], [ 40.054326546483189, -1.246533949679249 ], [ 40.051518929483159, -1.239575941679223 ], [ 40.04633094148317, -1.221936781679235 ], [ 40.041936410483167, -1.210584242679263 ], [ 40.040898812483185, -1.206128675679227 ], [ 40.039495004483165, -1.202161390679239 ], [ 40.037724984483184, -1.198865492679263 ], [ 40.035893929483159, -1.196057875679233 ], [ 40.024907601483157, -1.18153150767927 ], [ 40.019109261483202, -1.174268324679249 ], [ 40.016118539483152, -1.170178968679241 ], [ 40.011296761483202, -1.162976820679264 ], [ 40.008733285483167, -1.156751234679237 ], [ 40.006536019483171, -1.150525648679266 ], [ 40.005498421483189, -1.146253187679238 ], [ 40.001531136483202, -1.135144789679262 ], [ 40.000737679483159, -1.132337172679231 ], [ 39.998113168483194, -1.125867445679264 ], [ 39.997136605483199, -1.122754652679251 ], [ 39.990117562483185, -1.110242445679264 ], [ 39.98828650748316, -1.105847914679262 ], [ 39.98633338248316, -1.101758558679253 ], [ 39.982121957483166, -1.094739515679239 ], [ 39.978703988483169, -1.088147718679241 ], [ 39.971135629483165, -1.07502516067922 ], [ 39.968938363483169, -1.070752699679249 ], [ 39.963140023483156, -1.058850843679241 ], [ 39.960332406483182, -1.053662855679252 ], [ 39.957707894483171, -1.046460707679219 ], [ 39.954900277483198, -1.039746839679256 ], [ 39.950139535483167, -1.031568129679274 ], [ 39.948735726483157, -1.027783949679249 ], [ 39.947087777483198, -1.024060804679268 ], [ 39.944524300483174, -1.019849379679274 ], [ 39.941899789483152, -1.017163832679219 ], [ 39.939885629483165, -1.014356214679256 ], [ 39.935491097483172, -1.006238539679262 ], [ 39.935491097483172, -1.001782972679225 ], [ 39.936894906483182, -0.99525221167926 ], [ 39.938725961483208, -0.988477308679253 ], [ 39.939519418483194, -0.980481703679234 ], [ 39.939336312483185, -0.975965101679267 ], [ 39.938725961483208, -0.972058851679267 ], [ 39.938298714483203, -0.967664320679264 ], [ 39.937322152483198, -0.963147718679241 ], [ 39.935307992483153, -0.958570082679219 ], [ 39.933110726483157, -0.95423658667926 ], [ 39.930486214483203, -0.950452406679235 ], [ 39.928105843483188, -0.945935804679268 ], [ 39.926335824483196, -0.941663343679241 ], [ 39.924321664483152, -0.934644300679227 ], [ 39.922917855483199, -0.92744215267925 ], [ 39.921514046483189, -0.923352797679231 ], [ 39.920293343483188, -0.920484144679224 ], [ 39.917912972483172, -0.915662367679263 ], [ 39.91351844148317, -0.908765394679224 ], [ 39.910893929483159, -0.905774672679231 ], [ 39.90570594148317, -0.901563246679248 ], [ 39.90430213248316, -0.897351820679264 ], [ 39.903691781483182, -0.892652113679221 ], [ 39.90430213248316, -0.889356214679256 ], [ 39.906133187483185, -0.883740980679252 ], [ 39.906133187483185, -0.879651625679233 ], [ 39.905095589483203, -0.87666090267925 ], [ 39.90430213248316, -0.87293775767927 ], [ 39.903508675483174, -0.863050062679238 ], [ 39.90430213248316, -0.85853346167926 ], [ 39.90430213248316, -0.855664808679253 ], [ 39.903935921483189, -0.848950941679223 ], [ 39.901494515483186, -0.835767347679225 ], [ 39.899114144483171, -0.831067640679239 ], [ 39.896916879483165, -0.827649672679231 ], [ 39.893132699483196, -0.82307203567922 ], [ 39.890691293483194, -0.819654066679223 ], [ 39.887700570483155, -0.812329847679225 ], [ 39.883916390483186, -0.796948988679221 ], [ 39.882329476483157, -0.79285963267927 ], [ 39.879888070483155, -0.787976820679264 ], [ 39.876286996483195, -0.78205641067922 ], [ 39.872319711483208, -0.776563246679248 ], [ 39.869328988483169, -0.771436293679246 ], [ 39.865300668483194, -0.76673658667926 ], [ 39.86328650748316, -0.761548597679225 ], [ 39.864324105483199, -0.756177504679217 ], [ 39.867742074483196, -0.74885328567922 ], [ 39.868535531483182, -0.745679457679219 ], [ 39.868901742483153, -0.741468031679235 ], [ 39.868291390483186, -0.736951429679268 ], [ 39.867314828483181, -0.733472425679227 ], [ 39.8655448084832, -0.730054457679219 ], [ 39.862920296483189, -0.726575453679234 ], [ 39.859929574483196, -0.723279554679268 ], [ 39.858525766483176, -0.719251235679226 ], [ 39.858342660483167, -0.713758070679264 ], [ 39.858342660483167, -0.703137953679234 ], [ 39.857488168483194, -0.698255140679239 ], [ 39.856511605483199, -0.69416578567922 ], [ 39.855107796483189, -0.691052992679263 ], [ 39.852727425483174, -0.687451918679246 ], [ 39.849309457483166, -0.683850843679241 ], [ 39.845891488483169, -0.678052504679217 ], [ 39.843938363483169, -0.674268324679249 ], [ 39.843328011483202, -0.671338636679254 ], [ 39.843144906483182, -0.667737562679238 ], [ 39.843328011483202, -0.66377027767925 ], [ 39.842717660483167, -0.659131605679252 ], [ 39.841130746483195, -0.654248793679246 ], [ 39.836736214483203, -0.647168714679256 ], [ 39.828740609483184, -0.637464125679233 ], [ 39.826116097483172, -0.635755140679239 ], [ 39.823491586483208, -0.633130629679217 ], [ 39.821904671483189, -0.629956800679227 ], [ 39.820928109483184, -0.626477797679231 ], [ 39.820500863483169, -0.621656019679224 ], [ 39.821111214483203, -0.617444593679241 ], [ 39.821904671483189, -0.614148695679264 ], [ 39.822087777483198, -0.610852797679231 ], [ 39.82172156648317, -0.604261000679233 ], [ 39.821111214483203, -0.601331312679238 ], [ 39.819524300483174, -0.59736402767925 ], [ 39.817693246483195, -0.593762953679234 ], [ 39.814092171483189, -0.588941175679227 ], [ 39.809941781483182, -0.584058363679221 ], [ 39.805303109483184, -0.580762464679256 ], [ 39.800298226483157, -0.578076918679246 ], [ 39.793523324483196, -0.574170668679246 ], [ 39.789311898483156, -0.571546156679235 ], [ 39.785710824483196, -0.569531996679248 ], [ 39.773503793483194, -0.561963636679254 ], [ 39.765141976483157, -0.554456312679238 ], [ 39.762090218483188, -0.552136976679267 ], [ 39.7581229334832, -0.549451429679268 ], [ 39.74750281648317, -0.545545179679268 ], [ 39.740300668483194, -0.54603346167926 ], [ 39.73633338248316, -0.546643812679238 ], [ 39.733342660483167, -0.547437269679224 ], [ 39.728337777483198, -0.547742445679264 ], [ 39.726140511483202, -0.544568617679263 ], [ 39.727117074483196, -0.53626783667926 ], [ 39.726323617483153, -0.533582289679262 ], [ 39.725102914483152, -0.530652601679267 ], [ 39.72351600048318, -0.527967054679268 ], [ 39.720891488483169, -0.524976332679219 ], [ 39.717900765483186, -0.522229750679233 ], [ 39.710332406483182, -0.517530043679246 ], [ 39.708135140483186, -0.514844496679248 ], [ 39.706120980483199, -0.511182386679254 ], [ 39.704717171483189, -0.507154066679223 ], [ 39.701909554483159, -0.503980238679221 ], [ 39.693303597483172, -0.495557386679254 ], [ 39.633489144483171, -0.495069105679252 ], [ 39.632146371483195, -0.491529066679223 ], [ 39.631902230483199, -0.487866957679219 ], [ 39.632512582483166, -0.483045179679268 ], [ 39.632695687483185, -0.478833754679217 ], [ 39.63171912548318, -0.475537855679252 ], [ 39.633306039483152, -0.46845777767925 ], [ 39.635137093483188, -0.465833265679239 ], [ 39.637944711483208, -0.463025648679266 ], [ 39.63672400748316, -0.460584242679263 ], [ 39.633916390483186, -0.45887525767927 ], [ 39.630132211483208, -0.455335218679241 ], [ 39.627934945483155, -0.45197828567922 ], [ 39.626714242483153, -0.433362562679238 ], [ 39.626897347483172, -0.321668226679267 ], [ 39.622136605483199, -0.316175062679238 ], [ 39.618291390483186, -0.312757093679241 ], [ 39.612920296483189, -0.308850843679241 ], [ 39.607488168483194, -0.305554945679264 ], [ 39.603337777483198, -0.302075941679223 ], [ 39.5999198084832, -0.29853590267925 ], [ 39.597295296483189, -0.294873793679246 ], [ 39.588140023483156, -0.276868422679231 ], [ 39.583745492483153, -0.270948011679254 ], [ 39.57813025748316, -0.265637953679234 ], [ 39.574712289483152, -0.262647230679252 ], [ 39.569341195483155, -0.258557875679233 ], [ 39.566106332483166, -0.255872328679234 ], [ 39.561711800483174, -0.253736097679225 ], [ 39.5589041834832, -0.252637464679256 ], [ 39.552312386483202, -0.250867445679264 ], [ 39.548711312483185, -0.249036390679239 ], [ 39.545293343483188, -0.246472914679262 ], [ 39.543096078483181, -0.242566664679262 ], [ 39.537724984483184, -0.231458265679239 ], [ 39.533086312483185, -0.22236402767925 ], [ 39.529119027483198, -0.217664320679264 ], [ 39.525945199483196, -0.214673597679225 ], [ 39.52289344148317, -0.212476332679219 ], [ 39.51953650748316, -0.210279066679223 ], [ 39.5159354334832, -0.208448011679254 ], [ 39.510503304483159, -0.204846937679238 ], [ 39.507695687483185, -0.201367933679253 ], [ 39.50531531648317, -0.199658949679249 ], [ 39.49750281648317, -0.190930922679231 ], [ 39.494512093483188, -0.188184339679256 ], [ 39.492131722483172, -0.185559828679234 ], [ 39.487309945483155, -0.181165297679231 ], [ 39.482121957483166, -0.176831800679227 ], [ 39.476933968483188, -0.173657972679225 ], [ 39.472905648483156, -0.17158277767925 ], [ 39.469121468483188, -0.168836195679264 ], [ 39.465093148483156, -0.165479261679254 ], [ 39.456731332483166, -0.157666761679254 ], [ 39.452519906483182, -0.154737074679249 ], [ 39.448308480483199, -0.15205152767925 ], [ 39.444890511483202, -0.150464613679221 ], [ 39.436711800483174, -0.14814527767925 ], [ 39.432134164483152, -0.147534925679227 ], [ 39.424504769483171, -0.147473890679239 ], [ 39.412541879483165, -0.147840101679267 ], [ 39.408086312483185, -0.146680433679253 ], [ 39.403935921483189, -0.143933851679267 ], [ 39.398931039483152, -0.13856275767927 ], [ 39.391118539483152, -0.13056715267925 ], [ 39.387517464483203, -0.127637464679256 ], [ 39.383916390483186, -0.125440199679249 ], [ 39.375920785483167, -0.122571547679231 ], [ 39.371526254483165, -0.120740492679263 ], [ 39.368718636483202, -0.119763929679268 ], [ 39.365727914483152, -0.118482191679223 ], [ 39.36273719148317, -0.116834242679263 ], [ 39.346745980483199, -0.10535963267927 ], [ 39.343511117483153, -0.102735121679248 ], [ 39.339116586483208, -0.098828871679248 ], [ 39.336308968483188, -0.096631605679252 ], [ 39.333745492483153, -0.094983656679235 ], [ 39.330144418483194, -0.093030531679235 ], [ 39.327092660483167, -0.092053968679241 ], [ 39.323735726483157, -0.091382582679219 ], [ 39.319890511483202, -0.090833265679239 ], [ 39.312688363483169, -0.090161879679217 ], [ 39.305120004483165, -0.091382582679219 ], [ 39.300725472483172, -0.092481214679256 ], [ 39.295903695483155, -0.09345777767925 ], [ 39.28992225048318, -0.094068129679217 ], [ 39.284734261483202, -0.094251234679237 ], [ 39.28070594148317, -0.094739515679239 ], [ 39.261907113483169, -0.095532972679225 ], [ 39.257329476483157, -0.095044691679223 ], [ 39.253301156483182, -0.094251234679237 ], [ 39.249089730483199, -0.093030531679235 ], [ 39.245122445483155, -0.091443617679263 ], [ 39.241338265483186, -0.090161879679217 ], [ 39.231938851483157, -0.087842543679246 ], [ 39.225530160483167, -0.087964613679221 ], [ 39.221501839483203, -0.088452894679224 ], [ 39.217534554483159, -0.089063246679248 ], [ 39.212712777483198, -0.090039808679253 ], [ 39.202336800483174, -0.092542250679233 ], [ 39.197515023483156, -0.093030531679235 ], [ 39.192143929483159, -0.092481214679256 ], [ 39.186345589483203, -0.09065016067922 ], [ 39.173100961483208, -0.084729750679233 ], [ 39.168706429483159, -0.083570082679219 ], [ 39.159307015483186, -0.082044203679234 ], [ 39.155889046483189, -0.080762464679256 ], [ 39.152287972483172, -0.079175550679227 ], [ 39.148503793483194, -0.076734144679224 ], [ 39.139714730483199, -0.068982679679268 ], [ 39.134709847483172, -0.063062269679224 ], [ 39.131536019483171, -0.058850843679241 ], [ 39.126103890483186, -0.052564222679225 ], [ 39.122136605483199, -0.047437269679224 ], [ 39.111516488483169, -0.034558851679267 ], [ 39.107305062483185, -0.028760511679254 ], [ 39.104314339483203, -0.02424391067922 ], [ 39.101933968483188, -0.020032484679237 ], [ 39.098943246483195, -0.01673658667926 ], [ 39.095098031483182, -0.013135511679254 ], [ 39.091130746483195, -0.010633070679264 ], [ 39.08734656648317, -0.008863050679227 ], [ 39.081304086483208, -0.006848890679239 ], [ 39.075932992483153, -0.005872328679234 ], [ 39.072331918483194, -0.005384047679231 ], [ 39.068913949483196, -0.005384047679231 ], [ 39.064702523483156, -0.00575025767927 ], [ 39.060491097483172, -0.00666578567922 ], [ 39.055913461483208, -0.006726820679264 ], [ 39.052312386483202, -0.007459242679263 ], [ 39.04773475048318, -0.00697096167926 ], [ 39.043523324483196, -0.005445082679219 ], [ 39.040288461483208, -0.004651625679233 ], [ 39.036321175483174, -0.004163343679241 ], [ 39.028142464483203, -0.003980238679221 ], [ 39.022527230483199, -0.004529554679268 ], [ 39.014287484483184, -0.004956800679227 ], [ 39.010320199483196, -0.00556715267925 ], [ 39.004521859483184, -0.006848890679239 ], [ 39.000127328483181, -0.007459242679263 ], [ 38.995488656483182, -0.008557875679233 ], [ 38.991704476483157, -0.00965650767927 ], [ 38.982488168483194, -0.011731703679234 ], [ 38.972722543483194, -0.014966566679223 ], [ 38.967290414483152, -0.01643141067922 ], [ 38.962102425483174, -0.020948011679254 ], [ 38.955693734483184, -0.02528150767927 ], [ 38.949101937483185, -0.03095777767925 ], [ 38.944707406483182, -0.035474379679217 ], [ 38.942143929483159, -0.039258558679253 ], [ 38.938298714483203, -0.045545179679268 ], [ 38.929936898483156, -0.044751722679225 ], [ 38.917485726483157, -0.042432386679254 ], [ 38.911504281483182, -0.042554457679219 ], [ 38.907292855483199, -0.043347914679262 ], [ 38.900945199483196, -0.045545179679268 ], [ 38.892339242483153, -0.049756605679252 ], [ 38.888310921483189, -0.051953871679248 ], [ 38.884343636483202, -0.053662855679252 ], [ 38.878118050483174, -0.05384596167926 ], [ 38.870915902483198, -0.05354078567922 ], [ 38.866521371483195, -0.053052504679217 ], [ 38.859746468483188, -0.050244886679254 ], [ 38.854131234483184, -0.04963453567922 ], [ 38.847905648483156, -0.050244886679254 ], [ 38.843328011483202, -0.051282484679237 ], [ 38.840093148483156, -0.051770765679239 ], [ 38.834905160483167, -0.051465589679256 ], [ 38.830327523483156, -0.049756605679252 ], [ 38.827336800483174, -0.047864515679239 ], [ 38.822942269483171, -0.045972425679227 ], [ 38.81250525748316, -0.042371351679267 ], [ 38.808293832483166, -0.041150648679266 ], [ 38.800542367483153, -0.039258558679253 ], [ 38.792912972483172, -0.034558851679267 ], [ 38.790105355483199, -0.033643324679249 ], [ 38.782536996483195, -0.030347425679227 ], [ 38.777532113483169, -0.028882582679219 ], [ 38.76172400748316, -0.028577406679235 ], [ 38.749944222483172, -0.030530531679235 ], [ 38.748723519483171, -0.026074964679256 ], [ 38.749089730483199, -0.022779066679223 ], [ 38.747319711483208, -0.019727308679253 ], [ 38.744939339483203, -0.017530043679246 ], [ 38.743291390483186, -0.014051039679262 ], [ 38.743291390483186, -0.010266859679237 ], [ 38.743901742483153, -0.00575025767927 ], [ 38.740117562483185, -0.001172621679248 ], [ 38.738530648483156, 0.001634995320783 ], [ 38.73914100048318, 0.004869859320761 ], [ 38.739934457483166, 0.007860581320754 ], [ 38.7405448084832, 0.012438218320765 ], [ 38.73969031648317, 0.018053452320769 ], [ 38.737920296483189, 0.022447984320761 ], [ 38.732305062483185, 0.040270249320767 ], [ 38.731938851483157, 0.044237535320744 ], [ 38.731145394483171, 0.04802171432078 ], [ 38.731145394483171, 0.052660386320779 ], [ 38.730718148483156, 0.056627671320766 ], [ 38.730718148483156, 0.060045640320763 ], [ 38.72992469148317, 0.06364671432078 ], [ 38.729741586483208, 0.067064683320777 ], [ 38.730718148483156, 0.070238511320779 ], [ 38.730718148483156, 0.073656480320776 ], [ 38.730290902483198, 0.076647202320769 ], [ 38.729497445483155, 0.079821031320759 ], [ 38.729497445483155, 0.08427659732075 ], [ 38.731938851483157, 0.092028062320762 ], [ 38.732488168483194, 0.096056382320737 ], [ 38.731938851483157, 0.101244370320783 ], [ 38.73132850048318, 0.105272691320747 ], [ 38.731511605483199, 0.10966722232075 ], [ 38.730718148483156, 0.116259019320748 ], [ 38.733098519483171, 0.125475327320769 ], [ 38.733098519483171, 0.133043687320762 ], [ 38.733342660483167, 0.137438218320765 ], [ 38.735295785483167, 0.145861070320732 ], [ 38.739507211483208, 0.149462144320748 ], [ 38.745732796483189, 0.156420152320775 ], [ 38.754704964483203, 0.165636460320738 ], [ 38.757146371483195, 0.168444077320769 ], [ 38.757939828483181, 0.171862046320766 ], [ 38.757939828483181, 0.181627671320766 ], [ 38.754094613483169, 0.196276109320761 ], [ 38.752141488483169, 0.204821031320759 ], [ 38.74890662548318, 0.215441148320733 ], [ 38.748296273483156, 0.21904222232075 ], [ 38.745305550483174, 0.229845445320732 ], [ 38.744328988483169, 0.235033433320777 ], [ 38.741887582483166, 0.242845933320777 ], [ 38.73633338248316, 0.265856187320762 ], [ 38.729314339483203, 0.292040269320748 ], [ 38.727727425483174, 0.298448960320738 ], [ 38.726506722483172, 0.304247300320751 ], [ 38.725102914483152, 0.308458726320734 ], [ 38.720891488483169, 0.325426499320767 ], [ 38.718938363483169, 0.334032456320754 ], [ 38.718328011483202, 0.337450425320751 ], [ 38.716924203483181, 0.341661851320734 ], [ 38.713689339483203, 0.353441636320779 ], [ 38.71289588248316, 0.357653062320762 ], [ 38.712712777483198, 0.363268296320766 ], [ 38.710698617483153, 0.366869370320783 ], [ 38.7092948084832, 0.371447007320737 ], [ 38.705144418483194, 0.387438218320765 ], [ 38.699712289483152, 0.409655015320763 ], [ 38.698735726483157, 0.414232652320775 ], [ 38.697515023483156, 0.41826097232075 ], [ 38.694097054483159, 0.431261460320738 ], [ 38.692937386483202, 0.435045640320763 ], [ 38.692327035483167, 0.438036363320746 ], [ 38.691899789483152, 0.441271226320734 ], [ 38.69031287548318, 0.446276109320761 ], [ 38.685491097483172, 0.45982591332074 ], [ 38.682927621483195, 0.466417710320738 ], [ 38.680913461483208, 0.470629136320779 ], [ 38.679936898483156, 0.474230210320738 ], [ 38.67773963248316, 0.490465562320762 ], [ 38.676946175483174, 0.494066636320779 ], [ 38.674321664483152, 0.497057359320761 ], [ 38.670537484483184, 0.499071519320748 ], [ 38.666692269483171, 0.499071519320748 ], [ 38.663701546483189, 0.501634995320783 ], [ 38.659490121483195, 0.505663316320747 ], [ 38.661687386483202, 0.507860581320754 ], [ 38.665715707483166, 0.508043687320762 ], [ 38.670293343483188, 0.507250230320776 ], [ 38.673894418483194, 0.508043687320762 ], [ 38.677495492483153, 0.507433335320738 ], [ 38.68109656648317, 0.507433335320738 ], [ 38.684697640483186, 0.508226792320781 ], [ 38.68890906648317, 0.50865403832074 ], [ 38.692693246483195, 0.509264390320763 ], [ 38.696904671483189, 0.50865403832074 ], [ 38.700139535483167, 0.506456773320733 ], [ 38.704106820483155, 0.505419175320751 ], [ 38.707097543483194, 0.507860581320754 ], [ 38.708745492483153, 0.510851304320736 ], [ 38.71234656648317, 0.511217515320763 ], [ 38.716924203483181, 0.510240952320769 ], [ 38.721745980483199, 0.511034410320744 ], [ 38.721135629483165, 0.51481858932078 ], [ 38.720891488483169, 0.520250718320765 ], [ 38.7249198084832, 0.523241441320747 ], [ 38.729314339483203, 0.521044175320751 ], [ 38.732121957483166, 0.519030015320763 ], [ 38.735723031483182, 0.51787034732075 ], [ 38.739934457483166, 0.51982347232075 ], [ 38.745305550483174, 0.52263108932078 ], [ 38.749700082483166, 0.522875230320776 ], [ 38.753118050483174, 0.521654527320775 ], [ 38.754888070483155, 0.518236558320777 ], [ 38.756291879483165, 0.514269273320733 ], [ 38.763738168483194, 0.510851304320736 ], [ 38.766728890483186, 0.511217515320763 ], [ 38.7678885584832, 0.514269273320733 ], [ 38.776128304483159, 0.517443101320734 ], [ 38.77930213248316, 0.520433824320773 ], [ 38.7835135584832, 0.524034898320733 ], [ 38.786931527483198, 0.528063218320765 ], [ 38.792302621483195, 0.538866441320747 ], [ 38.795293343483188, 0.540270249320767 ], [ 38.79968787548318, 0.542040269320748 ], [ 38.801518929483159, 0.54503099232073 ], [ 38.802312386483202, 0.54802171432078 ], [ 38.805913461483208, 0.550035874320767 ], [ 38.808293832483166, 0.55284349232073 ], [ 38.809331429483159, 0.557054917320781 ], [ 38.811711800483174, 0.561022202320769 ], [ 38.814885629483165, 0.565050523320733 ], [ 38.817693246483195, 0.570055406320759 ], [ 38.820928109483184, 0.572435777320775 ], [ 38.823735726483157, 0.575853745320783 ], [ 38.825322640483186, 0.578661363320746 ], [ 38.829106820483155, 0.581041734320761 ], [ 38.832524789483152, 0.583422105320776 ], [ 38.836492074483196, 0.583849351320734 ], [ 38.83929969148317, 0.584642808320777 ], [ 38.841741097483172, 0.586840074320773 ], [ 38.844487679483159, 0.588854234320761 ], [ 38.848943246483195, 0.591051499320767 ], [ 38.85352088248316, 0.593676011320779 ], [ 38.857305062483185, 0.596422593320765 ], [ 38.86133338248316, 0.598070542320781 ], [ 38.86609412548318, 0.598070542320781 ], [ 38.871343148483156, 0.598436753320752 ], [ 38.874333871483195, 0.595018785320744 ], [ 38.876531136483202, 0.593248765320763 ], [ 38.880132211483208, 0.593676011320779 ], [ 38.8831229334832, 0.594652574320773 ], [ 38.88672400748316, 0.594835679320736 ], [ 38.891118539483152, 0.593676011320779 ], [ 38.894902718483188, 0.595629136320779 ], [ 38.89789344148317, 0.596056382320737 ], [ 38.901921761483202, 0.594835679320736 ], [ 38.904729379483165, 0.595446031320759 ], [ 38.907720101483157, 0.597460191320747 ], [ 38.912541879483165, 0.598070542320781 ], [ 38.916509164483152, 0.600634019320748 ], [ 38.923100961483208, 0.602831285320744 ], [ 38.9260916834832, 0.604418199320773 ], [ 38.928533089483203, 0.608019273320733 ], [ 38.930913461483208, 0.61247483932078 ], [ 38.933721078483181, 0.617235581320754 ], [ 38.936345589483203, 0.622667710320738 ], [ 38.939885629483165, 0.625658433320777 ], [ 38.943303597483172, 0.625658433320777 ], [ 38.946294320483155, 0.624254624320767 ], [ 38.949346078483181, 0.624254624320767 ], [ 38.953496468483188, 0.625475327320769 ], [ 38.962102425483174, 0.62224046432078 ], [ 38.964910043483194, 0.621630113320746 ], [ 38.968511117483153, 0.621447007320737 ], [ 38.972722543483194, 0.621630113320746 ], [ 38.976323617483153, 0.620226304320736 ], [ 38.980901254483165, 0.620470445320732 ], [ 38.983525765483186, 0.62224046432078 ], [ 38.986699593483188, 0.623827378320752 ], [ 38.990727914483152, 0.624071519320748 ], [ 38.993718636483202, 0.624071519320748 ], [ 38.997930062483185, 0.623461167320781 ], [ 39.002507699483196, 0.62224046432078 ], [ 39.006291879483165, 0.623033921320766 ], [ 39.010930550483174, 0.622850816320747 ], [ 39.013310921483189, 0.626818101320734 ], [ 39.013310921483189, 0.630236070320732 ], [ 39.012700570483155, 0.633226792320781 ], [ 39.013310921483189, 0.636461656320759 ], [ 39.015141976483157, 0.639025132320737 ], [ 39.020085824483196, 0.639269273320733 ], [ 39.023320687483185, 0.64146653832074 ], [ 39.024541390483186, 0.644274156320759 ], [ 39.024114144483171, 0.649218003320752 ], [ 39.023320687483185, 0.653429429320736 ], [ 39.025334847483172, 0.657457749320767 ], [ 39.026311410483167, 0.660631577320769 ], [ 39.028142464483203, 0.662828843320765 ], [ 39.032536996483195, 0.662828843320765 ], [ 39.035710824483196, 0.664659898320733 ], [ 39.036687386483202, 0.668016831320754 ], [ 39.038335336483208, 0.670458238320746 ], [ 39.040532601483157, 0.672472398320733 ], [ 39.043523324483196, 0.673265855320776 ], [ 39.046697152483198, 0.675035874320767 ], [ 39.048894418483194, 0.678453843320765 ], [ 39.049504769483171, 0.681261460320738 ], [ 39.052495492483153, 0.683031480320776 ], [ 39.055486214483203, 0.683824937320762 ], [ 39.059697640483186, 0.682665269320748 ], [ 39.06250525748316, 0.680651109320761 ], [ 39.066289437483185, 0.68083421432078 ], [ 39.072942269483171, 0.676256577320769 ], [ 39.077703011483202, 0.67662278832074 ], [ 39.081304086483208, 0.675035874320767 ], [ 39.084538949483196, 0.674425523320733 ], [ 39.08734656648317, 0.675463120320783 ], [ 39.089116586483208, 0.677660386320779 ], [ 39.091924203483181, 0.678820054320736 ], [ 39.095525277483198, 0.67784349232073 ], [ 39.098699105483199, 0.678636949320773 ], [ 39.099309457483166, 0.683275620320783 ], [ 39.100530160483167, 0.68583909732075 ], [ 39.103093636483202, 0.687059800320751 ], [ 39.106145394483171, 0.687059800320751 ], [ 39.114934457483166, 0.688829820320732 ], [ 39.118718636483202, 0.68864671432078 ], [ 39.12390662548318, 0.687853257320737 ], [ 39.127141488483169, 0.68583909732075 ], [ 39.13171912548318, 0.68583909732075 ], [ 39.135137093483188, 0.688036363320746 ], [ 39.141728890483186, 0.688463609320761 ], [ 39.143926156483182, 0.692064683320777 ], [ 39.144109261483202, 0.69542161732073 ], [ 39.148137582483166, 0.703051011320779 ], [ 39.152104867483153, 0.704821031320759 ], [ 39.158086312483185, 0.709032456320754 ], [ 39.161504281483182, 0.710253160320744 ], [ 39.16492225048318, 0.711840074320773 ], [ 39.167912972483172, 0.716234605320776 ], [ 39.170903695483155, 0.717028062320762 ], [ 39.17468787548318, 0.71763841332074 ], [ 39.178716195483155, 0.723253648320733 ], [ 39.176335824483196, 0.725267808320777 ], [ 39.176946175483174, 0.732653062320762 ], [ 39.178288949483196, 0.741259019320748 ], [ 39.179509652483198, 0.745653550320751 ], [ 39.18109656648317, 0.749437730320776 ], [ 39.184087289483152, 0.753832261320779 ], [ 39.189885629483165, 0.76481858932078 ], [ 39.195500863483169, 0.77745286732073 ], [ 39.197698129483165, 0.781664292320781 ], [ 39.201116097483172, 0.787035386320779 ], [ 39.204289925483174, 0.791429917320781 ], [ 39.208501351483157, 0.796251695320732 ], [ 39.213689339483203, 0.800218980320776 ], [ 39.215886605483199, 0.802660386320779 ], [ 39.222295296483189, 0.811022202320769 ], [ 39.225286019483171, 0.815233628320752 ], [ 39.227544320483155, 0.819445054320736 ], [ 39.22992469148317, 0.823229234320761 ], [ 39.230718148483156, 0.826647202320769 ], [ 39.231938851483157, 0.830065171320766 ], [ 39.23773719148317, 0.841844956320754 ], [ 39.243535531483182, 0.848436753320752 ], [ 39.2503104334832, 0.857225816320747 ], [ 39.259343636483202, 0.865648667320781 ], [ 39.262334359483184, 0.86802903832074 ], [ 39.268498910483167, 0.873461167320781 ], [ 39.27148963248316, 0.876818101320734 ], [ 39.276738656483182, 0.882067124320767 ], [ 39.280095589483203, 0.885851304320736 ], [ 39.284307015483186, 0.891222398320733 ], [ 39.287724984483184, 0.894457261320779 ], [ 39.292302621483195, 0.898424546320766 ], [ 39.296941293483194, 0.902819077320769 ], [ 39.30609656648317, 0.914049546320766 ], [ 39.310124886483202, 0.918444077320769 ], [ 39.314336312483185, 0.922472398320733 ], [ 39.319707406483182, 0.925646226320734 ], [ 39.329717171483189, 0.931017320320732 ], [ 39.336492074483196, 0.935045640320763 ], [ 39.355901254483165, 0.948656480320776 ], [ 39.3655448084832, 0.953051011320779 ], [ 39.389714730483199, 0.963060777320775 ], [ 39.396306527483198, 0.966051499320767 ], [ 39.40430213248316, 0.96885911732073 ], [ 39.408696664483152, 0.970018785320744 ], [ 39.412541879483165, 0.97184983932078 ], [ 39.420537484483184, 0.974657456320754 ], [ 39.428105843483188, 0.977831285320744 ], [ 39.438115609483184, 0.981676499320767 ], [ 39.443303597483172, 0.983019273320733 ], [ 39.455144418483194, 0.98662034732075 ], [ 39.46289588248316, 0.991869370320783 ], [ 39.465520394483171, 0.987230699320773 ], [ 39.468938363483169, 0.984423081320754 ], [ 39.477910531483182, 0.980272691320747 ], [ 39.480107796483189, 0.978441636320779 ], [ 39.483708871483195, 0.974047105320776 ], [ 39.490300668483194, 0.964647691320747 ], [ 39.4924979334832, 0.960619370320783 ], [ 39.494328988483169, 0.956835191320747 ], [ 39.495305550483174, 0.952440660320744 ], [ 39.495915902483198, 0.948473374320767 ], [ 39.496526254483165, 0.940843980320776 ], [ 39.498540414483152, 0.931627671320766 ], [ 39.5003104334832, 0.926866929320736 ], [ 39.502934945483155, 0.92106858932078 ], [ 39.509526742483153, 0.908861558320777 ], [ 39.515691293483194, 0.895433824320773 ], [ 39.523686898483156, 0.87724534732075 ], [ 39.527104867483153, 0.868639390320763 ], [ 39.533696664483152, 0.851061265320763 ], [ 39.539311898483156, 0.83482591332074 ], [ 39.544316781483182, 0.819017808320777 ], [ 39.548711312483185, 0.803636949320773 ], [ 39.550908578483181, 0.794847886320779 ], [ 39.552922738483169, 0.785631577320769 ], [ 39.553899300483174, 0.782823960320738 ], [ 39.555120004483165, 0.778429429320736 ], [ 39.557317269483171, 0.775255601320734 ], [ 39.559514535483167, 0.771227281320759 ], [ 39.561528695483155, 0.765856187320762 ], [ 39.561894906483182, 0.761034410320744 ], [ 39.563115609483184, 0.756456773320733 ], [ 39.564702523483156, 0.753221910320744 ], [ 39.567143929483159, 0.75084153832074 ], [ 39.568730843483188, 0.747667710320738 ], [ 39.570500863483169, 0.745043199320773 ], [ 39.572698129483165, 0.74302903832074 ], [ 39.5745291834832, 0.740831773320733 ], [ 39.576726449483196, 0.73747483932078 ], [ 39.578923714483203, 0.733019273320733 ], [ 39.581304086483208, 0.729051988320746 ], [ 39.583318246483195, 0.726061265320763 ], [ 39.584722054483159, 0.722216050320751 ], [ 39.586919320483155, 0.71904222232075 ], [ 39.590093148483156, 0.715624253320752 ], [ 39.595525277483198, 0.711473863320746 ], [ 39.597539437483185, 0.709642808320777 ], [ 39.598088754483165, 0.707018296320766 ], [ 39.599492562483185, 0.704027574320773 ], [ 39.600286019483171, 0.701036851320734 ], [ 39.602300179483159, 0.698656480320776 ], [ 39.605107796483189, 0.694628160320744 ], [ 39.607915414483152, 0.691271226320734 ], [ 39.611516488483169, 0.688036363320746 ], [ 39.612192051483184, 0.686615948320761 ] ] ] } } +, +{ "type": "Feature", "id": 8, "properties": { "OBJECTID": 9, "ID_": 663, "COUNTY_NAM": "WAJIR", "CONST_CODE": 36, "CONSTITUEN": "WAJIR WEST", "COUNTY_COD": 8, "Shape_Leng": 9.969422025169999, "Shape_Area": 4.60636555222 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.785893929483159, 3.692858140320762 ], [ 39.785893929483159, 3.61284105032075 ], [ 39.786321175483174, 3.573473374320766 ], [ 39.786138070483155, 3.536241929320735 ], [ 39.786138070483155, 3.475450913320739 ], [ 39.786321175483174, 3.460070054320735 ], [ 39.786138070483155, 3.417650620320782 ], [ 39.786321175483174, 3.342821519320747 ], [ 39.786504281483182, 3.33745042532075 ], [ 39.787297738483169, 3.333849351320733 ], [ 39.793523324483196, 3.331835191320746 ], [ 39.808293832483166, 3.325426499320766 ], [ 39.878545296483189, 3.297472398320732 ], [ 39.915288461483208, 3.282457749320766 ], [ 39.94672156648317, 3.270067613320745 ], [ 39.979314339483203, 3.25682298432076 ], [ 40.010137093483188, 3.244066636320778 ], [ 40.013494027483198, 3.243029038320739 ], [ 40.034123910483167, 3.234850327320768 ], [ 40.034307015483186, 3.231249253320751 ], [ 40.044316781483182, 3.225817124320766 ], [ 40.077703011483202, 3.188829820320731 ], [ 40.098088754483165, 3.167223374320766 ], [ 40.113896859483184, 3.149828355320775 ], [ 40.132695687483185, 3.12986985932076 ], [ 40.135930550483174, 3.125475327320768 ], [ 40.152104867483153, 3.108446519320747 ], [ 40.170537484483184, 3.088243882320736 ], [ 40.186101449483196, 3.070238511320778 ], [ 40.204289925483174, 3.049669663320739 ], [ 40.217900765483186, 3.033434312320761 ], [ 40.236089242483153, 3.012438218320764 ], [ 40.258306039483152, 2.986071031320758 ], [ 40.263738168483194, 2.977831285320743 ], [ 40.267522347483172, 2.973436753320751 ], [ 40.270696175483174, 2.969225327320768 ], [ 40.381536019483171, 2.918871324320772 ], [ 40.439336312483185, 2.891832749320766 ], [ 40.470525277483198, 2.877428452320768 ], [ 40.493535531483182, 2.865221421320765 ], [ 40.493718636483202, 2.861437242320729 ], [ 40.495732796483189, 2.857042710320737 ], [ 40.494939339483203, 2.85307542532075 ], [ 40.497685921483189, 2.85002366732078 ], [ 40.496343148483156, 2.845629136320778 ], [ 40.495122445483155, 2.843065660320743 ], [ 40.494939339483203, 2.840074937320761 ], [ 40.495732796483189, 2.835619370320782 ], [ 40.499089730483199, 2.832872788320739 ], [ 40.499089730483199, 2.829271714320779 ], [ 40.497319711483208, 2.825853745320782 ], [ 40.49750281648317, 2.821459214320779 ], [ 40.499089730483199, 2.818834702320768 ], [ 40.497136605483199, 2.817064683320776 ], [ 40.497685921483189, 2.814257066320746 ], [ 40.501897347483172, 2.811266343320764 ], [ 40.503728402483198, 2.807848374320766 ], [ 40.500737679483159, 2.804430406320758 ], [ 40.496892464483203, 2.802416245320782 ], [ 40.494939339483203, 2.800035874320766 ], [ 40.495732796483189, 2.79643480032075 ], [ 40.502934945483155, 2.792467515320762 ], [ 40.502690804483159, 2.78862230032075 ], [ 40.501714242483153, 2.784838120320782 ], [ 40.504094613483169, 2.781847398320732 ], [ 40.507939828483181, 2.78166429232078 ], [ 40.511296761483202, 2.78026048432076 ], [ 40.513494027483198, 2.776232163320739 ], [ 40.518132699483196, 2.775621812320761 ], [ 40.521306527483198, 2.773668687320761 ], [ 40.519109261483202, 2.771471421320765 ], [ 40.518498910483167, 2.767626206320752 ], [ 40.519902718483188, 2.763475816320746 ], [ 40.518926156483182, 2.760057847320748 ], [ 40.518498910483167, 2.753038804320735 ], [ 40.519902718483188, 2.748827378320751 ], [ 40.51953650748316, 2.742418687320761 ], [ 40.51953650748316, 2.737047593320764 ], [ 40.515691293483194, 2.735643785320743 ], [ 40.512700570483155, 2.732653062320761 ], [ 40.509892953483181, 2.726244370320782 ], [ 40.507146371483195, 2.723253648320732 ], [ 40.503118050483174, 2.72166673432076 ], [ 40.500127328483181, 2.719469468320764 ], [ 40.500920785483167, 2.716661851320733 ], [ 40.50391150748316, 2.712023179320735 ], [ 40.506291879483165, 2.709032456320752 ], [ 40.510686410483167, 2.704271714320779 ], [ 40.513310921483189, 2.700670640320762 ], [ 40.516728890483186, 2.699022691320746 ], [ 40.520085824483196, 2.693834702320768 ], [ 40.521916879483165, 2.689440171320765 ], [ 40.523320687483185, 2.684435288320739 ], [ 40.52429725048318, 2.679430406320758 ], [ 40.525334847483172, 2.675463120320782 ], [ 40.527287972483172, 2.67143480032075 ], [ 40.527287972483172, 2.667223374320766 ], [ 40.527532113483169, 2.66362230032075 ], [ 40.531743539483152, 2.659044663320739 ], [ 40.534123910483167, 2.65385667532075 ], [ 40.536321175483174, 2.650438706320752 ], [ 40.537297738483169, 2.646837632320736 ], [ 40.537908089483203, 2.643053452320768 ], [ 40.539739144483171, 2.63963548432076 ], [ 40.540898812483185, 2.635851304320735 ], [ 40.541692269483171, 2.632616441320746 ], [ 40.543706429483159, 2.629625718320764 ], [ 40.545110238483169, 2.622667710320737 ], [ 40.546697152483198, 2.618273179320735 ], [ 40.547490609483184, 2.615465562320761 ], [ 40.549321664483152, 2.611864488320745 ], [ 40.550542367483153, 2.608629624320766 ], [ 40.54968787548318, 2.604235093320764 ], [ 40.54968787548318, 2.599840562320761 ], [ 40.551946175483174, 2.597032945320731 ], [ 40.55273963248316, 2.594225327320768 ], [ 40.554509652483198, 2.591051499320766 ], [ 40.557317269483171, 2.588243882320736 ], [ 40.560491097483172, 2.586656968320764 ], [ 40.560918343483188, 2.583422105320775 ], [ 40.558721078483181, 2.579271714320779 ], [ 40.558721078483181, 2.576219956320752 ], [ 40.561528695483155, 2.57322923432076 ], [ 40.563542855483199, 2.570238511320778 ], [ 40.564519418483194, 2.567430894320747 ], [ 40.565923226483157, 2.564257066320746 ], [ 40.569524300483174, 2.562670152320774 ], [ 40.570745004483165, 2.559435288320739 ], [ 40.572515023483156, 2.557238023320732 ], [ 40.576299203483181, 2.553270738320745 ], [ 40.579289925483174, 2.548448960320737 ], [ 40.579900277483198, 2.544054429320735 ], [ 40.579717171483189, 2.535631577320768 ], [ 40.579289925483174, 2.53166429232078 ], [ 40.579900277483198, 2.527819077320768 ], [ 40.5823416834832, 2.524462144320747 ], [ 40.588933480483199, 2.518846910320743 ], [ 40.593328011483202, 2.514452378320751 ], [ 40.597539437483185, 2.510668199320772 ], [ 40.597905648483156, 2.507433335320737 ], [ 40.594121468483188, 2.504259507320736 ], [ 40.5921073084832, 2.500658433320776 ], [ 40.594487679483159, 2.497240464320779 ], [ 40.600286019483171, 2.493273179320735 ], [ 40.604314339483203, 2.490221421320765 ], [ 40.604741586483208, 2.487047593320764 ], [ 40.604131234483184, 2.483019273320732 ], [ 40.603887093483188, 2.479418199320772 ], [ 40.605290902483198, 2.476671617320729 ], [ 40.607121957483166, 2.474230210320737 ], [ 40.609746468483188, 2.470018785320743 ], [ 40.61414100048318, 2.461840074320772 ], [ 40.617131722483172, 2.458422105320775 ], [ 40.619695199483196, 2.45604173432076 ], [ 40.622136605483199, 2.452623765320762 ], [ 40.626103890483186, 2.450060288320739 ], [ 40.629704964483203, 2.447435777320774 ], [ 40.632512582483166, 2.442430894320747 ], [ 40.63812781648317, 2.439440171320765 ], [ 40.641545785483167, 2.436022202320768 ], [ 40.645329964483203, 2.433031480320775 ], [ 40.649907601483157, 2.432848374320766 ], [ 40.653325570483155, 2.432421128320751 ], [ 40.656316293483194, 2.431261460320737 ], [ 40.658940804483159, 2.429430406320758 ], [ 40.662297738483169, 2.425829331320752 ], [ 40.664495004483165, 2.422472398320732 ], [ 40.665105355483199, 2.407457749320766 ], [ 40.666509164483152, 2.404039781320758 ], [ 40.665898812483185, 2.400438706320752 ], [ 40.665288461483208, 2.392870347320748 ], [ 40.666142953483181, 2.388658921320765 ], [ 40.669133675483174, 2.387072007320736 ], [ 40.675542367483153, 2.38127366732078 ], [ 40.676946175483174, 2.373644273320732 ], [ 40.681890023483156, 2.370043199320772 ], [ 40.686894906483182, 2.368273179320735 ], [ 40.691106332483166, 2.366075913320739 ], [ 40.695500863483169, 2.362047593320764 ], [ 40.700139535483167, 2.356859605320775 ], [ 40.706914437483185, 2.35002366732078 ], [ 40.711125863483169, 2.34666673432076 ], [ 40.713689339483203, 2.342821519320747 ], [ 40.715093148483156, 2.33745042532075 ], [ 40.71570350048318, 2.333666245320782 ], [ 40.716741097483172, 2.330431382320736 ], [ 40.718694222483172, 2.327257554320735 ], [ 40.723088754483165, 2.322863023320732 ], [ 40.72992469148317, 2.317430894320747 ], [ 40.738530648483156, 2.311632554320735 ], [ 40.741521371483195, 2.310839097320748 ], [ 40.746709359483184, 2.311449449320772 ], [ 40.750493539483152, 2.312242906320758 ], [ 40.753301156483182, 2.31346360932076 ], [ 40.75671912548318, 2.313829820320731 ], [ 40.761113656483182, 2.312670152320774 ], [ 40.77094031648317, 2.312426011320778 ], [ 40.775090707483166, 2.311632554320735 ], [ 40.77930213248316, 2.309069077320768 ], [ 40.785893929483159, 2.301866929320735 ], [ 40.794744027483198, 2.293871324320772 ], [ 40.798711312483185, 2.290819566320746 ], [ 40.801702035483167, 2.289232652320774 ], [ 40.81531287548318, 2.289415757320736 ], [ 40.819707406483182, 2.29002610932076 ], [ 40.823918832483166, 2.289843003320751 ], [ 40.829106820483155, 2.28807298432076 ], [ 40.833501351483157, 2.285631577320768 ], [ 40.836919320483155, 2.282274644320747 ], [ 40.840886605483199, 2.277269761320778 ], [ 40.843938363483169, 2.274218003320751 ], [ 40.847539437483185, 2.270861070320731 ], [ 40.851689828483181, 2.267443101320733 ], [ 40.857915414483152, 2.260240952320768 ], [ 40.86328650748316, 2.250658433320776 ], [ 40.86414100048318, 2.247850816320746 ], [ 40.864934457483166, 2.241869370320782 ], [ 40.865117562483185, 2.238451402320774 ], [ 40.867925179483159, 2.233263413320739 ], [ 40.884892953483181, 2.214037339320779 ], [ 40.900945199483196, 2.200426499320766 ], [ 40.920903695483155, 2.185655992320729 ], [ 40.944341195483155, 2.174852769320747 ], [ 40.951299203483181, 2.173632066320746 ], [ 40.96570350048318, 2.173632066320746 ], [ 40.973332894483171, 2.174852769320747 ], [ 40.977300179483159, 2.175829331320752 ], [ 40.984929574483196, 2.176439683320776 ], [ 40.991521371483195, 2.176256577320768 ], [ 40.992742074483196, 2.17283860932076 ], [ 40.991704476483157, 1.998033921320766 ], [ 40.991704476483157, 1.941027085320738 ], [ 40.993291390483186, 1.694445054320736 ], [ 40.992314828483181, 1.488268296320766 ], [ 40.9924979334832, 1.01964036732073 ], [ 40.988713754483165, 1.017015855320776 ], [ 40.991521371483195, 0.708238999320767 ], [ 40.992314828483181, 0.690660874320767 ], [ 40.993108285483167, 0.460863511320779 ], [ 40.990117562483185, 0.458238999320767 ], [ 40.980107796483189, 0.450670640320763 ], [ 40.972722543483194, 0.447863023320733 ], [ 40.966130746483195, 0.446031968320765 ], [ 40.961919320483155, 0.444261949320773 ], [ 40.958501351483157, 0.44224778832074 ], [ 40.950322640483186, 0.436022202320769 ], [ 40.946294320483155, 0.433641831320754 ], [ 40.942693246483195, 0.432238023320733 ], [ 40.934514535483167, 0.429430406320759 ], [ 40.923528207483166, 0.423448960320738 ], [ 40.917729867483153, 0.419420640320763 ], [ 40.905095589483203, 0.406237046320766 ], [ 40.897710336483208, 0.399034898320733 ], [ 40.88672400748316, 0.388842027320775 ], [ 40.874700082483166, 0.382433335320738 ], [ 40.858708871483195, 0.373461167320781 ], [ 40.84711219148317, 0.369066636320779 ], [ 40.842717660483167, 0.367845933320777 ], [ 40.831120980483199, 0.365465562320762 ], [ 40.827703011483202, 0.365038316320747 ], [ 40.819097054483159, 0.363451402320775 ], [ 40.807927621483195, 0.36021653832074 ], [ 40.79773475048318, 0.357836167320781 ], [ 40.783940804483159, 0.354235093320765 ], [ 40.77930213248316, 0.353258531320759 ], [ 40.77289344148317, 0.351244370320783 ], [ 40.768743050483174, 0.349474351320734 ], [ 40.75671912548318, 0.343676011320779 ], [ 40.752934945483155, 0.341051499320767 ], [ 40.748113168483194, 0.337023179320736 ], [ 40.745488656483182, 0.334459702320769 ], [ 40.743535531483182, 0.331652085320738 ], [ 40.74109412548318, 0.328661363320746 ], [ 40.739507211483208, 0.326219956320754 ], [ 40.737493050483174, 0.323839585320738 ], [ 40.734929574483196, 0.322435777320775 ], [ 40.731511605483199, 0.321642320320732 ], [ 40.724736703483181, 0.320848863320746 ], [ 40.72070838248316, 0.319628160320744 ], [ 40.7171073084832, 0.317858140320763 ], [ 40.714543832483166, 0.315416734320761 ], [ 40.712529671483189, 0.312426011320779 ], [ 40.709111703483181, 0.304674546320766 ], [ 40.708318246483195, 0.30162278832074 ], [ 40.707097543483194, 0.297838609320761 ], [ 40.704717171483189, 0.291246812320762 ], [ 40.695500863483169, 0.275255601320734 ], [ 40.691106332483166, 0.27263108932078 ], [ 40.687322152483198, 0.271044175320751 ], [ 40.684697640483186, 0.268053452320769 ], [ 40.684087289483152, 0.264452378320752 ], [ 40.684514535483167, 0.260668199320773 ], [ 40.6839041834832, 0.257250230320776 ], [ 40.681890023483156, 0.254625718320765 ], [ 40.676702035483167, 0.250048081320754 ], [ 40.669316781483182, 0.244860093320765 ], [ 40.666142953483181, 0.24302903832074 ], [ 40.659123910483167, 0.237841050320751 ], [ 40.654119027483198, 0.233873765320763 ], [ 40.650945199483196, 0.231066148320733 ], [ 40.645696175483174, 0.228868882320737 ], [ 40.641118539483152, 0.229418199320773 ], [ 40.637944711483208, 0.230028550320751 ], [ 40.634343636483202, 0.230028550320751 ], [ 40.629888070483155, 0.230272691320747 ], [ 40.620732796483189, 0.229051988320746 ], [ 40.616521371483195, 0.229845445320732 ], [ 40.612126839483203, 0.22966233932078 ], [ 40.609136117483153, 0.227220933320777 ], [ 40.607121957483166, 0.224047105320776 ], [ 40.602727425483174, 0.223253648320733 ], [ 40.597539437483185, 0.223436753320752 ], [ 40.593144906483182, 0.219652574320773 ], [ 40.590337289483152, 0.215868394320748 ], [ 40.587102425483174, 0.213060777320775 ], [ 40.583928597483172, 0.213671128320752 ], [ 40.577519906483182, 0.215258042320781 ], [ 40.573308480483199, 0.213243882320737 ], [ 40.567327035483167, 0.213060777320775 ], [ 40.563542855483199, 0.213854234320761 ], [ 40.560307992483153, 0.215624253320752 ], [ 40.557927621483195, 0.217272202320769 ], [ 40.55414344148317, 0.218065660320744 ], [ 40.5510916834832, 0.219225327320769 ], [ 40.548100961483208, 0.221239488320746 ], [ 40.544316781483182, 0.223070542320781 ], [ 40.540288461483208, 0.224657456320754 ], [ 40.535344613483169, 0.224657456320754 ], [ 40.531499398483156, 0.223436753320752 ], [ 40.528142464483203, 0.221666734320761 ], [ 40.523686898483156, 0.217455308320777 ], [ 40.521916879483165, 0.212450425320751 ], [ 40.518743050483174, 0.209032456320754 ], [ 40.514714730483199, 0.206468980320776 ], [ 40.512944711483208, 0.203661363320746 ], [ 40.510930550483174, 0.196642320320732 ], [ 40.508916390483186, 0.192675035320744 ], [ 40.505498421483189, 0.190233628320752 ], [ 40.502324593483188, 0.191820542320781 ], [ 40.49890662548318, 0.194261949320773 ], [ 40.494695199483196, 0.194261949320773 ], [ 40.490911019483171, 0.191454331320754 ], [ 40.485539925483174, 0.187059800320751 ], [ 40.482121957483166, 0.185045640320763 ], [ 40.479314339483203, 0.184252183320777 ], [ 40.475896371483195, 0.183824937320762 ], [ 40.472905648483156, 0.183641831320754 ], [ 40.461736214483203, 0.183458726320734 ], [ 40.458745492483153, 0.182848374320767 ], [ 40.453313363483169, 0.183031480320776 ], [ 40.448918832483166, 0.183458726320734 ], [ 40.444707406483182, 0.18443528832074 ], [ 40.44031287548318, 0.185228745320783 ], [ 40.435735238483169, 0.186632554320736 ], [ 40.430730355483199, 0.187426011320779 ], [ 40.426335824483196, 0.187426011320779 ], [ 40.422490609483184, 0.187059800320751 ], [ 40.418706429483159, 0.186022202320769 ], [ 40.414739144483171, 0.183824937320762 ], [ 40.410344613483169, 0.182238023320733 ], [ 40.406133187483185, 0.181017320320732 ], [ 40.402898324483196, 0.181261460320738 ], [ 40.399907601483157, 0.181627671320766 ], [ 40.397099984483184, 0.182665269320748 ], [ 40.38953162548318, 0.187059800320751 ], [ 40.386113656483182, 0.189623277320775 ], [ 40.382939828483181, 0.191637437320762 ], [ 40.379094613483169, 0.193224351320734 ], [ 40.370305550483174, 0.195055406320759 ], [ 40.366338265483186, 0.195665757320737 ], [ 40.361699593483188, 0.196031968320765 ], [ 40.351933968483188, 0.196642320320732 ], [ 40.343938363483169, 0.196276109320761 ], [ 40.333501351483157, 0.196642320320732 ], [ 40.328740609483184, 0.198473374320767 ], [ 40.32312537548318, 0.201830308320777 ], [ 40.309941781483182, 0.211840074320773 ], [ 40.306340707483166, 0.21403733932078 ], [ 40.300542367483153, 0.217272202320769 ], [ 40.281743539483152, 0.226427476320734 ], [ 40.270513070483155, 0.230638902320775 ], [ 40.260320199483196, 0.234850327320769 ], [ 40.256108773483156, 0.237230699320773 ], [ 40.249333871483195, 0.240648667320781 ], [ 40.244695199483196, 0.243273179320736 ], [ 40.236516488483169, 0.248827378320752 ], [ 40.230718148483156, 0.253221910320744 ], [ 40.223332894483171, 0.259447495320783 ], [ 40.215093148483156, 0.267015855320776 ], [ 40.211736214483203, 0.270433824320773 ], [ 40.201299203483181, 0.282030503320752 ], [ 40.196294320483155, 0.288439195320732 ], [ 40.185735238483169, 0.300646226320734 ], [ 40.181706918483194, 0.305040757320737 ], [ 40.173894418483194, 0.312853257320737 ], [ 40.166142953483181, 0.320055406320759 ], [ 40.163091195483155, 0.322435777320775 ], [ 40.160100472483172, 0.32506028832074 ], [ 40.156499398483156, 0.327440660320744 ], [ 40.152898324483196, 0.32927171432078 ], [ 40.145085824483196, 0.332018296320766 ], [ 40.140691293483194, 0.333849351320734 ], [ 40.134892953483181, 0.337023179320736 ], [ 40.130742562483185, 0.339647691320747 ], [ 40.125493539483152, 0.343248765320763 ], [ 40.1155448084832, 0.350634019320748 ], [ 40.102300179483159, 0.361071031320759 ], [ 40.094914925483174, 0.366625230320776 ], [ 40.07953406648317, 0.377428452320769 ], [ 40.075932992483153, 0.379625718320765 ], [ 40.070500863483169, 0.38365403832074 ], [ 40.066289437483185, 0.386217515320763 ], [ 40.063115609483184, 0.388475816320747 ], [ 40.058721078483181, 0.391222398320733 ], [ 40.05414344148317, 0.393053452320769 ], [ 40.048711312483185, 0.394274156320759 ], [ 40.043706429483159, 0.395067613320746 ], [ 40.026494515483186, 0.395250718320765 ], [ 40.02148963248316, 0.395616929320736 ], [ 40.014104379483165, 0.396837632320737 ], [ 40.006291879483165, 0.398668687320762 ], [ 40.003301156483182, 0.399462144320748 ], [ 39.999944222483172, 0.400621812320762 ], [ 39.995915902483198, 0.401659410320744 ], [ 39.984502328483181, 0.405870835320738 ], [ 39.979741586483208, 0.407823960320738 ], [ 39.966313851483157, 0.414415757320737 ], [ 39.957707894483171, 0.419420640320763 ], [ 39.948491586483208, 0.425218980320776 ], [ 39.934697640483186, 0.43565599232073 ], [ 39.928533089483203, 0.440660874320767 ], [ 39.916936410483167, 0.451219956320754 ], [ 39.91492225048318, 0.45341722232075 ], [ 39.911687386483202, 0.456468980320776 ], [ 39.907536996483195, 0.458666245320783 ], [ 39.904912484483184, 0.460863511320779 ], [ 39.901921761483202, 0.46104661732073 ], [ 39.898503793483194, 0.460070054320736 ], [ 39.894902718483188, 0.460070054320736 ], [ 39.891545785483167, 0.461473863320746 ], [ 39.887090218483188, 0.46122972232075 ], [ 39.884343636483202, 0.460253160320744 ], [ 39.881291879483165, 0.458238999320767 ], [ 39.878545296483189, 0.457262437320762 ], [ 39.874944222483172, 0.457262437320762 ], [ 39.87109900748316, 0.459032456320754 ], [ 39.8655448084832, 0.464464585320738 ], [ 39.862309945483155, 0.465441148320733 ], [ 39.858891976483157, 0.46763841332074 ], [ 39.855901254483165, 0.470262925320751 ], [ 39.853093636483202, 0.474657456320754 ], [ 39.849126351483157, 0.476244370320783 ], [ 39.844914925483174, 0.476244370320783 ], [ 39.84070350048318, 0.47667161732073 ], [ 39.83789588248316, 0.478868882320737 ], [ 39.833135140483186, 0.47862474232073 ], [ 39.828496468483188, 0.477465074320773 ], [ 39.825505746483195, 0.478868882320737 ], [ 39.822087777483198, 0.480822007320737 ], [ 39.816899789483152, 0.481432359320761 ], [ 39.812322152483198, 0.482469956320754 ], [ 39.8089041834832, 0.482225816320747 ], [ 39.805303109483184, 0.481676499320767 ], [ 39.801518929483159, 0.482042710320738 ], [ 39.798528207483166, 0.483873765320763 ], [ 39.795293343483188, 0.486254136320779 ], [ 39.791142953483181, 0.486864488320746 ], [ 39.787724984483184, 0.487841050320751 ], [ 39.784307015483186, 0.489061753320752 ], [ 39.77930213248316, 0.492418687320762 ], [ 39.775334847483172, 0.494066636320779 ], [ 39.773503793483194, 0.497850816320747 ], [ 39.769292367483153, 0.501634995320783 ], [ 39.765508187483185, 0.503832261320779 ], [ 39.76312781648317, 0.50865403832074 ], [ 39.758916390483186, 0.510240952320769 ], [ 39.755132211483208, 0.512255113320746 ], [ 39.751286996483195, 0.513475816320747 ], [ 39.74890662548318, 0.51481858932078 ], [ 39.746343148483156, 0.515856187320762 ], [ 39.743535531483182, 0.518846910320744 ], [ 39.740117562483185, 0.520861070320732 ], [ 39.736516488483169, 0.520861070320732 ], [ 39.734319222483172, 0.522447984320761 ], [ 39.732121957483166, 0.525255601320734 ], [ 39.73132850048318, 0.528856675320751 ], [ 39.728887093483188, 0.532030503320752 ], [ 39.727300179483159, 0.534838120320783 ], [ 39.726140511483202, 0.537462632320737 ], [ 39.724126351483157, 0.540636460320738 ], [ 39.721745980483199, 0.543444077320769 ], [ 39.718328011483202, 0.543871324320773 ], [ 39.7171073084832, 0.54606858932078 ], [ 39.716313851483157, 0.548876206320754 ], [ 39.712712777483198, 0.553270738320746 ], [ 39.7092948084832, 0.556871812320762 ], [ 39.70648719148317, 0.559618394320748 ], [ 39.703313363483169, 0.562059800320751 ], [ 39.700505746483195, 0.565416734320761 ], [ 39.698735726483157, 0.569872300320751 ], [ 39.696538461483208, 0.572252671320766 ], [ 39.693303597483172, 0.574816148320733 ], [ 39.689519418483194, 0.577440660320744 ], [ 39.688298714483203, 0.580675523320733 ], [ 39.686345589483203, 0.583849351320734 ], [ 39.683537972483172, 0.586840074320773 ], [ 39.680730355483199, 0.589464585320738 ], [ 39.679326546483189, 0.59263841332074 ], [ 39.676518929483159, 0.596666734320761 ], [ 39.675298226483157, 0.600267808320777 ], [ 39.673528207483166, 0.602831285320744 ], [ 39.66992713248316, 0.607469956320754 ], [ 39.666936411483157, 0.609850326320779 ], [ 39.664495004483165, 0.612841050320751 ], [ 39.663335336483208, 0.616625230320776 ], [ 39.658086312483185, 0.624437730320776 ], [ 39.655889046483189, 0.627428452320769 ], [ 39.654546273483156, 0.63005296432078 ], [ 39.653935921483189, 0.633837144320748 ], [ 39.652104867483153, 0.638842027320775 ], [ 39.6507010584832, 0.642015855320776 ], [ 39.649724496483195, 0.645861070320732 ], [ 39.645329964483203, 0.655626695320732 ], [ 39.63953162548318, 0.66044847232075 ], [ 39.636296761483202, 0.663866441320747 ], [ 39.632939828483181, 0.665270249320767 ], [ 39.63031531648317, 0.66685716332074 ], [ 39.627507699483196, 0.667833726320734 ], [ 39.626286996483195, 0.671617906320759 ], [ 39.623540414483152, 0.675463120320783 ], [ 39.619512093483188, 0.67802659732075 ], [ 39.616521371483195, 0.680468003320752 ], [ 39.613896859483184, 0.683031480320776 ], [ 39.611699593483188, 0.687853257320737 ], [ 39.608525765483186, 0.690843980320776 ], [ 39.605107796483189, 0.694628160320744 ], [ 39.602300179483159, 0.698656480320776 ], [ 39.600286019483171, 0.701036851320734 ], [ 39.599492562483185, 0.704027574320773 ], [ 39.598088754483165, 0.707018296320766 ], [ 39.597539437483185, 0.709642808320777 ], [ 39.595525277483198, 0.711473863320746 ], [ 39.590093148483156, 0.715624253320752 ], [ 39.586919320483155, 0.71904222232075 ], [ 39.584722054483159, 0.722216050320751 ], [ 39.583318246483195, 0.726061265320763 ], [ 39.581304086483208, 0.729051988320746 ], [ 39.578923714483203, 0.733019273320733 ], [ 39.576726449483196, 0.73747483932078 ], [ 39.5745291834832, 0.740831773320733 ], [ 39.569341195483155, 0.746630113320746 ], [ 39.567143929483159, 0.75084153832074 ], [ 39.564702523483156, 0.753221910320744 ], [ 39.563115609483184, 0.756456773320733 ], [ 39.561894906483182, 0.761034410320744 ], [ 39.561711800483174, 0.766039292320781 ], [ 39.559514535483167, 0.771227281320759 ], [ 39.557317269483171, 0.775255601320734 ], [ 39.555120004483165, 0.778429429320736 ], [ 39.553899300483174, 0.782823960320738 ], [ 39.552922738483169, 0.785631577320769 ], [ 39.550908578483181, 0.794847886320779 ], [ 39.548711312483185, 0.803636949320773 ], [ 39.544316781483182, 0.819017808320777 ], [ 39.539311898483156, 0.83482591332074 ], [ 39.533696664483152, 0.851061265320763 ], [ 39.527104867483153, 0.868639390320763 ], [ 39.523686898483156, 0.87724534732075 ], [ 39.515691293483194, 0.895433824320773 ], [ 39.509526742483153, 0.908861558320777 ], [ 39.502934945483155, 0.92106858932078 ], [ 39.5003104334832, 0.926866929320736 ], [ 39.498540414483152, 0.931627671320766 ], [ 39.496526254483165, 0.940843980320776 ], [ 39.495915902483198, 0.948473374320767 ], [ 39.495305550483174, 0.952440660320744 ], [ 39.494328988483169, 0.956835191320747 ], [ 39.4924979334832, 0.960619370320783 ], [ 39.490300668483194, 0.964647691320747 ], [ 39.483098519483171, 0.974657456320754 ], [ 39.480535043483194, 0.977831285320744 ], [ 39.477910531483182, 0.980272691320747 ], [ 39.468938363483169, 0.984423081320754 ], [ 39.465520394483171, 0.987230699320773 ], [ 39.46289588248316, 0.991869370320783 ], [ 39.459905160483167, 1.002672593320765 ], [ 39.457097543483194, 1.00987474232073 ], [ 39.451909554483159, 1.021837632320737 ], [ 39.450322640483186, 1.02623216332074 ], [ 39.449101937483185, 1.02903978132076 ], [ 39.444890511483202, 1.043016831320754 ], [ 39.442510140483186, 1.048448960320738 ], [ 39.437932504483165, 1.057054917320781 ], [ 39.435491097483172, 1.06224290632076 ], [ 39.415105355483199, 1.117662827320769 ], [ 39.380742562483185, 1.205065171320766 ], [ 39.379094613483169, 1.209642808320777 ], [ 39.37250281648317, 1.225634019320748 ], [ 39.367925179483159, 1.23747483932078 ], [ 39.36609412548318, 1.241625230320776 ], [ 39.360906136483202, 1.255419175320751 ], [ 39.329900277483198, 1.335253160320744 ], [ 39.328313363483169, 1.340074937320762 ], [ 39.319890511483202, 1.36107103132076 ], [ 39.317693246483195, 1.367418687320762 ], [ 39.284917367483153, 1.45146409732075 ], [ 39.279119027483198, 1.466844956320754 ], [ 39.278325570483155, 1.471666734320761 ], [ 39.286687386483202, 1.475267808320777 ], [ 39.30609656648317, 1.482653062320762 ], [ 39.315740121483195, 1.48607103132076 ], [ 39.321294320483155, 1.487841050320751 ], [ 39.345525277483198, 1.496874253320752 ], [ 39.36414100048318, 1.503221910320744 ], [ 39.367314827483192, 1.50505296432078 ], [ 39.37109900748316, 1.506822984320761 ], [ 39.402104867483153, 1.517015855320776 ], [ 39.407903207483166, 1.518663804320736 ], [ 39.423711312483185, 1.523668687320762 ], [ 39.430120004483165, 1.526049058320777 ], [ 39.435307992483153, 1.52763597232075 ], [ 39.447942269483171, 1.532823960320738 ], [ 39.440740121483195, 1.534838120320783 ], [ 39.436894906483182, 1.537645738320746 ], [ 39.434514535483167, 1.540270249320767 ], [ 39.430486214483203, 1.543016831320754 ], [ 39.426335824483196, 1.546251695320732 ], [ 39.423711312483185, 1.54966966332074 ], [ 39.420720589483203, 1.552233140320763 ], [ 39.416692269483171, 1.555468003320752 ], [ 39.413091195483155, 1.557665269320748 ], [ 39.408696664483152, 1.556871812320762 ], [ 39.40430213248316, 1.556627671320766 ], [ 39.397710336483208, 1.561815660320744 ], [ 39.396123421483189, 1.565416734320761 ], [ 39.394902718483188, 1.57042161732073 ], [ 39.391545785483167, 1.57145921432078 ], [ 39.387944711483208, 1.571276109320761 ], [ 39.386540902483198, 1.57506028832074 ], [ 39.385686410483167, 1.57927171432078 ], [ 39.383306039483152, 1.582262437320762 ], [ 39.377507699483196, 1.585070054320736 ], [ 39.373113168483194, 1.59263841332074 ], [ 39.370915902483198, 1.594835679320736 ], [ 39.36914588248316, 1.597643296320766 ], [ 39.3674979334832, 1.601427476320734 ], [ 39.365117562483185, 1.60466233932078 ], [ 39.361089242483153, 1.608019273320733 ], [ 39.358891976483157, 1.610826890320763 ], [ 39.358342660483167, 1.613817613320746 ], [ 39.353337777483198, 1.619860093320765 ], [ 39.352117074483196, 1.622850816320747 ], [ 39.346501839483203, 1.62584153832074 ], [ 39.345098031483182, 1.630846421320766 ], [ 39.342534554483159, 1.638048570320732 ], [ 39.338933480483199, 1.637072007320737 ], [ 39.336492074483196, 1.638048570320732 ], [ 39.335332406483182, 1.640673081320754 ], [ 39.333745492483153, 1.643053452320769 ], [ 39.331731332483166, 1.645616929320736 ], [ 39.328740609483184, 1.646471421320766 ], [ 39.325139535483167, 1.645861070320732 ], [ 39.322331918483194, 1.647264878320752 ], [ 39.319524300483174, 1.651842515320763 ], [ 39.318486703483181, 1.65544358932078 ], [ 39.316289437483185, 1.657823960320738 ], [ 39.31390906648317, 1.656847398320733 ], [ 39.311345589483203, 1.655260484320761 ], [ 39.309514535483167, 1.657823960320738 ], [ 39.309087289483152, 1.661425035320744 ], [ 39.307927621483195, 1.665636460320738 ], [ 39.30414344148317, 1.666246812320762 ], [ 39.300115121483195, 1.666063706320754 ], [ 39.295720589483203, 1.66826097232075 ], [ 39.2913260584832, 1.67106858932078 ], [ 39.284917367483153, 1.674242417320781 ], [ 39.284123910483167, 1.677660386320779 ], [ 39.281133187483185, 1.680468003320752 ], [ 39.278935921483189, 1.682238023320733 ], [ 39.274724496483195, 1.684862535320744 ], [ 39.271916879483165, 1.687059800320751 ], [ 39.264897836483208, 1.685472886320779 ], [ 39.261296761483202, 1.686022202320769 ], [ 39.258306039483152, 1.688036363320746 ], [ 39.254704964483203, 1.691271226320734 ], [ 39.251531136483202, 1.693041245320783 ], [ 39.248296273483156, 1.696276109320761 ], [ 39.245732796483189, 1.697863023320733 ], [ 39.242742074483196, 1.698473374320767 ], [ 39.238530648483156, 1.699633042320781 ], [ 39.234929574483196, 1.700853745320783 ], [ 39.230107796483189, 1.701830308320777 ], [ 39.227117074483196, 1.704637925320751 ], [ 39.22351600048318, 1.705858628320752 ], [ 39.22070838248316, 1.706652085320738 ], [ 39.21570350048318, 1.706652085320738 ], [ 39.211919320483155, 1.708666245320783 ], [ 39.20789100048318, 1.71122972232075 ], [ 39.203923714483203, 1.714830796320766 ], [ 39.201543343483188, 1.71885911732073 ], [ 39.199895394483171, 1.722826402320775 ], [ 39.197698129483165, 1.727220933320777 ], [ 39.19531775748316, 1.731066148320733 ], [ 39.194707406483182, 1.733873765320763 ], [ 39.192693246483195, 1.73662034732075 ], [ 39.191106332483166, 1.739672105320776 ], [ 39.190129769483171, 1.742418687320762 ], [ 39.187139046483189, 1.746019761320779 ], [ 39.182317269483171, 1.75224534732075 ], [ 39.180730355483199, 1.755236070320732 ], [ 39.177922738483169, 1.762255113320746 ], [ 39.178533089483203, 1.766039292320781 ], [ 39.177495492483153, 1.77122728132076 ], [ 39.175908578483181, 1.775438706320754 ], [ 39.17468787548318, 1.779650132320737 ], [ 39.173345101483157, 1.782823960320738 ], [ 39.172490609483184, 1.786241929320736 ], [ 39.170903695483155, 1.789232652320775 ], [ 39.169744027483198, 1.792650620320783 ], [ 39.168523324483196, 1.795641343320765 ], [ 39.165532601483157, 1.79802171432078 ], [ 39.163335336483208, 1.803270738320746 ], [ 39.160893929483159, 1.81083909732075 ], [ 39.15430213248316, 1.817064683320777 ], [ 39.152104867483153, 1.819872300320751 ], [ 39.149907601483157, 1.824266831320754 ], [ 39.148503793483194, 1.828844468320765 ], [ 39.146306527483198, 1.832018296320766 ], [ 39.1428885584832, 1.834642808320777 ], [ 39.143743050483174, 1.839647691320747 ], [ 39.143498910483167, 1.844835679320736 ], [ 39.1428885584832, 1.847826402320775 ], [ 39.143926156483182, 1.850817124320767 ], [ 39.139714730483199, 1.853075425320751 ], [ 39.137517464483203, 1.857836167320781 ], [ 39.135320199483196, 1.860643785320744 ], [ 39.131536019483171, 1.866259019320748 ], [ 39.129888070483155, 1.871263902320775 ], [ 39.125493539483152, 1.874864976320734 ], [ 39.123296273483156, 1.87706224232073 ], [ 39.119328988483169, 1.883043687320762 ], [ 39.116704476483157, 1.88487474232073 ], [ 39.11414100048318, 1.886217515320763 ], [ 39.110906136483202, 1.887072007320737 ], [ 39.102727425483174, 1.89146653832074 ], [ 39.0999198084832, 1.894457261320779 ], [ 39.096135629483165, 1.899462144320748 ], [ 39.093144906483182, 1.900865952320769 ], [ 39.088506234483184, 1.901476304320736 ], [ 39.085515511483202, 1.903673570320732 ], [ 39.083928597483172, 1.906053941320747 ], [ 39.081914437483185, 1.908617417320781 ], [ 39.077336800483174, 1.910631577320769 ], [ 39.073308480483199, 1.913072984320761 ], [ 39.070745004483165, 1.916429917320781 ], [ 39.067143929483159, 1.919420640320763 ], [ 39.064092171483189, 1.922228257320737 ], [ 39.060307992483153, 1.925035874320767 ], [ 39.059087289483152, 1.92802659732075 ], [ 39.058721078483181, 1.931627671320766 ], [ 39.058721078483181, 1.935045640320763 ], [ 39.058293832483166, 1.938219468320765 ], [ 39.055913461483208, 1.940660874320767 ], [ 39.049932015483186, 1.944017808320777 ], [ 39.046941293483194, 1.947252671320766 ], [ 39.045293343483188, 1.95146409732075 ], [ 39.044316781483182, 1.954454820320732 ], [ 39.042302621483195, 1.956835191320747 ], [ 39.039311898483156, 1.959642808320777 ], [ 39.036931527483198, 1.963060777320775 ], [ 39.035100472483172, 1.966234605320776 ], [ 39.033086312483185, 1.970629136320779 ], [ 39.031316293483194, 1.975023667320781 ], [ 39.028691781483182, 1.977037827320769 ], [ 39.027532113483169, 1.979418199320773 ], [ 39.024907601483157, 1.981676499320767 ], [ 39.021916879483165, 1.983019273320733 ], [ 39.020513070483155, 1.985033433320777 ], [ 39.017705453483181, 1.987047593320765 ], [ 39.013494027483198, 1.989672105320776 ], [ 39.011113656483182, 1.99302903832074 ], [ 39.004704964483203, 2.000475327320768 ], [ 39.0003104334832, 2.002672593320764 ], [ 38.995122445483155, 2.004259507320736 ], [ 38.993535531483182, 2.008837144320747 ], [ 38.993291390483186, 2.014452378320751 ], [ 38.9905448084832, 2.023424546320765 ], [ 38.990300668483194, 2.027269761320778 ], [ 38.99109412548318, 2.031847398320732 ], [ 38.992925179483159, 2.036058824320772 ], [ 38.992314828483181, 2.040819566320746 ], [ 38.990300668483194, 2.043871324320772 ], [ 38.987493053483199, 2.046068587320743 ], [ 38.985295785483167, 2.048265855320775 ], [ 38.984929574483196, 2.053026597320748 ], [ 38.985295785483167, 2.059252183320776 ], [ 38.985723031483182, 2.063219468320764 ], [ 38.985295785483167, 2.068224351320733 ], [ 38.981694711483208, 2.072252671320765 ], [ 38.979497445483155, 2.076036851320733 ], [ 38.976689828483181, 2.079454820320731 ], [ 38.973332894483171, 2.082628648320732 ], [ 38.970891488483169, 2.086229722320748 ], [ 38.967900765483186, 2.089037339320779 ], [ 38.964116586483208, 2.093859117320729 ], [ 38.962529671483189, 2.09666673432076 ], [ 38.955693734483184, 2.104051988320745 ], [ 38.954717171483189, 2.107042710320737 ], [ 38.95313025748316, 2.111071031320758 ], [ 38.952092660483167, 2.114855210320737 ], [ 38.951116097483172, 2.119860093320764 ], [ 38.946294320483155, 2.132250230320775 ], [ 38.943730843483188, 2.14103929232078 ], [ 38.941106332483166, 2.146471421320765 ], [ 38.938298714483203, 2.156053941320746 ], [ 38.937322152483198, 2.160448472320748 ], [ 38.937322152483198, 2.164659898320732 ], [ 38.937932504483165, 2.17424241732078 ], [ 38.937932504483165, 2.183275620320782 ], [ 38.937139046483189, 2.194628160320743 ], [ 38.937932504483165, 2.200243394320747 ], [ 38.938298714483203, 2.206224839320779 ], [ 38.938298714483203, 2.212816636320778 ], [ 38.937688363483169, 2.216844956320752 ], [ 38.937139046483189, 2.222032945320731 ], [ 38.935918343483188, 2.229845445320731 ], [ 38.935735238483169, 2.233019273320732 ], [ 38.934697640483186, 2.239672105320775 ], [ 38.9339041834832, 2.243029038320739 ], [ 38.933110726483157, 2.247423570320731 ], [ 38.931706918483194, 2.251634995320782 ], [ 38.930486214483203, 2.254442613320745 ], [ 38.929326546483189, 2.258043687320761 ], [ 38.92914344148317, 2.262438218320764 ], [ 38.92914344148317, 2.268419663320739 ], [ 38.928716195483155, 2.272264878320751 ], [ 38.926335824483196, 2.279467027320774 ], [ 38.926946175483174, 2.284044663320739 ], [ 38.928716195483155, 2.28807298432076 ], [ 38.929509652483198, 2.292467515320762 ], [ 38.930486214483203, 2.296617906320758 ], [ 38.933537972483172, 2.305223863320745 ], [ 38.936345589483203, 2.312242906320758 ], [ 38.936101449483196, 2.31541673432076 ], [ 38.934331429483159, 2.32322923432076 ], [ 38.933110726483157, 2.330248277320774 ], [ 38.932927621483195, 2.334825913320739 ], [ 38.931706918483194, 2.343248765320762 ], [ 38.932134164483152, 2.346239488320745 ], [ 38.932317269483171, 2.351854722320748 ], [ 38.933721078483181, 2.355638902320774 ], [ 38.934514535483167, 2.359056870320782 ], [ 38.934941781483182, 2.367845933320776 ], [ 38.934514535483167, 2.371447007320736 ], [ 38.93250037548318, 2.375048081320752 ], [ 38.93109656648317, 2.378832261320778 ], [ 38.930730355483199, 2.38182298432076 ], [ 38.930913461483208, 2.389818589320779 ], [ 38.929936898483156, 2.396227281320758 ], [ 38.92969275748316, 2.399218003320751 ], [ 38.92914344148317, 2.402025620320782 ], [ 38.928899300483174, 2.405626695320731 ], [ 38.928105843483188, 2.410265367320729 ], [ 38.926335824483196, 2.413866441320746 ], [ 38.923894418483194, 2.417467515320762 ], [ 38.922490609483184, 2.420641343320764 ], [ 38.920720589483203, 2.427660386320778 ], [ 38.915288461483208, 2.43705980032075 ], [ 38.914311898483156, 2.43986741732078 ], [ 38.914495004483165, 2.443041245320782 ], [ 38.913701546483189, 2.44822923432076 ], [ 38.909490121483195, 2.458238999320766 ], [ 38.907903207483166, 2.462816636320778 ], [ 38.906316293483194, 2.466417710320737 ], [ 38.905095589483203, 2.47026292532075 ], [ 38.903508675483174, 2.474474351320733 ], [ 38.902104867483153, 2.48002855032075 ], [ 38.901738656483182, 2.484423081320752 ], [ 38.900517953483181, 2.488634507320736 ], [ 38.899114144483171, 2.496019761320778 ], [ 38.89648963248316, 2.501268785320743 ], [ 38.894109261483202, 2.510668199320772 ], [ 38.893743050483174, 2.519457261320778 ], [ 38.892095101483157, 2.533434312320761 ], [ 38.891118539483152, 2.53666917532075 ], [ 38.888738168483194, 2.541246812320761 ], [ 38.895696175483174, 2.544054429320735 ], [ 38.899724496483195, 2.545030992320729 ], [ 38.909123910483167, 2.547655503320751 ], [ 38.932134164483152, 2.553453843320764 ], [ 38.939519418483194, 2.55565110932076 ], [ 38.964726937483185, 2.561815660320743 ], [ 38.970891488483169, 2.563646714320779 ], [ 38.974492562483185, 2.565050523320732 ], [ 38.979314339483203, 2.566271226320733 ], [ 38.983891976483157, 2.574449937320761 ], [ 38.986089242483153, 2.577867906320758 ], [ 38.98969031648317, 2.584459702320768 ], [ 38.993901742483153, 2.591234605320775 ], [ 38.996526254483165, 2.596239488320745 ], [ 38.999700082483166, 2.600634019320747 ], [ 39.004338754483165, 2.60783616732078 ], [ 39.006536019483171, 2.613634507320736 ], [ 39.011113656483182, 2.624864976320733 ], [ 39.017522347483172, 2.63963548432076 ], [ 39.020085824483196, 2.646227281320758 ], [ 39.024114144483171, 2.655870835320737 ], [ 39.03210975048318, 2.674425523320732 ], [ 39.037724984483184, 2.689623277320774 ], [ 39.040288461483208, 2.692247788320739 ], [ 39.044744027483198, 2.695665757320736 ], [ 39.047307504483165, 2.698046128320751 ], [ 39.0491385584832, 2.701036851320733 ], [ 39.050115121483195, 2.704027574320772 ], [ 39.050115121483195, 2.712023179320735 ], [ 39.050725472483172, 2.71525804232078 ], [ 39.051702035483167, 2.718859117320729 ], [ 39.054326546483189, 2.72502366732078 ], [ 39.055913461483208, 2.727465074320772 ], [ 39.057927621483195, 2.729662339320779 ], [ 39.061101449483196, 2.732225816320746 ], [ 39.063115609483184, 2.735826890320762 ], [ 39.063298714483203, 2.73924485932076 ], [ 39.064092171483189, 2.746447007320736 ], [ 39.065129769483171, 2.754625718320764 ], [ 39.065740121483195, 2.761217515320762 ], [ 39.066289437483185, 2.764452378320751 ], [ 39.067510140483186, 2.774462144320747 ], [ 39.069524300483174, 2.793871324320772 ], [ 39.070745004483165, 2.801439683320776 ], [ 39.070745004483165, 2.807238023320732 ], [ 39.069890511483202, 2.829027574320772 ], [ 39.068730843483188, 2.849047105320775 ], [ 39.068303597483172, 2.86284105032075 ], [ 39.067693246483195, 2.874864976320733 ], [ 39.067937386483202, 2.880663316320746 ], [ 39.079289925483174, 2.880236070320731 ], [ 39.088933480483199, 2.880663316320746 ], [ 39.092290414483152, 2.88041917532075 ], [ 39.096501839483203, 2.88041917532075 ], [ 39.104131234483184, 2.881029527320774 ], [ 39.1077323084832, 2.88182298432076 ], [ 39.11273719148317, 2.881639878320751 ], [ 39.113896859483184, 2.885057847320748 ], [ 39.114324105483199, 2.889452378320751 ], [ 39.115117562483185, 2.894457261320778 ], [ 39.117925179483159, 2.909838120320782 ], [ 39.120122445483155, 2.916674058320776 ], [ 39.122136605483199, 2.920641343320764 ], [ 39.1253104334832, 2.928820054320735 ], [ 39.127507699483196, 2.931871812320761 ], [ 39.130742562483185, 2.933458726320733 ], [ 39.133916390483186, 2.933824937320761 ], [ 39.137700570483155, 2.935228745320782 ], [ 39.141118539483152, 2.938219468320764 ], [ 39.146306527483198, 2.94682542532075 ], [ 39.14929725048318, 2.950670640320762 ], [ 39.152287972483172, 2.952074449320772 ], [ 39.15570594148317, 2.952440660320743 ], [ 39.194524300483174, 2.954027574320772 ], [ 39.197942269483171, 2.958849351320733 ], [ 39.1995291834832, 2.961840074320772 ], [ 39.201909554483159, 2.964830796320765 ], [ 39.205510629483165, 2.967272202320768 ], [ 39.209538949483196, 2.969469468320764 ], [ 39.213323129483165, 2.971849839320779 ], [ 39.216496957483166, 2.974657456320752 ], [ 39.220098031483182, 2.976427476320733 ], [ 39.224309457483166, 2.976854722320748 ], [ 39.228887093483188, 2.978624742320729 ], [ 39.234746468483188, 2.981249253320751 ], [ 39.238103402483198, 2.982225816320746 ], [ 39.2424979334832, 2.983263413320739 ], [ 39.246892464483203, 2.983629624320766 ], [ 39.250127328483181, 2.986071031320758 ], [ 39.250737679483159, 2.991442124320766 ], [ 39.252934945483155, 2.995226304320735 ], [ 39.254704964483203, 2.997667710320737 ], [ 39.257695687483185, 3.001268785320743 ], [ 39.267095101483157, 3.011461656320758 ], [ 39.275090707483166, 3.018846910320743 ], [ 39.281743539483152, 3.025255601320733 ], [ 39.285100472483172, 3.02885667532075 ], [ 39.290105355483199, 3.035021226320733 ], [ 39.311101449483196, 3.044664781320758 ], [ 39.325139535483167, 3.052416245320782 ], [ 39.331914437483185, 3.057848374320766 ], [ 39.3342948084832, 3.059435288320739 ], [ 39.337529671483189, 3.061266343320764 ], [ 39.342900765483186, 3.066027085320737 ], [ 39.345891488483169, 3.068224351320733 ], [ 39.346501839483203, 3.084459702320768 ], [ 39.345891488483169, 3.096422593320764 ], [ 39.346135629483165, 3.113024156320758 ], [ 39.34570838248316, 3.134874742320729 ], [ 39.344304574483196, 3.157457749320766 ], [ 39.343938363483169, 3.17143480032075 ], [ 39.343694222483172, 3.203234117320729 ], [ 39.342534554483159, 3.244432847320748 ], [ 39.341924203483181, 3.25346605032075 ], [ 39.340337289483152, 3.266832749320766 ], [ 39.339726937483185, 3.270861070320731 ], [ 39.338933480483199, 3.274645249320766 ], [ 39.33789588248316, 3.277819077320768 ], [ 39.335332406483182, 3.280870835320737 ], [ 39.331304086483208, 3.28361741732078 ], [ 39.328496468483188, 3.287035386320778 ], [ 39.327886117483153, 3.292223374320766 ], [ 39.327336800483174, 3.300829331320752 ], [ 39.326726449483196, 3.303636949320772 ], [ 39.326116097483172, 3.308824937320761 ], [ 39.325932992483153, 3.31205980032075 ], [ 39.324346078483181, 3.325426499320766 ], [ 39.323308480483199, 3.331224839320779 ], [ 39.322331918483194, 3.340441148320732 ], [ 39.320500863483169, 3.352037827320768 ], [ 39.3167166834832, 3.380663316320746 ], [ 39.315923226483157, 3.384874742320729 ], [ 39.31531287548318, 3.390673081320752 ], [ 39.31390906648317, 3.399828355320775 ], [ 39.313725961483208, 3.403246324320772 ], [ 39.312688363483169, 3.40666429232078 ], [ 39.311101449483196, 3.410448472320748 ], [ 39.3089041834832, 3.41307298432076 ], [ 39.306523812483185, 3.415453355320775 ], [ 39.30469275748316, 3.418444077320768 ], [ 39.3010916834832, 3.425035874320766 ], [ 39.300542367483153, 3.431444566320746 ], [ 39.299932015483186, 3.434618394320747 ], [ 39.299504769483171, 3.439073960320737 ], [ 39.300115121483195, 3.442858140320762 ], [ 39.30273963248316, 3.449449937320761 ], [ 39.303533089483203, 3.452440660320743 ], [ 39.305913461483208, 3.455858628320751 ], [ 39.309331429483159, 3.459459702320768 ], [ 39.311711800483174, 3.463060777320774 ], [ 39.317327035483167, 3.468859117320729 ], [ 39.319524300483174, 3.47221605032075 ], [ 39.320500863483169, 3.476671617320729 ], [ 39.323491586483208, 3.482469956320752 ], [ 39.324712289483152, 3.486071031320758 ], [ 39.325505746483195, 3.490038316320746 ], [ 39.323918832483166, 3.494249742320729 ], [ 39.321294320483155, 3.495226304320735 ], [ 39.320500863483169, 3.497667710320737 ], [ 39.324101937483185, 3.499254624320766 ], [ 39.327886117483153, 3.500048081320752 ], [ 39.332707894483171, 3.498827378320751 ], [ 39.333745492483153, 3.494249742320729 ], [ 39.3342948084832, 3.487474839320779 ], [ 39.335698617483153, 3.483019273320732 ], [ 39.335698617483153, 3.47807542532075 ], [ 39.333318246483195, 3.469225327320768 ], [ 39.33093787548318, 3.463671128320751 ], [ 39.338323129483165, 3.46385423432076 ], [ 39.358525765483186, 3.464830796320765 ], [ 39.367131722483172, 3.465074937320761 ], [ 39.381108773483156, 3.464464585320737 ], [ 39.38812781648317, 3.46385423432076 ], [ 39.401738656483182, 3.461229722320748 ], [ 39.405339730483199, 3.462816636320778 ], [ 39.408086312483185, 3.462023179320735 ], [ 39.411504281483182, 3.463060777320774 ], [ 39.41492225048318, 3.460436265320762 ], [ 39.418889535483167, 3.458422105320775 ], [ 39.422917855483199, 3.459825913320739 ], [ 39.4260916834832, 3.46245042532075 ], [ 39.429509652483198, 3.456835191320746 ], [ 39.429326546483189, 3.450853745320782 ], [ 39.436345589483203, 3.454271714320779 ], [ 39.440923226483157, 3.453661363320745 ], [ 39.443303597483172, 3.456835191320746 ], [ 39.455144418483194, 3.453844468320764 ], [ 39.459538949483196, 3.455065171320765 ], [ 39.463323129483165, 3.454821031320758 ], [ 39.466130746483195, 3.45744554232078 ], [ 39.469731820483155, 3.457018296320765 ], [ 39.472295296483189, 3.459032456320752 ], [ 39.476323617483153, 3.457628648320732 ], [ 39.481145394483171, 3.45744554232078 ], [ 39.484929574483196, 3.457872788320739 ], [ 39.492314828483181, 3.464464585320737 ], [ 39.495488656483182, 3.464037339320779 ], [ 39.497930062483185, 3.462267320320731 ], [ 39.501897347483172, 3.448656480320775 ], [ 39.513310921483189, 3.412462632320736 ], [ 39.514897836483208, 3.407030503320751 ], [ 39.523686898483156, 3.403246324320772 ], [ 39.527898324483196, 3.401232163320739 ], [ 39.53210975048318, 3.399645249320766 ], [ 39.535710824483196, 3.399034898320732 ], [ 39.539311898483156, 3.39885179232078 ], [ 39.543706429483159, 3.397631089320779 ], [ 39.553899300483174, 3.39744798432076 ], [ 39.556523812483185, 3.403246324320772 ], [ 39.563298714483203, 3.420030992320729 ], [ 39.571538461483208, 3.441637437320761 ], [ 39.58594275748316, 3.477648179320735 ], [ 39.589726937483185, 3.485643785320743 ], [ 39.60352088248316, 3.494615952320768 ], [ 39.608525765483186, 3.499071519320747 ], [ 39.635503304483159, 3.526659410320743 ], [ 39.638310921483189, 3.529833238320745 ], [ 39.643498910483167, 3.534838120320782 ], [ 39.670903695483155, 3.562853257320736 ], [ 39.697331918483194, 3.590441148320732 ], [ 39.724492562483185, 3.618273179320735 ], [ 39.74609900748316, 3.640673081320752 ], [ 39.757146371483195, 3.651842515320762 ], [ 39.764287484483184, 3.65861741732078 ], [ 39.767522347483172, 3.657457749320766 ], [ 39.773931039483152, 3.666063706320752 ], [ 39.785893929483159, 3.692858140320762 ] ] ] } } +, +{ "type": "Feature", "id": 9, "properties": { "OBJECTID": 10, "ID_": 264, "COUNTY_NAM": "MANDERA", "CONST_CODE": 42, "CONSTITUEN": "MANDERA SOUTH", "COUNTY_COD": 9, "Shape_Leng": 7.19616328425, "Shape_Area": 2.11434477576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.733342660483167, 3.986620347320748 ], [ 41.73132850048318, 3.989672105320775 ], [ 41.730718148483156, 3.992418687320761 ], [ 41.734136117483153, 3.993029038320739 ], [ 41.736089242483153, 3.989427964320779 ], [ 41.733342660483167, 3.986620347320748 ] ] ], [ [ [ 41.733342660483167, 3.986620347320748 ], [ 41.735539925483174, 3.984239976320733 ], [ 41.73914100048318, 3.987047593320764 ], [ 41.742925179483159, 3.986620347320748 ], [ 41.749089730483199, 3.984056870320782 ], [ 41.752141488483169, 3.983873765320762 ], [ 41.755132211483208, 3.983019273320732 ], [ 41.754888070483155, 3.98002855032075 ], [ 41.754094613483169, 3.976854722320748 ], [ 41.755742562483185, 3.974047105320775 ], [ 41.759892953483181, 3.974047105320775 ], [ 41.763310921483189, 3.97502366732078 ], [ 41.767522347483172, 3.97502366732078 ], [ 41.772099984483184, 3.973253648320732 ], [ 41.776128304483159, 3.97361985932076 ], [ 41.77930213248316, 3.976244370320782 ], [ 41.780339730483199, 3.979418199320772 ], [ 41.781499398483156, 3.982042710320737 ], [ 41.784490121483195, 3.981676499320766 ], [ 41.786321175483174, 3.979051988320745 ], [ 41.78992225048318, 3.977648179320735 ], [ 41.793889535483167, 3.980822007320736 ], [ 41.794744027483198, 3.977831285320743 ], [ 41.79492713248316, 3.974230210320737 ], [ 41.798528207483166, 3.972643296320765 ], [ 41.7991385584832, 3.969835679320735 ], [ 41.795720589483203, 3.968859117320729 ], [ 41.797490609483184, 3.965868394320747 ], [ 41.798894418483194, 3.959825913320739 ], [ 41.800908578483181, 3.957262437320761 ], [ 41.803716195483155, 3.956652085320737 ], [ 41.8089041834832, 3.959276597320748 ], [ 41.811894906483182, 3.957018296320765 ], [ 41.814885629483165, 3.957628648320732 ], [ 41.818486703483181, 3.957628648320732 ], [ 41.821904671483189, 3.955858628320751 ], [ 41.820500863483169, 3.951464097320748 ], [ 41.82312537548318, 3.94822923432076 ], [ 41.826726449483196, 3.947618882320736 ], [ 41.828313363483169, 3.950853745320782 ], [ 41.834111703483181, 3.947069566320746 ], [ 41.836919320483155, 3.944628160320743 ], [ 41.837529671483189, 3.948046128320751 ], [ 41.836308968483188, 3.951219956320752 ], [ 41.83929969148317, 3.952867906320758 ], [ 41.843328011483202, 3.952867906320758 ], [ 41.845342171483189, 3.950670640320762 ], [ 41.847539437483185, 3.947863023320732 ], [ 41.850713265483186, 3.946642320320731 ], [ 41.853703988483169, 3.947863023320732 ], [ 41.855290902483198, 3.951219956320752 ], [ 41.854497445483155, 3.955858628320751 ], [ 41.856145394483171, 3.959642808320776 ], [ 41.861516488483169, 3.959825913320739 ], [ 41.866521371483195, 3.959032456320752 ], [ 41.869695199483196, 3.96525804232078 ], [ 41.871526254483165, 3.963060777320774 ], [ 41.874944222483172, 3.962267320320731 ], [ 41.877141488483169, 3.964830796320765 ], [ 41.881108773483156, 3.965624253320751 ], [ 41.884099496483195, 3.970873277320774 ], [ 41.889897836483208, 3.974840562320761 ], [ 41.892705453483181, 3.976061265320762 ], [ 41.898686898483156, 3.979418199320772 ], [ 41.902104867483153, 3.979051988320745 ], [ 41.904729379483165, 3.976671617320729 ], [ 41.906743539483152, 3.973253648320732 ], [ 41.886907113483169, 3.944445054320735 ], [ 41.859136117483153, 3.906847398320732 ], [ 41.841496957483166, 3.879442613320745 ], [ 41.826543343483188, 3.856859605320775 ], [ 41.79633094148317, 3.816637437320761 ], [ 41.788701546483189, 3.806017320320731 ], [ 41.751286996483195, 3.752245347320748 ], [ 41.741521371483195, 3.739061753320751 ], [ 41.728337777483198, 3.719652574320772 ], [ 41.724126351483157, 3.713060777320774 ], [ 41.712102425483174, 3.695848863320745 ], [ 41.67969275748316, 3.649645249320766 ], [ 41.661931527483198, 3.624864976320733 ], [ 41.643926156483182, 3.599230210320737 ], [ 41.629521859483184, 3.578234117320729 ], [ 41.596745980483199, 3.532274644320747 ], [ 41.582707894483171, 3.512255113320745 ], [ 41.565495980483199, 3.487047593320764 ], [ 41.534307015483186, 3.442675035320743 ], [ 41.503118050483174, 3.398668687320761 ], [ 41.487126839483203, 3.375231187320761 ], [ 41.484502328483181, 3.372667710320737 ], [ 41.470525277483198, 3.351061265320762 ], [ 41.435735238483169, 3.301866929320735 ], [ 41.418340218483188, 3.276232163320739 ], [ 41.399907601483157, 3.250475327320768 ], [ 41.396916879483165, 3.246019761320778 ], [ 41.335332406483182, 3.158434312320761 ], [ 41.327703011483202, 3.14885179232078 ], [ 41.300725472483172, 3.12205735932076 ], [ 41.282292855483199, 3.10502855032075 ], [ 41.273686898483156, 3.096056382320736 ], [ 41.24750281648317, 3.06987230032075 ], [ 41.199712289483152, 3.023241441320746 ], [ 41.178533089483203, 3.00346605032075 ], [ 41.168523324483196, 2.993822495320782 ], [ 41.127324593483188, 2.953417222320748 ], [ 41.08734656648317, 2.91362230032075 ], [ 41.044499886483202, 2.872667710320737 ], [ 41.003301156483182, 2.832018296320765 ], [ 40.994512093483188, 2.822863023320732 ], [ 40.994328988483169, 2.794664781320758 ], [ 40.994695199483196, 2.791063706320752 ], [ 40.99414588248316, 2.708666245320782 ], [ 40.99414588248316, 2.665453355320775 ], [ 40.993108285483167, 2.657823960320737 ], [ 40.993901742483153, 2.624620835320737 ], [ 40.993718636483202, 2.539415757320736 ], [ 40.994328988483169, 2.496019761320778 ], [ 40.993901742483153, 2.452867906320758 ], [ 40.993901742483153, 2.408251206320752 ], [ 40.99414588248316, 2.391832749320766 ], [ 40.993535531483182, 2.323656480320775 ], [ 40.993535531483182, 2.240038316320746 ], [ 40.993108285483167, 2.221422593320764 ], [ 40.992742074483196, 2.188036363320745 ], [ 40.991521371483195, 2.176256577320768 ], [ 40.984929574483196, 2.176439683320776 ], [ 40.977300179483159, 2.175829331320752 ], [ 40.973332894483171, 2.174852769320747 ], [ 40.96570350048318, 2.173632066320746 ], [ 40.951299203483181, 2.173632066320746 ], [ 40.944341195483155, 2.174852769320747 ], [ 40.920903695483155, 2.185655992320729 ], [ 40.900945199483196, 2.200426499320766 ], [ 40.884892953483181, 2.214037339320779 ], [ 40.867925179483159, 2.233263413320739 ], [ 40.865117562483185, 2.238451402320774 ], [ 40.864934457483166, 2.241869370320782 ], [ 40.86414100048318, 2.247850816320746 ], [ 40.86328650748316, 2.250658433320776 ], [ 40.857915414483152, 2.260240952320768 ], [ 40.851689828483181, 2.267443101320733 ], [ 40.847539437483185, 2.270861070320731 ], [ 40.843938363483169, 2.274218003320751 ], [ 40.840886605483199, 2.277269761320778 ], [ 40.836919320483155, 2.282274644320747 ], [ 40.833501351483157, 2.285631577320768 ], [ 40.829106820483155, 2.28807298432076 ], [ 40.823918832483166, 2.289843003320751 ], [ 40.819707406483182, 2.29002610932076 ], [ 40.81531287548318, 2.289415757320736 ], [ 40.801702035483167, 2.289232652320774 ], [ 40.798711312483185, 2.290819566320746 ], [ 40.794744027483198, 2.293871324320772 ], [ 40.785893929483159, 2.301866929320735 ], [ 40.77930213248316, 2.309069077320768 ], [ 40.775090707483166, 2.311632554320735 ], [ 40.77094031648317, 2.312426011320778 ], [ 40.761113656483182, 2.312670152320774 ], [ 40.75671912548318, 2.313829820320731 ], [ 40.753301156483182, 2.31346360932076 ], [ 40.750493539483152, 2.312242906320758 ], [ 40.746709359483184, 2.311449449320772 ], [ 40.741521371483195, 2.310839097320748 ], [ 40.738530648483156, 2.311632554320735 ], [ 40.72992469148317, 2.317430894320747 ], [ 40.718694222483172, 2.327257554320735 ], [ 40.716741097483172, 2.330431382320736 ], [ 40.71570350048318, 2.333666245320782 ], [ 40.715093148483156, 2.33745042532075 ], [ 40.713689339483203, 2.342821519320747 ], [ 40.711125863483169, 2.34666673432076 ], [ 40.706914437483185, 2.35002366732078 ], [ 40.700139535483167, 2.356859605320775 ], [ 40.695500863483169, 2.362047593320764 ], [ 40.691106332483166, 2.366075913320739 ], [ 40.686894906483182, 2.368273179320735 ], [ 40.681890023483156, 2.370043199320772 ], [ 40.676946175483174, 2.373644273320732 ], [ 40.675542367483153, 2.38127366732078 ], [ 40.669133675483174, 2.387072007320736 ], [ 40.666142953483181, 2.388658921320765 ], [ 40.665288461483208, 2.392870347320748 ], [ 40.665898812483185, 2.400438706320752 ], [ 40.666509164483152, 2.404039781320758 ], [ 40.665105355483199, 2.407457749320766 ], [ 40.664495004483165, 2.422472398320732 ], [ 40.662297738483169, 2.425829331320752 ], [ 40.658940804483159, 2.429430406320758 ], [ 40.656316293483194, 2.431261460320737 ], [ 40.653325570483155, 2.432421128320751 ], [ 40.649907601483157, 2.432848374320766 ], [ 40.645329964483203, 2.433031480320775 ], [ 40.641545785483167, 2.436022202320768 ], [ 40.63953162548318, 2.440233628320751 ], [ 40.636113656483182, 2.439623277320774 ], [ 40.632512582483166, 2.442430894320747 ], [ 40.629704964483203, 2.447435777320774 ], [ 40.626103890483186, 2.450060288320739 ], [ 40.622136605483199, 2.452623765320762 ], [ 40.619695199483196, 2.45604173432076 ], [ 40.617131722483172, 2.458422105320775 ], [ 40.61414100048318, 2.461840074320772 ], [ 40.609746468483188, 2.470018785320743 ], [ 40.607121957483166, 2.474230210320737 ], [ 40.605290902483198, 2.476671617320729 ], [ 40.603887093483188, 2.479418199320772 ], [ 40.604131234483184, 2.483019273320732 ], [ 40.604741586483208, 2.487047593320764 ], [ 40.604314339483203, 2.490221421320765 ], [ 40.600286019483171, 2.493273179320735 ], [ 40.594487679483159, 2.497240464320779 ], [ 40.5921073084832, 2.500658433320776 ], [ 40.594121468483188, 2.504259507320736 ], [ 40.597905648483156, 2.507433335320737 ], [ 40.597539437483185, 2.510668199320772 ], [ 40.593328011483202, 2.514452378320751 ], [ 40.588933480483199, 2.518846910320743 ], [ 40.5823416834832, 2.524462144320747 ], [ 40.579900277483198, 2.527819077320768 ], [ 40.579289925483174, 2.53166429232078 ], [ 40.579717171483189, 2.535631577320768 ], [ 40.580144418483194, 2.546068589320779 ], [ 40.578496468483188, 2.549669663320739 ], [ 40.576299203483181, 2.553270738320745 ], [ 40.572515023483156, 2.557238023320732 ], [ 40.570745004483165, 2.559435288320739 ], [ 40.569524300483174, 2.562670152320774 ], [ 40.565923226483157, 2.564257066320746 ], [ 40.564519418483194, 2.567430894320747 ], [ 40.563542855483199, 2.570238511320778 ], [ 40.561528695483155, 2.57322923432076 ], [ 40.558721078483181, 2.576219956320752 ], [ 40.558721078483181, 2.579271714320779 ], [ 40.560918343483188, 2.583422105320775 ], [ 40.560491097483172, 2.586656968320764 ], [ 40.557317269483171, 2.588243882320736 ], [ 40.554509652483198, 2.591051499320766 ], [ 40.55273963248316, 2.594225327320768 ], [ 40.551946175483174, 2.597032945320731 ], [ 40.54968787548318, 2.599840562320761 ], [ 40.54968787548318, 2.604235093320764 ], [ 40.550542367483153, 2.608629624320766 ], [ 40.549321664483152, 2.611864488320745 ], [ 40.547490609483184, 2.615465562320761 ], [ 40.546697152483198, 2.618273179320735 ], [ 40.545110238483169, 2.622667710320737 ], [ 40.543706429483159, 2.629625718320764 ], [ 40.541692269483171, 2.632616441320746 ], [ 40.540898812483185, 2.635851304320735 ], [ 40.539739144483171, 2.63963548432076 ], [ 40.537908089483203, 2.643053452320768 ], [ 40.537297738483169, 2.646837632320736 ], [ 40.536321175483174, 2.650438706320752 ], [ 40.534123910483167, 2.65385667532075 ], [ 40.531743539483152, 2.659044663320739 ], [ 40.527532113483169, 2.66362230032075 ], [ 40.527287972483172, 2.667223374320766 ], [ 40.527287972483172, 2.67143480032075 ], [ 40.525334847483172, 2.675463120320782 ], [ 40.52429725048318, 2.679430406320758 ], [ 40.523320687483185, 2.684435288320739 ], [ 40.521916879483165, 2.689440171320765 ], [ 40.520085824483196, 2.693834702320768 ], [ 40.516728890483186, 2.699022691320746 ], [ 40.513310921483189, 2.700670640320762 ], [ 40.510686410483167, 2.704271714320779 ], [ 40.506291879483165, 2.709032456320752 ], [ 40.50391150748316, 2.712023179320735 ], [ 40.500493539483152, 2.719042222320748 ], [ 40.503118050483174, 2.72166673432076 ], [ 40.507146371483195, 2.723253648320732 ], [ 40.509892953483181, 2.726244370320782 ], [ 40.512700570483155, 2.732653062320761 ], [ 40.515691293483194, 2.735643785320743 ], [ 40.51953650748316, 2.737047593320764 ], [ 40.51953650748316, 2.742418687320761 ], [ 40.519902718483188, 2.748827378320751 ], [ 40.518498910483167, 2.753038804320735 ], [ 40.518926156483182, 2.760057847320748 ], [ 40.519902718483188, 2.763475816320746 ], [ 40.518498910483167, 2.767626206320752 ], [ 40.519109261483202, 2.771471421320765 ], [ 40.521306527483198, 2.773668687320761 ], [ 40.518132699483196, 2.775621812320761 ], [ 40.513494027483198, 2.776232163320739 ], [ 40.511296761483202, 2.78026048432076 ], [ 40.507939828483181, 2.78166429232078 ], [ 40.504094613483169, 2.781847398320732 ], [ 40.501714242483153, 2.784838120320782 ], [ 40.502690804483159, 2.78862230032075 ], [ 40.502934945483155, 2.792467515320762 ], [ 40.495732796483189, 2.79643480032075 ], [ 40.494939339483203, 2.800035874320766 ], [ 40.496892464483203, 2.802416245320782 ], [ 40.500737679483159, 2.804430406320758 ], [ 40.503728402483198, 2.807848374320766 ], [ 40.501897347483172, 2.811266343320764 ], [ 40.497685921483189, 2.814257066320746 ], [ 40.497136605483199, 2.817064683320776 ], [ 40.499089730483199, 2.818834702320768 ], [ 40.49750281648317, 2.821459214320779 ], [ 40.497319711483208, 2.825853745320782 ], [ 40.499089730483199, 2.829271714320779 ], [ 40.499089730483199, 2.832872788320739 ], [ 40.495732796483189, 2.835619370320782 ], [ 40.494939339483203, 2.840074937320761 ], [ 40.495122445483155, 2.843065660320743 ], [ 40.496343148483156, 2.845629136320778 ], [ 40.497685921483189, 2.85002366732078 ], [ 40.494939339483203, 2.85307542532075 ], [ 40.495732796483189, 2.857042710320737 ], [ 40.493718636483202, 2.861437242320729 ], [ 40.493535531483182, 2.865221421320765 ], [ 40.470525277483198, 2.877428452320768 ], [ 40.439336312483185, 2.891832749320766 ], [ 40.381536019483171, 2.918871324320772 ], [ 40.270696175483174, 2.969225327320768 ], [ 40.267522347483172, 2.973436753320751 ], [ 40.263494027483198, 2.979662339320779 ], [ 40.258306039483152, 2.986071031320758 ], [ 40.236089242483153, 3.012438218320764 ], [ 40.217900765483186, 3.033434312320761 ], [ 40.204289925483174, 3.049669663320739 ], [ 40.186101449483196, 3.070238511320778 ], [ 40.170537484483184, 3.088243882320736 ], [ 40.132695687483185, 3.12986985932076 ], [ 40.113896859483184, 3.149828355320775 ], [ 40.098088754483165, 3.167223374320766 ], [ 40.077703011483202, 3.188829820320731 ], [ 40.044316781483182, 3.225817124320766 ], [ 40.034307015483186, 3.231249253320751 ], [ 40.034123910483167, 3.234850327320768 ], [ 40.013494027483198, 3.243822495320782 ], [ 40.010503304483159, 3.244249742320729 ], [ 39.94672156648317, 3.270067613320745 ], [ 39.915288461483208, 3.282457749320766 ], [ 39.878545296483189, 3.297472398320732 ], [ 39.808293832483166, 3.325426499320766 ], [ 39.793523324483196, 3.331835191320746 ], [ 39.787724984483184, 3.334032456320752 ], [ 39.786504281483182, 3.33745042532075 ], [ 39.786321175483174, 3.342821519320747 ], [ 39.786138070483155, 3.417650620320782 ], [ 39.78711463248316, 3.436632554320735 ], [ 39.786321175483174, 3.460070054320735 ], [ 39.786138070483155, 3.475450913320739 ], [ 39.786138070483155, 3.536241929320735 ], [ 39.786321175483174, 3.573473374320766 ], [ 39.785893929483159, 3.61284105032075 ], [ 39.785893929483159, 3.692858140320762 ], [ 39.791509164483152, 3.70463792532075 ], [ 39.816899789483152, 3.759447495320782 ], [ 39.83929969148317, 3.807238023320732 ], [ 39.86609412548318, 3.865465562320761 ], [ 39.890691293483194, 3.878221910320743 ], [ 39.991704476483157, 3.929857652320774 ], [ 39.997136605483199, 3.934069077320768 ], [ 40.118291390483186, 3.996630113320745 ], [ 40.148137582483166, 4.010668199320773 ], [ 40.153691781483182, 4.010668199320773 ], [ 40.157536996483195, 4.013475816320747 ], [ 40.163091195483155, 4.019030015320763 ], [ 40.168340218483188, 4.02263108932078 ], [ 40.174321664483152, 4.025621812320762 ], [ 40.179936898483156, 4.027819077320769 ], [ 40.184697640483186, 4.032640855320776 ], [ 40.191106332483166, 4.043444077320769 ], [ 40.196538461483208, 4.044054429320735 ], [ 40.204717171483189, 4.038866441320747 ], [ 40.207707894483171, 4.039659898320733 ], [ 40.211125863483169, 4.041246812320762 ], [ 40.259526742483153, 4.061022202320769 ], [ 40.296086800483174, 4.075853745320782 ], [ 40.344121468483188, 4.095018785320744 ], [ 40.36414100048318, 4.103441636320778 ], [ 40.385503304483159, 4.113024156320759 ], [ 40.394719613483169, 4.11143724232073 ], [ 40.402287972483172, 4.118456285320744 ], [ 40.425298226483157, 4.129076402320774 ], [ 40.503301156483182, 4.160448472320749 ], [ 40.580693734483184, 4.191820542320781 ], [ 40.65570594148317, 4.222826402320774 ], [ 40.69031287548318, 4.236071031320759 ], [ 40.697698129483165, 4.239244859320761 ], [ 40.698918832483166, 4.242235581320753 ], [ 40.701543343483188, 4.245470445320732 ], [ 40.705327523483156, 4.24724046432078 ], [ 40.709722054483159, 4.248644273320733 ], [ 40.713506234483184, 4.248644273320733 ], [ 40.716924203483181, 4.247850816320747 ], [ 40.72070838248316, 4.247423570320732 ], [ 40.725102914483152, 4.248033921320766 ], [ 40.727910531483182, 4.248644273320733 ], [ 40.72992469148317, 4.251818101320734 ], [ 40.736943734483184, 4.257860581320753 ], [ 40.74109412548318, 4.259264390320763 ], [ 40.74414588248316, 4.260668199320773 ], [ 40.746709359483184, 4.263231675320751 ], [ 40.749944222483172, 4.267443101320734 ], [ 40.752141488483169, 4.271471421320766 ], [ 40.755742562483185, 4.275865952320769 ], [ 40.759343636483202, 4.279650132320737 ], [ 40.767522347483172, 4.279833238320745 ], [ 40.771733773483156, 4.277819077320769 ], [ 40.775517953483181, 4.27745286732073 ], [ 40.77930213248316, 4.278246324320773 ], [ 40.783086312483185, 4.278063218320765 ], [ 40.785893929483159, 4.273851792320781 ], [ 40.787297738483169, 4.270433824320773 ], [ 40.788945687483185, 4.267626206320753 ], [ 40.791509164483152, 4.265245835320738 ], [ 40.795720589483203, 4.263842027320774 ], [ 40.802495492483153, 4.263231675320751 ], [ 40.809697640483186, 4.257616441320747 ], [ 40.814702523483156, 4.255846421320766 ], [ 40.818730843483188, 4.253038804320735 ], [ 40.82312537548318, 4.250231187320762 ], [ 40.826116097483172, 4.249071519320748 ], [ 40.829106820483155, 4.249071519320748 ], [ 40.831304086483208, 4.247057359320761 ], [ 40.834538949483196, 4.245043199320773 ], [ 40.836492074483196, 4.248461167320781 ], [ 40.839726937483185, 4.248217027320774 ], [ 40.843328011483202, 4.247423570320732 ], [ 40.849126351483157, 4.244615952320769 ], [ 40.851140511483202, 4.240831773320733 ], [ 40.851506722483172, 4.236864488320745 ], [ 40.851506722483172, 4.232653062320762 ], [ 40.85352088248316, 4.227831285320744 ], [ 40.856145394483171, 4.225023667320781 ], [ 40.866521371483195, 4.225023667320781 ], [ 40.870488656483182, 4.223436753320752 ], [ 40.87390662548318, 4.220629136320778 ], [ 40.876897347483172, 4.219042222320749 ], [ 40.879094613483169, 4.217272202320769 ], [ 40.885137093483188, 4.211840074320773 ], [ 40.886907113483169, 4.208666245320782 ], [ 40.886113656483182, 4.201464097320749 ], [ 40.887090218483188, 4.197618882320737 ], [ 40.886907113483169, 4.194445054320735 ], [ 40.887334359483184, 4.190416734320761 ], [ 40.889104379483165, 4.187853257320737 ], [ 40.893498910483167, 4.184435288320739 ], [ 40.898931039483152, 4.181017320320732 ], [ 40.901128304483159, 4.177050035320744 ], [ 40.902532113483169, 4.169420640320763 ], [ 40.903325570483155, 4.166246812320762 ], [ 40.903325570483155, 4.162828843320765 ], [ 40.905095589483203, 4.157274644320748 ], [ 40.907536996483195, 4.153856675320751 ], [ 40.919316781483182, 4.151659410320744 ], [ 40.922917855483199, 4.148241441320747 ], [ 40.926335824483196, 4.146654527320774 ], [ 40.929936898483156, 4.146227281320759 ], [ 40.933293832483166, 4.145250718320765 ], [ 40.936345589483203, 4.144823472320749 ], [ 40.944890511483202, 4.145616929320735 ], [ 40.947087777483198, 4.143663804320735 ], [ 40.951299203483181, 4.142443101320734 ], [ 40.953923714483203, 4.140062730320776 ], [ 40.959111703483181, 4.13981858932078 ], [ 40.961125863483169, 4.136461656320759 ], [ 40.961736214483203, 4.133043687320762 ], [ 40.964910043483194, 4.130846421320766 ], [ 40.967900765483186, 4.129625718320765 ], [ 40.970525277483198, 4.127855699320773 ], [ 40.972722543483194, 4.126024644320748 ], [ 40.975713265483186, 4.124254624320767 ], [ 40.980107796483189, 4.119615952320769 ], [ 40.980107796483189, 4.114855210320738 ], [ 40.981511605483199, 4.110826890320763 ], [ 40.985112679483159, 4.109667222320749 ], [ 40.994939339483203, 4.110643785320744 ], [ 40.998296273483156, 4.109423081320753 ], [ 41.001286996483195, 4.107836167320781 ], [ 41.005925668483194, 4.099657456320753 ], [ 41.009892953483181, 4.095446031320759 ], [ 41.012944711483208, 4.093065660320744 ], [ 41.016118539483152, 4.092028062320762 ], [ 41.018132699483196, 4.089647691320747 ], [ 41.018498910483167, 4.086229722320749 ], [ 41.018498910483167, 4.083055894320748 ], [ 41.02094031648317, 4.080065171320766 ], [ 41.026494515483186, 4.07927171432078 ], [ 41.03070594148317, 4.078417222320749 ], [ 41.03210975048318, 4.074816148320733 ], [ 41.034490121483195, 4.072069566320747 ], [ 41.039311898483156, 4.074633042320781 ], [ 41.042485726483157, 4.074022691320747 ], [ 41.043706429483159, 4.07145921432078 ], [ 41.047490609483184, 4.060228745320782 ], [ 41.051702035483167, 4.054430406320759 ], [ 41.055120004483165, 4.051622788320739 ], [ 41.060124886483202, 4.048448960320738 ], [ 41.064092171483189, 4.045275132320737 ], [ 41.068730843483188, 4.040453355320776 ], [ 41.071294320483155, 4.036058824320773 ], [ 41.072331918483194, 4.031053941320747 ], [ 41.072515023483156, 4.026476304320735 ], [ 41.075505746483195, 4.022447984320761 ], [ 41.07953406648317, 4.021654527320774 ], [ 41.083135140483186, 4.021227281320759 ], [ 41.086736214483203, 4.018053452320769 ], [ 41.08734656648317, 4.014269273320733 ], [ 41.09070350048318, 4.011034410320744 ], [ 41.097905648483156, 4.007250230320776 ], [ 41.102727425483174, 4.006029527320774 ], [ 41.105535043483194, 4.003649156320759 ], [ 41.102300179483159, 4.000658433320777 ], [ 41.101323617483153, 3.996874253320751 ], [ 41.102727425483174, 3.990831773320732 ], [ 41.105107796483189, 3.987657945320731 ], [ 41.108525765483186, 3.985033433320776 ], [ 41.111943734483184, 3.985033433320776 ], [ 41.1155448084832, 3.987230699320772 ], [ 41.119695199483196, 3.984239976320733 ], [ 41.122685921483189, 3.980638902320774 ], [ 41.126531136483202, 3.978258531320758 ], [ 41.126103890483186, 3.974474351320733 ], [ 41.129521859483184, 3.972826402320774 ], [ 41.132512582483166, 3.972826402320774 ], [ 41.135686410483167, 3.971422593320764 ], [ 41.13171912548318, 3.969225327320768 ], [ 41.132146371483195, 3.966234605320775 ], [ 41.136113656483182, 3.965441148320732 ], [ 41.141545785483167, 3.961229722320748 ], [ 41.146306527483198, 3.960863511320778 ], [ 41.150090707483166, 3.959642808320776 ], [ 41.152898324483196, 3.958422105320775 ], [ 41.156499398483156, 3.956224839320779 ], [ 41.161138070483155, 3.953051011320778 ], [ 41.164739144483171, 3.951464097320748 ], [ 41.168096078483181, 3.948473374320766 ], [ 41.17133094148317, 3.94487230032075 ], [ 41.175298226483157, 3.943041245320782 ], [ 41.17969275748316, 3.943224351320733 ], [ 41.186894906483182, 3.94041673432076 ], [ 41.190923226483157, 3.93986741732078 ], [ 41.196538461483208, 3.935655992320729 ], [ 41.208318246483195, 3.934862535320743 ], [ 41.208501351483157, 3.943468492320729 ], [ 41.210698617483153, 3.946459214320779 ], [ 41.217534554483159, 3.949022691320746 ], [ 41.220098031483182, 3.952867906320758 ], [ 41.227300179483159, 3.953051011320778 ], [ 41.22992469148317, 3.951830308320776 ], [ 41.232121957483166, 3.949816148320732 ], [ 41.233342660483167, 3.952623765320762 ], [ 41.237309945483155, 3.956835191320746 ], [ 41.2405448084832, 3.959276597320748 ], [ 41.243108285483167, 3.955248277320774 ], [ 41.244328988483169, 3.951036851320733 ], [ 41.247319711483208, 3.950060288320739 ], [ 41.2503104334832, 3.953661363320745 ], [ 41.253301156483182, 3.952867906320758 ], [ 41.256108773483156, 3.951830308320776 ], [ 41.258733285483167, 3.953417222320748 ], [ 41.261540902483198, 3.95463792532075 ], [ 41.264287484483184, 3.955248277320774 ], [ 41.2678885584832, 3.953417222320748 ], [ 41.272099984483184, 3.951647202320768 ], [ 41.276738656483182, 3.950243394320747 ], [ 41.279729379483165, 3.950853745320782 ], [ 41.281316293483194, 3.953234117320729 ], [ 41.2835135584832, 3.951219956320752 ], [ 41.283940804483159, 3.947252671320765 ], [ 41.288335336483208, 3.94822923432076 ], [ 41.296697152483198, 3.947618882320736 ], [ 41.295537484483184, 3.952074449320772 ], [ 41.298100961483208, 3.95463792532075 ], [ 41.304509652483198, 3.947435777320774 ], [ 41.3089041834832, 3.945421617320729 ], [ 41.312932504483165, 3.946642320320731 ], [ 41.316106332483166, 3.944628160320743 ], [ 41.318486703483181, 3.94487230032075 ], [ 41.326543343483188, 3.940660874320766 ], [ 41.329900277483198, 3.940660874320766 ], [ 41.333318246483195, 3.943834702320768 ], [ 41.339910043483194, 3.944261949320772 ], [ 41.342534554483159, 3.946031968320764 ], [ 41.345891488483169, 3.949022691320746 ], [ 41.349492562483185, 3.948839585320737 ], [ 41.353703988483169, 3.94963304232078 ], [ 41.355718149483202, 3.955065171320765 ], [ 41.356145394483171, 3.959642808320776 ], [ 41.36328650748316, 3.959642808320776 ], [ 41.36469031648317, 3.956468980320775 ], [ 41.372136605483199, 3.955431382320736 ], [ 41.375493539483152, 3.953417222320748 ], [ 41.379094613483169, 3.951830308320776 ], [ 41.382512582483166, 3.954821031320758 ], [ 41.384343636483202, 3.959642808320776 ], [ 41.389714730483199, 3.959459702320768 ], [ 41.391545785483167, 3.962267320320731 ], [ 41.394719613483169, 3.964464585320737 ], [ 41.398931039483152, 3.964220445320731 ], [ 41.401921761483202, 3.961656968320764 ], [ 41.405522836483208, 3.959642808320776 ], [ 41.410100472483172, 3.955431382320736 ], [ 41.412724984483184, 3.954271714320779 ], [ 41.416142953483181, 3.953661363320745 ], [ 41.420110238483169, 3.949816148320732 ], [ 41.424932015483186, 3.949266831320752 ], [ 41.434331429483159, 3.949816148320732 ], [ 41.440129769483171, 3.951219956320752 ], [ 41.439092171483189, 3.955248277320774 ], [ 41.441533578483181, 3.95744554232078 ], [ 41.445745004483165, 3.95604173432076 ], [ 41.450139535483167, 3.955431382320736 ], [ 41.453923714483203, 3.956224839320779 ], [ 41.458318246483195, 3.959032456320752 ], [ 41.462529671483189, 3.959459702320768 ], [ 41.471318734483184, 3.955431382320736 ], [ 41.476323617483153, 3.958055894320747 ], [ 41.478887093483188, 3.956835191320746 ], [ 41.481938851483157, 3.954821031320758 ], [ 41.483708871483195, 3.961046617320729 ], [ 41.487309945483155, 3.962023179320735 ], [ 41.492314828483181, 3.962023179320735 ], [ 41.497136605483199, 3.962633531320758 ], [ 41.499333871483195, 3.965441148320732 ], [ 41.501103890483186, 3.968431870320782 ], [ 41.504338754483165, 3.966844956320752 ], [ 41.5081229334832, 3.961046617320729 ], [ 41.507939828483181, 3.955431382320736 ], [ 41.512334359483184, 3.954027574320772 ], [ 41.516728890483186, 3.955675523320732 ], [ 41.520085824483196, 3.959032456320752 ], [ 41.522710336483208, 3.960863511320778 ], [ 41.524541390483186, 3.967638413320739 ], [ 41.527104867483153, 3.971849839320779 ], [ 41.53070594148317, 3.974047105320775 ], [ 41.534123910483167, 3.97502366732078 ], [ 41.536931527483198, 3.975634019320747 ], [ 41.539311898483156, 3.979235093320764 ], [ 41.543340218483188, 3.982225816320746 ], [ 41.546514046483189, 3.983446519320747 ], [ 41.550115121483195, 3.984239976320733 ], [ 41.55414344148317, 3.983019273320732 ], [ 41.561528695483155, 3.977220933320776 ], [ 41.56390906648317, 3.974047105320775 ], [ 41.566289437483185, 3.97026292532075 ], [ 41.570928109483184, 3.970018785320743 ], [ 41.575505746483195, 3.971056382320736 ], [ 41.58093787548318, 3.972826402320774 ], [ 41.58789588248316, 3.97221605032075 ], [ 41.591313851483157, 3.971056382320736 ], [ 41.596318734483184, 3.971056382320736 ], [ 41.5999198084832, 3.974047105320775 ], [ 41.603703988483169, 3.97502366732078 ], [ 41.610723031483182, 3.973863999320766 ], [ 41.61914588248316, 3.973863999320766 ], [ 41.622319711483208, 3.976427476320733 ], [ 41.625493539483152, 3.981249253320751 ], [ 41.629094613483169, 3.982653062320761 ], [ 41.630925668483194, 3.979051988320745 ], [ 41.633489144483171, 3.98002855032075 ], [ 41.634526742483153, 3.983873765320762 ], [ 41.637944711483208, 3.984667222320748 ], [ 41.639104379483165, 3.979845445320731 ], [ 41.643498910483167, 3.97807542532075 ], [ 41.645329965483192, 3.973863999320766 ], [ 41.648931039483152, 3.972460191320746 ], [ 41.652898324483196, 3.971239488320745 ], [ 41.654729379483165, 3.967638413320739 ], [ 41.656743539483152, 3.965441148320732 ], [ 41.659490121483195, 3.966051499320766 ], [ 41.66211463248316, 3.967455308320776 ], [ 41.665105355483199, 3.966844956320752 ], [ 41.668340218483188, 3.965868394320747 ], [ 41.671697152483198, 3.967028062320761 ], [ 41.675542367483153, 3.961046617320729 ], [ 41.678716195483155, 3.960070054320735 ], [ 41.680730355483199, 3.966417710320737 ], [ 41.68250037548318, 3.97026292532075 ], [ 41.682744515483186, 3.975267808320776 ], [ 41.685735238483169, 3.974657456320752 ], [ 41.687932504483165, 3.971849839320779 ], [ 41.690923226483157, 3.974047105320775 ], [ 41.692510140483186, 3.978624742320729 ], [ 41.701116097483172, 3.982653062320761 ], [ 41.704900277483198, 3.985460679320735 ], [ 41.709111703483181, 3.986071031320758 ], [ 41.713140023483156, 3.985643785320743 ], [ 41.715093148483156, 3.988268296320765 ], [ 41.717534554483159, 3.992418687320761 ], [ 41.721501839483203, 3.993273179320735 ], [ 41.722295296483189, 3.98924485932076 ], [ 41.725530160483167, 3.988024156320758 ], [ 41.72852088248316, 3.987230699320772 ], [ 41.733342660483167, 3.986620347320748 ] ] ] ] } } +, +{ "type": "Feature", "id": 10, "properties": { "OBJECTID": 11, "ID_": 133, "COUNTY_NAM": "MARSABIT", "CONST_CODE": 46, "CONSTITUEN": "NORTH HORR", "COUNTY_COD": 10, "Shape_Leng": 11.8969963206, "Shape_Area": 6.18501666925 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.255925668483194, 4.451830308320777 ], [ 36.264714730483199, 4.448229234320761 ], [ 36.358342660483167, 4.446276109320761 ], [ 36.385503304483159, 4.44542161732073 ], [ 36.401128304483159, 4.44542161732073 ], [ 36.463323129483165, 4.443651597320749 ], [ 36.476140511483202, 4.444017808320777 ], [ 36.516728890483186, 4.44346849232073 ], [ 36.547490609483184, 4.441820542320781 ], [ 36.626103890483186, 4.451830308320777 ], [ 36.645513070483155, 4.451464097320749 ], [ 36.661687386483202, 4.440050523320733 ], [ 36.68109656648317, 4.438829820320732 ], [ 36.730901254483165, 4.441454331320753 ], [ 36.781743539483152, 4.444445054320735 ], [ 36.814702523483156, 4.445665757320737 ], [ 36.844731820483155, 4.447252671320766 ], [ 36.88031531648317, 4.429430406320759 ], [ 36.910527718483188, 4.422045152320774 ], [ 36.942143929483159, 4.408617417320781 ], [ 36.957097543483194, 4.402025620320782 ], [ 36.960088265483186, 4.401049058320777 ], [ 36.959722054483159, 4.395250718320765 ], [ 36.975896371483195, 4.395861070320732 ], [ 36.980535043483194, 4.393236558320777 ], [ 36.986943734483184, 4.392870347320749 ], [ 36.988103402483198, 4.389635484320761 ], [ 36.998296273483156, 4.380663316320747 ], [ 37.004338754483165, 4.375841538320739 ], [ 37.010503304483159, 4.377428452320769 ], [ 37.013494027483198, 4.375841538320739 ], [ 37.016545785483167, 4.373827378320752 ], [ 37.02148963248316, 4.369432847320749 ], [ 37.028142464483203, 4.376024644320748 ], [ 37.031316293483194, 4.379442613320745 ], [ 37.03210975048318, 4.383226792320781 ], [ 37.039495004483165, 4.375475327320769 ], [ 37.044316781483182, 4.37224046432078 ], [ 37.048100961483151, 4.373461167320781 ], [ 37.048711312483185, 4.368029038320739 ], [ 37.055486214483203, 4.363634507320737 ], [ 37.055303109483184, 4.360643785320744 ], [ 37.059697640483186, 4.354845445320732 ], [ 37.064702523483156, 4.349474351320734 ], [ 37.065495980483199, 4.345873277320774 ], [ 37.072515023483156, 4.346422593320765 ], [ 37.078496468483188, 4.346056382320737 ], [ 37.081304086483151, 4.345018785320744 ], [ 37.090093148483156, 4.341234605320776 ], [ 37.094487679483159, 4.334032456320753 ], [ 37.097722543483194, 4.331652085320738 ], [ 37.098699105483199, 4.328844468320765 ], [ 37.113896859483184, 4.304064195320732 ], [ 37.122685921483189, 4.297472398320733 ], [ 37.12891150748316, 4.292467515320763 ], [ 37.132512582483166, 4.290636460320738 ], [ 37.136907113483169, 4.292833726320734 ], [ 37.159307015483186, 4.277819077320769 ], [ 37.225713265483186, 4.235033433320777 ], [ 37.249089730483199, 4.220446031320759 ], [ 37.261540902483198, 4.212023179320735 ], [ 37.2991385584832, 4.187426011320778 ], [ 37.316106332483166, 4.176622788320739 ], [ 37.322515023483156, 4.172228257320737 ], [ 37.341130746483195, 4.160448472320749 ], [ 37.408696664483152, 4.116442124320767 ], [ 37.418340218483188, 4.110826890320763 ], [ 37.422307504483165, 4.109239976320734 ], [ 37.426702035483167, 4.107836167320781 ], [ 37.428716195483155, 4.10466233932078 ], [ 37.439092171483189, 4.098070542320781 ], [ 37.455510629483165, 4.087267320320732 ], [ 37.501531136483202, 4.056627671320766 ], [ 37.555730355483199, 4.015856187320762 ], [ 37.58734656648317, 3.994432847320748 ], [ 37.620915902483198, 3.97221605032075 ], [ 37.6331229334832, 3.964464585320737 ], [ 37.648931039483152, 3.953234117320729 ], [ 37.64929725048318, 3.950060288320739 ], [ 37.659917367483153, 3.943224351320733 ], [ 37.67914344148317, 3.930223863320745 ], [ 37.707707894483171, 3.910265367320729 ], [ 37.72070838248316, 3.902819077320768 ], [ 37.7424979334832, 3.887865464320779 ], [ 37.75531531648317, 3.879442613320745 ], [ 37.768743050483174, 3.870043199320772 ], [ 37.786321175483174, 3.858629624320766 ], [ 37.802495492483153, 3.848863999320766 ], [ 37.819097054483159, 3.837633531320758 ], [ 37.837529671483189, 3.825670640320762 ], [ 37.847905648483156, 3.818651597320748 ], [ 37.870122445483155, 3.804430406320758 ], [ 37.884892953483181, 3.794664781320758 ], [ 37.902715218483188, 3.783251206320752 ], [ 37.910710824483196, 3.777819077320768 ], [ 37.919499886483202, 3.77104417532075 ], [ 37.9339041834832, 3.762438218320764 ], [ 37.950505746483195, 3.753038804320735 ], [ 37.966924203483181, 3.743822495320782 ], [ 37.980901254483165, 3.736437242320729 ], [ 37.9905448084832, 3.730455796320765 ], [ 37.993901742483153, 3.729418199320772 ], [ 38.000127328483181, 3.730822007320736 ], [ 38.00391150748316, 3.726427476320733 ], [ 38.008733285483167, 3.726427476320733 ], [ 38.013310921483189, 3.712816636320778 ], [ 38.016301644483171, 3.713426988320745 ], [ 38.0178885584832, 3.707018296320765 ], [ 38.019292367483153, 3.703417222320748 ], [ 38.025090707483166, 3.698656480320775 ], [ 38.027287972483172, 3.693834702320768 ], [ 38.031743539483152, 3.69182054232078 ], [ 38.032720101483157, 3.688036363320745 ], [ 38.035893929483159, 3.685655992320729 ], [ 38.038335336483208, 3.682848374320766 ], [ 38.042485726483157, 3.682848374320766 ], [ 38.044499886483202, 3.677416245320782 ], [ 38.048100961483208, 3.673021714320779 ], [ 38.055303109483184, 3.670030992320729 ], [ 38.060491097483172, 3.66642991732078 ], [ 38.072698129483165, 3.656847398320732 ], [ 38.084722054483159, 3.646837632320736 ], [ 38.113896859483184, 3.623644273320732 ], [ 38.121709359483184, 3.614061753320751 ], [ 38.129888070483155, 3.605822007320736 ], [ 38.136296761483202, 3.611437242320729 ], [ 38.144902718483188, 3.612230699320772 ], [ 38.148137582483166, 3.611620347320748 ], [ 38.174932015483186, 3.618029038320739 ], [ 38.184514535483167, 3.619860093320764 ], [ 38.191289437483185, 3.619860093320764 ], [ 38.211736214483203, 3.618639390320762 ], [ 38.235723031483182, 3.616869370320782 ], [ 38.261296761483202, 3.615465562320761 ], [ 38.282903207483166, 3.613817613320745 ], [ 38.321904671483189, 3.611437242320729 ], [ 38.359502328483181, 3.608629624320766 ], [ 38.377690804483159, 3.606066148320732 ], [ 38.382695687483185, 3.607042710320737 ], [ 38.412297738483169, 3.605272691320746 ], [ 38.448491586483208, 3.601854722320748 ], [ 38.48132850048318, 3.613268296320765 ], [ 38.50531531648317, 3.622240464320779 ], [ 38.515508187483185, 3.623644273320732 ], [ 38.523137582483166, 3.625841538320739 ], [ 38.522099984483184, 3.630052964320779 ], [ 38.521916879483165, 3.635668199320772 ], [ 38.523503793483194, 3.63823167532075 ], [ 38.523137582483166, 3.641649644320747 ], [ 38.51953650748316, 3.644030015320762 ], [ 38.517339242483153, 3.646227281320758 ], [ 38.516545785483167, 3.649034898320732 ], [ 38.521916879483165, 3.652269761320778 ], [ 38.539311898483156, 3.654222886320778 ], [ 38.542912972483172, 3.64744798432076 ], [ 38.550908578483181, 3.641832749320766 ], [ 38.551702035483167, 3.635057847320748 ], [ 38.558537972483172, 3.622667710320737 ], [ 38.559941781483182, 3.61424485932076 ], [ 38.565923226483157, 3.613024156320758 ], [ 38.569707406483182, 3.608263413320739 ], [ 38.572331918483194, 3.610033433320776 ], [ 38.577336800483174, 3.60643235932076 ], [ 38.579900277483198, 3.603868882320736 ], [ 38.5823416834832, 3.606066148320732 ], [ 38.589116586483208, 3.60502855032075 ], [ 38.605718148483156, 3.605822007320736 ], [ 38.609319222483172, 3.609423081320752 ], [ 38.612126839483203, 3.611864488320745 ], [ 38.6155448084832, 3.612230699320772 ], [ 38.615911019483171, 3.609056870320782 ], [ 38.618108285483167, 3.604418199320772 ], [ 38.62109900748316, 3.602220933320776 ], [ 38.625493539483152, 3.604235093320764 ], [ 38.639897836483208, 3.60002366732078 ], [ 38.659917367483153, 3.595873277320774 ], [ 38.665532601483157, 3.593248765320762 ], [ 38.66992713248316, 3.600634019320747 ], [ 38.67773963248316, 3.608263413320739 ], [ 38.673711312483185, 3.62065355032075 ], [ 38.682134164483152, 3.624254624320766 ], [ 38.687688363483169, 3.623644273320732 ], [ 38.689336312483185, 3.621019761320778 ], [ 38.693913949483196, 3.610033433320776 ], [ 38.713689339483203, 3.581224839320779 ], [ 38.71289588248316, 3.578051011320778 ], [ 38.714726937483185, 3.572252671320765 ], [ 38.721501839483203, 3.569628160320743 ], [ 38.759709847483172, 3.557665269320747 ], [ 38.771306527483198, 3.554674546320765 ], [ 38.801518929483159, 3.545641343320764 ], [ 38.849492562483185, 3.532274644320747 ], [ 38.869512093483188, 3.524828355320775 ], [ 38.891911996483195, 3.517870347320748 ], [ 38.906316293483194, 3.512255113320745 ], [ 38.922490609483184, 3.511461656320758 ], [ 38.929326546483189, 3.51323167532075 ], [ 38.960332406483182, 3.515428941320746 ], [ 38.959111703483181, 3.521227281320758 ], [ 38.9592948084832, 3.524462144320747 ], [ 38.965520394483171, 3.530443589320779 ], [ 38.968511117483153, 3.531053941320746 ], [ 38.971501839483203, 3.527819077320768 ], [ 38.976506722483172, 3.529650132320736 ], [ 38.980290902483198, 3.526659410320743 ], [ 38.981938851483157, 3.523668687320761 ], [ 38.985112679483159, 3.523241441320746 ], [ 38.99109412548318, 3.521471421320765 ], [ 38.99414588248316, 3.521654527320774 ], [ 38.999516976483157, 3.519274156320758 ], [ 39.003301156483182, 3.523058335320737 ], [ 39.0081229334832, 3.514025132320736 ], [ 39.012700570483155, 3.515245835320737 ], [ 39.015325082483166, 3.511034410320743 ], [ 39.0178885584832, 3.509447495320782 ], [ 39.021306527483198, 3.509874742320729 ], [ 39.021733773483156, 3.522020738320745 ], [ 39.032292855483199, 3.522264878320751 ], [ 39.035893929483159, 3.526049058320776 ], [ 39.043523324483196, 3.524828355320775 ], [ 39.045903695483155, 3.52244798432076 ], [ 39.050908578483181, 3.52104417532075 ], [ 39.054936898483156, 3.519457261320778 ], [ 39.058293832483166, 3.522875230320775 ], [ 39.061345589483203, 3.524645249320766 ], [ 39.067327035483167, 3.527269761320778 ], [ 39.070928109483184, 3.526842515320762 ], [ 39.073918832483166, 3.52885667532075 ], [ 39.078313363483169, 3.530443589320779 ], [ 39.078923714483203, 3.539049546320765 ], [ 39.087712777483198, 3.539232651320727 ], [ 39.089726937483185, 3.536425035320743 ], [ 39.092900765483186, 3.533068101320733 ], [ 39.096745980483199, 3.529467027320774 ], [ 39.099309457483166, 3.526659410320743 ], [ 39.104131234483184, 3.522020738320745 ], [ 39.107305062483185, 3.519823472320748 ], [ 39.113713754483165, 3.517259995320782 ], [ 39.117925179483159, 3.514025132320736 ], [ 39.121343148483156, 3.513658921320765 ], [ 39.126103890483186, 3.511461656320758 ], [ 39.131902230483199, 3.509630601320733 ], [ 39.136296761483202, 3.510668199320772 ], [ 39.139287484483184, 3.509630601320733 ], [ 39.142339242483153, 3.508837144320747 ], [ 39.14594031648317, 3.509874742320729 ], [ 39.150334847483172, 3.508654039320728 ], [ 39.150090707483166, 3.50346605032075 ], [ 39.151921761483202, 3.499620835320737 ], [ 39.157903207483166, 3.497423570320731 ], [ 39.163335336483208, 3.493273179320735 ], [ 39.166142953483181, 3.492235581320752 ], [ 39.172307504483165, 3.48924485932076 ], [ 39.177312386483202, 3.487657945320731 ], [ 39.180913461483208, 3.488024156320758 ], [ 39.187932504483165, 3.489855210320737 ], [ 39.191106332483166, 3.477648179320735 ], [ 39.195500863483169, 3.476427476320733 ], [ 39.202886117483153, 3.477220933320776 ], [ 39.207524789483152, 3.477037827320768 ], [ 39.213323129483165, 3.478624742320729 ], [ 39.224492562483185, 3.479418199320772 ], [ 39.228703988483169, 3.478441636320778 ], [ 39.234136117483153, 3.474230210320737 ], [ 39.240117562483185, 3.475267808320776 ], [ 39.245305550483174, 3.473863999320766 ], [ 39.250493539483152, 3.473436753320751 ], [ 39.254888070483155, 3.474657456320752 ], [ 39.257512582483166, 3.472643296320765 ], [ 39.260503304483159, 3.472032945320731 ], [ 39.2659354334832, 3.470018785320743 ], [ 39.268743050483174, 3.470629136320778 ], [ 39.27148963248316, 3.47221605032075 ], [ 39.274907601483157, 3.473863999320766 ], [ 39.277898324483196, 3.475634019320747 ], [ 39.283330453483181, 3.477037827320768 ], [ 39.288701546483189, 3.477831285320743 ], [ 39.292729867483153, 3.477220933320776 ], [ 39.298894418483194, 3.47502366732078 ], [ 39.303899300483174, 3.476244370320782 ], [ 39.309514535483167, 3.484850327320768 ], [ 39.312688363483169, 3.486864488320745 ], [ 39.316533578483181, 3.493029038320739 ], [ 39.32031775748316, 3.496019761320778 ], [ 39.323918832483166, 3.494249742320729 ], [ 39.325505746483195, 3.490038316320746 ], [ 39.324712289483152, 3.486071031320758 ], [ 39.323491586483208, 3.482469956320752 ], [ 39.320500863483169, 3.476854722320748 ], [ 39.319524300483174, 3.47221605032075 ], [ 39.317327035483167, 3.468859117320729 ], [ 39.311711800483174, 3.463060777320774 ], [ 39.309331429483159, 3.459459702320768 ], [ 39.305913461483208, 3.455858628320751 ], [ 39.303533089483203, 3.452440660320743 ], [ 39.30273963248316, 3.449449937320761 ], [ 39.300115121483195, 3.442858140320762 ], [ 39.299504769483171, 3.439073960320737 ], [ 39.299932015483186, 3.434618394320747 ], [ 39.300542367483153, 3.431444566320746 ], [ 39.3010916834832, 3.425035874320766 ], [ 39.30469275748316, 3.418444077320768 ], [ 39.306523812483185, 3.415453355320775 ], [ 39.3089041834832, 3.41307298432076 ], [ 39.311101449483196, 3.410448472320748 ], [ 39.312688363483169, 3.40666429232078 ], [ 39.313725961483208, 3.403246324320772 ], [ 39.31390906648317, 3.399828355320775 ], [ 39.31531287548318, 3.390673081320752 ], [ 39.315923226483157, 3.384874742320729 ], [ 39.3167166834832, 3.380663316320746 ], [ 39.320500863483169, 3.352037827320768 ], [ 39.322331918483194, 3.340441148320732 ], [ 39.323308480483199, 3.331224839320779 ], [ 39.324346078483181, 3.325426499320766 ], [ 39.325932992483153, 3.31205980032075 ], [ 39.326116097483172, 3.308824937320761 ], [ 39.326726449483196, 3.303636949320772 ], [ 39.327336800483174, 3.300829331320752 ], [ 39.327886117483153, 3.292223374320766 ], [ 39.326909554483159, 3.28862230032075 ], [ 39.328740609483184, 3.286241929320735 ], [ 39.331304086483208, 3.28361741732078 ], [ 39.335332406483182, 3.280870835320737 ], [ 39.33789588248316, 3.277819077320768 ], [ 39.338933480483199, 3.274645249320766 ], [ 39.339726937483185, 3.270861070320731 ], [ 39.340337289483152, 3.266832749320766 ], [ 39.341924203483181, 3.25346605032075 ], [ 39.342534554483159, 3.244432847320748 ], [ 39.343694222483172, 3.203234117320729 ], [ 39.343938363483169, 3.17143480032075 ], [ 39.344304574483196, 3.157457749320766 ], [ 39.34570838248316, 3.134874742320729 ], [ 39.346135629483165, 3.113024156320758 ], [ 39.345891488483169, 3.096422593320764 ], [ 39.346501839483203, 3.084459702320768 ], [ 39.345891488483169, 3.068224351320733 ], [ 39.342900765483186, 3.066027085320737 ], [ 39.337529671483189, 3.061266343320764 ], [ 39.3342948084832, 3.059435288320739 ], [ 39.331914437483185, 3.057848374320766 ], [ 39.325139535483167, 3.052416245320782 ], [ 39.311101449483196, 3.044664781320758 ], [ 39.307317269483171, 3.042833726320733 ], [ 39.299504769483171, 3.039415757320736 ], [ 39.290288461483208, 3.035021226320733 ], [ 39.285100472483172, 3.02885667532075 ], [ 39.281743539483152, 3.025255601320733 ], [ 39.275090707483166, 3.018846910320743 ], [ 39.267095101483157, 3.011461656320758 ], [ 39.257695687483185, 3.001268785320743 ], [ 39.254704964483203, 2.997667710320737 ], [ 39.252934945483155, 2.995226304320735 ], [ 39.250737679483159, 2.991442124320766 ], [ 39.250127328483181, 2.986071031320758 ], [ 39.246892464483203, 2.983629624320766 ], [ 39.2424979334832, 2.983263413320739 ], [ 39.238103402483198, 2.982225816320746 ], [ 39.234746468483188, 2.981249253320751 ], [ 39.228887093483188, 2.978624742320729 ], [ 39.224309457483166, 2.976854722320748 ], [ 39.220098031483182, 2.976427476320733 ], [ 39.2171073084832, 2.97502366732078 ], [ 39.213323129483165, 2.971849839320779 ], [ 39.209538949483196, 2.969469468320764 ], [ 39.205510629483165, 2.967272202320768 ], [ 39.201909554483159, 2.964830796320765 ], [ 39.1995291834832, 2.961840074320772 ], [ 39.197942269483171, 2.958849351320733 ], [ 39.194524300483174, 2.954027574320772 ], [ 39.15570594148317, 2.952440660320743 ], [ 39.152287972483172, 2.952074449320772 ], [ 39.14929725048318, 2.950670640320762 ], [ 39.146306527483198, 2.94682542532075 ], [ 39.143498910483167, 2.942247788320739 ], [ 39.141911996483195, 2.939257066320746 ], [ 39.13953162548318, 2.936449449320772 ], [ 39.13672400748316, 2.934618394320747 ], [ 39.133916390483186, 2.933824937320761 ], [ 39.130742562483185, 2.933458726320733 ], [ 39.127324593483188, 2.932421128320751 ], [ 39.1253104334832, 2.928820054320735 ], [ 39.122136605483199, 2.920641343320764 ], [ 39.119939339483203, 2.916246812320761 ], [ 39.117925179483159, 2.909838120320782 ], [ 39.115117562483185, 2.894457261320778 ], [ 39.114324105483199, 2.889452378320751 ], [ 39.113896859483184, 2.885057847320748 ], [ 39.11273719148317, 2.881639878320751 ], [ 39.1077323084832, 2.88182298432076 ], [ 39.104131234483184, 2.881029527320774 ], [ 39.096501839483203, 2.88041917532075 ], [ 39.092290414483152, 2.88041917532075 ], [ 39.088933480483199, 2.880663316320746 ], [ 39.079289925483174, 2.880236070320731 ], [ 39.067937386483202, 2.880663316320746 ], [ 39.067693246483195, 2.874864976320733 ], [ 39.068303597483172, 2.86284105032075 ], [ 39.068730843483188, 2.849047105320775 ], [ 39.069890511483202, 2.829027574320772 ], [ 39.070745004483165, 2.807238023320732 ], [ 39.070745004483165, 2.801439683320776 ], [ 39.069524300483174, 2.793871324320772 ], [ 39.067510140483186, 2.774462144320747 ], [ 39.066289437483185, 2.764452378320751 ], [ 39.065740121483195, 2.761217515320762 ], [ 39.065129769483171, 2.754625718320764 ], [ 39.064092171483189, 2.746447007320736 ], [ 39.063298714483203, 2.73924485932076 ], [ 39.063115609483184, 2.735826890320762 ], [ 39.061101449483196, 2.732225816320746 ], [ 39.057927621483195, 2.729662339320779 ], [ 39.055913461483208, 2.727465074320772 ], [ 39.054326546483189, 2.72502366732078 ], [ 39.051702035483167, 2.718859117320729 ], [ 39.050725472483172, 2.71525804232078 ], [ 39.050115121483195, 2.712023179320735 ], [ 39.050115121483195, 2.704027574320772 ], [ 39.0491385584832, 2.701036851320733 ], [ 39.046514046483189, 2.697252671320765 ], [ 39.040288461483208, 2.692247788320739 ], [ 39.037724984483184, 2.689623277320774 ], [ 39.03210975048318, 2.674425523320732 ], [ 39.024114144483171, 2.655870835320737 ], [ 39.020085824483196, 2.646227281320758 ], [ 39.017522347483172, 2.63963548432076 ], [ 39.011113656483182, 2.624864976320733 ], [ 39.006536019483171, 2.613634507320736 ], [ 39.004338754483165, 2.60783616732078 ], [ 38.999700082483166, 2.600634019320747 ], [ 38.996526254483165, 2.596239488320745 ], [ 38.993901742483153, 2.591234605320775 ], [ 38.98969031648317, 2.584459702320768 ], [ 38.986089242483153, 2.577867906320758 ], [ 38.983891976483157, 2.574449937320761 ], [ 38.979497445483155, 2.566637437320761 ], [ 38.974492562483185, 2.565050523320732 ], [ 38.970891488483169, 2.563646714320779 ], [ 38.964726937483185, 2.561815660320743 ], [ 38.939519418483194, 2.55565110932076 ], [ 38.932134164483152, 2.553453843320764 ], [ 38.909123910483167, 2.547655503320751 ], [ 38.899724496483195, 2.545030992320729 ], [ 38.895696175483174, 2.544054429320735 ], [ 38.888738168483194, 2.541246812320761 ], [ 38.891118539483152, 2.53666917532075 ], [ 38.892095101483157, 2.533434312320761 ], [ 38.893743050483174, 2.519457261320778 ], [ 38.892705453483181, 2.51463548432076 ], [ 38.894109261483202, 2.510668199320772 ], [ 38.89648963248316, 2.501268785320743 ], [ 38.899114144483171, 2.496019761320778 ], [ 38.900517953483181, 2.488634507320736 ], [ 38.901738656483182, 2.484423081320752 ], [ 38.902104867483153, 2.48002855032075 ], [ 38.903508675483174, 2.474474351320733 ], [ 38.905095589483203, 2.47026292532075 ], [ 38.906316293483194, 2.466417710320737 ], [ 38.907903207483166, 2.462816636320778 ], [ 38.909490121483195, 2.458238999320766 ], [ 38.913701546483189, 2.44822923432076 ], [ 38.914495004483165, 2.443041245320782 ], [ 38.914311898483156, 2.43986741732078 ], [ 38.915288461483208, 2.43705980032075 ], [ 38.920720589483203, 2.427660386320778 ], [ 38.922490609483184, 2.420641343320764 ], [ 38.923894418483194, 2.417467515320762 ], [ 38.926335824483196, 2.413866441320746 ], [ 38.928105843483188, 2.410265367320729 ], [ 38.928899300483174, 2.405626695320731 ], [ 38.92914344148317, 2.402025620320782 ], [ 38.92969275748316, 2.399218003320751 ], [ 38.930120004483165, 2.395250718320764 ], [ 38.930913461483208, 2.39103929232078 ], [ 38.930730355483199, 2.38182298432076 ], [ 38.93109656648317, 2.378832261320778 ], [ 38.93250037548318, 2.375048081320752 ], [ 38.934514535483167, 2.371447007320736 ], [ 38.934941781483182, 2.367845933320776 ], [ 38.934514535483167, 2.358263413320739 ], [ 38.933293832483166, 2.35502855032075 ], [ 38.932317269483171, 2.351854722320748 ], [ 38.931890023483156, 2.343859117320729 ], [ 38.932317269483171, 2.339220445320731 ], [ 38.932927621483195, 2.334825913320739 ], [ 38.933110726483157, 2.330248277320774 ], [ 38.934331429483159, 2.32322923432076 ], [ 38.936101449483196, 2.31541673432076 ], [ 38.936345589483203, 2.312242906320758 ], [ 38.933537972483172, 2.305223863320745 ], [ 38.930486214483203, 2.296617906320758 ], [ 38.929509652483198, 2.292467515320762 ], [ 38.928716195483155, 2.28807298432076 ], [ 38.926946175483174, 2.284044663320739 ], [ 38.926335824483196, 2.279467027320774 ], [ 38.928716195483155, 2.272264878320751 ], [ 38.92914344148317, 2.268419663320739 ], [ 38.92914344148317, 2.262438218320764 ], [ 38.929326546483189, 2.258043687320761 ], [ 38.930486214483203, 2.254442613320745 ], [ 38.931706918483194, 2.251634995320782 ], [ 38.933110726483157, 2.247423570320731 ], [ 38.9339041834832, 2.243029038320739 ], [ 38.934697640483186, 2.239672105320775 ], [ 38.935735238483169, 2.233019273320732 ], [ 38.935918343483188, 2.229845445320731 ], [ 38.937139046483189, 2.222032945320731 ], [ 38.937688363483169, 2.216844956320752 ], [ 38.938298714483203, 2.212816636320778 ], [ 38.938298714483203, 2.206224839320779 ], [ 38.937932504483165, 2.200243394320747 ], [ 38.937139046483189, 2.194628160320743 ], [ 38.937932504483165, 2.183275620320782 ], [ 38.937932504483165, 2.17424241732078 ], [ 38.937688363483169, 2.169420640320762 ], [ 38.937139046483189, 2.164232652320774 ], [ 38.937322152483198, 2.160448472320748 ], [ 38.936528695483155, 2.155443589320779 ], [ 38.941289437483185, 2.145433824320772 ], [ 38.943730843483188, 2.14103929232078 ], [ 38.946294320483155, 2.132250230320775 ], [ 38.951116097483172, 2.119860093320764 ], [ 38.952092660483167, 2.114855210320737 ], [ 38.955144418483194, 2.104662339320779 ], [ 38.961919320483155, 2.097460191320746 ], [ 38.952703011483202, 2.091234605320775 ], [ 38.862920296483189, 2.038866441320746 ], [ 38.836125863483169, 2.023668687320761 ], [ 38.800908578483181, 1.999620835320739 ], [ 38.789311898483156, 1.992418687320762 ], [ 38.783940804483159, 1.989672105320776 ], [ 38.777104867483153, 1.985826890320763 ], [ 38.763494027483198, 1.977831285320744 ], [ 38.756536019483171, 1.974047105320776 ], [ 38.729497445483155, 1.958422105320776 ], [ 38.719121468483188, 1.952623765320763 ], [ 38.71234656648317, 1.948473374320767 ], [ 38.698491586483208, 1.940416734320761 ], [ 38.691533578483181, 1.936632554320736 ], [ 38.687932504483165, 1.934252183320777 ], [ 38.684514535483167, 1.932238023320733 ], [ 38.669744027483198, 1.923876206320754 ], [ 38.6507010584832, 1.912828843320765 ], [ 38.64789344148317, 1.911425035320744 ], [ 38.641301644483171, 1.907457749320767 ], [ 38.629521859483184, 1.900865952320769 ], [ 38.613103402483198, 1.891222398320733 ], [ 38.599736703483181, 1.88365403832074 ], [ 38.578496468483188, 1.871263902320775 ], [ 38.532292855483199, 1.844835679320736 ], [ 38.522099984483184, 1.838854234320761 ], [ 38.518498910483167, 1.837023179320736 ], [ 38.480290902483198, 1.814440171320766 ], [ 38.475102914483152, 1.811632554320736 ], [ 38.466496957483166, 1.806444566320747 ], [ 38.446904671483189, 1.795458238320746 ], [ 38.427922738483169, 1.78404466332074 ], [ 38.422917855483199, 1.781420152320775 ], [ 38.385320199483196, 1.759447495320783 ], [ 38.384099496483195, 1.756822984320761 ], [ 38.380498421483189, 1.741259019320748 ], [ 38.37891150748316, 1.736864488320746 ], [ 38.377690804483159, 1.72966233932078 ], [ 38.376286996483195, 1.723253648320733 ], [ 38.371892464483203, 1.705065171320766 ], [ 38.370732796483189, 1.699266831320754 ], [ 38.368718636483202, 1.691454331320754 ], [ 38.367131722483172, 1.683641831320754 ], [ 38.364324105483199, 1.672472398320733 ], [ 38.357488168483194, 1.642443101320734 ], [ 38.351140511483202, 1.615831773320733 ], [ 38.346135629483165, 1.593065660320744 ], [ 38.344914925483174, 1.58903733932078 ], [ 38.343694222483172, 1.584032456320754 ], [ 38.343144906483182, 1.581041734320761 ], [ 38.341496957483166, 1.575853745320783 ], [ 38.338506234483184, 1.572863023320733 ], [ 38.321904671483189, 1.560045640320763 ], [ 38.318730843483188, 1.557238023320733 ], [ 38.30750037548318, 1.548876206320754 ], [ 38.291936410483167, 1.536425035320744 ], [ 38.277532113483169, 1.525438706320754 ], [ 38.264287484483184, 1.51481858932078 ], [ 38.256291879483165, 1.508837144320748 ], [ 38.253728402483198, 1.506639878320752 ], [ 38.250737679483159, 1.504442613320746 ], [ 38.233525765483186, 1.490831773320733 ], [ 38.223699105483199, 1.482836167320781 ], [ 38.21429969148317, 1.47545091332074 ], [ 38.212102425483174, 1.473436753320752 ], [ 38.208135140483186, 1.47044603132076 ], [ 38.195500863483169, 1.460253160320744 ], [ 38.178899300483174, 1.446642320320732 ], [ 38.175115121483195, 1.443834702320769 ], [ 38.166692269483171, 1.437059800320751 ], [ 38.163945687483185, 1.434618394320748 ], [ 38.151311410483167, 1.424425523320733 ], [ 38.143498910483167, 1.418444077320769 ], [ 38.138310921483189, 1.414049546320766 ], [ 38.135686410483167, 1.41221849232073 ], [ 38.132329476483157, 1.409227769320748 ], [ 38.129338754483165, 1.407030503320752 ], [ 38.110723031483182, 1.391832749320767 ], [ 38.093144906483182, 1.377672593320765 ], [ 38.089910040483169, 1.375231185320726 ], [ 38.075932992483153, 1.363817613320746 ], [ 38.062688363483169, 1.35325853132076 ], [ 38.060491097483172, 1.351244370320783 ], [ 38.05414344148317, 1.346422593320765 ], [ 38.038945687483185, 1.334032456320754 ], [ 38.032536996483195, 1.329027574320773 ], [ 38.023503793483194, 1.321642320320732 ], [ 38.020513070483155, 1.319017808320777 ], [ 37.99414588248316, 1.298265855320776 ], [ 37.968511117483153, 1.277819077320769 ], [ 37.946904671483189, 1.261034410320744 ], [ 37.950932992483153, 1.349474351320734 ], [ 37.952336800483174, 1.38487474232073 ], [ 37.854131234483184, 1.456835191320747 ], [ 37.851933968483188, 1.453844468320765 ], [ 37.850713265483186, 1.449266831320754 ], [ 37.851140511483202, 1.444445054320736 ], [ 37.848943246483195, 1.442064683320777 ], [ 37.84711219148317, 1.439257066320747 ], [ 37.847722543483194, 1.43443528832074 ], [ 37.84570838248316, 1.430223863320746 ], [ 37.845098031483182, 1.42662278832074 ], [ 37.844304574483196, 1.423448960320738 ], [ 37.841496957483166, 1.422838609320761 ], [ 37.835332406483182, 1.422838609320761 ], [ 37.831304086483151, 1.42161790632076 ], [ 37.828740609483184, 1.418627183320777 ], [ 37.825505746483195, 1.418444077320769 ], [ 37.821294320483155, 1.42003099232073 ], [ 37.817510140483186, 1.419847886320779 ], [ 37.811345589483203, 1.415453355320776 ], [ 37.808293832483166, 1.415270249320767 ], [ 37.803899300483174, 1.415636460320738 ], [ 37.79968787548318, 1.414659898320733 ], [ 37.795293343483188, 1.41221849232073 ], [ 37.791936410483167, 1.412645738320746 ], [ 37.787908089483203, 1.413866441320747 ], [ 37.783940804483159, 1.416429917320781 ], [ 37.781316293483194, 1.414049546320766 ], [ 37.778325570483155, 1.410021226320734 ], [ 37.773931039483152, 1.41026536732073 ], [ 37.771306527483198, 1.411669175320751 ], [ 37.768132699483196, 1.411425035320744 ], [ 37.764714730483199, 1.411425035320744 ], [ 37.75531531648317, 1.409471910320744 ], [ 37.750920785483167, 1.41044847232075 ], [ 37.747685921483189, 1.410021226320734 ], [ 37.744328988483169, 1.408068101320734 ], [ 37.741338265483186, 1.406664292320781 ], [ 37.737920296483189, 1.404650132320737 ], [ 37.733525765483186, 1.40403978132076 ], [ 37.728337777483198, 1.40403978132076 ], [ 37.72070838248316, 1.40544358932078 ], [ 37.715520394483171, 1.40544358932078 ], [ 37.710332406483182, 1.404467027320775 ], [ 37.706120980483199, 1.403246324320773 ], [ 37.703313363483169, 1.402025620320783 ], [ 37.694890511483202, 1.400438706320754 ], [ 37.687932504483165, 1.39763108932078 ], [ 37.684331429483159, 1.396837632320737 ], [ 37.680486214483203, 1.398851792320781 ], [ 37.677495492483153, 1.400865952320769 ], [ 37.673528207483166, 1.399462144320748 ], [ 37.671086800483174, 1.396654527320775 ], [ 37.664311898483156, 1.395616929320736 ], [ 37.659917367483153, 1.393663804320736 ], [ 37.657292855483199, 1.395616929320736 ], [ 37.65570594148317, 1.398058335320738 ], [ 37.651738656483182, 1.397447984320761 ], [ 37.647527230483199, 1.395067613320746 ], [ 37.643743050483174, 1.391222398320733 ], [ 37.6409354334832, 1.388658921320766 ], [ 37.637700570483155, 1.387255113320746 ], [ 37.634099496483195, 1.385240952320769 ], [ 37.631536019483171, 1.381822984320761 ], [ 37.624516976483157, 1.38005296432078 ], [ 37.623540414483152, 1.37584153832074 ], [ 37.617314828483181, 1.374620835320738 ], [ 37.613103402483198, 1.372667710320738 ], [ 37.608342660483167, 1.373644273320733 ], [ 37.605107796483189, 1.376818101320734 ], [ 37.603337777483198, 1.380236070320732 ], [ 37.600896371483195, 1.387438218320765 ], [ 37.598088754483165, 1.38682786732073 ], [ 37.597905648483156, 1.382616441320747 ], [ 37.591496957483166, 1.376268785320744 ], [ 37.59070350048318, 1.372423570320732 ], [ 37.587529671483189, 1.364855210320738 ], [ 37.581731332483166, 1.363451402320775 ], [ 37.583318246483195, 1.367235581320754 ], [ 37.581914437483185, 1.371630113320746 ], [ 37.578740609483184, 1.376634995320783 ], [ 37.574895394483171, 1.378038804320736 ], [ 37.57312537548318, 1.381456773320733 ], [ 37.570134652483198, 1.386644761320779 ], [ 37.564519418483194, 1.38786546432078 ], [ 37.56250525748316, 1.391649644320748 ], [ 37.559514535483167, 1.393846910320744 ], [ 37.543340218483188, 1.421862046320766 ], [ 37.517705453483181, 1.467821519320748 ], [ 37.500493539483152, 1.498033921320766 ], [ 37.49750281648317, 1.503832261320779 ], [ 37.496343148483156, 1.506639878320752 ], [ 37.494328988483169, 1.510424058320777 ], [ 37.4924979334832, 1.514452378320752 ], [ 37.487493050483174, 1.524034898320733 ], [ 37.482915414483152, 1.533434312320762 ], [ 37.480107796483189, 1.538439195320732 ], [ 37.476140511483202, 1.546862046320766 ], [ 37.47070838248316, 1.555223863320746 ], [ 37.460698617483153, 1.569872300320751 ], [ 37.45313025748316, 1.581652085320738 ], [ 37.447698129483165, 1.589220445320732 ], [ 37.445500863483169, 1.593065660320744 ], [ 37.438542855483199, 1.604051988320746 ], [ 37.427312386483202, 1.62083665632076 ], [ 37.412724984483184, 1.643663804320736 ], [ 37.409917367483153, 1.649645249320767 ], [ 37.406926644483171, 1.652819077320769 ], [ 37.401128304483159, 1.66185228132076 ], [ 37.398137582483166, 1.66685716332074 ], [ 37.387517464483203, 1.683031480320776 ], [ 37.386113656483182, 1.68565599232073 ], [ 37.38171912548318, 1.69224778832074 ], [ 37.373540414483152, 1.705675523320733 ], [ 37.368901742483153, 1.712816636320779 ], [ 37.366338265483186, 1.716417710320738 ], [ 37.363530648483156, 1.721239488320746 ], [ 37.359746468483188, 1.72667161732073 ], [ 37.350530160483167, 1.731859605320776 ], [ 37.344914925483174, 1.734239976320734 ], [ 37.335088265483186, 1.73802415632076 ], [ 37.326543343483188, 1.741625230320776 ], [ 37.32031775748316, 1.743822495320783 ], [ 37.317693246483195, 1.745043199320773 ], [ 37.310735238483169, 1.747667710320738 ], [ 37.307134164483152, 1.748827378320752 ], [ 37.30469275748316, 1.75206224232073 ], [ 37.298894418483194, 1.775255601320734 ], [ 37.291936410483167, 1.801256577320769 ], [ 37.290715707483166, 1.806627671320766 ], [ 37.284490121483195, 1.830065171320766 ], [ 37.280889046483189, 1.844652574320773 ], [ 37.2757010584832, 1.864061753320752 ], [ 37.274541390483186, 1.867235581320754 ], [ 37.27148963248316, 1.867845933320777 ], [ 37.25531531648317, 1.868639390320763 ], [ 37.250920785483167, 1.868639390320763 ], [ 37.247319711483151, 1.86924974232073 ], [ 37.23633338248316, 1.86943284732075 ], [ 37.232488168483194, 1.871630113320746 ], [ 37.230290902483198, 1.874437730320776 ], [ 37.224309457483166, 1.88365403832074 ], [ 37.221135629483165, 1.888231675320751 ], [ 37.217290414483152, 1.89146653832074 ], [ 37.201726449483196, 1.902025620320783 ], [ 37.196904671483189, 1.905016343320765 ], [ 37.191106332483166, 1.909227769320748 ], [ 37.18750525748316, 1.911425035320744 ], [ 37.184697640483186, 1.913622300320751 ], [ 37.181706918483194, 1.915636460320738 ], [ 37.177495492483153, 1.919054429320736 ], [ 37.173894418483194, 1.922655503320752 ], [ 37.172124398483156, 1.924852769320748 ], [ 37.167912972483172, 1.931444566320747 ], [ 37.165532601483157, 1.93583909732075 ], [ 37.164311898483156, 1.93864671432078 ], [ 37.163701546483189, 1.942064683320777 ], [ 37.162908089483203, 1.955431382320737 ], [ 37.161931527483198, 1.961840074320773 ], [ 37.159123910483167, 1.96122972232075 ], [ 37.1507010584832, 1.962450425320751 ], [ 37.140508187483185, 1.962816636320779 ], [ 37.134892953483181, 1.963243882320737 ], [ 37.122930062483185, 1.964830796320766 ], [ 37.120305550483174, 1.966234605320776 ], [ 37.115727916483188, 1.967455307320731 ], [ 37.109136117483153, 1.968676011320779 ], [ 37.105718148483156, 1.969469468320765 ], [ 37.102300179483159, 1.970018785320744 ], [ 37.095098031483182, 1.972032945320732 ], [ 37.09070350048318, 1.973863999320767 ], [ 37.07953406648317, 1.979418199320773 ], [ 37.075932992483153, 1.980028550320751 ], [ 37.072515023483156, 1.980028550320751 ], [ 37.067327035483167, 1.980455796320766 ], [ 37.032903207483166, 1.981066148320733 ], [ 37.012090218483188, 1.982042710320738 ], [ 37.009099496483195, 1.983629624320767 ], [ 37.004888070483155, 1.988268296320766 ], [ 37.000493539483152, 1.993822495320783 ], [ 36.998296273483156, 1.99724046432078 ], [ 36.977117074483196, 2.00627366732078 ], [ 36.971501839483203, 2.009874742320729 ], [ 36.964116586483151, 2.014025132320736 ], [ 36.961492074483196, 2.015673081320752 ], [ 36.956731332483166, 2.019823472320748 ], [ 36.952703011483202, 2.022875230320775 ], [ 36.94812537548318, 2.024462144320747 ], [ 36.941106332483166, 2.02385179232078 ], [ 36.938115609483184, 2.022875230320775 ], [ 36.934697640483186, 2.02104417532075 ], [ 36.928716195483155, 2.017015855320775 ], [ 36.925115121483195, 2.015673081320752 ], [ 36.921697152483198, 2.015428941320746 ], [ 36.918096078483181, 2.016222398320732 ], [ 36.917119515483186, 2.020067613320745 ], [ 36.919316781483182, 2.028429429320735 ], [ 36.920110238483169, 2.032274644320747 ], [ 36.91992713248316, 2.03807298432076 ], [ 36.920720589483203, 2.042040269320747 ], [ 36.920903695483155, 2.047228257320736 ], [ 36.920293343483188, 2.051073472320748 ], [ 36.922307504483165, 2.056444566320746 ], [ 36.922124398483156, 2.062426011320778 ], [ 36.921086800483174, 2.067675035320743 ], [ 36.920903695483155, 2.07322923432076 ], [ 36.919499886483202, 2.082262437320761 ], [ 36.919744027483198, 2.088243882320736 ], [ 36.919744027483198, 2.093248765320762 ], [ 36.918340218483188, 2.099047105320775 ], [ 36.915105355483199, 2.099657456320752 ], [ 36.912541879483165, 2.102465074320772 ], [ 36.912541879483165, 2.105455796320765 ], [ 36.914495004483165, 2.124071519320747 ], [ 36.902287972483172, 2.154833238320745 ], [ 36.901128304483159, 2.16166917532075 ], [ 36.895513070483155, 2.190233628320751 ], [ 36.8928885584832, 2.193224351320733 ], [ 36.865300668483194, 2.252062242320729 ], [ 36.85352088248316, 2.26323167532075 ], [ 36.845342171483189, 2.27244798432076 ], [ 36.835698617483153, 2.300829331320752 ], [ 36.796697152483198, 2.408861558320776 ], [ 36.789495004483165, 2.42924730032075 ], [ 36.786687386483202, 2.436632554320735 ], [ 36.775945199483196, 2.467028062320761 ], [ 36.771123421483189, 2.48002855032075 ], [ 36.766118539483152, 2.491259019320747 ], [ 36.759099496483195, 2.513048570320731 ], [ 36.753545296483189, 2.51323167532075 ], [ 36.749333871483195, 2.511461656320758 ], [ 36.74109412548318, 2.511827867320729 ], [ 36.733342660483167, 2.509874742320729 ], [ 36.729314339483203, 2.509630601320733 ], [ 36.726506722483172, 2.509020249320766 ], [ 36.723088754483165, 2.508043687320761 ], [ 36.719731820483155, 2.50682298432076 ], [ 36.716130746483195, 2.505846421320765 ], [ 36.712712777483198, 2.506029527320774 ], [ 36.708928597483172, 2.507067124320766 ], [ 36.706120980483199, 2.510057847320748 ], [ 36.701299203483181, 2.510057847320748 ], [ 36.702336800483174, 2.502855699320772 ], [ 36.702519906483182, 2.498827378320751 ], [ 36.703313363483169, 2.495043199320772 ], [ 36.703313363483169, 2.490831773320732 ], [ 36.702703011483202, 2.485460679320735 ], [ 36.70313025748316, 2.48143235932076 ], [ 36.704106820483155, 2.477831285320743 ], [ 36.703923714483203, 2.47361985932076 ], [ 36.701909554483159, 2.469042222320748 ], [ 36.699895394483171, 2.466234605320775 ], [ 36.698491586483151, 2.462816636320778 ], [ 36.700322640483186, 2.45463792532075 ], [ 36.699346078483181, 2.451830308320776 ], [ 36.695745004483165, 2.452440660320743 ], [ 36.6917166834832, 2.454821031320758 ], [ 36.687322152483198, 2.455858628320751 ], [ 36.684331429483159, 2.453661363320745 ], [ 36.681523812483185, 2.451036851320733 ], [ 36.679326546483189, 2.448656480320775 ], [ 36.6760916834832, 2.44627610932076 ], [ 36.673100961483151, 2.443224351320733 ], [ 36.671086800483174, 2.44041673432076 ], [ 36.668889535483167, 2.436449449320772 ], [ 36.667119515483186, 2.433641831320752 ], [ 36.66492225048318, 2.43065110932076 ], [ 36.662297738483169, 2.426439683320776 ], [ 36.659734261483202, 2.420458238320745 ], [ 36.656316293483194, 2.416674058320776 ], [ 36.651738656483182, 2.415636460320737 ], [ 36.64929725048318, 2.411852281320758 ], [ 36.64594031648317, 2.413439195320731 ], [ 36.644292367483153, 2.409227769320747 ], [ 36.644719613483169, 2.406237046320765 ], [ 36.644292367483153, 2.402025620320782 ], [ 36.643132699483196, 2.397631089320779 ], [ 36.641118539483152, 2.394457261320778 ], [ 36.639897836483151, 2.400072495320782 ], [ 36.639287484483184, 2.404222886320778 ], [ 36.635320199483196, 2.403063218320764 ], [ 36.632329476483157, 2.407030503320751 ], [ 36.631536019483171, 2.409838120320782 ], [ 36.627690804483159, 2.41166917532075 ], [ 36.624700082483166, 2.412218492320729 ], [ 36.622136605483199, 2.409471910320743 ], [ 36.62250281648317, 2.404650132320736 ], [ 36.621892464483203, 2.400438706320752 ], [ 36.619512093483188, 2.396227281320758 ], [ 36.616887582483166, 2.394823472320748 ], [ 36.612920296483189, 2.393846910320743 ], [ 36.608891976483157, 2.393236558320776 ], [ 36.60632850048318, 2.395067613320745 ], [ 36.605290902483198, 2.399462144320747 ], [ 36.602727425483174, 2.403063218320764 ], [ 36.600286019483171, 2.405626695320731 ], [ 36.593511117483153, 2.410265367320729 ], [ 36.58789588248316, 2.405443589320779 ], [ 36.584111703483181, 2.404222886320778 ], [ 36.57953406648317, 2.404039781320758 ], [ 36.576299203483181, 2.401842515320762 ], [ 36.572698129483165, 2.402269761320778 ], [ 36.568486703483181, 2.401232163320739 ], [ 36.566899789483152, 2.39744798432076 ], [ 36.561101449483196, 2.394457261320778 ], [ 36.557744515483186, 2.394823472320748 ], [ 36.55414344148317, 2.39604417532075 ], [ 36.551518929483159, 2.397875230320775 ], [ 36.5491385584832, 2.400255601320733 ], [ 36.54633094148317, 2.400865952320768 ], [ 36.542729867483153, 2.402269761320778 ], [ 36.539739144483171, 2.405016343320764 ], [ 36.537908089483203, 2.412828843320764 ], [ 36.535527718483188, 2.419054429320735 ], [ 36.534490121483195, 2.422228257320736 ], [ 36.5335135584832, 2.426622788320739 ], [ 36.532536996483195, 2.430040757320736 ], [ 36.53070594148317, 2.433031480320775 ], [ 36.528935921483189, 2.436449449320772 ], [ 36.526494515483186, 2.440233628320751 ], [ 36.525090707483166, 2.44487230032075 ], [ 36.524907601483157, 2.44963304232078 ], [ 36.525090707483166, 2.452867906320758 ], [ 36.525517953483181, 2.456224839320779 ], [ 36.526494515483186, 2.460863511320778 ], [ 36.527715218483188, 2.464647691320746 ], [ 36.529119027483198, 2.467272202320768 ], [ 36.530095589483203, 2.470446031320758 ], [ 36.529912484483184, 2.474047105320775 ], [ 36.528142464483203, 2.481676499320766 ], [ 36.528508675483174, 2.489672105320775 ], [ 36.529912484483184, 2.493456285320743 ], [ 36.531499398483156, 2.496874253320751 ], [ 36.531499398483156, 2.500475327320768 ], [ 36.53070594148317, 2.50346605032075 ], [ 36.53070594148317, 2.507250230320775 ], [ 36.531133187483185, 2.515856187320761 ], [ 36.531133187483185, 2.518846910320743 ], [ 36.529546273483156, 2.521471421320765 ], [ 36.525945199483196, 2.524034898320732 ], [ 36.524907601483157, 2.528246324320772 ], [ 36.524541390483186, 2.531847398320732 ], [ 36.523137582483166, 2.534471910320743 ], [ 36.520696175483174, 2.541674058320776 ], [ 36.519719613483169, 2.545030992320729 ], [ 36.518132699483196, 2.54924241732078 ], [ 36.516911996483195, 2.555040757320736 ], [ 36.514104379483165, 2.559435288320739 ], [ 36.510686410483167, 2.56205980032075 ], [ 36.507695687483185, 2.563829820320731 ], [ 36.502507699483196, 2.567675035320743 ], [ 36.499516976483157, 2.569445054320735 ], [ 36.496343148483156, 2.571642320320731 ], [ 36.489324105483199, 2.580431382320736 ], [ 36.482488168483194, 2.589830796320765 ], [ 36.475713265483186, 2.598253648320732 ], [ 36.47351600048318, 2.606859605320775 ], [ 36.470342171483189, 2.60783616732078 ], [ 36.466924203483181, 2.607225816320746 ], [ 36.463689339483203, 2.607653062320761 ], [ 36.460515511483202, 2.608629624320766 ], [ 36.457524789483152, 2.608873765320762 ], [ 36.454106820483155, 2.610460679320735 ], [ 36.451909554483159, 2.612657945320731 ], [ 36.448735726483157, 2.618029038320739 ], [ 36.445500863483169, 2.621263902320774 ], [ 36.443303597483172, 2.624071519320747 ], [ 36.442693246483195, 2.627062242320729 ], [ 36.438725961483151, 2.632616441320746 ], [ 36.439092171483189, 2.637255113320745 ], [ 36.438542855483199, 2.641832749320766 ], [ 36.436528695483155, 2.646227281320758 ], [ 36.435307992483153, 2.651049058320776 ], [ 36.435735238483169, 2.656847398320732 ], [ 36.436345589483203, 2.660875718320764 ], [ 36.436711800483174, 2.665819566320746 ], [ 36.436101449483196, 2.671068589320779 ], [ 36.434941781483182, 2.676073472320748 ], [ 36.435735238483169, 2.681017320320731 ], [ 36.436894906483182, 2.684862535320743 ], [ 36.438725961483151, 2.688829820320731 ], [ 36.441106332483166, 2.692430894320747 ], [ 36.446294320483155, 2.699022691320746 ], [ 36.447698129483165, 2.701647202320768 ], [ 36.445745004483165, 2.705248277320774 ], [ 36.439885629483165, 2.709276597320748 ], [ 36.436894906483182, 2.710436265320762 ], [ 36.433293832483166, 2.712267320320731 ], [ 36.430303109483184, 2.716051499320766 ], [ 36.428288949483196, 2.720018785320743 ], [ 36.425542367483153, 2.728258531320758 ], [ 36.42273475048318, 2.73283616732078 ], [ 36.421697152483198, 2.735826890320762 ], [ 36.422490609483184, 2.743273179320735 ], [ 36.420720589483203, 2.749620835320737 ], [ 36.420293343483188, 2.757067124320766 ], [ 36.419499886483202, 2.760240952320768 ], [ 36.417729867483153, 2.762865464320779 ], [ 36.415105355483199, 2.765428941320746 ], [ 36.413335336483151, 2.768663804320735 ], [ 36.412541879483165, 2.771654527320774 ], [ 36.410893929483159, 2.774034898320732 ], [ 36.408940804483159, 2.776476304320735 ], [ 36.406743539483152, 2.779833238320745 ], [ 36.405339730483199, 2.784044663320739 ], [ 36.402715218483188, 2.787645738320745 ], [ 36.400334847483172, 2.791246812320761 ], [ 36.398503793483194, 2.795030992320729 ], [ 36.396916879483165, 2.797655503320751 ], [ 36.39594031648317, 2.800646226320733 ], [ 36.391728890483186, 2.810045640320762 ], [ 36.38953162548318, 2.814440171320765 ], [ 36.38812781648317, 2.818041245320782 ], [ 36.387700570483155, 2.821459214320779 ], [ 36.387700570483155, 2.82463304232078 ], [ 36.382939828483181, 2.834825913320739 ], [ 36.378728402483198, 2.840074937320761 ], [ 36.374944222483172, 2.843859117320729 ], [ 36.368901742483153, 2.848863999320766 ], [ 36.366521371483195, 2.852037827320768 ], [ 36.36414100048318, 2.856676499320766 ], [ 36.360906136483202, 2.859056870320782 ], [ 36.357305062483185, 2.859850327320768 ], [ 36.347539437483185, 2.861071031320758 ], [ 36.343938363483169, 2.862657945320731 ], [ 36.33289100048318, 2.868273179320735 ], [ 36.325322640483186, 2.871263902320774 ], [ 36.322515023483156, 2.872667710320737 ], [ 36.319524300483174, 2.874620835320737 ], [ 36.316899789483152, 2.876634995320782 ], [ 36.313725961483151, 2.877855699320772 ], [ 36.310307992483153, 2.88041917532075 ], [ 36.307317269483171, 2.881639878320751 ], [ 36.304936898483156, 2.88322679232078 ], [ 36.3010916834832, 2.885424058320776 ], [ 36.293523324483196, 2.886034410320743 ], [ 36.290715707483166, 2.886644761320778 ], [ 36.286504281483182, 2.88823167532075 ], [ 36.283086312483185, 2.890428941320746 ], [ 36.280889046483189, 2.893419663320739 ], [ 36.278142464483203, 2.896471421320765 ], [ 36.272710336483151, 2.903246324320772 ], [ 36.270513070483155, 2.906847398320732 ], [ 36.269292367483153, 2.911425035320743 ], [ 36.268498910483167, 2.916063706320752 ], [ 36.267522347483172, 2.920275132320736 ], [ 36.266301644483171, 2.923876206320752 ], [ 36.264287484483184, 2.926866929320735 ], [ 36.26312781648317, 2.929430406320758 ], [ 36.262090218483188, 2.933031480320775 ], [ 36.261540902483198, 2.936449449320772 ], [ 36.261540902483198, 2.940660874320766 ], [ 36.261296761483202, 2.946031968320764 ], [ 36.258916390483186, 2.955248277320774 ], [ 36.258489144483171, 2.958238999320766 ], [ 36.25671912548318, 2.960436265320762 ], [ 36.256108773483156, 2.956468980320775 ], [ 36.254888070483155, 2.952623765320762 ], [ 36.251714242483153, 2.949816148320732 ], [ 36.247136605483199, 2.948656480320775 ], [ 36.243535531483182, 2.950426499320766 ], [ 36.2405448084832, 2.952867906320758 ], [ 36.236943734483184, 2.955065171320765 ], [ 36.228887093483188, 2.95604173432076 ], [ 36.225713265483186, 2.955675523320732 ], [ 36.222539437483185, 2.95463792532075 ], [ 36.216924203483181, 2.957872788320739 ], [ 36.212102425483174, 2.958849351320733 ], [ 36.2073416834832, 2.959459702320768 ], [ 36.202703011483202, 2.960436265320762 ], [ 36.195500863483169, 2.965074937320761 ], [ 36.192327035483167, 2.966661851320733 ], [ 36.183721078483181, 2.965624253320751 ], [ 36.180730355483199, 2.965074937320761 ], [ 36.17773963248316, 2.96525804232078 ], [ 36.170903695483155, 2.966661851320733 ], [ 36.167912972483172, 2.965624253320751 ], [ 36.16492225048318, 2.96525804232078 ], [ 36.161687386483202, 2.966234605320775 ], [ 36.158330453483181, 2.966844956320752 ], [ 36.14648963248316, 2.967455308320776 ], [ 36.142705453483181, 2.967821519320747 ], [ 36.134709847483172, 2.967272202320768 ], [ 36.136113656483182, 2.970446031320758 ], [ 36.137090218483188, 2.973863999320766 ], [ 36.137334359483184, 2.977648179320735 ], [ 36.130498421483189, 2.974657456320752 ], [ 36.129338754483165, 2.978258531320758 ], [ 36.124700082483166, 2.979662339320779 ], [ 36.125920785483167, 2.989672105320775 ], [ 36.126897347483172, 2.992418687320761 ], [ 36.127507699483196, 2.995470445320731 ], [ 36.127690804483159, 2.999071519320747 ], [ 36.12891150748316, 3.002245347320748 ], [ 36.132939828483181, 3.00822679232078 ], [ 36.136540902483198, 3.011217515320762 ], [ 36.137700570483155, 3.021227281320758 ], [ 36.137090218483188, 3.024034898320732 ], [ 36.138310921483189, 3.028246324320772 ], [ 36.1409354334832, 3.032823960320737 ], [ 36.141728890483186, 3.038439195320731 ], [ 36.142522347483172, 3.042467515320762 ], [ 36.1428885584832, 3.050829331320752 ], [ 36.142705453483181, 3.054674546320765 ], [ 36.141301644483171, 3.058275620320782 ], [ 36.139897836483151, 3.060839097320748 ], [ 36.140691293483194, 3.064440171320765 ], [ 36.1409354334832, 3.067858140320762 ], [ 36.142339242483153, 3.070665757320736 ], [ 36.145513070483155, 3.071031968320764 ], [ 36.148686898483156, 3.072618882320736 ], [ 36.150945199483196, 3.076036851320733 ], [ 36.152715219483177, 3.080431382320736 ], [ 36.153508675483174, 3.084825913320739 ], [ 36.152715218483188, 3.089220445320731 ], [ 36.150334847483172, 3.093676011320778 ], [ 36.151494515483186, 3.100267808320776 ], [ 36.152532113483169, 3.10783616732078 ], [ 36.152715218483188, 3.110826890320762 ], [ 36.152532113483169, 3.115831773320732 ], [ 36.151738656483182, 3.120043199320772 ], [ 36.151128304483159, 3.126024644320747 ], [ 36.149907601483157, 3.133043687320761 ], [ 36.148320687483185, 3.136827867320729 ], [ 36.14648963248316, 3.139818589320779 ], [ 36.143743050483174, 3.143663804320735 ], [ 36.13953162548318, 3.147875230320775 ], [ 36.139104379483165, 3.151842515320762 ], [ 36.141118539483152, 3.158434312320761 ], [ 36.143498910483167, 3.165270249320766 ], [ 36.144719613483169, 3.168016831320752 ], [ 36.148686898483156, 3.179430406320758 ], [ 36.149907601483157, 3.183641831320752 ], [ 36.151311410483167, 3.189440171320765 ], [ 36.152104867483153, 3.197435777320774 ], [ 36.152104867483153, 3.203234117320729 ], [ 36.152715218483188, 3.208422105320775 ], [ 36.152287972483172, 3.212267320320731 ], [ 36.151311410483167, 3.21525804232078 ], [ 36.149724496483195, 3.218431870320782 ], [ 36.145696175483174, 3.220629136320778 ], [ 36.142522347483172, 3.217638413320739 ], [ 36.1409354334832, 3.214647691320746 ], [ 36.141545785483167, 3.211840074320772 ], [ 36.142522347483172, 3.208422105320775 ], [ 36.139104379483165, 3.206224839320779 ], [ 36.135320199483196, 3.207262437320761 ], [ 36.131536019483171, 3.208055894320747 ], [ 36.128728402483198, 3.208849351320733 ], [ 36.125493539483152, 3.210070054320735 ], [ 36.122685921483189, 3.210619370320782 ], [ 36.118718636483202, 3.213243882320736 ], [ 36.115727914483152, 3.216234605320775 ], [ 36.112493050483174, 3.217821519320747 ], [ 36.107915414483152, 3.218676011320778 ], [ 36.103093636483202, 3.218248765320762 ], [ 36.095098031483182, 3.220018785320743 ], [ 36.0921073084832, 3.221239488320745 ], [ 36.088140023483156, 3.221849839320779 ], [ 36.083928597483172, 3.22307054232078 ], [ 36.080144418483194, 3.222826402320774 ], [ 36.075322640483186, 3.223436753320751 ], [ 36.071904671483189, 3.224474351320733 ], [ 36.069341195483155, 3.225634019320747 ], [ 36.066533578483181, 3.22807542532075 ], [ 36.062932504483165, 3.230638902320774 ], [ 36.058293832483166, 3.233263413320739 ], [ 36.053899300483174, 3.235460679320735 ], [ 36.052129281483182, 3.29783860932076 ], [ 36.051702035483167, 3.427660386320778 ], [ 36.051335824483196, 3.647264878320751 ], [ 36.0510916834832, 3.674669663320739 ], [ 36.0510916834832, 3.735033433320776 ], [ 36.050298226483157, 3.98283616732078 ], [ 36.050115121483195, 4.276232163320739 ], [ 36.050908578483181, 4.449022691320747 ], [ 36.234136117483153, 4.448839585320738 ], [ 36.247136605483199, 4.455065171320766 ], [ 36.255925668483194, 4.451830308320777 ] ] ] } } +, +{ "type": "Feature", "id": 11, "properties": { "OBJECTID": 12, "ID_": 812, "COUNTY_NAM": "ISIOLO", "CONST_CODE": 49, "CONSTITUEN": "ISIOLO NORTH", "COUNTY_COD": 11, "Shape_Leng": 10.0183616426, "Shape_Area": 2.06364774463 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.38672400748316, 0.274034898320733 ], [ 37.387700570483155, 0.279039781320759 ], [ 37.388494027483198, 0.284655015320763 ], [ 37.393743050483174, 0.289049546320766 ], [ 37.394719613483169, 0.292223374320767 ], [ 37.393315804483159, 0.296434800320751 ], [ 37.395696175483174, 0.300035874320767 ], [ 37.394292367483153, 0.304430406320759 ], [ 37.395085824483196, 0.308031480320776 ], [ 37.393743050483174, 0.31083909732075 ], [ 37.3928885584832, 0.313829820320732 ], [ 37.394719613483169, 0.316637437320762 ], [ 37.393743050483174, 0.319628160320744 ], [ 37.393132699483196, 0.322863023320733 ], [ 37.392705453483181, 0.32646409732075 ], [ 37.393498910483167, 0.333422105320776 ], [ 37.3928885584832, 0.336473863320746 ], [ 37.392705453483181, 0.350023667320781 ], [ 37.3909354334832, 0.35466233932078 ], [ 37.386907113483169, 0.356066148320733 ], [ 37.383916390483186, 0.357469956320754 ], [ 37.3831229334832, 0.360826890320763 ], [ 37.38031531648317, 0.362047593320765 ], [ 37.379094613483169, 0.364672105320776 ], [ 37.378728402483198, 0.367662827320769 ], [ 37.379521859483184, 0.377672593320765 ], [ 37.3753104334832, 0.380419175320751 ], [ 37.371343148483156, 0.382067124320767 ], [ 37.370488656483182, 0.38505784732075 ], [ 37.371343148483156, 0.388048570320732 ], [ 37.368901742483153, 0.397447984320761 ], [ 37.367314828483181, 0.401476304320736 ], [ 37.365117562483185, 0.404222886320779 ], [ 37.363896859483184, 0.406847398320733 ], [ 37.361516488483169, 0.408434312320762 ], [ 37.357121957483166, 0.41026536732073 ], [ 37.354131234483184, 0.412462632320737 ], [ 37.353887093483188, 0.415453355320776 ], [ 37.353093636483202, 0.420641343320765 ], [ 37.353093636483202, 0.425218980320776 ], [ 37.352300179483159, 0.432054917320781 ], [ 37.351323617483153, 0.436266343320765 ], [ 37.349736703483181, 0.440660874320767 ], [ 37.349492562483185, 0.444628160320744 ], [ 37.349492562483185, 0.449633042320781 ], [ 37.350713265483186, 0.453661363320746 ], [ 37.350102914483152, 0.457628648320733 ], [ 37.354314339483203, 0.463426988320746 ], [ 37.356694711483151, 0.465441148320733 ], [ 37.358098519483171, 0.468248765320763 ], [ 37.358891976483157, 0.473070542320781 ], [ 37.360539925483174, 0.475634019320748 ], [ 37.360723031483182, 0.479235093320765 ], [ 37.360539925483174, 0.483019273320733 ], [ 37.36273719148317, 0.485826890320763 ], [ 37.360906136483202, 0.489672105320776 ], [ 37.359929574483196, 0.493456285320744 ], [ 37.360906136483202, 0.498033921320766 ], [ 37.361943734483184, 0.501634995320783 ], [ 37.364507211483151, 0.503649156320759 ], [ 37.367131722483172, 0.50505296432078 ], [ 37.36914588248316, 0.507433335320738 ], [ 37.369328988483169, 0.510424058320777 ], [ 37.333928597483172, 0.514025132320737 ], [ 37.258733285483167, 0.522020738320746 ], [ 37.230290902483198, 0.525438706320754 ], [ 37.216313851483157, 0.527269761320779 ], [ 37.198491586483151, 0.529222886320779 ], [ 37.194890511483202, 0.529833238320746 ], [ 37.17468787548318, 0.532030503320752 ], [ 37.151494515483186, 0.534838120320783 ], [ 37.138738168483194, 0.537035386320779 ], [ 37.124944222483172, 0.538072984320761 ], [ 37.11414100048318, 0.539232652320775 ], [ 37.093144906483182, 0.542040269320748 ], [ 37.07172156648317, 0.544420640320763 ], [ 37.046697153483187, 0.547838609320761 ], [ 37.005742562483185, 0.552416245320783 ], [ 36.974126351483157, 0.556627671320766 ], [ 36.952703011483202, 0.559069077320769 ], [ 36.941106332483166, 0.56065599232073 ], [ 36.930303109483184, 0.561632554320736 ], [ 36.908330453483181, 0.564073960320738 ], [ 36.88171912548318, 0.567430894320748 ], [ 36.868291390483186, 0.568834702320769 ], [ 36.865117562483185, 0.571031968320765 ], [ 36.867314828483181, 0.574816148320733 ], [ 36.868718636483202, 0.58482591332074 ], [ 36.867131722483172, 0.588854234320761 ], [ 36.867194045483181, 0.589498243320745 ], [ 36.8674979334832, 0.59263841332074 ], [ 36.869328988483169, 0.595629136320779 ], [ 36.872685921483189, 0.597460191320747 ], [ 36.874516976483157, 0.600267808320777 ], [ 36.876103890483186, 0.603075425320751 ], [ 36.879521859483184, 0.603441636320779 ], [ 36.881902230483199, 0.607225816320747 ], [ 36.884709847483172, 0.610460679320736 ], [ 36.887944711483151, 0.60826341332074 ], [ 36.889714730483199, 0.61247483932078 ], [ 36.890508187483185, 0.617052476320734 ], [ 36.891545785483167, 0.620836656320759 ], [ 36.894902718483188, 0.62224046432078 ], [ 36.896123421483189, 0.625475327320769 ], [ 36.89789344148317, 0.628466050320751 ], [ 36.902104867483153, 0.629259507320737 ], [ 36.906499398483156, 0.629442613320746 ], [ 36.909490121483195, 0.631822984320761 ], [ 36.909917367483153, 0.635851304320736 ], [ 36.909123910483167, 0.640062730320776 ], [ 36.909307015483186, 0.644030015320763 ], [ 36.911687386483202, 0.647447984320761 ], [ 36.912908089483203, 0.65123216332074 ], [ 36.913091195483155, 0.655870835320738 ], [ 36.914495004483165, 0.659838120320783 ], [ 36.918340218483188, 0.659471910320744 ], [ 36.922307504483165, 0.659655015320763 ], [ 36.923711312483185, 0.663439195320732 ], [ 36.924321664483152, 0.668444077320769 ], [ 36.926702035483167, 0.672838609320761 ], [ 36.926946175483174, 0.676256577320769 ], [ 36.9260916834832, 0.683275620320783 ], [ 36.9260916834832, 0.687670152320775 ], [ 36.926518929483159, 0.694445054320736 ], [ 36.926702035483167, 0.71104661732073 ], [ 36.926946175483174, 0.715441148320733 ], [ 36.926702035483167, 0.719225327320769 ], [ 36.927129281483182, 0.723619859320761 ], [ 36.928288949483196, 0.728258531320759 ], [ 36.931706918483194, 0.733019273320733 ], [ 36.931706918483194, 0.741625230320776 ], [ 36.932317269483171, 0.746019761320779 ], [ 36.935265799483197, 0.750983289320741 ], [ 36.938048962483201, 0.750415296320736 ], [ 36.940740121483195, 0.747057359320761 ], [ 36.943486703483181, 0.745226304320736 ], [ 36.947698129483165, 0.742845933320777 ], [ 36.951299203483181, 0.742235581320754 ], [ 36.959538949483196, 0.742052476320734 ], [ 36.9671073084832, 0.740831773320733 ], [ 36.970891488483169, 0.742662827320769 ], [ 36.974309457483166, 0.745470445320732 ], [ 36.977300179483159, 0.743639390320763 ], [ 36.980901254483165, 0.743273179320736 ], [ 36.987493050483174, 0.745043199320773 ], [ 36.992131722483172, 0.746630113320746 ], [ 36.996343148483156, 0.749071519320748 ], [ 37.001103890483186, 0.748644273320733 ], [ 37.009099496483195, 0.750475327320769 ], [ 37.012334359483184, 0.751634995320783 ], [ 37.015508187483185, 0.753221910320744 ], [ 37.01953650748316, 0.754869859320761 ], [ 37.02429725048318, 0.756639878320752 ], [ 37.036687386483202, 0.761034410320744 ], [ 37.043523324483196, 0.76286546432078 ], [ 37.047490609483184, 0.764635484320761 ], [ 37.051518929483159, 0.766832749320767 ], [ 37.058110726483157, 0.770067613320746 ], [ 37.060307992483153, 0.76787034732075 ], [ 37.062322152483198, 0.765428941320747 ], [ 37.066106332483166, 0.764025132320737 ], [ 37.070134652483198, 0.765245835320738 ], [ 37.070928109483184, 0.769274156320759 ], [ 37.070500863483169, 0.77263108932078 ], [ 37.072087777483198, 0.776476304320736 ], [ 37.076116097483172, 0.777819077320769 ], [ 37.087712777483198, 0.780626695320732 ], [ 37.091496957483166, 0.780626695320732 ], [ 37.095342171483189, 0.783251206320754 ], [ 37.102544320483155, 0.78526536732073 ], [ 37.105901254483165, 0.784227769320748 ], [ 37.109746468483188, 0.779039781320759 ], [ 37.113896859483184, 0.780016343320765 ], [ 37.117925179483159, 0.779650132320737 ], [ 37.120732796483189, 0.776842515320763 ], [ 37.124333871483195, 0.774218003320752 ], [ 37.126286996483195, 0.769030015320763 ], [ 37.127507699483196, 0.764635484320761 ], [ 37.130925668483194, 0.762255113320746 ], [ 37.132939828483181, 0.759630601320734 ], [ 37.137334359483184, 0.757616441320747 ], [ 37.141728890483186, 0.758226792320781 ], [ 37.14929725048318, 0.757860581320754 ], [ 37.151738656483182, 0.753221910320744 ], [ 37.154912484483184, 0.751268785320744 ], [ 37.1585135584832, 0.751268785320744 ], [ 37.161931527483198, 0.749620835320738 ], [ 37.16351844148317, 0.745043199320773 ], [ 37.165715707483166, 0.741442124320767 ], [ 37.16992713248316, 0.741442124320767 ], [ 37.173894418483194, 0.743456285320744 ], [ 37.177312386483202, 0.74302903832074 ], [ 37.17969275748316, 0.741259019320748 ], [ 37.184087289483152, 0.741442124320767 ], [ 37.18890906648317, 0.742845933320777 ], [ 37.193486703483181, 0.743639390320763 ], [ 37.197515023483156, 0.744615952320769 ], [ 37.201299203483181, 0.744615952320769 ], [ 37.20453406648317, 0.743822495320783 ], [ 37.206304086483151, 0.740465562320762 ], [ 37.210088265483186, 0.739672105320776 ], [ 37.213140023483156, 0.738268296320766 ], [ 37.216924203483181, 0.737841050320751 ], [ 37.220525277483198, 0.738451402320775 ], [ 37.227727425483174, 0.744066636320779 ], [ 37.229497445483155, 0.746874253320752 ], [ 37.232121957483166, 0.748461167320781 ], [ 37.235906136483202, 0.750231187320762 ], [ 37.237920296483189, 0.753466050320751 ], [ 37.24109412548318, 0.755419175320751 ], [ 37.24609900748316, 0.760668199320773 ], [ 37.249944222483172, 0.76182786732073 ], [ 37.254338754483165, 0.762255113320746 ], [ 37.257695687483185, 0.761644761320779 ], [ 37.260503304483159, 0.759264390320763 ], [ 37.263310921483189, 0.756273667320781 ], [ 37.265691293483194, 0.754259507320737 ], [ 37.268132699483196, 0.751024644320748 ], [ 37.27148963248316, 0.748461167320781 ], [ 37.273503793483194, 0.74424974232073 ], [ 37.27930213248316, 0.739855210320738 ], [ 37.283330453483181, 0.738024156320759 ], [ 37.287724984483184, 0.73643724232073 ], [ 37.28992225048318, 0.734056870320783 ], [ 37.290715707483166, 0.730455796320766 ], [ 37.293889535483167, 0.727220933320777 ], [ 37.298894418483194, 0.721666734320761 ], [ 37.300542367483153, 0.719225327320769 ], [ 37.301518929483159, 0.715868394320748 ], [ 37.30273963248316, 0.712450425320751 ], [ 37.303533089483203, 0.70927659732075 ], [ 37.30469275748316, 0.706468980320776 ], [ 37.305303109483184, 0.703051011320779 ], [ 37.307744515483186, 0.700670640320763 ], [ 37.309514535483167, 0.697069566320747 ], [ 37.310918343483188, 0.693834702320769 ], [ 37.314519418483194, 0.684252183320777 ], [ 37.317510140483186, 0.680040757320737 ], [ 37.320134652483198, 0.676866929320736 ], [ 37.321111214483203, 0.674059312320762 ], [ 37.323308480483199, 0.671251695320732 ], [ 37.326299203483181, 0.664415757320737 ], [ 37.326299203483181, 0.661425035320744 ], [ 37.327519906483182, 0.656847398320733 ], [ 37.330510629483165, 0.653246324320773 ], [ 37.3323416834832, 0.649462144320748 ], [ 37.336736214483203, 0.647447984320761 ], [ 37.340520394483171, 0.646471421320766 ], [ 37.343144906483182, 0.643846910320744 ], [ 37.343144906483182, 0.640062730320776 ], [ 37.344304574483196, 0.637072007320737 ], [ 37.347539437483185, 0.63365403832074 ], [ 37.349126351483157, 0.630419175320751 ], [ 37.348943246483195, 0.62706224232073 ], [ 37.350286019483171, 0.624437730320776 ], [ 37.352910531483182, 0.622057359320761 ], [ 37.35352088248316, 0.61924974232073 ], [ 37.352544320483155, 0.616259019320748 ], [ 37.352727425483174, 0.613268296320766 ], [ 37.353887093483188, 0.61021653832074 ], [ 37.354741586483151, 0.606432359320761 ], [ 37.354741586483151, 0.601061265320763 ], [ 37.357305062483185, 0.598619859320761 ], [ 37.360295785483167, 0.598436753320752 ], [ 37.363713754483165, 0.597643296320766 ], [ 37.36469031648317, 0.593431870320783 ], [ 37.364324105483199, 0.58903733932078 ], [ 37.365727914483152, 0.585863511320779 ], [ 37.369695199483196, 0.585863511320779 ], [ 37.373723519483171, 0.586656968320765 ], [ 37.376897347483172, 0.584032456320754 ], [ 37.379888070483155, 0.582018296320766 ], [ 37.382695687483185, 0.581041734320761 ], [ 37.390508187483185, 0.575670640320763 ], [ 37.393926156483182, 0.574816148320733 ], [ 37.396306527483198, 0.576647202320769 ], [ 37.399907601483157, 0.577440660320744 ], [ 37.404119027483198, 0.577257554320736 ], [ 37.407292855483199, 0.57841722232075 ], [ 37.410527718483188, 0.57841722232075 ], [ 37.418340218483188, 0.579027574320773 ], [ 37.421941293483194, 0.57823411732073 ], [ 37.425725472483172, 0.57927171432078 ], [ 37.428533089483203, 0.581835191320747 ], [ 37.432317269483171, 0.581041734320761 ], [ 37.436711800483174, 0.578844468320765 ], [ 37.439519418483194, 0.579637925320751 ], [ 37.442143929483159, 0.581041734320761 ], [ 37.446111214483203, 0.579821031320759 ], [ 37.450688851483157, 0.580858628320752 ], [ 37.454717171483189, 0.58287278832074 ], [ 37.459722054483159, 0.584459702320769 ], [ 37.463506234483184, 0.586473863320746 ], [ 37.46570350048318, 0.589647691320747 ], [ 37.468328011483202, 0.591661851320734 ], [ 37.471745980483199, 0.591661851320734 ], [ 37.473943246483195, 0.589830796320766 ], [ 37.477117074483196, 0.587633531320759 ], [ 37.480901254483165, 0.586840074320773 ], [ 37.484929574483196, 0.588060777320775 ], [ 37.48914100048318, 0.588426988320746 ], [ 37.492131722483172, 0.587633531320759 ], [ 37.493718636483202, 0.584459702320769 ], [ 37.491338265483186, 0.578051011320779 ], [ 37.493718636483202, 0.575853745320783 ], [ 37.500493539483152, 0.574449937320762 ], [ 37.504094613483169, 0.573046128320752 ], [ 37.507146371483195, 0.569261949320773 ], [ 37.512090218483188, 0.566820542320781 ], [ 37.516118539483152, 0.565660874320767 ], [ 37.518926156483182, 0.567858140320763 ], [ 37.52148963248316, 0.569017808320777 ], [ 37.525090707483166, 0.56865159732075 ], [ 37.527898324483196, 0.566271226320734 ], [ 37.53210975048318, 0.564623277320775 ], [ 37.536138070483155, 0.567064683320777 ], [ 37.538335336483151, 0.57145921432078 ], [ 37.542485726483157, 0.574816148320733 ], [ 37.546514046483189, 0.576219956320754 ], [ 37.5491385584832, 0.573839585320738 ], [ 37.55273963248316, 0.57145921432078 ], [ 37.557134164483152, 0.569445054320736 ], [ 37.561528695483155, 0.570055406320759 ], [ 37.565923226483157, 0.570238511320779 ], [ 37.570745004483165, 0.570848863320746 ], [ 37.574101937483185, 0.573046128320752 ], [ 37.577519906483182, 0.572618882320737 ], [ 37.580510629483165, 0.570665757320737 ], [ 37.58289100048318, 0.574816148320733 ], [ 37.582524789483152, 0.584459702320769 ], [ 37.585088265483186, 0.586656968320765 ], [ 37.589116586483151, 0.586473863320746 ], [ 37.592717660483167, 0.587816636320779 ], [ 37.595891488483169, 0.589830796320766 ], [ 37.599492562483185, 0.590074937320762 ], [ 37.603093636483202, 0.58903733932078 ], [ 37.606145394483171, 0.589830796320766 ], [ 37.610906136483202, 0.593431870320783 ], [ 37.613896859483184, 0.594652574320773 ], [ 37.617314828483181, 0.597216050320751 ], [ 37.620915902483198, 0.598070542320781 ], [ 37.624333871483195, 0.597032945320732 ], [ 37.628301156483182, 0.598436753320752 ], [ 37.631291879483165, 0.595873277320775 ], [ 37.635930550483174, 0.597460191320747 ], [ 37.637517464483203, 0.60045091332074 ], [ 37.637090218483188, 0.60466233932078 ], [ 37.639287484483184, 0.608629624320767 ], [ 37.642095101483157, 0.612047593320765 ], [ 37.639104379483165, 0.614244859320761 ], [ 37.639104379483165, 0.61802903832074 ], [ 37.640508187483185, 0.620653550320751 ], [ 37.644109261483202, 0.620836656320759 ], [ 37.64789344148317, 0.62724534732075 ], [ 37.651311410483167, 0.630236070320732 ], [ 37.655522836483151, 0.630236070320732 ], [ 37.6585135584832, 0.630663316320747 ], [ 37.661321175483174, 0.632250230320776 ], [ 37.664495004483165, 0.632433335320738 ], [ 37.667912972483172, 0.633043687320762 ], [ 37.67133094148317, 0.635668199320773 ], [ 37.673894418483194, 0.638475816320747 ], [ 37.676702035483167, 0.639025132320737 ], [ 37.67914344148317, 0.640673081320754 ], [ 37.682317269483171, 0.64146653832074 ], [ 37.683721078483181, 0.645067613320746 ], [ 37.683537972483172, 0.649645249320767 ], [ 37.685918343483188, 0.655016343320765 ], [ 37.689336312483185, 0.658434312320762 ], [ 37.692510140483186, 0.662035386320779 ], [ 37.696294320483155, 0.662462632320737 ], [ 37.701543343483188, 0.663866441320747 ], [ 37.706304086483151, 0.666063706320754 ], [ 37.710088265483186, 0.665819566320747 ], [ 37.71289588248316, 0.663866441320747 ], [ 37.713506234483184, 0.660631577320769 ], [ 37.715337289483152, 0.658434312320762 ], [ 37.718328011483202, 0.656847398320733 ], [ 37.722722543483194, 0.655260484320761 ], [ 37.725530160483167, 0.653246324320773 ], [ 37.728337777483198, 0.654222886320779 ], [ 37.730107796483189, 0.658434312320762 ], [ 37.7327323084832, 0.66044847232075 ], [ 37.73633338248316, 0.66026536732073 ], [ 37.73828650748316, 0.663439195320732 ], [ 37.741521371483195, 0.665636460320738 ], [ 37.743535531483182, 0.669054429320736 ], [ 37.745305550483174, 0.672655503320752 ], [ 37.749700082483166, 0.67466966332074 ], [ 37.75391150748316, 0.673448960320738 ], [ 37.756902230483199, 0.671617906320759 ], [ 37.760686410483167, 0.670641343320765 ], [ 37.769109261483202, 0.672228257320737 ], [ 37.774114144483171, 0.673876206320754 ], [ 37.778142464483203, 0.675646226320734 ], [ 37.782536996483195, 0.675218980320776 ], [ 37.785893929483159, 0.674852769320748 ], [ 37.78851844148317, 0.672472398320733 ], [ 37.792485726483157, 0.670458238320746 ], [ 37.797124398483156, 0.671862046320766 ], [ 37.800725472483172, 0.673265855320776 ], [ 37.803899300483174, 0.674242417320781 ], [ 37.808110726483157, 0.674425523320733 ], [ 37.812688363483169, 0.674242417320781 ], [ 37.817693246483195, 0.674852769320748 ], [ 37.820500863483169, 0.676866929320736 ], [ 37.824346078483181, 0.677660386320779 ], [ 37.829106820483155, 0.677416245320783 ], [ 37.83289100048318, 0.677416245320783 ], [ 37.836492074483196, 0.679247300320751 ], [ 37.839116586483151, 0.682238023320733 ], [ 37.84070350048318, 0.684862535320744 ], [ 37.843144906483182, 0.687059800320751 ], [ 37.845525277483198, 0.689867417320781 ], [ 37.843694222483172, 0.694445054320736 ], [ 37.843511117483153, 0.697863023320733 ], [ 37.844304574483196, 0.700670640320763 ], [ 37.844731820483155, 0.704027574320773 ], [ 37.846929086483151, 0.708055894320748 ], [ 37.848943246483195, 0.712267320320732 ], [ 37.851933968483188, 0.714464585320738 ], [ 37.855290902483198, 0.716051499320767 ], [ 37.861943734483184, 0.719652574320773 ], [ 37.864324105483199, 0.721666734320761 ], [ 37.867742074483196, 0.725023667320781 ], [ 37.874333871483195, 0.727037827320769 ], [ 37.876714242483153, 0.731066148320733 ], [ 37.875127328483181, 0.734423081320754 ], [ 37.87891150748316, 0.741442124320767 ], [ 37.8831229334832, 0.740038316320747 ], [ 37.88953162548318, 0.737230699320773 ], [ 37.891911996483195, 0.73521653832074 ], [ 37.893498910483167, 0.732225816320747 ], [ 37.894292367483153, 0.728258531320759 ], [ 37.89789344148317, 0.726427476320734 ], [ 37.901494515483186, 0.727648179320736 ], [ 37.903935921483189, 0.725267808320777 ], [ 37.902715218483188, 0.721056382320737 ], [ 37.906499398483156, 0.719225327320769 ], [ 37.910344613483169, 0.719225327320769 ], [ 37.91211463248316, 0.716234605320776 ], [ 37.912541879483165, 0.713060777320775 ], [ 37.916142953483181, 0.712267320320732 ], [ 37.918523324483196, 0.716051499320767 ], [ 37.921941293483194, 0.718065660320744 ], [ 37.925298226483157, 0.71763841332074 ], [ 37.92773963248316, 0.719469468320765 ], [ 37.930303109483184, 0.721056382320737 ], [ 37.931890023483156, 0.724230210320738 ], [ 37.934697640483186, 0.727220933320777 ], [ 37.940495980483199, 0.732836167320781 ], [ 37.943303597483172, 0.738451402320775 ], [ 37.945134652483198, 0.740648667320781 ], [ 37.947698129483165, 0.742845933320777 ], [ 37.956304086483151, 0.74424974232073 ], [ 37.959722054483159, 0.748217027320775 ], [ 37.964543832483166, 0.751451890320763 ], [ 37.968144906483182, 0.751451890320763 ], [ 37.971501839483203, 0.752428452320769 ], [ 37.97351600048318, 0.755419175320751 ], [ 37.975713265483186, 0.760668199320773 ], [ 37.97852088248316, 0.764025132320737 ], [ 37.980290902483198, 0.767259995320783 ], [ 37.985295785483167, 0.772447984320761 ], [ 37.987920296483189, 0.775621812320762 ], [ 37.993718636483202, 0.776842515320763 ], [ 37.997319711483151, 0.779222886320779 ], [ 38.001531136483202, 0.786241929320736 ], [ 38.006291879483165, 0.787828843320765 ], [ 38.009343636483202, 0.79185716332074 ], [ 38.008916390483186, 0.796251695320732 ], [ 38.009343636483202, 0.800035874320767 ], [ 38.012334359483184, 0.802233140320763 ], [ 38.015508187483185, 0.803270738320746 ], [ 38.016911996483195, 0.800035874320767 ], [ 38.016911996483195, 0.796251695320732 ], [ 38.020513070483155, 0.796862046320766 ], [ 38.023503793483194, 0.796617906320759 ], [ 38.0257010584832, 0.794420640320763 ], [ 38.028508675483174, 0.792650620320783 ], [ 38.03070594148317, 0.790819566320747 ], [ 38.034123910483167, 0.789049546320766 ], [ 38.037908089483203, 0.787828843320765 ], [ 38.043340218483188, 0.786425035320744 ], [ 38.04633094148317, 0.785021226320734 ], [ 38.046941293483194, 0.782274644320748 ], [ 38.048711312483185, 0.780016343320765 ], [ 38.051335824483196, 0.778429429320736 ], [ 38.05469275748316, 0.776842515320763 ], [ 38.058721078483181, 0.777025620320783 ], [ 38.062322152483198, 0.77763597232075 ], [ 38.066533578483181, 0.779039781320759 ], [ 38.071111214483203, 0.780870835320738 ], [ 38.076543343483188, 0.782457749320767 ], [ 38.071904671483189, 0.786852281320759 ], [ 38.061894906483182, 0.793627183320777 ], [ 38.056523812483185, 0.797045152320775 ], [ 38.047490609483184, 0.803270738320746 ], [ 38.047124398483156, 0.813829820320732 ], [ 38.04633094148317, 0.824266831320754 ], [ 38.045903695483155, 0.835436265320763 ], [ 38.045537484483184, 0.839464585320738 ], [ 38.043096078483181, 0.881639878320752 ], [ 38.042302621483195, 0.899462144320748 ], [ 38.040532601483157, 0.931261460320738 ], [ 38.03992225048318, 0.939257066320747 ], [ 38.03992225048318, 0.943041245320783 ], [ 38.039495004483165, 0.947069566320747 ], [ 38.039495004483165, 0.951830308320777 ], [ 38.038091195483155, 0.978868882320737 ], [ 38.037724984483184, 0.982836167320781 ], [ 38.037297738483169, 0.99302903832074 ], [ 38.037297738483169, 1.00364915632076 ], [ 38.03711463248316, 1.008470933320777 ], [ 38.035710824483196, 1.035631577320769 ], [ 38.036321175483174, 1.039232652320775 ], [ 38.035527718483188, 1.042467515320763 ], [ 38.035100472483172, 1.047655503320752 ], [ 38.034123910483167, 1.071642320320732 ], [ 38.033696664483152, 1.077074449320773 ], [ 38.0335135584832, 1.082445542320781 ], [ 38.031499398483156, 1.085863511320779 ], [ 38.001531136483202, 1.126451890320763 ], [ 37.974126351483157, 1.159471910320744 ], [ 37.949895394483171, 1.191820542320781 ], [ 37.947942269483171, 1.232653062320762 ], [ 37.947087777483198, 1.253038804320736 ], [ 37.946904671483189, 1.261034410320744 ], [ 37.968511117483153, 1.277819077320769 ], [ 37.99414588248316, 1.298265855320776 ], [ 38.020513070483155, 1.319017808320777 ], [ 38.023503793483194, 1.321642320320732 ], [ 38.032536996483195, 1.329027574320773 ], [ 38.038945687483185, 1.334032456320754 ], [ 38.05414344148317, 1.346422593320765 ], [ 38.060491097483172, 1.351244370320783 ], [ 38.062688363483169, 1.35325853132076 ], [ 38.075932992483153, 1.363817613320746 ], [ 38.089910040483169, 1.375231185320726 ], [ 38.093144906483182, 1.377672593320765 ], [ 38.110723031483182, 1.391832749320767 ], [ 38.129338754483165, 1.407030503320752 ], [ 38.132329476483157, 1.409227769320748 ], [ 38.135686410483167, 1.41221849232073 ], [ 38.138310921483189, 1.414049546320766 ], [ 38.143498910483167, 1.418444077320769 ], [ 38.151311410483167, 1.424425523320733 ], [ 38.163945687483185, 1.434618394320748 ], [ 38.166692269483171, 1.437059800320751 ], [ 38.175115121483195, 1.443834702320769 ], [ 38.178899300483174, 1.446642320320732 ], [ 38.195500863483169, 1.460253160320744 ], [ 38.208135140483186, 1.47044603132076 ], [ 38.212102425483174, 1.473436753320752 ], [ 38.21429969148317, 1.47545091332074 ], [ 38.219121468483188, 1.477220933320777 ], [ 38.223699105483199, 1.482836167320781 ], [ 38.233525765483186, 1.490831773320733 ], [ 38.250737679483159, 1.504442613320746 ], [ 38.253728402483198, 1.506639878320752 ], [ 38.256291879483165, 1.508837144320748 ], [ 38.264287484483184, 1.51481858932078 ], [ 38.277532113483169, 1.525438706320754 ], [ 38.291936410483167, 1.536425035320744 ], [ 38.30750037548318, 1.548876206320754 ], [ 38.318730843483188, 1.557238023320733 ], [ 38.321904671483189, 1.560045640320763 ], [ 38.325139535483167, 1.562426011320779 ], [ 38.332097543483194, 1.568041245320783 ], [ 38.34070350048318, 1.574633042320781 ], [ 38.342290414483152, 1.577074449320773 ], [ 38.343694222483172, 1.584032456320754 ], [ 38.344914925483174, 1.58903733932078 ], [ 38.346135629483165, 1.593065660320744 ], [ 38.34711219148317, 1.597826402320775 ], [ 38.349736703483181, 1.608629624320767 ], [ 38.351140511483202, 1.615831773320733 ], [ 38.357488168483194, 1.642443101320734 ], [ 38.364324105483199, 1.672472398320733 ], [ 38.367131722483172, 1.683641831320754 ], [ 38.368718636483202, 1.691454331320754 ], [ 38.370732796483189, 1.699266831320754 ], [ 38.371892464483203, 1.705065171320766 ], [ 38.376286996483195, 1.723253648320733 ], [ 38.382939828483181, 1.75206224232073 ], [ 38.384099496483195, 1.756822984320761 ], [ 38.385320199483196, 1.759447495320783 ], [ 38.422917855483199, 1.781420152320775 ], [ 38.427922738483169, 1.78404466332074 ], [ 38.446904671483189, 1.795458238320746 ], [ 38.466496957483166, 1.806444566320747 ], [ 38.475102914483152, 1.811632554320736 ], [ 38.480290902483198, 1.814440171320766 ], [ 38.518498910483167, 1.837023179320736 ], [ 38.522099984483184, 1.838854234320761 ], [ 38.527287972483172, 1.842028062320762 ], [ 38.539495004483165, 1.848863999320767 ], [ 38.578496468483188, 1.871263902320775 ], [ 38.631536019483171, 1.902025620320783 ], [ 38.641301644483171, 1.907457749320767 ], [ 38.64789344148317, 1.911425035320744 ], [ 38.6507010584832, 1.912828843320765 ], [ 38.669744027483198, 1.923876206320754 ], [ 38.684514535483167, 1.932238023320733 ], [ 38.687932504483165, 1.934252183320777 ], [ 38.691533578483181, 1.936632554320736 ], [ 38.698491586483208, 1.940416734320761 ], [ 38.71234656648317, 1.948473374320767 ], [ 38.719121468483188, 1.952623765320763 ], [ 38.729497445483155, 1.958422105320776 ], [ 38.756536019483171, 1.974047105320776 ], [ 38.763494027483198, 1.977831285320744 ], [ 38.777104867483153, 1.985826890320763 ], [ 38.783940804483159, 1.989672105320776 ], [ 38.789311898483156, 1.992418687320762 ], [ 38.800908578483181, 1.999620835320739 ], [ 38.836125863483169, 2.023668687320761 ], [ 38.862920296483189, 2.038866441320746 ], [ 38.952703011483202, 2.091234605320775 ], [ 38.963506234483184, 2.095018785320743 ], [ 38.967900765483186, 2.089037339320779 ], [ 38.970891488483169, 2.086229722320748 ], [ 38.973332894483171, 2.082628648320732 ], [ 38.976689828483181, 2.079454820320731 ], [ 38.979497445483155, 2.076036851320733 ], [ 38.981694711483208, 2.072252671320765 ], [ 38.985295785483167, 2.068224351320733 ], [ 38.985723031483182, 2.063219468320764 ], [ 38.985295785483167, 2.059252183320776 ], [ 38.984929574483196, 2.053026597320748 ], [ 38.985295785483167, 2.048265855320775 ], [ 38.988530648483156, 2.045275132320736 ], [ 38.991704476483157, 2.042040269320747 ], [ 38.992925179483159, 2.036058824320772 ], [ 38.99109412548318, 2.031847398320732 ], [ 38.990300668483194, 2.027269761320778 ], [ 38.9905448084832, 2.023424546320765 ], [ 38.993291390483186, 2.014452378320751 ], [ 38.993535531483182, 2.008837144320747 ], [ 38.995122445483155, 2.004259507320736 ], [ 39.0003104334832, 2.002672593320764 ], [ 39.004704964483203, 2.000475327320768 ], [ 39.011296761483202, 1.992845933320777 ], [ 39.013738168483194, 1.989244859320761 ], [ 39.01953650748316, 1.985826890320763 ], [ 39.021916879483165, 1.983019273320733 ], [ 39.024907601483157, 1.981676499320767 ], [ 39.027287972483172, 1.97966233932078 ], [ 39.028691781483182, 1.977037827320769 ], [ 39.031316293483194, 1.975023667320781 ], [ 39.034490121483195, 1.967028062320762 ], [ 39.036321175483174, 1.964464585320738 ], [ 39.037908089483203, 1.96122972232075 ], [ 39.040105355483199, 1.958666245320783 ], [ 39.042302621483195, 1.956835191320747 ], [ 39.044316781483182, 1.954454820320732 ], [ 39.045293343483188, 1.951219956320754 ], [ 39.046941293483194, 1.947252671320766 ], [ 39.049932015483186, 1.944017808320777 ], [ 39.055730355483199, 1.940660874320767 ], [ 39.058293832483166, 1.938219468320765 ], [ 39.058721078483181, 1.935045640320763 ], [ 39.058721078483181, 1.931627671320766 ], [ 39.059087289483152, 1.92802659732075 ], [ 39.060491097483172, 1.924852769320748 ], [ 39.064092171483189, 1.922228257320737 ], [ 39.067143929483159, 1.919420640320763 ], [ 39.070745004483165, 1.916429917320781 ], [ 39.073308480483199, 1.913072984320761 ], [ 39.077336800483174, 1.910631577320769 ], [ 39.081914437483185, 1.908617417320781 ], [ 39.083928597483172, 1.906053941320747 ], [ 39.085515511483202, 1.903673570320732 ], [ 39.088506234483184, 1.901476304320736 ], [ 39.092900765483186, 1.900865952320769 ], [ 39.096135629483165, 1.899462144320748 ], [ 39.0999198084832, 1.894457261320779 ], [ 39.102727425483174, 1.89146653832074 ], [ 39.110906136483202, 1.887072007320737 ], [ 39.11469031648317, 1.886034410320744 ], [ 39.11914588248316, 1.883226792320781 ], [ 39.121709359483184, 1.879625718320765 ], [ 39.123296273483156, 1.87706224232073 ], [ 39.125493539483152, 1.874864976320734 ], [ 39.129888070483155, 1.871263902320775 ], [ 39.131536019483171, 1.866259019320748 ], [ 39.135320199483196, 1.860643785320744 ], [ 39.137517464483203, 1.857836167320781 ], [ 39.139714730483199, 1.853075425320751 ], [ 39.143926156483182, 1.850817124320767 ], [ 39.1428885584832, 1.847826402320775 ], [ 39.143498910483167, 1.844835679320736 ], [ 39.143743050483174, 1.839647691320747 ], [ 39.1428885584832, 1.834642808320777 ], [ 39.146306527483198, 1.832018296320766 ], [ 39.148503793483194, 1.828844468320765 ], [ 39.149907601483157, 1.824266831320754 ], [ 39.152104867483153, 1.819872300320751 ], [ 39.15430213248316, 1.817064683320777 ], [ 39.160893929483159, 1.81083909732075 ], [ 39.163335336483208, 1.803270738320746 ], [ 39.165532601483157, 1.79802171432078 ], [ 39.168523324483196, 1.795641343320765 ], [ 39.170903695483155, 1.789415757320737 ], [ 39.172490609483184, 1.786241929320736 ], [ 39.173345101483157, 1.782823960320738 ], [ 39.17468787548318, 1.779650132320737 ], [ 39.175908578483181, 1.775438706320754 ], [ 39.177495492483153, 1.77122728132076 ], [ 39.178533089483203, 1.766039292320781 ], [ 39.177922738483169, 1.762255113320746 ], [ 39.180730355483199, 1.755236070320732 ], [ 39.182317269483171, 1.75224534732075 ], [ 39.187139046483189, 1.746019761320779 ], [ 39.190129769483171, 1.742418687320762 ], [ 39.191106332483166, 1.739672105320776 ], [ 39.192693246483195, 1.73662034732075 ], [ 39.194707406483182, 1.733873765320763 ], [ 39.19531775748316, 1.731066148320733 ], [ 39.197698129483165, 1.727220933320777 ], [ 39.199895394483171, 1.722826402320775 ], [ 39.201543343483188, 1.71885911732073 ], [ 39.203923714483203, 1.714830796320766 ], [ 39.20789100048318, 1.71122972232075 ], [ 39.211919320483155, 1.708666245320783 ], [ 39.21570350048318, 1.706652085320738 ], [ 39.22070838248316, 1.706652085320738 ], [ 39.22351600048318, 1.705858628320752 ], [ 39.227117074483196, 1.704637925320751 ], [ 39.229741586483208, 1.701830308320777 ], [ 39.238103402483198, 1.699816148320733 ], [ 39.242742074483196, 1.698473374320767 ], [ 39.245732796483189, 1.697863023320733 ], [ 39.248296273483156, 1.696276109320761 ], [ 39.251531136483202, 1.693041245320783 ], [ 39.254704964483203, 1.691271226320734 ], [ 39.258122935483179, 1.688219467320775 ], [ 39.261296761483202, 1.686022202320769 ], [ 39.264897836483208, 1.685472886320779 ], [ 39.271916879483165, 1.687059800320751 ], [ 39.274907601483157, 1.684862535320744 ], [ 39.278935921483189, 1.682238023320733 ], [ 39.284123910483167, 1.67784349232073 ], [ 39.284917367483153, 1.674242417320781 ], [ 39.2913260584832, 1.67106858932078 ], [ 39.295720589483203, 1.66826097232075 ], [ 39.300115121483195, 1.666063706320754 ], [ 39.30414344148317, 1.666246812320762 ], [ 39.307927621483195, 1.665636460320738 ], [ 39.309087289483152, 1.661425035320744 ], [ 39.309514535483167, 1.658068101320734 ], [ 39.311345589483203, 1.655260484320761 ], [ 39.315129769483171, 1.657457749320767 ], [ 39.318486703483181, 1.65544358932078 ], [ 39.319524300483174, 1.651842515320763 ], [ 39.322087777483198, 1.647447984320761 ], [ 39.325139535483167, 1.645861070320732 ], [ 39.328740609483184, 1.646471421320766 ], [ 39.331914437483185, 1.645433824320773 ], [ 39.333745492483153, 1.643053452320769 ], [ 39.337529671483189, 1.637438218320765 ], [ 39.342534554483159, 1.638048570320732 ], [ 39.346501839483203, 1.62584153832074 ], [ 39.352117074483196, 1.622850816320747 ], [ 39.353337777483198, 1.619860093320765 ], [ 39.358342660483167, 1.613817613320746 ], [ 39.358891976483157, 1.610826890320763 ], [ 39.361089242483153, 1.608019273320733 ], [ 39.365117562483185, 1.60466233932078 ], [ 39.3674979334832, 1.601427476320734 ], [ 39.36914588248316, 1.597643296320766 ], [ 39.370915902483198, 1.594835679320736 ], [ 39.373113168483194, 1.59263841332074 ], [ 39.377507699483196, 1.585070054320736 ], [ 39.383306039483152, 1.582262437320762 ], [ 39.385686410483167, 1.57927171432078 ], [ 39.386540902483198, 1.57506028832074 ], [ 39.387944711483208, 1.571276109320761 ], [ 39.391545785483167, 1.57145921432078 ], [ 39.394902718483188, 1.57042161732073 ], [ 39.396123421483189, 1.565416734320761 ], [ 39.397710336483208, 1.561815660320744 ], [ 39.40430213248316, 1.556627671320766 ], [ 39.408696664483152, 1.556871812320762 ], [ 39.413091195483155, 1.557665269320748 ], [ 39.416692269483171, 1.555468003320752 ], [ 39.420720589483203, 1.552233140320763 ], [ 39.423711312483185, 1.54966966332074 ], [ 39.426335824483196, 1.546251695320732 ], [ 39.430486214483203, 1.543016831320754 ], [ 39.434514535483167, 1.540270249320767 ], [ 39.436894906483182, 1.537645738320746 ], [ 39.440740121483195, 1.534838120320783 ], [ 39.448918832483166, 1.533251206320754 ], [ 39.435307992483153, 1.52763597232075 ], [ 39.430120004483165, 1.526049058320777 ], [ 39.407903207483166, 1.518663804320736 ], [ 39.402104867483153, 1.517015855320776 ], [ 39.37109900748316, 1.506822984320761 ], [ 39.367314827483192, 1.50505296432078 ], [ 39.36414100048318, 1.503221910320744 ], [ 39.345525277483198, 1.496874253320752 ], [ 39.321294320483155, 1.487841050320751 ], [ 39.315740121483195, 1.48607103132076 ], [ 39.30273963248316, 1.481432359320761 ], [ 39.286504281483182, 1.475267808320777 ], [ 39.278325570483155, 1.471666734320761 ], [ 39.279119027483198, 1.466844956320754 ], [ 39.284917367483153, 1.45146409732075 ], [ 39.317693246483195, 1.367418687320762 ], [ 39.319890511483202, 1.36107103132076 ], [ 39.328313363483169, 1.340074937320762 ], [ 39.329900277483198, 1.335253160320744 ], [ 39.360906136483202, 1.255419175320751 ], [ 39.36609412548318, 1.241625230320776 ], [ 39.367925179483159, 1.23747483932078 ], [ 39.37250281648317, 1.225634019320748 ], [ 39.379704964483203, 1.208055894320748 ], [ 39.380742562483185, 1.205065171320766 ], [ 39.415105355483199, 1.117662827320769 ], [ 39.435491097483172, 1.06224290632076 ], [ 39.437932504483165, 1.057054917320781 ], [ 39.442510140483186, 1.048448960320738 ], [ 39.444097054483159, 1.044847886320779 ], [ 39.445134652483198, 1.042040269320748 ], [ 39.449101937483185, 1.02903978132076 ], [ 39.450322640483186, 1.02623216332074 ], [ 39.451909554483159, 1.021837632320737 ], [ 39.457097543483194, 1.00987474232073 ], [ 39.459905160483167, 1.002672593320765 ], [ 39.461492074483196, 0.994066636320779 ], [ 39.459111703483181, 0.989244859320761 ], [ 39.455144418483194, 0.98662034732075 ], [ 39.443303597483172, 0.983019273320733 ], [ 39.438115609483184, 0.981676499320767 ], [ 39.428105843483188, 0.977831285320744 ], [ 39.420537484483184, 0.974657456320754 ], [ 39.412541879483165, 0.97184983932078 ], [ 39.408696664483152, 0.970018785320744 ], [ 39.40430213248316, 0.96885911732073 ], [ 39.396306527483198, 0.966051499320767 ], [ 39.389714730483199, 0.963060777320775 ], [ 39.37109900748316, 0.955431382320737 ], [ 39.361943734483184, 0.95146409732075 ], [ 39.355901254483165, 0.948656480320776 ], [ 39.336492074483196, 0.935045640320763 ], [ 39.33289100048318, 0.932848374320767 ], [ 39.319707406483182, 0.925646226320734 ], [ 39.314336312483185, 0.922472398320733 ], [ 39.310124886483202, 0.918444077320769 ], [ 39.30609656648317, 0.914049546320766 ], [ 39.296941293483194, 0.902819077320769 ], [ 39.292302621483195, 0.898424546320766 ], [ 39.287724984483184, 0.894457261320779 ], [ 39.284307015483186, 0.891222398320733 ], [ 39.280095589483203, 0.885851304320736 ], [ 39.276738656483182, 0.882067124320767 ], [ 39.27148963248316, 0.876818101320734 ], [ 39.268498910483167, 0.873461167320781 ], [ 39.262334359483184, 0.86802903832074 ], [ 39.259343636483202, 0.865648667320781 ], [ 39.2503104334832, 0.857225816320747 ], [ 39.243535531483182, 0.848436753320752 ], [ 39.23773719148317, 0.841844956320754 ], [ 39.231938851483157, 0.830065171320766 ], [ 39.230718148483156, 0.826647202320769 ], [ 39.22992469148317, 0.823229234320761 ], [ 39.227544320483155, 0.819445054320736 ], [ 39.225286019483171, 0.815233628320752 ], [ 39.222295296483189, 0.811022202320769 ], [ 39.215886605483199, 0.802660386320779 ], [ 39.213689339483203, 0.800218980320776 ], [ 39.208501351483157, 0.796251695320732 ], [ 39.204289925483174, 0.791429917320781 ], [ 39.201116097483172, 0.787035386320779 ], [ 39.197698129483165, 0.781664292320781 ], [ 39.195500863483169, 0.77745286732073 ], [ 39.189885629483165, 0.76481858932078 ], [ 39.184087289483152, 0.753832261320779 ], [ 39.18109656648317, 0.749437730320776 ], [ 39.179509652483198, 0.745653550320751 ], [ 39.178288949483196, 0.741259019320748 ], [ 39.175725472483172, 0.724657456320754 ], [ 39.178105843483188, 0.723070542320781 ], [ 39.176335824483196, 0.720018785320744 ], [ 39.17468787548318, 0.71763841332074 ], [ 39.170903695483155, 0.717028062320762 ], [ 39.167912972483172, 0.716234605320776 ], [ 39.16492225048318, 0.711840074320773 ], [ 39.161504281483182, 0.710253160320744 ], [ 39.158086312483185, 0.709032456320754 ], [ 39.152104867483153, 0.704821031320759 ], [ 39.148137582483166, 0.703051011320779 ], [ 39.145696175483174, 0.698839585320738 ], [ 39.144109261483202, 0.69542161732073 ], [ 39.143926156483182, 0.692064683320777 ], [ 39.141728890483186, 0.688463609320761 ], [ 39.135137093483188, 0.688036363320746 ], [ 39.13171912548318, 0.68583909732075 ], [ 39.127141488483169, 0.68583909732075 ], [ 39.12390662548318, 0.687853257320737 ], [ 39.118718636483202, 0.68864671432078 ], [ 39.114934457483166, 0.688829820320732 ], [ 39.106145394483171, 0.687059800320751 ], [ 39.103093636483202, 0.687059800320751 ], [ 39.0999198084832, 0.684618394320748 ], [ 39.098699105483199, 0.678636949320773 ], [ 39.095525277483198, 0.67784349232073 ], [ 39.091924203483181, 0.678820054320736 ], [ 39.089116586483208, 0.677660386320779 ], [ 39.08734656648317, 0.675463120320783 ], [ 39.084538949483196, 0.674425523320733 ], [ 39.081304086483208, 0.675035874320767 ], [ 39.077703011483202, 0.67662278832074 ], [ 39.072942269483171, 0.676256577320769 ], [ 39.066289437483185, 0.68083421432078 ], [ 39.06250525748316, 0.680651109320761 ], [ 39.059514535483167, 0.682848374320767 ], [ 39.055486214483203, 0.683824937320762 ], [ 39.052495492483153, 0.683031480320776 ], [ 39.049504769483171, 0.681261460320738 ], [ 39.048894418483194, 0.678453843320765 ], [ 39.046697152483198, 0.675035874320767 ], [ 39.043523324483196, 0.673265855320776 ], [ 39.040532601483157, 0.672472398320733 ], [ 39.038335336483208, 0.670458238320746 ], [ 39.036687386483202, 0.668016831320754 ], [ 39.035710824483196, 0.664659898320733 ], [ 39.032536996483195, 0.662828843320765 ], [ 39.028142464483203, 0.662828843320765 ], [ 39.026311410483167, 0.660631577320769 ], [ 39.025334847483172, 0.657457749320767 ], [ 39.023320687483185, 0.653429429320736 ], [ 39.024114144483171, 0.649218003320752 ], [ 39.024541390483186, 0.644274156320759 ], [ 39.023320687483185, 0.64146653832074 ], [ 39.020085824483196, 0.639269273320733 ], [ 39.015141976483157, 0.639025132320737 ], [ 39.013310921483189, 0.636461656320759 ], [ 39.012700570483155, 0.633226792320781 ], [ 39.013494027483198, 0.629076402320775 ], [ 39.012944711483208, 0.625658433320777 ], [ 39.010930550483174, 0.622850816320747 ], [ 39.006291879483165, 0.623033921320766 ], [ 39.002507699483196, 0.62224046432078 ], [ 38.998113168483194, 0.623461167320781 ], [ 38.993718636483202, 0.624071519320748 ], [ 38.990727914483152, 0.624071519320748 ], [ 38.986699593483188, 0.623827378320752 ], [ 38.983525765483186, 0.62224046432078 ], [ 38.980901254483165, 0.620470445320732 ], [ 38.976323617483153, 0.620226304320736 ], [ 38.972722543483194, 0.621630113320746 ], [ 38.968511117483153, 0.621447007320737 ], [ 38.964910043483194, 0.621630113320746 ], [ 38.962102425483174, 0.62224046432078 ], [ 38.953496468483188, 0.625475327320769 ], [ 38.949346078483181, 0.624254624320767 ], [ 38.946294320483155, 0.624254624320767 ], [ 38.942143929483159, 0.626451890320763 ], [ 38.938725961483208, 0.625231187320762 ], [ 38.936345589483203, 0.622667710320738 ], [ 38.933721078483181, 0.617235581320754 ], [ 38.930913461483208, 0.61247483932078 ], [ 38.928533089483203, 0.608019273320733 ], [ 38.9260916834832, 0.604418199320773 ], [ 38.923100961483208, 0.602831285320744 ], [ 38.916509164483152, 0.600634019320748 ], [ 38.912541879483165, 0.598070542320781 ], [ 38.908086312483185, 0.597643296320766 ], [ 38.904729379483165, 0.595446031320759 ], [ 38.901921761483202, 0.594835679320736 ], [ 38.89789344148317, 0.596056382320737 ], [ 38.894902718483188, 0.595629136320779 ], [ 38.891118539483152, 0.593676011320779 ], [ 38.88672400748316, 0.594835679320736 ], [ 38.8831229334832, 0.594652574320773 ], [ 38.880132211483208, 0.593676011320779 ], [ 38.876531136483202, 0.593248765320763 ], [ 38.874333871483195, 0.595018785320744 ], [ 38.871343148483156, 0.598436753320752 ], [ 38.86609412548318, 0.598070542320781 ], [ 38.86133338248316, 0.598070542320781 ], [ 38.857305062483185, 0.596422593320765 ], [ 38.85352088248316, 0.593676011320779 ], [ 38.848943246483195, 0.591051499320767 ], [ 38.844487679483159, 0.588854234320761 ], [ 38.841741097483172, 0.586840074320773 ], [ 38.83929969148317, 0.584642808320777 ], [ 38.836492074483196, 0.583849351320734 ], [ 38.832524789483152, 0.583422105320776 ], [ 38.829106820483155, 0.581041734320761 ], [ 38.825322640483186, 0.578661363320746 ], [ 38.823735726483157, 0.575853745320783 ], [ 38.820928109483184, 0.572435777320775 ], [ 38.817693246483195, 0.570055406320759 ], [ 38.814885629483165, 0.565050523320733 ], [ 38.811894906483182, 0.561266343320765 ], [ 38.809331429483159, 0.557054917320781 ], [ 38.808293832483166, 0.55284349232073 ], [ 38.805303109483184, 0.550035874320767 ], [ 38.802312386483202, 0.54802171432078 ], [ 38.801518929483159, 0.54503099232073 ], [ 38.79968787548318, 0.542040269320748 ], [ 38.795293343483188, 0.540270249320767 ], [ 38.792302621483195, 0.538866441320747 ], [ 38.786931527483198, 0.528063218320765 ], [ 38.7835135584832, 0.524034898320733 ], [ 38.77930213248316, 0.520433824320773 ], [ 38.776128304483159, 0.517443101320734 ], [ 38.768132699483196, 0.514452378320752 ], [ 38.765691293483194, 0.510851304320736 ], [ 38.762700570483155, 0.511217515320763 ], [ 38.759526742483153, 0.51286546432078 ], [ 38.756291879483165, 0.514269273320733 ], [ 38.754888070483155, 0.518236558320777 ], [ 38.753118050483174, 0.521654527320775 ], [ 38.749700082483166, 0.522875230320776 ], [ 38.745305550483174, 0.52263108932078 ], [ 38.739934457483166, 0.51982347232075 ], [ 38.735723031483182, 0.51787034732075 ], [ 38.732121957483166, 0.519030015320763 ], [ 38.729314339483203, 0.521044175320751 ], [ 38.7249198084832, 0.523241441320747 ], [ 38.720891488483169, 0.520250718320765 ], [ 38.721135629483165, 0.51481858932078 ], [ 38.721929086483208, 0.511034410320744 ], [ 38.716924203483181, 0.510240952320769 ], [ 38.71234656648317, 0.511217515320763 ], [ 38.708745492483153, 0.510851304320736 ], [ 38.707097543483194, 0.507860581320754 ], [ 38.704106820483155, 0.505419175320751 ], [ 38.700139535483167, 0.506456773320733 ], [ 38.696904671483189, 0.50865403832074 ], [ 38.692693246483195, 0.509264390320763 ], [ 38.68890906648317, 0.50865403832074 ], [ 38.684697640483186, 0.508226792320781 ], [ 38.68109656648317, 0.507433335320738 ], [ 38.677495492483153, 0.507433335320738 ], [ 38.673894418483194, 0.508043687320762 ], [ 38.670293343483188, 0.507250230320776 ], [ 38.665715707483166, 0.508043687320762 ], [ 38.661687386483202, 0.507860581320754 ], [ 38.658330453483181, 0.506639878320752 ], [ 38.663701546483189, 0.501634995320783 ], [ 38.666692269483171, 0.499071519320748 ], [ 38.670537484483184, 0.499071519320748 ], [ 38.674321664483152, 0.496874253320752 ], [ 38.676946175483174, 0.494066636320779 ], [ 38.678288949483196, 0.486864488320746 ], [ 38.67914344148317, 0.478441636320779 ], [ 38.679936898483156, 0.474474351320734 ], [ 38.680913461483208, 0.470629136320779 ], [ 38.682927621483195, 0.466417710320738 ], [ 38.685491097483172, 0.45982591332074 ], [ 38.69031287548318, 0.446276109320761 ], [ 38.691899789483152, 0.441271226320734 ], [ 38.692327035483167, 0.438036363320746 ], [ 38.692937386483202, 0.435045640320763 ], [ 38.694097054483159, 0.431261460320738 ], [ 38.697515023483156, 0.41826097232075 ], [ 38.702336800483174, 0.399218003320752 ], [ 38.705144418483194, 0.387438218320765 ], [ 38.7092948084832, 0.371447007320737 ], [ 38.710332406483182, 0.36802903832074 ], [ 38.71289588248316, 0.357653062320762 ], [ 38.713689339483203, 0.353441636320779 ], [ 38.716924203483181, 0.341661851320734 ], [ 38.718328011483202, 0.337450425320751 ], [ 38.718938363483169, 0.334032456320754 ], [ 38.720891488483169, 0.325426499320767 ], [ 38.725102914483152, 0.308458726320734 ], [ 38.726506722483172, 0.304247300320751 ], [ 38.727727425483174, 0.298448960320738 ], [ 38.729314339483203, 0.292040269320748 ], [ 38.731145394483171, 0.28526536732073 ], [ 38.732305062483185, 0.281664292320781 ], [ 38.733098519483171, 0.27763597232075 ], [ 38.73633338248316, 0.265856187320762 ], [ 38.741887582483166, 0.242845933320777 ], [ 38.743291390483186, 0.238451402320775 ], [ 38.744512093483188, 0.233019273320733 ], [ 38.748296273483156, 0.21904222232075 ], [ 38.74890662548318, 0.215441148320733 ], [ 38.752141488483169, 0.204821031320759 ], [ 38.754094613483169, 0.196276109320761 ], [ 38.757939828483181, 0.181627671320766 ], [ 38.757939828483181, 0.171862046320766 ], [ 38.757146371483195, 0.168444077320769 ], [ 38.754704964483203, 0.165636460320738 ], [ 38.745732796483189, 0.156420152320775 ], [ 38.739507211483208, 0.149462144320748 ], [ 38.735539925483174, 0.146227281320759 ], [ 38.734502328483181, 0.142626206320754 ], [ 38.733098519483171, 0.136644761320779 ], [ 38.733098519483171, 0.125048081320754 ], [ 38.730718148483156, 0.11607591332074 ], [ 38.73132850048318, 0.111071031320759 ], [ 38.73132850048318, 0.105272691320747 ], [ 38.732488168483194, 0.096422593320765 ], [ 38.732121957483166, 0.092455308320777 ], [ 38.729497445483155, 0.08427659732075 ], [ 38.729497445483155, 0.079821031320759 ], [ 38.730535043483194, 0.075853745320783 ], [ 38.730901254483165, 0.071642320320732 ], [ 38.729741586483208, 0.066027085320738 ], [ 38.730290902483198, 0.061266343320765 ], [ 38.73132850048318, 0.047838609320761 ], [ 38.732305062483185, 0.040270249320767 ], [ 38.732915414483152, 0.03721849232073 ], [ 38.734136117483153, 0.034227769320748 ], [ 38.735539925483174, 0.029467027320775 ], [ 38.73969031648317, 0.017626206320754 ], [ 38.739934457483166, 0.014635484320761 ], [ 38.740727914483152, 0.01182786732073 ], [ 38.740117562483185, 0.00865403832074 ], [ 38.738896859483184, 0.00505296432078 ], [ 38.738530648483156, 0.001451890320763 ], [ 38.740117562483185, -0.001172621679248 ], [ 38.743901742483153, -0.00575025767927 ], [ 38.743291390483186, -0.010266859679237 ], [ 38.743291390483186, -0.014051039679262 ], [ 38.744939339483203, -0.017530043679246 ], [ 38.747319711483208, -0.019666273679266 ], [ 38.749089730483199, -0.022779066679223 ], [ 38.748723519483171, -0.026074964679256 ], [ 38.749944222483172, -0.030652601679267 ], [ 38.7503104334832, -0.03596266067922 ], [ 38.751531136483202, -0.03895338267927 ], [ 38.753301156483182, -0.042066175679227 ], [ 38.751897347483172, -0.046277601679267 ], [ 38.753118050483174, -0.049878675679227 ], [ 38.757695687483185, -0.051038343679241 ], [ 38.76172400748316, -0.053235609679237 ], [ 38.764897836483208, -0.056775648679266 ], [ 38.763738168483194, -0.06043775767927 ], [ 38.760930550483174, -0.063367445679264 ], [ 38.761296761483202, -0.067151625679233 ], [ 38.764287484483184, -0.068860609679237 ], [ 38.766545785483167, -0.071546156679235 ], [ 38.758489144483171, -0.075757582679219 ], [ 38.749516976483157, -0.074842054679268 ], [ 38.744939339483203, -0.07307203567922 ], [ 38.741338265483186, -0.073133070679264 ], [ 38.737309945483155, -0.072644789679262 ], [ 38.732121957483166, -0.069531996679248 ], [ 38.726933968483188, -0.067029554679268 ], [ 38.722539437483185, -0.066541273679266 ], [ 38.719121468483188, -0.06525953567922 ], [ 38.715093148483156, -0.064954359679237 ], [ 38.711125863483169, -0.063367445679264 ], [ 38.708318246483195, -0.060681898679266 ], [ 38.704900277483198, -0.05775221167926 ], [ 38.700688851483157, -0.055554945679264 ], [ 38.697331918483194, -0.052869398679266 ], [ 38.694341195483155, -0.049329359679237 ], [ 38.692693246483195, -0.046948988679221 ], [ 38.689885629483165, -0.043958265679239 ], [ 38.685918343483188, -0.046338636679254 ], [ 38.684941781483182, -0.049878675679227 ], [ 38.685307992483153, -0.053479750679233 ], [ 38.682927621483195, -0.057263929679268 ], [ 38.677129281483182, -0.05744703567922 ], [ 38.673345101483157, -0.055982191679223 ], [ 38.670293343483188, -0.05384596167926 ], [ 38.665532601483157, -0.052381117679263 ], [ 38.661138070483155, -0.051465589679256 ], [ 38.658696664483152, -0.04993971167926 ], [ 38.65570594148317, -0.048963148679266 ], [ 38.653142464483203, -0.050183851679267 ], [ 38.650945199483196, -0.053174574679249 ], [ 38.648320687483185, -0.056165297679231 ], [ 38.643926156483182, -0.056836683679253 ], [ 38.639714730483199, -0.057141859679237 ], [ 38.63672400748316, -0.055860121679248 ], [ 38.633733285483167, -0.052564222679225 ], [ 38.630498421483189, -0.04853590267925 ], [ 38.628301156483182, -0.046338636679254 ], [ 38.626286996483195, -0.043958265679239 ], [ 38.621526254483165, -0.03986891067922 ], [ 38.618901742483153, -0.037976820679264 ], [ 38.612309945483155, -0.032666761679254 ], [ 38.608098519483171, -0.032666761679254 ], [ 38.60492469148317, -0.035535414679262 ], [ 38.601506722483172, -0.036634047679231 ], [ 38.59711219148317, -0.035230238679221 ], [ 38.5921073084832, -0.03205641067922 ], [ 38.58929969148317, -0.028943617679263 ], [ 38.579717171483189, -0.026929457679219 ], [ 38.575505746483195, -0.024671156679235 ], [ 38.571111214483203, -0.021741468679241 ], [ 38.56531287548318, -0.021131117679263 ], [ 38.561711800483174, -0.022046644679224 ], [ 38.558721078483181, -0.021863539679262 ], [ 38.555486214483203, -0.019849379679217 ], [ 38.551702035483167, -0.020459730679252 ], [ 38.548528207483166, -0.023267347679225 ], [ 38.547124398483156, -0.02705152767925 ], [ 38.542729867483153, -0.035230238679221 ], [ 38.541936410483167, -0.038343031679235 ], [ 38.541692269483171, -0.042066175679227 ], [ 38.541142953483181, -0.045850355679252 ], [ 38.534307015483186, -0.04603346167926 ], [ 38.530522836483208, -0.047559339679256 ], [ 38.531316293483194, -0.053052504679217 ], [ 38.53070594148317, -0.058057386679254 ], [ 38.526921761483202, -0.059461195679264 ], [ 38.524724496483195, -0.061780531679235 ], [ 38.522527230483199, -0.064466078679234 ], [ 38.51953650748316, -0.065442640679239 ], [ 38.516301644483171, -0.064282972679225 ], [ 38.513494027483198, -0.062635023679266 ], [ 38.509709847483172, -0.062573988679221 ], [ 38.506291879483165, -0.06525953567922 ], [ 38.502690804483159, -0.065869886679254 ], [ 38.497930062483185, -0.064832289679262 ], [ 38.493535531483182, -0.061963636679254 ], [ 38.489934457483166, -0.063367445679264 ], [ 38.488896859483184, -0.068372328679234 ], [ 38.48828650748316, -0.072583754679217 ], [ 38.486516488483169, -0.075452406679235 ], [ 38.483525765483186, -0.078443129679217 ], [ 38.47992469148317, -0.080274183679253 ], [ 38.472539437483185, -0.081677992679263 ], [ 38.468511117483153, -0.083936293679246 ], [ 38.464543832483166, -0.08704908667926 ], [ 38.461125863483169, -0.088269789679262 ], [ 38.457097543483194, -0.088636000679233 ], [ 38.452519906483182, -0.086682875679233 ], [ 38.446538461483208, -0.08173902767925 ], [ 38.442693246483195, -0.07783277767925 ], [ 38.437932504483165, -0.074964125679233 ], [ 38.434331429483159, -0.078565199679249 ], [ 38.430913461483208, -0.078870375679233 ], [ 38.426946175483174, -0.077466566679223 ], [ 38.423100961483208, -0.074231703679234 ], [ 38.420293343483188, -0.071057875679233 ], [ 38.417729867483153, -0.06947096167926 ], [ 38.414128793483194, -0.068860609679237 ], [ 38.411321175483174, -0.066175062679238 ], [ 38.412541879483165, -0.063367445679264 ], [ 38.411687386483202, -0.058667738679221 ], [ 38.41351844148317, -0.054761488679221 ], [ 38.410893929483159, -0.053357679679268 ], [ 38.411504281483182, -0.050244886679254 ], [ 38.409917367483153, -0.047864515679239 ], [ 38.40710975048318, -0.04603346167926 ], [ 38.406743539483152, -0.041944105679252 ], [ 38.405889046483189, -0.038281996679248 ], [ 38.40570594148317, -0.03504713267927 ], [ 38.40570594148317, -0.030652601679267 ], [ 38.402532113483169, -0.029065687679238 ], [ 38.4007010584832, -0.026074964679256 ], [ 38.401921761483202, -0.018567640679239 ], [ 38.398137582483166, -0.017835218679241 ], [ 38.39453650748316, -0.015882093679241 ], [ 38.393498910483167, -0.012281019679224 ], [ 38.390141976483157, -0.009778578679234 ], [ 38.387944711483208, -0.007764418679246 ], [ 38.384892953483181, -0.006177504679217 ], [ 38.380742562483185, -0.00556715267925 ], [ 38.37891150748316, -0.003369886679254 ], [ 38.378728402483198, 0.000231187320762 ], [ 38.376897347483172, 0.002428452320769 ], [ 38.37390662548318, 0.002855699320773 ], [ 38.370305550483174, 0.004259507320737 ], [ 38.36914588248316, 0.008470933320777 ], [ 38.366521371483195, 0.011217515320763 ], [ 38.36273719148317, 0.013475816320747 ], [ 38.359746468483188, 0.015856187320762 ], [ 38.35632850048318, 0.019030015320763 ], [ 38.354741586483208, 0.024034898320733 ], [ 38.354131234483184, 0.028063218320765 ], [ 38.3577323084832, 0.03526536732073 ], [ 38.352117074483196, 0.038622300320751 ], [ 38.349309457483166, 0.040636460320738 ], [ 38.34570838248316, 0.040819566320747 ], [ 38.344731820483155, 0.044054429320736 ], [ 38.34711219148317, 0.04802171432078 ], [ 38.346318734483184, 0.051439683320777 ], [ 38.348088754483165, 0.054064195320732 ], [ 38.349736703483181, 0.057054917320781 ], [ 38.346318734483184, 0.058824937320762 ], [ 38.3421073084832, 0.058641831320754 ], [ 38.338689339483203, 0.060045640320763 ], [ 38.341130746483195, 0.062853257320737 ], [ 38.339910043483194, 0.065660874320767 ], [ 38.335515511483202, 0.068041246320772 ], [ 38.329900277483198, 0.069261949320773 ], [ 38.326116097483172, 0.071642320320732 ], [ 38.323735726483157, 0.07646409732075 ], [ 38.325688851483157, 0.081468980320776 ], [ 38.326543343483188, 0.085070054320736 ], [ 38.328740609483184, 0.089220445320732 ], [ 38.32813025748316, 0.093248765320763 ], [ 38.320500863483169, 0.097216050320751 ], [ 38.318730843483188, 0.104418199320773 ], [ 38.314519418483194, 0.106066148320733 ], [ 38.309087289483152, 0.107653062320762 ], [ 38.307317269483171, 0.112841050320751 ], [ 38.305303109483184, 0.117418687320762 ], [ 38.305486214483203, 0.12224046432078 ], [ 38.306340707483166, 0.126818101320734 ], [ 38.304936898483156, 0.134630601320734 ], [ 38.303716195483155, 0.13786546432078 ], [ 38.303105843483188, 0.140673081320754 ], [ 38.301702035483167, 0.143236558320777 ], [ 38.300298226483157, 0.147264878320752 ], [ 38.299321664483152, 0.152819077320769 ], [ 38.296941293483194, 0.157274644320748 ], [ 38.292912972483172, 0.159471910320744 ], [ 38.28711463248316, 0.163072984320761 ], [ 38.284734261483202, 0.167833726320734 ], [ 38.281926644483171, 0.170641343320765 ], [ 38.278508675483174, 0.172228257320737 ], [ 38.274541390483186, 0.17466966332074 ], [ 38.27094031648317, 0.17607347232075 ], [ 38.267705453483181, 0.179064195320732 ], [ 38.264287484483184, 0.182665269320748 ], [ 38.262700570483155, 0.189623277320775 ], [ 38.259526742483153, 0.191027085320738 ], [ 38.256291879483165, 0.194628160320744 ], [ 38.253301156483182, 0.197435777320775 ], [ 38.249700082483166, 0.199816148320733 ], [ 38.24609900748316, 0.20323411732073 ], [ 38.2424979334832, 0.204821031320759 ], [ 38.239507211483208, 0.204637925320751 ], [ 38.23773719148317, 0.207262437320762 ], [ 38.234929574483196, 0.210619370320783 ], [ 38.232121957483166, 0.212023179320736 ], [ 38.229314339483203, 0.21403733932078 ], [ 38.225102914483152, 0.21403733932078 ], [ 38.220891488483169, 0.215258042320781 ], [ 38.213323129483165, 0.220262925320751 ], [ 38.200688851483157, 0.223863999320767 ], [ 38.196294320483155, 0.22667161732073 ], [ 38.193303597483172, 0.231066148320733 ], [ 38.192327035483167, 0.241869370320783 ], [ 38.192937386483202, 0.247850816320747 ], [ 38.194524300483174, 0.285021226320734 ], [ 38.196111214483203, 0.299242417320781 ], [ 38.196294320483155, 0.319628160320744 ], [ 38.188115609483184, 0.323229234320761 ], [ 38.177129281483182, 0.32841722232075 ], [ 38.175298226483157, 0.331652085320738 ], [ 38.16351844148317, 0.366442124320767 ], [ 38.161687386483202, 0.371019761320779 ], [ 38.159917367483153, 0.376634995320783 ], [ 38.144109261483202, 0.421862046320766 ], [ 38.137090218483188, 0.442430894320748 ], [ 38.133733285483167, 0.45341722232075 ], [ 38.13031531648317, 0.461473863320746 ], [ 38.125737679483159, 0.474474351320734 ], [ 38.121343148483156, 0.487657945320732 ], [ 38.114507211483208, 0.506273667320781 ], [ 38.107915414483152, 0.525438706320754 ], [ 38.095098031483182, 0.561632554320736 ], [ 38.092290414483152, 0.57145921432078 ], [ 38.092534554483159, 0.57506028832074 ], [ 38.089116586483208, 0.581652085320738 ], [ 38.080510629483165, 0.610826890320763 ], [ 38.077092660483167, 0.621630113320746 ], [ 38.07312537548318, 0.635851304320736 ], [ 38.067327035483167, 0.655016343320765 ], [ 38.063725961483208, 0.669847886320779 ], [ 38.043340218483188, 0.659655015320763 ], [ 38.008733285483167, 0.644030015320763 ], [ 37.991704476483157, 0.635851304320736 ], [ 37.928899300483174, 0.607469956320754 ], [ 37.900945199483196, 0.594469468320765 ], [ 37.889897836483151, 0.589464585320738 ], [ 37.877324593483188, 0.584032456320754 ], [ 37.841741097483172, 0.567430894320748 ], [ 37.83148719148317, 0.563036363320746 ], [ 37.826909554483159, 0.56065599232073 ], [ 37.769902718483188, 0.541246812320762 ], [ 37.749944222483172, 0.534655015320763 ], [ 37.747319711483151, 0.533434312320762 ], [ 37.6995291834832, 0.516649644320748 ], [ 37.642339242483153, 0.49724046432078 ], [ 37.634892953483181, 0.494860093320765 ], [ 37.597905648483156, 0.481859605320776 ], [ 37.588506234483184, 0.479051988320746 ], [ 37.586919320483155, 0.47545091332074 ], [ 37.586492074483196, 0.470629136320779 ], [ 37.585088265483186, 0.465441148320733 ], [ 37.583135140483186, 0.462267320320732 ], [ 37.5823416834832, 0.458238999320767 ], [ 37.582097543483194, 0.449816148320733 ], [ 37.5823416834832, 0.445848863320746 ], [ 37.581731332483166, 0.435045640320763 ], [ 37.581914437483185, 0.430040756320748 ], [ 37.5823416834832, 0.426439683320777 ], [ 37.581914437483185, 0.419237535320744 ], [ 37.582097543483194, 0.415819566320747 ], [ 37.583135140483186, 0.412462632320737 ], [ 37.583135140483186, 0.40904466332074 ], [ 37.583745492483153, 0.405626695320732 ], [ 37.585332406483182, 0.402819077320769 ], [ 37.58594275748316, 0.399218003320752 ], [ 37.598332894483171, 0.400438706320754 ], [ 37.605535043483194, 0.351427476320734 ], [ 37.600102914483152, 0.346422593320765 ], [ 37.597905648483156, 0.343431870320783 ], [ 37.593328011483202, 0.338060777320775 ], [ 37.5823416834832, 0.32646409732075 ], [ 37.579289925483174, 0.326219956320754 ], [ 37.572942269483171, 0.326647202320769 ], [ 37.567510140483186, 0.32646409732075 ], [ 37.55609656648317, 0.326647202320769 ], [ 37.555120004483165, 0.323229234320761 ], [ 37.552922738483169, 0.321031968320765 ], [ 37.550908578483181, 0.317858140320763 ], [ 37.549504769483171, 0.313829820320732 ], [ 37.54773475048318, 0.310228745320783 ], [ 37.5491385584832, 0.305223863320746 ], [ 37.54968787548318, 0.300829331320754 ], [ 37.54968787548318, 0.297655503320752 ], [ 37.549932015483186, 0.294664781320759 ], [ 37.5491385584832, 0.291246812320762 ], [ 37.547490609483184, 0.287645738320746 ], [ 37.547307504483165, 0.283251206320754 ], [ 37.547917855483199, 0.279039781320759 ], [ 37.547124398483156, 0.275621812320762 ], [ 37.54492713248316, 0.273058335320738 ], [ 37.542912972483172, 0.269457261320779 ], [ 37.539311898483156, 0.26646653832074 ], [ 37.537297738483169, 0.26286546432078 ], [ 37.522527230483199, 0.265245835320738 ], [ 37.493901742483153, 0.273851792320781 ], [ 37.489507211483151, 0.274828355320776 ], [ 37.480718148483156, 0.27745286732073 ], [ 37.466313851483157, 0.281237046320766 ], [ 37.459538949483196, 0.284227769320748 ], [ 37.444707406483182, 0.290026109320761 ], [ 37.437139046483189, 0.29326097232075 ], [ 37.430730355483199, 0.295641343320765 ], [ 37.426518929483159, 0.295275132320737 ], [ 37.419133675483174, 0.29503099232073 ], [ 37.406743539483152, 0.294237535320744 ], [ 37.401494515483186, 0.292650620320783 ], [ 37.400517953483181, 0.282457749320767 ], [ 37.393743050483174, 0.27745286732073 ], [ 37.389714730483199, 0.274828355320776 ], [ 37.38672400748316, 0.274034898320733 ] ] ], [ [ [ 37.38672400748316, 0.274034898320733 ], [ 37.379338754483165, 0.26841966332074 ], [ 37.374516976483157, 0.270250718320765 ], [ 37.377324593483188, 0.272447984320761 ], [ 37.381291879483165, 0.273668687320762 ], [ 37.38672400748316, 0.274034898320733 ] ] ] ] } } +, +{ "type": "Feature", "id": 12, "properties": { "OBJECTID": 13, "ID_": 2633, "COUNTY_NAM": "MERU", "CONST_CODE": 56, "CONSTITUEN": "NORTH IMENTI", "COUNTY_COD": 12, "Shape_Leng": 4.20468088307, "Shape_Area": 0.56801994331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.144109261483202, 0.421862046320766 ], [ 38.159917367483153, 0.376634995320783 ], [ 38.161687386483202, 0.371019761320779 ], [ 38.162908089483203, 0.366442124320767 ], [ 38.1663260584832, 0.356676499320767 ], [ 38.167729867483153, 0.353868882320737 ], [ 38.176518929483159, 0.32823411732073 ], [ 38.196294320483155, 0.319628160320744 ], [ 38.194524300483174, 0.285021226320734 ], [ 38.192937386483202, 0.247850816320747 ], [ 38.192327035483167, 0.241869370320783 ], [ 38.193303597483172, 0.231066148320733 ], [ 38.196294320483155, 0.22667161732073 ], [ 38.200688851483157, 0.223863999320767 ], [ 38.213323129483165, 0.220262925320751 ], [ 38.220891488483169, 0.215258042320781 ], [ 38.225286019483171, 0.21403733932078 ], [ 38.230107796483189, 0.21403733932078 ], [ 38.236699593483188, 0.208849351320734 ], [ 38.23914100048318, 0.205248277320775 ], [ 38.2424979334832, 0.204821031320759 ], [ 38.24609900748316, 0.20323411732073 ], [ 38.249700082483166, 0.199816148320733 ], [ 38.253301156483182, 0.197435777320775 ], [ 38.256291879483165, 0.194628160320744 ], [ 38.259526742483153, 0.191027085320738 ], [ 38.262517464483203, 0.189867417320781 ], [ 38.264287484483184, 0.182665269320748 ], [ 38.267095101483157, 0.179430406320759 ], [ 38.270513070483155, 0.176439683320777 ], [ 38.277287972483172, 0.173448960320738 ], [ 38.28070594148317, 0.17106858932078 ], [ 38.284734261483202, 0.167833726320734 ], [ 38.288091195483155, 0.162462632320737 ], [ 38.291936410483167, 0.160021226320734 ], [ 38.296941293483194, 0.157274644320748 ], [ 38.2991385584832, 0.153673570320732 ], [ 38.300542367483153, 0.145861070320732 ], [ 38.301702035483167, 0.143236558320777 ], [ 38.303105843483188, 0.140673081320754 ], [ 38.303716195483155, 0.13786546432078 ], [ 38.304936898483156, 0.134630601320734 ], [ 38.306340707483166, 0.126818101320734 ], [ 38.305486214483203, 0.12224046432078 ], [ 38.305303109483184, 0.117418687320762 ], [ 38.307317269483171, 0.113268296320766 ], [ 38.309087289483152, 0.107653062320762 ], [ 38.314519418483194, 0.106066148320733 ], [ 38.318730843483188, 0.104418199320773 ], [ 38.320500863483169, 0.097216050320751 ], [ 38.32813025748316, 0.093248765320763 ], [ 38.328740609483184, 0.089220445320732 ], [ 38.324895394483171, 0.087023179320736 ], [ 38.326299203483181, 0.083422105320776 ], [ 38.325322640483186, 0.080248277320775 ], [ 38.323735726483157, 0.07646409732075 ], [ 38.326116097483172, 0.071642320320732 ], [ 38.329900277483198, 0.069261949320773 ], [ 38.335515511483202, 0.068041246320772 ], [ 38.339910043483194, 0.065660874320767 ], [ 38.341130746483195, 0.062853257320737 ], [ 38.338689339483203, 0.060045640320763 ], [ 38.3421073084832, 0.058641831320754 ], [ 38.346318734483184, 0.058824937320762 ], [ 38.349736703483181, 0.056871812320762 ], [ 38.348088754483165, 0.054064195320732 ], [ 38.346318734483184, 0.051439683320777 ], [ 38.34711219148317, 0.04802171432078 ], [ 38.344731820483155, 0.044054429320736 ], [ 38.34570838248316, 0.040819566320747 ], [ 38.349309457483166, 0.040636460320738 ], [ 38.352117074483196, 0.038622300320751 ], [ 38.3577323084832, 0.03526536732073 ], [ 38.354131234483184, 0.028063218320765 ], [ 38.354741586483208, 0.024034898320733 ], [ 38.35632850048318, 0.019030015320763 ], [ 38.359746468483188, 0.015856187320762 ], [ 38.36273719148317, 0.013475816320747 ], [ 38.366521371483195, 0.011217515320763 ], [ 38.36914588248316, 0.008470933320777 ], [ 38.370305550483174, 0.004259507320737 ], [ 38.37390662548318, 0.002855699320773 ], [ 38.376897347483172, 0.002428452320769 ], [ 38.378728402483198, 0.000231187320762 ], [ 38.37891150748316, -0.003369886679254 ], [ 38.380742562483185, -0.00556715267925 ], [ 38.384892953483181, -0.006177504679217 ], [ 38.387944711483208, -0.007764418679246 ], [ 38.390141976483157, -0.009778578679234 ], [ 38.39453650748316, -0.012342054679268 ], [ 38.39453650748316, -0.015882093679241 ], [ 38.398137582483166, -0.017957289679262 ], [ 38.401738656483182, -0.019483168679246 ], [ 38.401128304483159, -0.022534925679227 ], [ 38.4007010584832, -0.026074964679256 ], [ 38.402532113483169, -0.029065687679238 ], [ 38.40570594148317, -0.030652601679267 ], [ 38.405889046483189, -0.038159925679227 ], [ 38.406743539483152, -0.041944105679252 ], [ 38.40710975048318, -0.04603346167926 ], [ 38.409917367483153, -0.047864515679239 ], [ 38.411504281483182, -0.050244886679254 ], [ 38.410893929483159, -0.053357679679268 ], [ 38.41351844148317, -0.054761488679221 ], [ 38.411687386483202, -0.058667738679221 ], [ 38.412541879483165, -0.063367445679264 ], [ 38.411321175483174, -0.066175062679238 ], [ 38.414128793483194, -0.068860609679237 ], [ 38.417729867483153, -0.06947096167926 ], [ 38.41992713248316, -0.071363050679227 ], [ 38.417302621483195, -0.074658949679249 ], [ 38.413945687483185, -0.076551039679262 ], [ 38.409490121483195, -0.077954847679225 ], [ 38.405095589483203, -0.078565199679249 ], [ 38.400945199483196, -0.077771742679263 ], [ 38.39648963248316, -0.07606275767927 ], [ 38.3928885584832, -0.076673109679237 ], [ 38.391728890483186, -0.079480726679267 ], [ 38.391301644483171, -0.082654554679268 ], [ 38.389287484483184, -0.085767347679225 ], [ 38.387090218483188, -0.087964613679221 ], [ 38.383916390483186, -0.089673597679225 ], [ 38.380742562483185, -0.087842543679246 ], [ 38.378545296483189, -0.084546644679224 ], [ 38.375493539483152, -0.083264906679235 ], [ 38.372136605483199, -0.08283766067922 ], [ 38.368901742483153, -0.081433851679267 ], [ 38.365911019483171, -0.079358656679235 ], [ 38.363530648483156, -0.076673109679237 ], [ 38.356511605483199, -0.07197340267925 ], [ 38.353337777483198, -0.069654066679223 ], [ 38.350102914483152, -0.066968519679224 ], [ 38.346929086483208, -0.06525953567922 ], [ 38.343144906483182, -0.064649183679253 ], [ 38.338506234483184, -0.065381605679252 ], [ 38.334905160483167, -0.068555433679253 ], [ 38.331731332483166, -0.070752699679249 ], [ 38.328313363483169, -0.070081312679238 ], [ 38.325505746483195, -0.067884047679231 ], [ 38.322942269483171, -0.06416090267925 ], [ 38.318486703483181, -0.059949476679267 ], [ 38.31531287548318, -0.057263929679268 ], [ 38.311711800483174, -0.055432875679233 ], [ 38.306706918483194, -0.056958753679228 ], [ 38.301946175483174, -0.055066664679262 ], [ 38.303105843483188, -0.051282484679237 ], [ 38.302495492483153, -0.04768141067922 ], [ 38.299321664483152, -0.045545179679268 ], [ 38.297124398483156, -0.041638929679268 ], [ 38.294316781483182, -0.040967543679246 ], [ 38.292119515483186, -0.038831312679238 ], [ 38.28992225048318, -0.03205641067922 ], [ 38.286321175483174, -0.029065687679238 ], [ 38.282720101483157, -0.026868422679231 ], [ 38.278935921483189, -0.026258070679264 ], [ 38.273686898483156, -0.024365980679252 ], [ 38.270085824483196, -0.02424391067922 ], [ 38.267339242483153, -0.022229750679233 ], [ 38.264714730483199, -0.020764906679235 ], [ 38.261540902483198, -0.021253187679238 ], [ 38.25531531648317, -0.019544203679234 ], [ 38.251103890483186, -0.019849379679217 ], [ 38.24890662548318, -0.022046644679224 ], [ 38.246709359483184, -0.023938734679237 ], [ 38.243901742483153, -0.021863539679262 ], [ 38.241338265483186, -0.019483168679246 ], [ 38.238530648483156, -0.017530043679246 ], [ 38.237920296483189, -0.013928968679241 ], [ 38.235112679483159, -0.012952406679235 ], [ 38.23132850048318, -0.012158949679249 ], [ 38.230535043483194, -0.009351332679219 ], [ 38.22992469148317, -0.002576429679268 ], [ 38.227727425483174, 0.000658433320777 ], [ 38.223088754483165, 0.00224534732075 ], [ 38.222905648483156, 0.005663316320747 ], [ 38.221929086483208, 0.008837144320748 ], [ 38.218511117483153, 0.010851304320736 ], [ 38.215520394483171, 0.010851304320736 ], [ 38.211736214483203, 0.011644761320779 ], [ 38.2092948084832, 0.014025132320737 ], [ 38.205510629483165, 0.015062730320776 ], [ 38.201909554483159, 0.013475816320747 ], [ 38.195928109483184, 0.012255113320746 ], [ 38.192327035483167, 0.01182786732073 ], [ 38.190129769483171, 0.013842027320775 ], [ 38.187139046483189, 0.014452378320752 ], [ 38.182744515483186, 0.01646653832074 ], [ 38.179936898483156, 0.01964036732073 ], [ 38.176518929483159, 0.021654527320775 ], [ 38.171086800483174, 0.02263108932078 ], [ 38.167119515483186, 0.023668687320762 ], [ 38.163701546483189, 0.024218003320752 ], [ 38.160344613483169, 0.025865952320769 ], [ 38.158696664483152, 0.028856675320751 ], [ 38.153508675483174, 0.032030503320752 ], [ 38.148320687483185, 0.036425035320744 ], [ 38.14648963248316, 0.038866441320747 ], [ 38.144292367483153, 0.040819566320747 ], [ 38.141301644483171, 0.04326097232075 ], [ 38.137334359483184, 0.045824449320773 ], [ 38.132939828483181, 0.047228257320737 ], [ 38.12891150748316, 0.048265855320776 ], [ 38.1253104334832, 0.047655503320752 ], [ 38.121343148483156, 0.047472398320733 ], [ 38.117742074483196, 0.049425523320733 ], [ 38.115300668483194, 0.052233140320763 ], [ 38.111943734483184, 0.05162278832074 ], [ 38.110295785483167, 0.048876206320754 ], [ 38.106511605483199, 0.04606858932078 ], [ 38.101689828483181, 0.04606858932078 ], [ 38.096745980483199, 0.045275132320737 ], [ 38.093511117483153, 0.041429917320781 ], [ 38.089116586483208, 0.038072984320761 ], [ 38.085088265483186, 0.030870835320738 ], [ 38.083135140483186, 0.027025620320783 ], [ 38.07953406648317, 0.028246324320773 ], [ 38.075505746483195, 0.029039781320759 ], [ 38.07312537548318, 0.025072495320783 ], [ 38.069097054483159, 0.02263108932078 ], [ 38.063115609483184, 0.024034898320733 ], [ 38.060124886483202, 0.021837632320737 ], [ 38.057134164483152, 0.02263108932078 ], [ 38.053105843483188, 0.025438706320754 ], [ 38.04968787548318, 0.024034898320733 ], [ 38.046941293483194, 0.025865952320769 ], [ 38.044744027483198, 0.023851792320781 ], [ 38.041509164483152, 0.027269761320779 ], [ 38.039311898483156, 0.030016343320765 ], [ 38.036931527483198, 0.032640855320776 ], [ 38.034734261483202, 0.036241929320736 ], [ 38.034123910483167, 0.040819566320747 ], [ 38.031743539483152, 0.042833726320734 ], [ 38.030095589483203, 0.045641343320765 ], [ 38.027532113483169, 0.049242417320781 ], [ 38.024114144483171, 0.049242417320781 ], [ 38.02094031648317, 0.052233140320763 ], [ 38.018926156483182, 0.056444566320747 ], [ 38.014897836483151, 0.058031480320776 ], [ 38.009892953483181, 0.06065599232073 ], [ 38.004704964483203, 0.061266343320765 ], [ 38.000920785483167, 0.061449449320773 ], [ 37.999333871483195, 0.063829820320732 ], [ 37.995732796483189, 0.065416734320761 ], [ 37.991521371483195, 0.064623277320775 ], [ 37.988103402483198, 0.063219468320765 ], [ 37.982488168483194, 0.064623277320775 ], [ 37.987920296483189, 0.042223374320767 ], [ 37.981938851483157, 0.04185716332074 ], [ 37.979131234483184, 0.043627183320777 ], [ 37.975713265483186, 0.046617906320759 ], [ 37.972905648483156, 0.048448960320738 ], [ 37.970525277483198, 0.052233140320763 ], [ 37.966313852483204, 0.05284349232073 ], [ 37.962102425483174, 0.051439683320777 ], [ 37.958501351483157, 0.049852769320748 ], [ 37.953740609483184, 0.050463120320783 ], [ 37.945500863483169, 0.045824449320773 ], [ 37.939519418483194, 0.039843003320752 ], [ 37.925298226483157, 0.029222886320779 ], [ 37.92273475048318, 0.025072495320783 ], [ 37.919499886483202, 0.023241441320747 ], [ 37.915898812483185, 0.020433824320773 ], [ 37.913335336483151, 0.016649644320748 ], [ 37.910710824483196, 0.014269273320733 ], [ 37.906926644483171, 0.01286546432078 ], [ 37.899907601483157, 0.011034410320744 ], [ 37.895513070483155, 0.010424058320777 ], [ 37.890141976483157, 0.006822984320761 ], [ 37.888921273483156, 0.00224534732075 ], [ 37.890141976483157, -0.001355726679267 ], [ 37.893743050483174, -0.003858168679246 ], [ 37.896733773483156, -0.006360609679237 ], [ 37.900334847483172, -0.006055433679253 ], [ 37.90430213248316, -0.005261976679267 ], [ 37.914495004483165, -0.002759534679231 ], [ 37.920110238483169, -0.001782972679225 ], [ 37.924504769483171, -0.000745375679233 ], [ 37.92914344148317, 0.000658433320777 ], [ 37.933293832483166, -0.000928480679252 ], [ 37.935307992483153, -0.004468519679224 ], [ 37.932134164483152, -0.006177504679217 ], [ 37.92914344148317, -0.008863050679227 ], [ 37.92773963248316, -0.012281019679224 ], [ 37.928899300483174, -0.014966566679223 ], [ 37.927129281483182, -0.018445570679264 ], [ 37.924321664483152, -0.024732191679223 ], [ 37.923528207483166, -0.030164320679264 ], [ 37.925725472483172, -0.034558851679267 ], [ 37.928105843483188, -0.036328871679248 ], [ 37.930913461483151, -0.037549574679249 ], [ 37.934331429483159, -0.037732679679268 ], [ 37.936894906483182, -0.04017408667926 ], [ 37.937932504483165, -0.044141371679248 ], [ 37.93750525748316, -0.047254164679262 ], [ 37.936711800483174, -0.050366957679219 ], [ 37.937322152483198, -0.053174574679249 ], [ 37.937322152483198, -0.057263929679268 ], [ 37.934941781483182, -0.060742933679253 ], [ 37.932927621483195, -0.065137464679256 ], [ 37.9260916834832, -0.072278578679234 ], [ 37.920903695483155, -0.078565199679249 ], [ 37.915288461483151, -0.084729750679233 ], [ 37.911504281483182, -0.089673597679225 ], [ 37.886907113483169, -0.114636976679267 ], [ 37.875127328483181, -0.126966078679234 ], [ 37.871892464483203, -0.130139906679235 ], [ 37.867314828483181, -0.132276136679254 ], [ 37.865727914483152, -0.135449964679256 ], [ 37.850530160483167, -0.148450453679234 ], [ 37.843144906483182, -0.154431898679266 ], [ 37.837529671483189, -0.159436781679235 ], [ 37.830144418483194, -0.165357191679223 ], [ 37.825139535483167, -0.169141371679248 ], [ 37.818486703483181, -0.174756605679252 ], [ 37.806340707483166, -0.184583265679239 ], [ 37.803716195483155, -0.185742933679253 ], [ 37.7991385584832, -0.188367445679264 ], [ 37.795720589483203, -0.189282972679225 ], [ 37.796514046483189, -0.186170179679268 ], [ 37.797124398483156, -0.182935316679223 ], [ 37.797307504483165, -0.179029066679223 ], [ 37.794133675483174, -0.175977308679253 ], [ 37.791692269483171, -0.17103346167926 ], [ 37.786504281483182, -0.167432386679254 ], [ 37.784490121483195, -0.165235121679248 ], [ 37.77930213248316, -0.162549574679249 ], [ 37.772710336483151, -0.160657484679237 ], [ 37.768743050483174, -0.158765394679224 ], [ 37.764897836483151, -0.16096266067922 ], [ 37.76312781648317, -0.16517408667926 ], [ 37.761113656483182, -0.167981703679234 ], [ 37.759343636483202, -0.172132093679241 ], [ 37.756902230483199, -0.175366957679219 ], [ 37.755742562483185, -0.179456312679238 ], [ 37.75391150748316, -0.18275221167926 ], [ 37.751286996483195, -0.186841566679223 ], [ 37.748540414483152, -0.189832289679262 ], [ 37.745732796483189, -0.191052992679263 ], [ 37.742742074483196, -0.192029554679268 ], [ 37.738530648483156, -0.194531996679248 ], [ 37.734746468483188, -0.198255140679239 ], [ 37.730901254483165, -0.201551039679262 ], [ 37.726506722483172, -0.202771742679263 ], [ 37.723699105483199, -0.204358656679235 ], [ 37.720525277483198, -0.20496900767927 ], [ 37.716313851483157, -0.204480726679267 ], [ 37.710698617483153, -0.204480726679267 ], [ 37.707097543483194, -0.204663832679219 ], [ 37.702092660483167, -0.205335218679241 ], [ 37.697331918483194, -0.205579359679237 ], [ 37.694524300483174, -0.206555922679231 ], [ 37.690740121483195, -0.206067640679239 ], [ 37.687139046483189, -0.206861097679225 ], [ 37.683293832483166, -0.209363539679262 ], [ 37.677312386483202, -0.20887525767927 ], [ 37.673528207483166, -0.209180433679253 ], [ 37.66992713248316, -0.209058363679221 ], [ 37.666936410483167, -0.20783766067922 ], [ 37.663945687483185, -0.210462172679231 ], [ 37.660344613483169, -0.211438734679237 ], [ 37.656133187483185, -0.212232191679223 ], [ 37.652898324483196, -0.215161879679217 ], [ 37.644719613483169, -0.215467054679268 ], [ 37.641728890483186, -0.213880140679239 ], [ 37.639714730483199, -0.210156996679248 ], [ 37.636113656483182, -0.209241468679241 ], [ 37.631902230483199, -0.20887525767927 ], [ 37.624944222483172, -0.206677992679263 ], [ 37.620915902483198, -0.202771742679263 ], [ 37.616338265483186, -0.199475843679241 ], [ 37.61414100048318, -0.195447523679266 ], [ 37.61133338248316, -0.196240980679252 ], [ 37.608342660483167, -0.196363050679227 ], [ 37.605107796483189, -0.196851332679219 ], [ 37.600713265483186, -0.195142347679225 ], [ 37.597905648483156, -0.193372328679234 ], [ 37.594487679483159, -0.192273695679264 ], [ 37.591313851483157, -0.189832289679262 ], [ 37.590093148483156, -0.186963636679254 ], [ 37.586919320483155, -0.184766371679248 ], [ 37.581731332483166, -0.183240492679263 ], [ 37.491521371483195, -0.174329359679237 ], [ 37.398686898483156, -0.164075453679234 ], [ 37.308537972483172, -0.15205152767925 ], [ 37.180486214483203, -0.06806715267925 ], [ 37.173894418483194, -0.063550550679227 ], [ 37.161687386483202, -0.055738050679227 ], [ 37.140691293483194, -0.041883070679264 ], [ 37.13672400748316, -0.03877027767925 ], [ 37.133306039483152, -0.035230238679221 ], [ 37.132939828483181, -0.03114088267927 ], [ 37.130742562483185, -0.028943617679263 ], [ 37.123113168483194, -0.022840101679267 ], [ 37.117131722483172, -0.016980726679267 ], [ 37.113530648483156, -0.013928968679241 ], [ 37.11133338248316, -0.010938246679248 ], [ 37.109929574483196, -0.007581312679238 ], [ 37.107488168483194, -0.000928480679252 ], [ 37.10492469148317, 0.001268785320744 ], [ 37.101689828483181, 0.007860581320754 ], [ 37.099126351483157, 0.010424058320777 ], [ 37.096929086483151, 0.013231675320751 ], [ 37.093694222483172, 0.016649644320748 ], [ 37.09070350048318, 0.020433824320773 ], [ 37.094121468483188, 0.023668687320762 ], [ 37.095891488483169, 0.026476304320736 ], [ 37.105290902483198, 0.033251206320754 ], [ 37.109319222483172, 0.035875718320765 ], [ 37.1253104334832, 0.036241929320736 ], [ 37.128545296483189, 0.035631577320769 ], [ 37.131536019483171, 0.036669175320751 ], [ 37.136113656483182, 0.037828843320765 ], [ 37.140325082483166, 0.039232652320775 ], [ 37.1428885584832, 0.041674058320777 ], [ 37.148137582483166, 0.042223374320767 ], [ 37.1507010584832, 0.044847886320779 ], [ 37.152287972483172, 0.047655503320752 ], [ 37.156133187483185, 0.049059312320762 ], [ 37.159123910483167, 0.049425523320733 ], [ 37.1663260584832, 0.050829331320754 ], [ 37.17133094148317, 0.053453843320765 ], [ 37.176335824483196, 0.054247300320751 ], [ 37.180120004483165, 0.054430406320759 ], [ 37.188298714483203, 0.055223863320746 ], [ 37.192510140483186, 0.056871812320762 ], [ 37.195745004483165, 0.058458726320734 ], [ 37.1995291834832, 0.06083909732075 ], [ 37.202519906483182, 0.060045640320763 ], [ 37.202703011483202, 0.064440171320766 ], [ 37.205144418483194, 0.066027085320738 ], [ 37.208501351483157, 0.067064683320777 ], [ 37.21094275748316, 0.068834702320769 ], [ 37.214726937483185, 0.07042161732073 ], [ 37.219487679483159, 0.070848863320746 ], [ 37.223332894483171, 0.072618882320737 ], [ 37.230718148483156, 0.076647202320769 ], [ 37.233098519483171, 0.079027574320773 ], [ 37.233342660483167, 0.084642808320777 ], [ 37.234502328483181, 0.098070542320781 ], [ 37.235723031483182, 0.102037827320769 ], [ 37.242742074483196, 0.10466233932078 ], [ 37.245732796483189, 0.106066148320733 ], [ 37.248540414483152, 0.104845445320732 ], [ 37.250493539483152, 0.100023667320781 ], [ 37.253118050483174, 0.094225327320769 ], [ 37.255742562483185, 0.098619859320761 ], [ 37.2581229334832, 0.102037827320769 ], [ 37.260503304483159, 0.106066148320733 ], [ 37.262700570483155, 0.10826341332074 ], [ 37.264897836483151, 0.11143724232073 ], [ 37.281499398483156, 0.127428452320769 ], [ 37.281316293483194, 0.137072007320737 ], [ 37.282536996483195, 0.140673081320754 ], [ 37.283330453483181, 0.145250718320765 ], [ 37.283086312483185, 0.149462144320748 ], [ 37.284917367483153, 0.152025620320783 ], [ 37.287297738483169, 0.154833238320746 ], [ 37.295537484483184, 0.163072984320761 ], [ 37.301702035483167, 0.167467515320763 ], [ 37.304509652483198, 0.168016831320754 ], [ 37.305730355483199, 0.171251695320732 ], [ 37.308110726483157, 0.174425523320733 ], [ 37.314702523483156, 0.178453843320765 ], [ 37.319341195483155, 0.180223863320746 ], [ 37.323735726483157, 0.18083421432078 ], [ 37.333745492483153, 0.178636949320773 ], [ 37.336125863483169, 0.180468003320752 ], [ 37.339543832483166, 0.18083421432078 ], [ 37.341496957483166, 0.183031480320776 ], [ 37.340520394483171, 0.186266343320765 ], [ 37.338323129483165, 0.190843980320776 ], [ 37.343511117483153, 0.191454331320754 ], [ 37.348699105483199, 0.194017808320777 ], [ 37.349309457483166, 0.199266831320754 ], [ 37.348943246483195, 0.20427171432078 ], [ 37.350530160483167, 0.209032456320754 ], [ 37.353093636483202, 0.214220445320732 ], [ 37.355535043483194, 0.217821519320748 ], [ 37.35632850048318, 0.221422593320765 ], [ 37.355535043483194, 0.224230210320738 ], [ 37.3577323084832, 0.227648179320736 ], [ 37.358525765483186, 0.231066148320733 ], [ 37.357915414483152, 0.235033433320777 ], [ 37.361943734483184, 0.23662034732075 ], [ 37.36414100048318, 0.239061753320752 ], [ 37.365300668483194, 0.243822495320783 ], [ 37.366704476483157, 0.24724046432078 ], [ 37.362920296483189, 0.249071519320748 ], [ 37.360723031483182, 0.25084153832074 ], [ 37.36133338248316, 0.253649156320759 ], [ 37.363896859483184, 0.25505296432078 ], [ 37.365300668483194, 0.257860581320754 ], [ 37.367925179483159, 0.260240952320769 ], [ 37.371892464483203, 0.26286546432078 ], [ 37.374516976483157, 0.26841966332074 ], [ 37.378301156483182, 0.268236558320777 ], [ 37.381108773483156, 0.268846910320744 ], [ 37.387334359483184, 0.273241441320747 ], [ 37.393743050483174, 0.27745286732073 ], [ 37.400517953483181, 0.282457749320767 ], [ 37.401494515483186, 0.292650620320783 ], [ 37.406743539483152, 0.294237535320744 ], [ 37.419744027483198, 0.294420640320763 ], [ 37.426518929483159, 0.295275132320737 ], [ 37.430730355483199, 0.295641343320765 ], [ 37.437139046483189, 0.29326097232075 ], [ 37.444707406483182, 0.290026109320761 ], [ 37.459538949483196, 0.284227769320748 ], [ 37.466313851483157, 0.281237046320766 ], [ 37.480718148483156, 0.27745286732073 ], [ 37.489507211483151, 0.274828355320776 ], [ 37.493901742483153, 0.273851792320781 ], [ 37.522527230483199, 0.265245835320738 ], [ 37.536504281483182, 0.25987474232073 ], [ 37.537908089483203, 0.264635484320761 ], [ 37.540288461483151, 0.267259995320783 ], [ 37.542912972483172, 0.269457261320779 ], [ 37.54492713248316, 0.273058335320738 ], [ 37.547124398483156, 0.275621812320762 ], [ 37.547917855483199, 0.278856675320751 ], [ 37.547490609483184, 0.282823960320738 ], [ 37.54773475048318, 0.287462632320737 ], [ 37.5491385584832, 0.291246812320762 ], [ 37.549932015483186, 0.294664781320759 ], [ 37.54968787548318, 0.297655503320752 ], [ 37.549504769483171, 0.304247300320751 ], [ 37.54773475048318, 0.308275620320783 ], [ 37.547917855483199, 0.311449449320773 ], [ 37.549504769483171, 0.314073960320738 ], [ 37.550908578483181, 0.317858140320763 ], [ 37.552922738483169, 0.321276109320761 ], [ 37.555120004483165, 0.323229234320761 ], [ 37.555913461483151, 0.326036851320734 ], [ 37.567510140483186, 0.32646409732075 ], [ 37.57312537548318, 0.32646409732075 ], [ 37.579289925483174, 0.326219956320754 ], [ 37.5823416834832, 0.32646409732075 ], [ 37.588506234483184, 0.33287278832074 ], [ 37.594731820483155, 0.337267320320732 ], [ 37.597905648483156, 0.343431870320783 ], [ 37.605535043483194, 0.351427476320734 ], [ 37.599492562483185, 0.400438706320754 ], [ 37.59570838248316, 0.400438706320754 ], [ 37.585515511483202, 0.401842515320763 ], [ 37.583745492483153, 0.405626695320732 ], [ 37.58289100048318, 0.40904466332074 ], [ 37.583135140483186, 0.412462632320737 ], [ 37.582097543483194, 0.415819566320747 ], [ 37.581914437483185, 0.419237535320744 ], [ 37.5823416834832, 0.426439683320777 ], [ 37.581914437483185, 0.430040756320748 ], [ 37.581731332483166, 0.433824937320762 ], [ 37.581914437483185, 0.440233628320752 ], [ 37.582524789483152, 0.444628160320744 ], [ 37.582097543483194, 0.449816148320733 ], [ 37.5823416834832, 0.458238999320767 ], [ 37.583745492483153, 0.463243882320737 ], [ 37.585698617483153, 0.466417710320738 ], [ 37.586492074483196, 0.470629136320779 ], [ 37.587102425483174, 0.47667161732073 ], [ 37.589726937483185, 0.479051988320746 ], [ 37.634892953483181, 0.494860093320765 ], [ 37.642339242483153, 0.49724046432078 ], [ 37.648503793483194, 0.499437730320776 ], [ 37.655889046483189, 0.501634995320783 ], [ 37.673345101483157, 0.507860581320754 ], [ 37.6995291834832, 0.516649644320748 ], [ 37.705510629483165, 0.518846910320744 ], [ 37.718511117483153, 0.523241441320747 ], [ 37.726933968483188, 0.525255601320734 ], [ 37.748723519483171, 0.533861558320777 ], [ 37.770329964483203, 0.540453355320776 ], [ 37.795110238483169, 0.549852769320748 ], [ 37.826909554483159, 0.56065599232073 ], [ 37.83148719148317, 0.563036363320746 ], [ 37.841741097483172, 0.567430894320748 ], [ 37.889897836483151, 0.589464585320738 ], [ 37.902287972483172, 0.594225327320769 ], [ 37.92914344148317, 0.607225816320747 ], [ 37.951299203483181, 0.617662827320769 ], [ 37.95453406648317, 0.618273179320736 ], [ 38.008733285483167, 0.644030015320763 ], [ 38.015508187483185, 0.646837632320737 ], [ 38.063115609483184, 0.668627183320777 ], [ 38.07312537548318, 0.635851304320736 ], [ 38.077092660483167, 0.621630113320746 ], [ 38.080510629483165, 0.610826890320763 ], [ 38.089116586483208, 0.581652085320738 ], [ 38.092290414483152, 0.57145921432078 ], [ 38.095098031483182, 0.561632554320736 ], [ 38.107915414483152, 0.525438706320754 ], [ 38.114507211483208, 0.506273667320781 ], [ 38.121343148483156, 0.487657945320732 ], [ 38.125737679483159, 0.474474351320734 ], [ 38.13031531648317, 0.461473863320746 ], [ 38.132329476483157, 0.455065171320766 ], [ 38.137090218483188, 0.442430894320748 ], [ 38.144109261483202, 0.421862046320766 ] ] ] } } +, +{ "type": "Feature", "id": 13, "properties": { "OBJECTID": 14, "ID_": 3303, "COUNTY_NAM": "THARAKA - NITHI", "CONST_CODE": 60, "CONSTITUEN": "MAARA", "COUNTY_COD": 13, "Shape_Leng": 2.9883739317, "Shape_Area": 0.20962152815 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.99890662548318, 0.064440171320766 ], [ 38.000920785483167, 0.061632554320736 ], [ 38.009892953483181, 0.06065599232073 ], [ 38.014897836483151, 0.058031480320776 ], [ 38.018926156483182, 0.056444566320747 ], [ 38.02094031648317, 0.052233140320763 ], [ 38.024114144483171, 0.049242417320781 ], [ 38.027532113483169, 0.049242417320781 ], [ 38.030095589483203, 0.045641343320765 ], [ 38.031743539483152, 0.042833726320734 ], [ 38.034123910483167, 0.040819566320747 ], [ 38.034734261483202, 0.036241929320736 ], [ 38.036931527483198, 0.032640855320776 ], [ 38.039311898483156, 0.030016343320765 ], [ 38.041509164483152, 0.027269761320779 ], [ 38.045720589483203, 0.025438706320754 ], [ 38.04968787548318, 0.024034898320733 ], [ 38.053288949483196, 0.025255601320734 ], [ 38.057134164483152, 0.02263108932078 ], [ 38.060124886483202, 0.021837632320737 ], [ 38.063115609483184, 0.024462144320748 ], [ 38.07031775748316, 0.022020738320746 ], [ 38.07312537548318, 0.024828355320776 ], [ 38.073918832483166, 0.028673570320732 ], [ 38.076726449483196, 0.029467027320775 ], [ 38.07953406648317, 0.028246324320773 ], [ 38.083135140483186, 0.027025620320783 ], [ 38.085088265483186, 0.030870835320738 ], [ 38.089116586483208, 0.038072984320761 ], [ 38.093511117483153, 0.041429917320781 ], [ 38.095891488483169, 0.044847886320779 ], [ 38.099126351483157, 0.046251695320732 ], [ 38.102910531483182, 0.045641343320765 ], [ 38.106511605483199, 0.04606858932078 ], [ 38.110295785483167, 0.048876206320754 ], [ 38.111943734483184, 0.05162278832074 ], [ 38.115117562483185, 0.052233140320763 ], [ 38.117742074483196, 0.049425523320733 ], [ 38.121343148483156, 0.047472398320733 ], [ 38.1253104334832, 0.047655503320752 ], [ 38.12891150748316, 0.048265855320776 ], [ 38.132939828483181, 0.047228257320737 ], [ 38.137334359483184, 0.045824449320773 ], [ 38.141301644483171, 0.04326097232075 ], [ 38.144292367483153, 0.040819566320747 ], [ 38.14648963248316, 0.038866441320747 ], [ 38.148320687483185, 0.036425035320744 ], [ 38.150517953483181, 0.034471910320744 ], [ 38.153508675483174, 0.032030503320752 ], [ 38.156926644483171, 0.030260484320761 ], [ 38.159917367483153, 0.026842515320763 ], [ 38.163701546483189, 0.024218003320752 ], [ 38.167119515483186, 0.023668687320762 ], [ 38.171086800483174, 0.02263108932078 ], [ 38.176518929483159, 0.021654527320775 ], [ 38.179936898483156, 0.01964036732073 ], [ 38.182744515483186, 0.01646653832074 ], [ 38.187139046483189, 0.014452378320752 ], [ 38.190129769483171, 0.013842027320775 ], [ 38.192327035483167, 0.01182786732073 ], [ 38.195928109483184, 0.012255113320746 ], [ 38.198918832483166, 0.01286546432078 ], [ 38.20313025748316, 0.014025132320737 ], [ 38.20789100048318, 0.01481858932078 ], [ 38.211919320483155, 0.011644761320779 ], [ 38.215520394483171, 0.010851304320736 ], [ 38.218511117483153, 0.010851304320736 ], [ 38.221929086483208, 0.008837144320748 ], [ 38.222905648483156, 0.005663316320747 ], [ 38.223088754483165, 0.00224534732075 ], [ 38.228337777483198, 0.000475327320769 ], [ 38.22992469148317, -0.002576429679268 ], [ 38.230535043483194, -0.009351332679219 ], [ 38.23132850048318, -0.012158949679249 ], [ 38.235112679483159, -0.012952406679235 ], [ 38.237920296483189, -0.013928968679241 ], [ 38.238530648483156, -0.017530043679246 ], [ 38.241338265483186, -0.019483168679246 ], [ 38.243901742483153, -0.021863539679262 ], [ 38.246709359483184, -0.023938734679237 ], [ 38.24890662548318, -0.022046644679224 ], [ 38.251103890483186, -0.019849379679217 ], [ 38.25531531648317, -0.019544203679234 ], [ 38.261540902483198, -0.021253187679238 ], [ 38.264714730483199, -0.020764906679235 ], [ 38.267339242483153, -0.022229750679233 ], [ 38.270085824483196, -0.02424391067922 ], [ 38.273686898483156, -0.024365980679252 ], [ 38.278935921483189, -0.026258070679264 ], [ 38.282720101483157, -0.026868422679231 ], [ 38.286321175483174, -0.029065687679238 ], [ 38.28992225048318, -0.03205641067922 ], [ 38.290898812483185, -0.035230238679221 ], [ 38.292912972483172, -0.03986891067922 ], [ 38.297490609483184, -0.042554457679219 ], [ 38.2991385584832, -0.045850355679252 ], [ 38.302922738483169, -0.048474867679263 ], [ 38.303105843483188, -0.051831800679227 ], [ 38.301946175483174, -0.055066664679262 ], [ 38.305303109483184, -0.057080824679249 ], [ 38.309087289483152, -0.058179457679219 ], [ 38.306523812483185, -0.061048109679237 ], [ 38.304509652483198, -0.064038832679219 ], [ 38.30273963248316, -0.067578871679248 ], [ 38.301702035483167, -0.071851332679219 ], [ 38.2991385584832, -0.074964125679233 ], [ 38.295537484483184, -0.078382093679241 ], [ 38.291692269483171, -0.080762464679256 ], [ 38.289128793483194, -0.083448011679254 ], [ 38.288335336483208, -0.086560804679268 ], [ 38.286931527483198, -0.089368422679231 ], [ 38.282292855483199, -0.088758070679264 ], [ 38.277532113483169, -0.09065016067922 ], [ 38.275517953483181, -0.092969496679248 ], [ 38.27429725048318, -0.097180922679231 ], [ 38.271306527483198, -0.098950941679223 ], [ 38.268132699483196, -0.097730238679221 ], [ 38.26312781648317, -0.096753675679227 ], [ 38.259709847483172, -0.093762953679234 ], [ 38.254521859483184, -0.091138441679223 ], [ 38.251531136483202, -0.090467054679268 ], [ 38.247319711483208, -0.091260511679254 ], [ 38.243718636483202, -0.093946058679253 ], [ 38.239507211483208, -0.095655043679246 ], [ 38.235723031483182, -0.096936781679235 ], [ 38.231938851483157, -0.100354750679233 ], [ 38.22852088248316, -0.103955824679249 ], [ 38.224126351483157, -0.106336195679264 ], [ 38.220891488483169, -0.10926588267927 ], [ 38.219121468483188, -0.111951429679268 ], [ 38.216924203483181, -0.114575941679223 ], [ 38.214726937483185, -0.117566664679262 ], [ 38.213933480483199, -0.120435316679223 ], [ 38.213689339483203, -0.123548109679237 ], [ 38.212712777483198, -0.12806471167926 ], [ 38.208928597483172, -0.130139906679235 ], [ 38.2073416834832, -0.13447340267925 ], [ 38.206914437483185, -0.138745863679221 ], [ 38.207524789483152, -0.143750746679248 ], [ 38.20453406648317, -0.148267347679225 ], [ 38.199895394483171, -0.148755629679217 ], [ 38.196111214483203, -0.150464613679221 ], [ 38.194341195483155, -0.153943617679263 ], [ 38.189336312483185, -0.154248793679246 ], [ 38.185491097483172, -0.157178480679252 ], [ 38.186101449483196, -0.160230238679221 ], [ 38.185491097483172, -0.163831312679238 ], [ 38.185124886483202, -0.168347914679262 ], [ 38.185307992483153, -0.172254164679262 ], [ 38.185735238483169, -0.176648695679264 ], [ 38.185124886483202, -0.180066664679262 ], [ 38.184697640483186, -0.184461195679264 ], [ 38.184087289483152, -0.188672621679248 ], [ 38.183293832483166, -0.192334730679252 ], [ 38.182134164483152, -0.195447523679266 ], [ 38.179509652483198, -0.199536879679217 ], [ 38.172917855483199, -0.21204908667926 ], [ 38.168889535483167, -0.217542250679233 ], [ 38.1663260584832, -0.222058851679267 ], [ 38.163945687483185, -0.227857191679223 ], [ 38.164495004483165, -0.231336195679264 ], [ 38.164495004483165, -0.23518141067922 ], [ 38.162297738483169, -0.238477308679253 ], [ 38.159123910483167, -0.240674574679249 ], [ 38.154729379483165, -0.241773207679219 ], [ 38.150517953483181, -0.243482191679223 ], [ 38.146306528483187, -0.24207838267927 ], [ 38.1428885584832, -0.244336683679253 ], [ 38.140508187483185, -0.247266371679248 ], [ 38.139287484483184, -0.250684339679256 ], [ 38.138921273483156, -0.253858168679246 ], [ 38.136907113483169, -0.258740980679252 ], [ 38.13031531648317, -0.263135511679254 ], [ 38.128301156483182, -0.265760023679266 ], [ 38.126531136483202, -0.269666273679266 ], [ 38.123296273483156, -0.272168714679256 ], [ 38.119695199483196, -0.274365980679252 ], [ 38.116704476483157, -0.276563246679248 ], [ 38.114934457483166, -0.279065687679238 ], [ 38.106145394483171, -0.278638441679223 ], [ 38.103093636483202, -0.281873304679268 ], [ 38.099309457483166, -0.280652601679267 ], [ 38.095342171483189, -0.278882582679219 ], [ 38.090886605483199, -0.277173597679225 ], [ 38.086308968483188, -0.277173597679225 ], [ 38.08289100048318, -0.277356703679234 ], [ 38.079717171483189, -0.277173597679225 ], [ 38.076299203483181, -0.276441175679227 ], [ 38.072331918483194, -0.276563246679248 ], [ 38.068730843483188, -0.277356703679234 ], [ 38.065129769483171, -0.277173597679225 ], [ 38.058110726483157, -0.277967054679268 ], [ 38.053716195483155, -0.278272230679252 ], [ 38.0491385584832, -0.278333265679239 ], [ 38.044744027483198, -0.277967054679268 ], [ 38.03711463248316, -0.276136000679233 ], [ 38.032536996483195, -0.275342543679246 ], [ 38.029546273483156, -0.272046644679224 ], [ 38.024114144483171, -0.269544203679234 ], [ 38.019902718483188, -0.26923902767925 ], [ 38.016545785483167, -0.26923902767925 ], [ 38.012090218483188, -0.268872816679223 ], [ 38.003301156483182, -0.267041761679254 ], [ 37.999700082483166, -0.26746900767927 ], [ 37.996892464483203, -0.269971449679249 ], [ 37.993901742483153, -0.277967054679268 ], [ 37.993535531483182, -0.286145765679239 ], [ 37.992925179483159, -0.289441664679262 ], [ 37.990300668483194, -0.292554457679219 ], [ 37.987309945483155, -0.296643812679238 ], [ 37.985112679483159, -0.300061781679235 ], [ 37.983708871483195, -0.304883558679253 ], [ 37.982488168483194, -0.310132582679219 ], [ 37.980535043483194, -0.314282972679225 ], [ 37.9827323084832, -0.317334730679252 ], [ 37.985906136483202, -0.320081312679238 ], [ 37.986943734483184, -0.32337721167926 ], [ 37.98633338248316, -0.326367933679253 ], [ 37.983525765483186, -0.327344496679248 ], [ 37.980535043483194, -0.329663832679219 ], [ 37.978093636483202, -0.335950453679234 ], [ 37.976323617483153, -0.339429457679219 ], [ 37.973088754483165, -0.344434339679256 ], [ 37.972905648483156, -0.34846266067922 ], [ 37.976323617483153, -0.352857191679223 ], [ 37.978093636483202, -0.357556898679266 ], [ 37.9749198084832, -0.359754164679262 ], [ 37.972539437483185, -0.361768324679249 ], [ 37.968694222483172, -0.364331800679227 ], [ 37.969121468483188, -0.367566664679262 ], [ 37.973332894483171, -0.37025221167926 ], [ 37.974492562483185, -0.374768812679238 ], [ 37.974736703483181, -0.379956800679227 ], [ 37.971318734483184, -0.383679945679264 ], [ 37.970098031483182, -0.387036879679217 ], [ 37.970098031483182, -0.390149672679231 ], [ 37.969731820483155, -0.397046644679224 ], [ 37.969914925483174, -0.400342543679246 ], [ 37.966496957483166, -0.40223463267927 ], [ 37.965520394483171, -0.405774672679231 ], [ 37.966496957483166, -0.408948500679233 ], [ 37.965520394483171, -0.413281996679248 ], [ 37.961736214483203, -0.416455824679249 ], [ 37.960515511483202, -0.420362074679249 ], [ 37.955510629483165, -0.42493971167926 ], [ 37.951909554483159, -0.427869398679266 ], [ 37.947515023483156, -0.428174574679249 ], [ 37.944097054483159, -0.429273207679219 ], [ 37.941289437483185, -0.427869398679266 ], [ 37.938542855483199, -0.429639418679246 ], [ 37.934514535483167, -0.430249769679224 ], [ 37.931340707483166, -0.428662855679252 ], [ 37.92773963248316, -0.430432875679233 ], [ 37.924321664483152, -0.428662855679252 ], [ 37.922124398483156, -0.426465589679256 ], [ 37.921941293483194, -0.422132093679241 ], [ 37.922307504483165, -0.41767652767925 ], [ 37.916692269483171, -0.415967543679246 ], [ 37.912724984483184, -0.416638929679268 ], [ 37.909307015483186, -0.414136488679221 ], [ 37.907292855483199, -0.41096266067922 ], [ 37.904546273483156, -0.409680922679231 ], [ 37.901738656483182, -0.407666761679254 ], [ 37.901494515483186, -0.404431898679266 ], [ 37.902715218483188, -0.401746351679267 ], [ 37.900090707483166, -0.398755629679217 ], [ 37.896306527483198, -0.397534925679227 ], [ 37.893743050483174, -0.39637525767927 ], [ 37.890691293483194, -0.395764906679235 ], [ 37.890508187483185, -0.392163832679219 ], [ 37.892339242483153, -0.389173109679237 ], [ 37.892095101483157, -0.385266859679237 ], [ 37.89734412548318, -0.380384047679231 ], [ 37.895696175483174, -0.37775953567922 ], [ 37.896733773483156, -0.373731214679256 ], [ 37.891118539483152, -0.369458754679217 ], [ 37.890141976483157, -0.366529066679223 ], [ 37.892339242483153, -0.363782484679237 ], [ 37.89453650748316, -0.35908277767925 ], [ 37.894719613483169, -0.354138929679268 ], [ 37.891911996483195, -0.35145338267927 ], [ 37.890141976483157, -0.348035414679262 ], [ 37.88672400748316, -0.345655043679246 ], [ 37.883916390483186, -0.34846266067922 ], [ 37.881108773483156, -0.350354750679233 ], [ 37.877141488483169, -0.350781996679248 ], [ 37.87390662548318, -0.353955824679249 ], [ 37.873723519483171, -0.358350355679252 ], [ 37.871892464483203, -0.361646254679217 ], [ 37.870305550483174, -0.36903150767927 ], [ 37.866338265483186, -0.372571547679231 ], [ 37.865911019483171, -0.378430922679231 ], [ 37.865911019483171, -0.382459242679263 ], [ 37.8655448084832, -0.385755140679239 ], [ 37.861943734483184, -0.387464125679233 ], [ 37.859319222483172, -0.389661390679239 ], [ 37.855901254483165, -0.390882093679241 ], [ 37.852910531483182, -0.393079359679237 ], [ 37.850713265483186, -0.396131117679263 ], [ 37.847905648483156, -0.402783949679249 ], [ 37.846135629483165, -0.404981214679256 ], [ 37.840520394483171, -0.407483656679235 ], [ 37.836919320483155, -0.407666761679254 ], [ 37.832097543483194, -0.408460218679241 ], [ 37.829106820483155, -0.411145765679239 ], [ 37.828740609483184, -0.415052015679239 ], [ 37.826116097483172, -0.416577894679224 ], [ 37.824101937483185, -0.418836195679264 ], [ 37.821538461483151, -0.420056898679266 ], [ 37.818303597483172, -0.423047621679248 ], [ 37.816533578483181, -0.427136976679267 ], [ 37.814336312483185, -0.430738050679227 ], [ 37.811711800483174, -0.432263929679268 ], [ 37.808537972483172, -0.433057386679254 ], [ 37.805303109483184, -0.435865004679217 ], [ 37.802495492483153, -0.43916090267925 ], [ 37.799321664483152, -0.441052992679263 ], [ 37.794744027483198, -0.443433363679221 ], [ 37.791509164483152, -0.445569593679241 ], [ 37.788091195483155, -0.44697340267925 ], [ 37.785527718483188, -0.449658949679249 ], [ 37.781133187483185, -0.448682386679254 ], [ 37.776921761483202, -0.449842054679268 ], [ 37.769902718483188, -0.450940687679238 ], [ 37.766728890483186, -0.451856214679256 ], [ 37.763310921483189, -0.45197828567922 ], [ 37.759343636483202, -0.451673109679237 ], [ 37.75531531648317, -0.449536879679217 ], [ 37.750127328483181, -0.448743422679231 ], [ 37.745305550483174, -0.448438246679248 ], [ 37.74109412548318, -0.448682386679254 ], [ 37.738103402483198, -0.449353773679266 ], [ 37.735112679483159, -0.449658949679249 ], [ 37.733525765483186, -0.452344496679248 ], [ 37.729131234483184, -0.453565199679249 ], [ 37.724492562483185, -0.45283277767925 ], [ 37.72070838248316, -0.45283277767925 ], [ 37.718144906483182, -0.450269300679227 ], [ 37.715520394483171, -0.44715650767927 ], [ 37.71234656648317, -0.446057875679233 ], [ 37.706304086483151, -0.445264418679246 ], [ 37.6995291834832, -0.441175062679238 ], [ 37.69531775748316, -0.440869886679254 ], [ 37.690495980483199, -0.43665846167926 ], [ 37.688725961483151, -0.433667738679221 ], [ 37.684941781483182, -0.432141859679237 ], [ 37.682317269483171, -0.430371839679256 ], [ 37.678533089483203, -0.429456312679238 ], [ 37.674932015483186, -0.429029066679223 ], [ 37.670720589483203, -0.427930433679253 ], [ 37.665715707483166, -0.425366957679219 ], [ 37.660710824483196, -0.423963148679266 ], [ 37.658940804483159, -0.421460707679219 ], [ 37.657536996483195, -0.418958265679239 ], [ 37.655339730483199, -0.416883070679264 ], [ 37.651921761483202, -0.414746839679256 ], [ 37.648931039483152, -0.412366468679241 ], [ 37.645696175483174, -0.410657484679237 ], [ 37.642339242483153, -0.406751234679237 ], [ 37.63953162548318, -0.404370863679221 ], [ 37.637944711483151, -0.400647718679241 ], [ 37.637090218483188, -0.397046644679224 ], [ 37.634099496483195, -0.395154554679268 ], [ 37.630132211483151, -0.392163832679219 ], [ 37.624944222483172, -0.393079359679237 ], [ 37.620732796483189, -0.391980726679267 ], [ 37.615117562483185, -0.390271742679263 ], [ 37.611943734483184, -0.387464125679233 ], [ 37.608891976483157, -0.38783033667926 ], [ 37.606145394483171, -0.387281019679224 ], [ 37.603093636483202, -0.386975843679241 ], [ 37.599492562483185, -0.385449964679256 ], [ 37.588140023483156, -0.377332289679262 ], [ 37.585515511483202, -0.373365004679217 ], [ 37.581304086483151, -0.37293775767927 ], [ 37.578313363483169, -0.371839125679233 ], [ 37.572698129483165, -0.368360121679248 ], [ 37.569097054483159, -0.366468031679235 ], [ 37.564519418483194, -0.368054945679264 ], [ 37.561101449483196, -0.367261488679221 ], [ 37.5589041834832, -0.365430433679253 ], [ 37.555120004483165, -0.363782484679237 ], [ 37.551702035483167, -0.361768324679249 ], [ 37.536504281483182, -0.348828871679248 ], [ 37.513310921483189, -0.328748304679268 ], [ 37.501531136483202, -0.31825025767927 ], [ 37.499516976483157, -0.314954359679237 ], [ 37.308537972483172, -0.15205152767925 ], [ 37.398686898483156, -0.164075453679234 ], [ 37.491521371483195, -0.174329359679237 ], [ 37.581731332483166, -0.183240492679263 ], [ 37.586919320483155, -0.184766371679248 ], [ 37.590093148483156, -0.186841566679223 ], [ 37.592290414483152, -0.190869886679254 ], [ 37.596745980483199, -0.192945082679219 ], [ 37.600713265483186, -0.195142347679225 ], [ 37.605107796483189, -0.196851332679219 ], [ 37.609136117483153, -0.196240980679252 ], [ 37.61328650748316, -0.196363050679227 ], [ 37.616338265483186, -0.199475843679241 ], [ 37.620915902483198, -0.202771742679263 ], [ 37.62390662548318, -0.206067640679239 ], [ 37.627324593483188, -0.207959730679252 ], [ 37.631902230483199, -0.20887525767927 ], [ 37.636113656483182, -0.209241468679241 ], [ 37.639714730483199, -0.210156996679248 ], [ 37.641728890483186, -0.213880140679239 ], [ 37.644719613483169, -0.215467054679268 ], [ 37.648931039483152, -0.215344984679237 ], [ 37.653935921483189, -0.214063246679248 ], [ 37.657292855483199, -0.211560804679268 ], [ 37.660344613483169, -0.211438734679237 ], [ 37.663945687483185, -0.210462172679231 ], [ 37.666692269483171, -0.208570082679219 ], [ 37.66992713248316, -0.209058363679221 ], [ 37.673528207483166, -0.209180433679253 ], [ 37.677312386483202, -0.20887525767927 ], [ 37.683110726483157, -0.209668714679256 ], [ 37.687139046483189, -0.206861097679225 ], [ 37.690740121483195, -0.206067640679239 ], [ 37.694524300483174, -0.206555922679231 ], [ 37.697331918483194, -0.205579359679237 ], [ 37.700322640483186, -0.207166273679266 ], [ 37.70313025748316, -0.205457289679262 ], [ 37.707097543483194, -0.204663832679219 ], [ 37.710698617483153, -0.204480726679267 ], [ 37.716313851483157, -0.204480726679267 ], [ 37.720525277483198, -0.20496900767927 ], [ 37.725713265483186, -0.203137953679234 ], [ 37.730901254483165, -0.201551039679262 ], [ 37.734746468483188, -0.198255140679239 ], [ 37.738713754483165, -0.19447096167926 ], [ 37.7424979334832, -0.192273695679264 ], [ 37.748540414483152, -0.189832289679262 ], [ 37.751286996483195, -0.186841566679223 ], [ 37.753728402483198, -0.183667738679221 ], [ 37.755498421483189, -0.179761488679221 ], [ 37.756902230483199, -0.175366957679219 ], [ 37.759343636483202, -0.172132093679241 ], [ 37.761113656483182, -0.167981703679234 ], [ 37.76312781648317, -0.16517408667926 ], [ 37.764714730483199, -0.161939222679225 ], [ 37.767095101483157, -0.159741957679219 ], [ 37.769902718483188, -0.158338148679266 ], [ 37.772710336483151, -0.160657484679237 ], [ 37.777104867483153, -0.161634047679231 ], [ 37.780339730483199, -0.163343031679235 ], [ 37.784490121483195, -0.165235121679248 ], [ 37.786504281483182, -0.167432386679254 ], [ 37.791692269483171, -0.17103346167926 ], [ 37.793096078483181, -0.175183851679267 ], [ 37.796086800483174, -0.177259046679242 ], [ 37.797307504483165, -0.180066664679262 ], [ 37.797124398483156, -0.182935316679223 ], [ 37.795720589483203, -0.189771254679217 ], [ 37.7991385584832, -0.188367445679264 ], [ 37.804509652483198, -0.187573988679221 ], [ 37.806340707483166, -0.184583265679239 ], [ 37.810491097483172, -0.181165297679231 ], [ 37.818913949483196, -0.175244886679254 ], [ 37.821904671483189, -0.17176588267927 ], [ 37.837529671483189, -0.159436781679235 ], [ 37.843144906483182, -0.154431898679266 ], [ 37.847905648483156, -0.150464613679221 ], [ 37.855290902483198, -0.144849379679217 ], [ 37.8577323084832, -0.142163832679219 ], [ 37.865727914483152, -0.135449964679256 ], [ 37.867925179483159, -0.133679945679264 ], [ 37.870305550483174, -0.132154066679223 ], [ 37.87250281648317, -0.129529554679268 ], [ 37.9007010584832, -0.100537855679252 ], [ 37.906499398483156, -0.094678480679252 ], [ 37.911687386483202, -0.090161879679217 ], [ 37.915288461483151, -0.084729750679233 ], [ 37.925542367483153, -0.073438246679248 ], [ 37.928533089483203, -0.071179945679264 ], [ 37.932317269483171, -0.066236097679225 ], [ 37.934514535483167, -0.061963636679254 ], [ 37.937322152483198, -0.057569105679252 ], [ 37.937322152483198, -0.053174574679249 ], [ 37.936711800483174, -0.050366957679219 ], [ 37.93750525748316, -0.047254164679262 ], [ 37.937932504483165, -0.044141371679248 ], [ 37.936894906483182, -0.04017408667926 ], [ 37.934331429483159, -0.037854750679233 ], [ 37.930913461483151, -0.037549574679249 ], [ 37.928105843483188, -0.036328871679248 ], [ 37.925725472483172, -0.034558851679267 ], [ 37.923528207483166, -0.030164320679264 ], [ 37.9241385584832, -0.025647718679241 ], [ 37.925542367483153, -0.022351820679264 ], [ 37.926702035483167, -0.019055922679231 ], [ 37.928899300483174, -0.014966566679223 ], [ 37.92773963248316, -0.012281019679224 ], [ 37.92914344148317, -0.008863050679227 ], [ 37.932134164483152, -0.006177504679217 ], [ 37.935307992483153, -0.004468519679224 ], [ 37.933293832483166, -0.000928480679252 ], [ 37.929509652483198, 0.000658433320777 ], [ 37.925542367483153, -0.000562269679224 ], [ 37.914495004483165, -0.002759534679231 ], [ 37.90430213248316, -0.005261976679267 ], [ 37.900334847483172, -0.006055433679253 ], [ 37.896733773483156, -0.006360609679237 ], [ 37.893743050483174, -0.003858168679246 ], [ 37.889287484483184, -0.000928480679252 ], [ 37.889104379483165, 0.004259507320737 ], [ 37.890325082483166, 0.007860581320754 ], [ 37.895513070483155, 0.010424058320777 ], [ 37.899907601483157, 0.011034410320744 ], [ 37.906926644483171, 0.01286546432078 ], [ 37.910710824483196, 0.014269273320733 ], [ 37.913701546483189, 0.017259995320783 ], [ 37.916509164483152, 0.021044175320751 ], [ 37.919499886483202, 0.023241441320747 ], [ 37.92273475048318, 0.025072495320783 ], [ 37.925298226483157, 0.029222886320779 ], [ 37.942510140483186, 0.042833726320734 ], [ 37.945500863483169, 0.045824449320773 ], [ 37.953740609483184, 0.050463120320783 ], [ 37.958745492483153, 0.049852769320748 ], [ 37.962102425483174, 0.051439683320777 ], [ 37.966313852483204, 0.05284349232073 ], [ 37.970098031483182, 0.053453843320765 ], [ 37.971318734483184, 0.050646226320734 ], [ 37.973943246483195, 0.04802171432078 ], [ 37.979131234483184, 0.043627183320777 ], [ 37.982305062483185, 0.04185716332074 ], [ 37.98773719148317, 0.042223374320767 ], [ 37.9827323084832, 0.064257066320747 ], [ 37.988103402483198, 0.063219468320765 ], [ 37.991521371483195, 0.064623277320775 ], [ 37.995488656483182, 0.065233628320752 ], [ 37.99890662548318, 0.064440171320766 ] ] ] } } +, +{ "type": "Feature", "id": 14, "properties": { "OBJECTID": 15, "ID_": 3567, "COUNTY_NAM": "EMBU", "CONST_CODE": 64, "CONSTITUEN": "RUNYENJES", "COUNTY_COD": 14, "Shape_Leng": 3.20577801845, "Shape_Area": 0.22934267389 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.484136117483153, -0.591443617679263 ], [ 37.485539925483174, -0.583936293679246 ], [ 37.483098519483171, -0.580274183679253 ], [ 37.480107796483189, -0.578137953679234 ], [ 37.476933968483188, -0.570752699679249 ], [ 37.476689828483181, -0.567639906679235 ], [ 37.47351600048318, -0.558667738679221 ], [ 37.463323129483165, -0.557141859679237 ], [ 37.462529671483189, -0.554334242679263 ], [ 37.461308968483188, -0.551465589679256 ], [ 37.457097543483194, -0.551831800679227 ], [ 37.453496468483188, -0.551282484679237 ], [ 37.450505746483195, -0.548230726679267 ], [ 37.448308480483199, -0.544934828679234 ], [ 37.448308480483199, -0.540967543679246 ], [ 37.44672156648317, -0.537671644679224 ], [ 37.44672156648317, -0.532666761679254 ], [ 37.443913949483196, -0.529065687679238 ], [ 37.440923226483157, -0.527478773679266 ], [ 37.439336312483185, -0.525037367679263 ], [ 37.436101449483196, -0.522840101679267 ], [ 37.432927621483195, -0.519666273679266 ], [ 37.430730355483199, -0.516248304679268 ], [ 37.429509652483198, -0.513440687679238 ], [ 37.427495492483153, -0.51057203567922 ], [ 37.426518929483159, -0.507276136679254 ], [ 37.426518929483159, -0.504346449679249 ], [ 37.427129281483182, -0.500073988679221 ], [ 37.430120004483165, -0.496778089679256 ], [ 37.428716195483155, -0.494153578679234 ], [ 37.42773963248316, -0.49104078567922 ], [ 37.4260916834832, -0.48743971167926 ], [ 37.424932015483186, -0.484448988679221 ], [ 37.425542367483153, -0.479749281679235 ], [ 37.426335824483196, -0.475843031679235 ], [ 37.427312386483202, -0.47254713267927 ], [ 37.42773963248316, -0.469068129679217 ], [ 37.428288949483196, -0.466138441679223 ], [ 37.427922738483169, -0.462537367679263 ], [ 37.428288949483196, -0.459363539679262 ], [ 37.427922738483169, -0.456067640679239 ], [ 37.428105843483188, -0.451551039679262 ], [ 37.427495492483153, -0.447766859679237 ], [ 37.423711312483185, -0.445874769679224 ], [ 37.423894418483194, -0.441968519679224 ], [ 37.426702035483167, -0.434644300679227 ], [ 37.426518929483159, -0.430982191679223 ], [ 37.425725472483172, -0.428052504679217 ], [ 37.425298226483157, -0.423963148679266 ], [ 37.382329476483157, -0.323133070679264 ], [ 37.341924203483181, -0.229138929679268 ], [ 37.308537972483172, -0.15205152767925 ], [ 37.499516976483157, -0.314954359679237 ], [ 37.501531136483202, -0.31825025767927 ], [ 37.513310921483189, -0.328748304679268 ], [ 37.536504281483182, -0.348828871679248 ], [ 37.551702035483167, -0.361768324679249 ], [ 37.555120004483165, -0.363782484679237 ], [ 37.5589041834832, -0.365430433679253 ], [ 37.561101449483196, -0.367261488679221 ], [ 37.564519418483194, -0.368054945679264 ], [ 37.569097054483159, -0.366468031679235 ], [ 37.572698129483165, -0.368360121679248 ], [ 37.578313363483169, -0.371839125679233 ], [ 37.581304086483151, -0.37293775767927 ], [ 37.585515511483202, -0.373365004679217 ], [ 37.587102425483174, -0.37684400767927 ], [ 37.593694222483172, -0.381238539679262 ], [ 37.596745980483199, -0.383740980679252 ], [ 37.5999198084832, -0.38587721167926 ], [ 37.603093636483202, -0.386975843679241 ], [ 37.606145394483171, -0.387281019679224 ], [ 37.608891976483157, -0.38783033667926 ], [ 37.611943734483184, -0.387464125679233 ], [ 37.615117562483185, -0.390271742679263 ], [ 37.620732796483189, -0.391980726679267 ], [ 37.6253104334832, -0.393933851679267 ], [ 37.629521859483184, -0.392346937679238 ], [ 37.637334359483184, -0.397351820679264 ], [ 37.637944711483151, -0.400952894679224 ], [ 37.63953162548318, -0.404370863679221 ], [ 37.642339242483153, -0.406751234679237 ], [ 37.645696175483174, -0.410657484679237 ], [ 37.648931039483152, -0.412366468679241 ], [ 37.651921761483202, -0.414746839679256 ], [ 37.655339730483199, -0.416883070679264 ], [ 37.657536996483195, -0.418958265679239 ], [ 37.658940804483159, -0.421460707679219 ], [ 37.660710824483196, -0.423963148679266 ], [ 37.665715707483166, -0.425366957679219 ], [ 37.670720589483203, -0.427930433679253 ], [ 37.674932015483186, -0.429029066679223 ], [ 37.678533089483203, -0.429456312679238 ], [ 37.682317269483171, -0.430371839679256 ], [ 37.684941781483182, -0.432141859679237 ], [ 37.688725961483151, -0.433850843679241 ], [ 37.694097054483159, -0.441480238679221 ], [ 37.6995291834832, -0.441175062679238 ], [ 37.706304086483151, -0.445264418679246 ], [ 37.71234656648317, -0.446057875679233 ], [ 37.715520394483171, -0.44715650767927 ], [ 37.718144906483182, -0.450269300679227 ], [ 37.72070838248316, -0.45283277767925 ], [ 37.724492562483185, -0.45283277767925 ], [ 37.729131234483184, -0.453565199679249 ], [ 37.733525765483186, -0.452344496679248 ], [ 37.735112679483159, -0.449842054679268 ], [ 37.74109412548318, -0.448682386679254 ], [ 37.745305550483174, -0.448438246679248 ], [ 37.750127328483181, -0.448743422679231 ], [ 37.75531531648317, -0.449536879679217 ], [ 37.759526742483153, -0.451734144679224 ], [ 37.764287484483184, -0.451856214679256 ], [ 37.767522347483172, -0.452161390679239 ], [ 37.770513070483155, -0.45106275767927 ], [ 37.773686898483156, -0.450147230679252 ], [ 37.776921761483202, -0.449842054679268 ], [ 37.781133187483185, -0.448682386679254 ], [ 37.785527718483188, -0.449658949679249 ], [ 37.788091195483155, -0.44697340267925 ], [ 37.791509164483152, -0.445569593679241 ], [ 37.794744027483198, -0.443433363679221 ], [ 37.799321664483152, -0.441052992679263 ], [ 37.802495492483153, -0.43916090267925 ], [ 37.805303109483184, -0.435865004679217 ], [ 37.808537972483172, -0.433057386679254 ], [ 37.811711800483174, -0.432263929679268 ], [ 37.814336312483185, -0.430738050679227 ], [ 37.816533578483181, -0.427136976679267 ], [ 37.818486703483181, -0.423047621679248 ], [ 37.821538461483151, -0.420056898679266 ], [ 37.824101937483185, -0.418836195679264 ], [ 37.826116097483172, -0.416577894679224 ], [ 37.828923714483203, -0.415052015679239 ], [ 37.829106820483155, -0.411145765679239 ], [ 37.832097543483194, -0.408460218679241 ], [ 37.835515511483202, -0.407483656679235 ], [ 37.83929969148317, -0.407666761679254 ], [ 37.846135629483165, -0.404981214679256 ], [ 37.847905648483156, -0.402783949679249 ], [ 37.850713265483186, -0.396131117679263 ], [ 37.852727425483174, -0.393872816679223 ], [ 37.855718148483156, -0.39143141067922 ], [ 37.859319222483172, -0.389661390679239 ], [ 37.861943734483184, -0.387464125679233 ], [ 37.8655448084832, -0.385755140679239 ], [ 37.865911019483171, -0.382459242679263 ], [ 37.865911019483171, -0.378430922679231 ], [ 37.866338265483186, -0.372571547679231 ], [ 37.870305550483174, -0.36903150767927 ], [ 37.871526254483165, -0.364148695679264 ], [ 37.873113168483194, -0.36018141067922 ], [ 37.873540414483152, -0.356153089679256 ], [ 37.874089730483199, -0.353162367679263 ], [ 37.877141488483169, -0.350843031679235 ], [ 37.881108773483156, -0.350354750679233 ], [ 37.884343636483202, -0.347974379679217 ], [ 37.886907113483169, -0.345471937679238 ], [ 37.890141976483157, -0.348035414679262 ], [ 37.891728890483186, -0.35127027767925 ], [ 37.89453650748316, -0.354261000679233 ], [ 37.89453650748316, -0.35908277767925 ], [ 37.892339242483153, -0.363782484679237 ], [ 37.890141976483157, -0.366529066679223 ], [ 37.891118539483152, -0.369458754679217 ], [ 37.896733773483156, -0.373731214679256 ], [ 37.895696175483174, -0.37775953567922 ], [ 37.89734412548318, -0.380445082679219 ], [ 37.892095101483157, -0.385266859679237 ], [ 37.892339242483153, -0.389173109679237 ], [ 37.890508187483185, -0.392163832679219 ], [ 37.892095101483157, -0.396253187679238 ], [ 37.900090707483166, -0.398755629679217 ], [ 37.902715218483188, -0.401746351679267 ], [ 37.901494515483186, -0.404431898679266 ], [ 37.901738656483182, -0.407666761679254 ], [ 37.904546273483156, -0.409680922679231 ], [ 37.907292855483199, -0.41096266067922 ], [ 37.909307015483186, -0.414136488679221 ], [ 37.912724984483184, -0.416638929679268 ], [ 37.916692269483171, -0.415967543679246 ], [ 37.922307504483165, -0.41767652767925 ], [ 37.921697152483198, -0.422376234679237 ], [ 37.922124398483156, -0.426282484679237 ], [ 37.924321664483152, -0.428662855679252 ], [ 37.92773963248316, -0.430432875679233 ], [ 37.930120004483165, -0.428968031679235 ], [ 37.936528695483155, -0.430554945679264 ], [ 37.935918343483188, -0.433850843679241 ], [ 37.936101449483196, -0.436841566679223 ], [ 37.934941781483182, -0.44056471167926 ], [ 37.931340707483166, -0.447583754679217 ], [ 37.92914344148317, -0.451428968679241 ], [ 37.926702035483167, -0.454053480679252 ], [ 37.922490609483184, -0.459363539679262 ], [ 37.920537484483184, -0.462232191679223 ], [ 37.917485726483157, -0.465283949679249 ], [ 37.914311898483156, -0.468762953679234 ], [ 37.912908089483203, -0.473828871679248 ], [ 37.909490121483195, -0.480664808679253 ], [ 37.907720101483157, -0.482862074679249 ], [ 37.907292855483199, -0.485974867679263 ], [ 37.90570594148317, -0.488843519679224 ], [ 37.900334847483172, -0.501050550679227 ], [ 37.897710336483151, -0.506238539679262 ], [ 37.896306527483198, -0.50947340267925 ], [ 37.893498910483167, -0.512769300679227 ], [ 37.892095101483157, -0.517041761679254 ], [ 37.890141976483157, -0.521070082679219 ], [ 37.88812781648317, -0.523938734679237 ], [ 37.887090218483188, -0.527356703679234 ], [ 37.885503304483159, -0.530469496679248 ], [ 37.884526742483153, -0.534253675679227 ], [ 37.8831229334832, -0.537976820679264 ], [ 37.883306039483152, -0.541638929679268 ], [ 37.884099496483195, -0.544873793679246 ], [ 37.885930550483174, -0.547864515679239 ], [ 37.886907113483169, -0.551648695679264 ], [ 37.88812781648317, -0.555249769679224 ], [ 37.888494027483198, -0.562268812679238 ], [ 37.887944711483151, -0.566175062679238 ], [ 37.88672400748316, -0.572644789679262 ], [ 37.884343636483202, -0.581555922679231 ], [ 37.884099496483195, -0.585156996679248 ], [ 37.891545785483167, -0.591077406679235 ], [ 37.89453650748316, -0.594129164679262 ], [ 37.898686898483156, -0.596753675679227 ], [ 37.902287972483172, -0.599561293679246 ], [ 37.902104869483189, -0.603467545679225 ], [ 37.904912484483184, -0.606946547679231 ], [ 37.908330453483181, -0.610364515679239 ], [ 37.912541879483165, -0.615064222679225 ], [ 37.918706429483159, -0.622632582679219 ], [ 37.921086800483174, -0.624829847679225 ], [ 37.922917855483199, -0.627881605679252 ], [ 37.920110238483169, -0.631177504679217 ], [ 37.917485726483157, -0.633557875679233 ], [ 37.910710824483196, -0.638440687679238 ], [ 37.908696664483152, -0.640637953679234 ], [ 37.90570594148317, -0.642774183679253 ], [ 37.901494515483186, -0.645154554679268 ], [ 37.89789344148317, -0.646558363679221 ], [ 37.894292367483153, -0.649060804679268 ], [ 37.893743050483174, -0.653760511679254 ], [ 37.8928885584832, -0.658338148679266 ], [ 37.89453650748316, -0.662061293679246 ], [ 37.895085824483196, -0.665967543679246 ], [ 37.89594031648317, -0.669446547679231 ], [ 37.897710336483151, -0.672376234679237 ], [ 37.896306527483198, -0.675550062679238 ], [ 37.89594031648317, -0.680066664679262 ], [ 37.89594031648317, -0.683545668679246 ], [ 37.898137582483166, -0.686231214679256 ], [ 37.903142464483203, -0.687573988679221 ], [ 37.903508675483174, -0.690747816679223 ], [ 37.902715218483188, -0.69416578567922 ], [ 37.901494515483186, -0.697339613679221 ], [ 37.900090707483166, -0.703748304679268 ], [ 37.899541390483186, -0.707349379679217 ], [ 37.901128304483159, -0.711560804679268 ], [ 37.905339730483199, -0.711865980679252 ], [ 37.908696664483152, -0.713269789679262 ], [ 37.910893929483159, -0.710584242679263 ], [ 37.913091195483155, -0.713574964679256 ], [ 37.91351844148317, -0.717237074679249 ], [ 37.914128793483194, -0.720349867679263 ], [ 37.91492225048318, -0.727552015679239 ], [ 37.916509164483152, -0.731336195679264 ], [ 37.914739144483171, -0.735364515679239 ], [ 37.913945687483185, -0.739331800679227 ], [ 37.912541879483165, -0.744336683679253 ], [ 37.910344613483169, -0.749463636679254 ], [ 37.907903207483166, -0.75275953567922 ], [ 37.904729379483165, -0.756482679679268 ], [ 37.903142464483203, -0.760755140679239 ], [ 37.900090707483166, -0.763745863679221 ], [ 37.896123421483189, -0.766065199679249 ], [ 37.892339242483153, -0.770032484679237 ], [ 37.893315804483159, -0.777173597679225 ], [ 37.893315804483159, -0.781262953679234 ], [ 37.890508187483185, -0.782483656679235 ], [ 37.886296761483202, -0.783765394679224 ], [ 37.884099496483195, -0.787854750679233 ], [ 37.883733285483167, -0.791455824679249 ], [ 37.881108773483156, -0.793653089679256 ], [ 37.880498421483189, -0.798963148679266 ], [ 37.883489144483171, -0.803052504679274 ], [ 37.884892953483181, -0.806653578679234 ], [ 37.883306039483152, -0.809766371679248 ], [ 37.879094613483169, -0.809033949679249 ], [ 37.8753104334832, -0.811170179679268 ], [ 37.871526254483165, -0.812940199679249 ], [ 37.867314828483181, -0.812573988679221 ], [ 37.862493050483174, -0.813977797679231 ], [ 37.857488168483194, -0.812940199679249 ], [ 37.853703988483169, -0.812573988679221 ], [ 37.850530160483167, -0.813184339679256 ], [ 37.846745980483199, -0.813184339679256 ], [ 37.843938363483169, -0.813733656679235 ], [ 37.841130746483195, -0.813062269679224 ], [ 37.838140023483156, -0.813367445679264 ], [ 37.835088265483186, -0.815930922679231 ], [ 37.832097543483194, -0.814466078679234 ], [ 37.830327523483156, -0.810742933679253 ], [ 37.827336800483174, -0.808240492679263 ], [ 37.822515023483156, -0.807263929679268 ], [ 37.818913949483196, -0.807263929679268 ], [ 37.815923226483157, -0.809766371679248 ], [ 37.813115609483184, -0.813977797679231 ], [ 37.809697640483186, -0.816663343679241 ], [ 37.808293832483166, -0.813733656679235 ], [ 37.808537972483172, -0.809583265679239 ], [ 37.806890023483156, -0.805249769679224 ], [ 37.80414344148317, -0.807080824679249 ], [ 37.801518929483159, -0.81165846167926 ], [ 37.798711312483185, -0.815381605679252 ], [ 37.796941293483194, -0.818982679679268 ], [ 37.792729867483153, -0.820935804679268 ], [ 37.788945687483185, -0.824231703679234 ], [ 37.783696664483152, -0.82606275767927 ], [ 37.778691781483182, -0.826734144679224 ], [ 37.775334847483172, -0.824658949679249 ], [ 37.77094031648317, -0.824231703679234 ], [ 37.766301644483171, -0.826245863679221 ], [ 37.762517464483203, -0.826245863679221 ], [ 37.75812293448319, -0.824964125679233 ], [ 37.756291879483165, -0.820142347679225 ], [ 37.754888070483155, -0.815869886679254 ], [ 37.750737679483159, -0.805677015679239 ], [ 37.7503104334832, -0.802136976679267 ], [ 37.749333871483195, -0.798230726679267 ], [ 37.748296273483156, -0.795178968679241 ], [ 37.748113168483194, -0.791150648679266 ], [ 37.74750281648317, -0.788343031679235 ], [ 37.746343148483156, -0.785474379679217 ], [ 37.744512093483188, -0.781629164679262 ], [ 37.739934457483166, -0.778943617679263 ], [ 37.736943734483184, -0.777783949679249 ], [ 37.733891976483157, -0.77705152767925 ], [ 37.731145394483171, -0.777783949679249 ], [ 37.728093636483202, -0.780530531679235 ], [ 37.725286019483171, -0.782666761679254 ], [ 37.72211219148317, -0.782178480679252 ], [ 37.7171073084832, -0.781934339679256 ], [ 37.711492074483196, -0.782971937679238 ], [ 37.706914437483185, -0.784131605679252 ], [ 37.702519906483182, -0.785779554679268 ], [ 37.6995291834832, -0.787732679679268 ], [ 37.698735726483157, -0.791333754679274 ], [ 37.695134652483198, -0.793347914679262 ], [ 37.693120492483153, -0.797071058679253 ], [ 37.689885629483165, -0.797864515679239 ], [ 37.685307992483153, -0.796643812679238 ], [ 37.681890023483156, -0.798963148679266 ], [ 37.681890023483156, -0.802930433679253 ], [ 37.682927621483195, -0.810376722679225 ], [ 37.681340707483166, -0.815869886679254 ], [ 37.680486214483203, -0.819776136679254 ], [ 37.681706918483194, -0.823865492679263 ], [ 37.67914344148317, -0.826673109679237 ], [ 37.6760916834832, -0.827466566679223 ], [ 37.673345101483157, -0.830335218679241 ], [ 37.671697152483198, -0.834180433679253 ], [ 37.671697152483198, -0.838147718679241 ], [ 37.66992713248316, -0.840772230679252 ], [ 37.667302621483195, -0.844068129679274 ], [ 37.665288461483151, -0.848157484679237 ], [ 37.660893929483159, -0.849561293679246 ], [ 37.656499398483156, -0.849073011679254 ], [ 37.652715218483188, -0.846875746679248 ], [ 37.649541390483186, -0.846753675679227 ], [ 37.646733773483156, -0.844983656679235 ], [ 37.644109261483202, -0.846448500679233 ], [ 37.641118539483152, -0.847669203679234 ], [ 37.638310921483189, -0.844983656679235 ], [ 37.636296761483202, -0.841565687679238 ], [ 37.633489144483171, -0.840833265679239 ], [ 37.629521859483184, -0.841870863679221 ], [ 37.628728402483198, -0.845655043679246 ], [ 37.628301156483182, -0.849439222679225 ], [ 37.627507699483196, -0.853345472679225 ], [ 37.624333871483195, -0.854261000679233 ], [ 37.62109900748316, -0.853772718679241 ], [ 37.617742074483196, -0.854444105679252 ], [ 37.616338265483186, -0.857068617679263 ], [ 37.61328650748316, -0.857556898679266 ], [ 37.610295785483167, -0.857740004679274 ], [ 37.606511605483199, -0.857373793679246 ], [ 37.604131234483184, -0.859937269679224 ], [ 37.602117074483196, -0.864331800679227 ], [ 37.59570838248316, -0.86317213267927 ], [ 37.591496957483166, -0.864270765679239 ], [ 37.58789588248316, -0.868177015679239 ], [ 37.591313851483157, -0.871472914679262 ], [ 37.588689339483203, -0.877881605679252 ], [ 37.58734656648317, -0.88056715267925 ], [ 37.583318246483195, -0.880445082679219 ], [ 37.575688851483157, -0.879163343679241 ], [ 37.572515023483156, -0.880445082679219 ], [ 37.565129769483171, -0.882764418679246 ], [ 37.562932504483165, -0.880384047679231 ], [ 37.561528695483155, -0.87775953567922 ], [ 37.558293832483166, -0.878552992679263 ], [ 37.555730355483199, -0.88166578567922 ], [ 37.553105843483188, -0.88447340267925 ], [ 37.550542367483153, -0.886365492679263 ], [ 37.54633094148317, -0.885449964679256 ], [ 37.542729867483153, -0.889661390679239 ], [ 37.538091195483155, -0.89143141067922 ], [ 37.535710824483196, -0.895154554679268 ], [ 37.5335135584832, -0.89924391067922 ], [ 37.534307015483186, -0.904065687679238 ], [ 37.535527718483188, -0.90705641067922 ], [ 37.535344613483169, -0.910352308679253 ], [ 37.532720101483157, -0.914563734679237 ], [ 37.521916879483165, -0.918042738679221 ], [ 37.518315804483159, -0.917737562679238 ], [ 37.516545785483167, -0.914380629679274 ], [ 37.516911996483195, -0.91004713267927 ], [ 37.516301644483171, -0.905164320679264 ], [ 37.512700570483155, -0.903577406679235 ], [ 37.508916390483186, -0.903577406679235 ], [ 37.505742562483185, -0.901868422679231 ], [ 37.502324593483188, -0.901746351679267 ], [ 37.499516976483157, -0.903333265679239 ], [ 37.49609900748316, -0.904676039679262 ], [ 37.492314828483181, -0.90205152767925 ], [ 37.487309945483155, -0.900159437679238 ], [ 37.482305062483185, -0.89533766067922 ], [ 37.478093636483202, -0.893750746679248 ], [ 37.475713265483186, -0.889173109679237 ], [ 37.473088754483165, -0.887952406679235 ], [ 37.473332894483171, -0.88465650767927 ], [ 37.474309457483166, -0.881482679679268 ], [ 37.474736703483181, -0.877942640679239 ], [ 37.471135629483165, -0.87684400767927 ], [ 37.468144906483182, -0.874646742679263 ], [ 37.463506234483184, -0.875867445679264 ], [ 37.461125863483169, -0.874280531679235 ], [ 37.459722054483159, -0.871533949679249 ], [ 37.45593787548318, -0.872266371679248 ], [ 37.452092660483167, -0.871839125679233 ], [ 37.447942269483171, -0.870862562679238 ], [ 37.442937386483202, -0.863477308679253 ], [ 37.439092171483189, -0.863782484679237 ], [ 37.435491097483172, -0.863050062679238 ], [ 37.431706918483194, -0.863965589679256 ], [ 37.42969275748316, -0.866162855679252 ], [ 37.426518929483159, -0.866651136679254 ], [ 37.423528207483166, -0.864636976679267 ], [ 37.420110238483169, -0.862744886679254 ], [ 37.415898812483185, -0.862256605679252 ], [ 37.412297738483169, -0.859448988679221 ], [ 37.414739144483171, -0.854871351679267 ], [ 37.412908089483203, -0.850965101679267 ], [ 37.409123910483167, -0.850965101679267 ], [ 37.40570594148317, -0.851880629679274 ], [ 37.401738656483182, -0.854566175679227 ], [ 37.397710336483151, -0.85658033667926 ], [ 37.394109261483202, -0.85535963267927 ], [ 37.389897836483151, -0.855542738679221 ], [ 37.386540902483198, -0.853162367679263 ], [ 37.3831229334832, -0.855664808679253 ], [ 37.380132211483151, -0.857556898679266 ], [ 37.377141488483169, -0.854566175679227 ], [ 37.377324593483188, -0.851331312679238 ], [ 37.373296273483156, -0.850171644679224 ], [ 37.369695199483196, -0.848828871679248 ], [ 37.366887582483166, -0.847180922679231 ], [ 37.36414100048318, -0.845166761679254 ], [ 37.358708871483195, -0.844373304679268 ], [ 37.355535043483194, -0.84455641067922 ], [ 37.352117074483196, -0.845960218679241 ], [ 37.349736703483181, -0.842359144679224 ], [ 37.34711219148317, -0.84486158667926 ], [ 37.344487679483159, -0.843030531679235 ], [ 37.341313851483157, -0.843946058679253 ], [ 37.338506234483184, -0.846631605679252 ], [ 37.334905160483167, -0.844983656679235 ], [ 37.331914437483185, -0.844739515679239 ], [ 37.327092660483167, -0.843335707679219 ], [ 37.324712289483152, -0.840467054679268 ], [ 37.326299203483181, -0.837232191679223 ], [ 37.321538461483151, -0.836865980679252 ], [ 37.318913949483196, -0.833936293679246 ], [ 37.317327035483167, -0.830579359679237 ], [ 37.316289437483185, -0.826428968679241 ], [ 37.313725961483151, -0.823438246679248 ], [ 37.31390906648317, -0.820447523679266 ], [ 37.311528695483155, -0.817334730679252 ], [ 37.306523812483185, -0.814282972679225 ], [ 37.306523812483185, -0.811170179679268 ], [ 37.30609656648317, -0.80775221167926 ], [ 37.307134164483152, -0.803968031679235 ], [ 37.305303109483184, -0.801282484679237 ], [ 37.301946175483174, -0.79963453567922 ], [ 37.2991385584832, -0.79603346167926 ], [ 37.294744027483198, -0.794141371679248 ], [ 37.292485726483157, -0.790845472679225 ], [ 37.28992225048318, -0.787976820679264 ], [ 37.288335336483151, -0.785230238679221 ], [ 37.284123910483167, -0.784131605679252 ], [ 37.280095589483203, -0.78504713267927 ], [ 37.276494515483186, -0.785474379679217 ], [ 37.273137582483166, -0.787183363679221 ], [ 37.2678885584832, -0.787366468679241 ], [ 37.268132699483196, -0.783155043679246 ], [ 37.2678885584832, -0.779065687679238 ], [ 37.271123421483189, -0.770948011679254 ], [ 37.273320687483185, -0.766065199679249 ], [ 37.274907601483157, -0.761853773679266 ], [ 37.276962555483173, -0.757083521679251 ], [ 37.280142590483187, -0.756599029679253 ], [ 37.283926770483156, -0.75720938167922 ], [ 37.286321175483174, -0.757154066679223 ], [ 37.294499886483202, -0.756238539679262 ], [ 37.298100961483151, -0.755445082679219 ], [ 37.302495492483153, -0.75306471167926 ], [ 37.30609656648317, -0.751355726679267 ], [ 37.309087289483152, -0.750867445679264 ], [ 37.312322152483198, -0.750867445679264 ], [ 37.316106332483166, -0.751538832679219 ], [ 37.318486703483181, -0.758863050679227 ], [ 37.321294320483155, -0.762464125679233 ], [ 37.323918832483166, -0.76478346167926 ], [ 37.327336800483174, -0.767163832679219 ], [ 37.330693734483184, -0.768567640679239 ], [ 37.345891488483169, -0.774060804679268 ], [ 37.349492562483185, -0.774365980679252 ], [ 37.352910531483182, -0.773755629679217 ], [ 37.357488168483194, -0.772656996679248 ], [ 37.36133338248316, -0.764539320679264 ], [ 37.366338265483186, -0.76447828567922 ], [ 37.369939339483203, -0.765454847679225 ], [ 37.374089730483199, -0.764539320679264 ], [ 37.377690804483159, -0.76337965267925 ], [ 37.380742562483185, -0.760755140679239 ], [ 37.387334359483184, -0.755872328679234 ], [ 37.3909354334832, -0.754834730679252 ], [ 37.396306527483198, -0.754346449679249 ], [ 37.399724496483195, -0.752332289679262 ], [ 37.406743539483152, -0.750135023679266 ], [ 37.417485726483157, -0.750073988679221 ], [ 37.421697152483198, -0.749768812679238 ], [ 37.42468787548318, -0.748181898679266 ], [ 37.427922738483169, -0.745862562679238 ], [ 37.444890511483202, -0.733045179679268 ], [ 37.449895394483171, -0.733655531679235 ], [ 37.459538949483196, -0.73518141067922 ], [ 37.463140023483156, -0.736280043679246 ], [ 37.46429969148317, -0.732984144679224 ], [ 37.4671073084832, -0.730542738679221 ], [ 37.47070838248316, -0.728467543679246 ], [ 37.4749198084832, -0.727552015679239 ], [ 37.48132850048318, -0.73017652767925 ], [ 37.484502328483181, -0.730664808679253 ], [ 37.488103402483198, -0.731763441679223 ], [ 37.4924979334832, -0.733472425679227 ], [ 37.49609900748316, -0.731641371679248 ], [ 37.49414588248316, -0.727979261679254 ], [ 37.492925179483159, -0.724683363679221 ], [ 37.487309945483155, -0.71986158667926 ], [ 37.479314339483203, -0.714978773679266 ], [ 37.478703988483169, -0.712171156679235 ], [ 37.478337777483198, -0.708936293679246 ], [ 37.478703988483169, -0.705152113679221 ], [ 37.480290902483198, -0.696546156679235 ], [ 37.480107796483189, -0.692945082679219 ], [ 37.478093636483202, -0.689038832679219 ], [ 37.475286019483171, -0.68543775767927 ], [ 37.475102914483152, -0.681958754679217 ], [ 37.477300179483159, -0.679151136679254 ], [ 37.477300179483159, -0.675977308679253 ], [ 37.478337777483198, -0.67176588267927 ], [ 37.476140511483202, -0.663159925679227 ], [ 37.474492562483185, -0.659436781679235 ], [ 37.473332894483171, -0.654431898679266 ], [ 37.47351600048318, -0.650769789679262 ], [ 37.475286019483171, -0.646741468679241 ], [ 37.478337777483198, -0.64246900767927 ], [ 37.479131234483184, -0.63856275767927 ], [ 37.480290902483198, -0.635755140679239 ], [ 37.480290902483198, -0.632581312679238 ], [ 37.481145394483171, -0.629346449679249 ], [ 37.483708871483195, -0.62666090267925 ], [ 37.487126839483203, -0.625135023679266 ], [ 37.488103402483198, -0.620435316679223 ], [ 37.488530648483156, -0.615857679679268 ], [ 37.486943734483184, -0.611463148679266 ], [ 37.484136117483153, -0.606946547679231 ], [ 37.481145394483171, -0.603772718679241 ], [ 37.478337777483198, -0.601941664679262 ], [ 37.479131234483184, -0.598645765679239 ], [ 37.484136117483153, -0.591443617679263 ] ] ], [ [ [ 37.484136117483153, -0.591443617679263 ], [ 37.479497445483155, -0.594983656679235 ], [ 37.480290902483198, -0.591870863679221 ], [ 37.484136117483153, -0.591443617679263 ] ] ] ] } } +, +{ "type": "Feature", "id": 15, "properties": { "OBJECTID": 16, "ID_": 5251, "COUNTY_NAM": "KITUI", "CONST_CODE": 73, "CONSTITUEN": "KITUI EAST", "COUNTY_COD": 15, "Shape_Leng": 8.744487503349999, "Shape_Area": 2.47528086643 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.328313363483169, -0.070081312679238 ], [ 38.331731332483166, -0.070752699679249 ], [ 38.334905160483167, -0.068555433679253 ], [ 38.338506234483184, -0.065381605679252 ], [ 38.343144906483182, -0.064649183679253 ], [ 38.346929086483208, -0.06525953567922 ], [ 38.350102914483152, -0.066968519679224 ], [ 38.353337777483198, -0.069654066679223 ], [ 38.356511605483199, -0.07197340267925 ], [ 38.363530648483156, -0.076673109679237 ], [ 38.365911019483171, -0.079358656679235 ], [ 38.368901742483153, -0.081433851679267 ], [ 38.372136605483199, -0.08283766067922 ], [ 38.375493539483152, -0.083264906679235 ], [ 38.378545296483189, -0.084546644679224 ], [ 38.380742562483185, -0.087842543679246 ], [ 38.383916390483186, -0.089673597679225 ], [ 38.387090218483188, -0.087964613679221 ], [ 38.389287484483184, -0.085767347679225 ], [ 38.391545785483167, -0.08314283667926 ], [ 38.391728890483186, -0.079480726679267 ], [ 38.3928885584832, -0.076673109679237 ], [ 38.39648963248316, -0.07606275767927 ], [ 38.400945199483196, -0.077771742679263 ], [ 38.405095589483203, -0.078565199679249 ], [ 38.409490121483195, -0.077954847679225 ], [ 38.413945687483185, -0.076551039679262 ], [ 38.417302621483195, -0.074658949679249 ], [ 38.419499886483202, -0.072766859679237 ], [ 38.447698129483165, -0.119336683679253 ], [ 38.468144906483182, -0.154431898679266 ], [ 38.480535043483194, -0.175061781679235 ], [ 38.492314828483181, -0.196240980679252 ], [ 38.496343148483156, -0.202344496679248 ], [ 38.50391150748316, -0.214856703679234 ], [ 38.509892953483181, -0.224866468679241 ], [ 38.511296761483202, -0.227552015679239 ], [ 38.539128793483194, -0.274060804679268 ], [ 38.562322152483198, -0.313672621679248 ], [ 38.580327523483156, -0.343762953679234 ], [ 38.595342171483189, -0.369336683679253 ], [ 38.602300179483159, -0.38166578567922 ], [ 38.608342660483167, -0.391553480679252 ], [ 38.613103402483198, -0.399976332679219 ], [ 38.623723519483171, -0.417737562679238 ], [ 38.629704964483203, -0.428235609679237 ], [ 38.634343636483202, -0.435742933679253 ], [ 38.63953162548318, -0.445081312679238 ], [ 38.645085824483196, -0.45423658667926 ], [ 38.658086312483185, -0.47645338267927 ], [ 38.658330453483181, -0.479566175679227 ], [ 38.663335336483208, -0.48518141067922 ], [ 38.673345101483157, -0.502576429679268 ], [ 38.678533089483203, -0.51283033667926 ], [ 38.688298714483203, -0.528943617679263 ], [ 38.689885629483165, -0.531934339679256 ], [ 38.715886605483199, -0.575574476679267 ], [ 38.739507211483208, -0.614636976679267 ], [ 38.765508187483185, -0.658948500679233 ], [ 38.782903207483166, -0.688062269679224 ], [ 38.786321175483174, -0.697949964679256 ], [ 38.806890023483156, -0.728772718679241 ], [ 38.813725961483208, -0.741529066679223 ], [ 38.826726449483196, -0.768140394679224 ], [ 38.84570838248316, -0.808362562679238 ], [ 38.853337777483198, -0.824170668679246 ], [ 38.889287484483184, -0.900769789679262 ], [ 38.89929725048318, -0.921155531679235 ], [ 38.919316781483182, -0.963574964679256 ], [ 38.9260916834832, -0.978650648679266 ], [ 38.938298714483203, -1.003552992679263 ], [ 38.96234656648317, -1.05457838267927 ], [ 38.963323129483165, -1.068555433679253 ], [ 38.962529671483189, -1.080274183679253 ], [ 38.970098031483182, -1.180982191679223 ], [ 38.974492562483185, -1.261975843679241 ], [ 38.98132850048318, -1.364575941679223 ], [ 38.985723031483182, -1.440442640679239 ], [ 38.99750281648317, -1.635266859679237 ], [ 38.999333871483195, -1.681653578679234 ], [ 38.997136605483199, -1.684033949679249 ], [ 38.994939339483203, -1.687573988679221 ], [ 38.990727914483152, -1.688733656679235 ], [ 38.988103402483198, -1.691968519679224 ], [ 38.984929574483196, -1.692456800679227 ], [ 38.98132850048318, -1.691541273679266 ], [ 38.979131234483184, -1.693982679679268 ], [ 38.974736703483181, -1.694959242679263 ], [ 38.969914925483174, -1.697339613679221 ], [ 38.965886605483199, -1.699658949679249 ], [ 38.959722054483159, -1.704358656679235 ], [ 39.007939828483181, -1.889051039679262 ], [ 39.014104379483165, -1.916150648679266 ], [ 39.0003104334832, -1.948255140679239 ], [ 38.930303109483184, -2.084058363679223 ], [ 38.800115121483195, -2.337232191679224 ], [ 38.796697152483198, -2.343457777679252 ], [ 38.793523324483196, -2.343946058679254 ], [ 38.790532601483157, -2.345349867679264 ], [ 38.789495004483165, -2.348828871679249 ], [ 38.78851844148317, -2.353467543679248 ], [ 38.784734261483202, -2.356946547679232 ], [ 38.78070594148317, -2.356763441679224 ], [ 38.776738656483182, -2.355664808679254 ], [ 38.77234412548318, -2.355542738679223 ], [ 38.768743050483174, -2.356153089679257 ], [ 38.7659354334832, -2.357373793679248 ], [ 38.762700570483155, -2.357984144679225 ], [ 38.756291879483165, -2.363782484679238 ], [ 38.753118050483174, -2.364331800679228 ], [ 38.7503104334832, -2.365552504679275 ], [ 38.747136605483199, -2.366651136679256 ], [ 38.743535531483182, -2.36677320767922 ], [ 38.739507211483208, -2.366040785679221 ], [ 38.737493050483174, -2.369153578679235 ], [ 38.735539925483174, -2.373059828679235 ], [ 38.733891976483157, -2.38044508267922 ], [ 38.728887093483188, -2.384534437679239 ], [ 38.725896371483195, -2.386548597679226 ], [ 38.723088754483165, -2.389783461679262 ], [ 38.718694222483172, -2.392346937679239 ], [ 38.716130746483195, -2.396436293679248 ], [ 38.713506234483184, -2.399365980679253 ], [ 38.709538949483196, -2.401441175679228 ], [ 38.705693734483184, -2.402539808679254 ], [ 38.70453406648317, -2.406262953679235 ], [ 38.701543343483188, -2.408948500679234 ], [ 38.698308480483199, -2.409864027679252 ], [ 38.696111214483203, -2.411878187679239 ], [ 38.692937386483202, -2.412671644679225 ], [ 38.686894906483182, -2.415174086679262 ], [ 38.67773963248316, -2.416333754679275 ], [ 38.673894418483194, -2.41755445767922 ], [ 38.670720589483203, -2.41895826567924 ], [ 38.667119515483186, -2.419873793679248 ], [ 38.661138070483155, -2.42036207467925 ], [ 38.652287972483172, -2.42036207467925 ], [ 38.647710336483208, -2.420667250679234 ], [ 38.6428885584832, -2.419568617679264 ], [ 38.638494027483198, -2.418042738679223 ], [ 38.634892953483181, -2.418836195679265 ], [ 38.633489144483171, -2.415967543679248 ], [ 38.630925668483194, -2.414563734679238 ], [ 38.627934945483155, -2.413770277679252 ], [ 38.624700082483166, -2.413831312679239 ], [ 39.076116097483172, -3.043164808679254 ], [ 39.072515023483156, -3.042859632679271 ], [ 39.069097054483159, -3.043164808679254 ], [ 39.065923226483157, -3.043653089679257 ], [ 39.061101449483196, -3.042249281679236 ], [ 39.05750037548318, -3.039075453679235 ], [ 39.05469275748316, -3.03614576567924 ], [ 39.046697152483198, -3.033582289679263 ], [ 39.045293343483188, -3.030530531679236 ], [ 39.045537484483184, -3.024549086679262 ], [ 39.0413260584832, -3.025952894679225 ], [ 39.036931527483198, -3.027051527679252 ], [ 39.028142464483203, -3.023267347679226 ], [ 39.025090707483166, -3.023450453679235 ], [ 39.022527230483199, -3.025159437679239 ], [ 39.019109261483202, -3.026868422679232 ], [ 39.013738168483194, -3.027844984679238 ], [ 39.010686410483167, -3.028150160679221 ], [ 39.002690804483159, -3.027173597679226 ], [ 38.996526254483165, -3.027356703679235 ], [ 38.992131722483172, -3.028455336679262 ], [ 38.989324105483199, -3.030957777679252 ], [ 38.987309945483155, -3.034864027679252 ], [ 38.984319222483172, -3.037183363679223 ], [ 38.978337777483198, -3.041272718679242 ], [ 38.9749198084832, -3.041944105679253 ], [ 38.969914925483174, -3.042066175679228 ], [ 38.957097543483194, -3.040967543679248 ], [ 38.953923714483203, -3.040967543679248 ], [ 38.950322640483186, -3.040174086679262 ], [ 38.944097054483159, -3.037976820679265 ], [ 38.940740121483195, -3.037061293679248 ], [ 38.93750525748316, -3.036939222679226 ], [ 38.931706918483194, -3.042371351679268 ], [ 38.92773963248316, -3.042249281679236 ], [ 38.923711312483185, -3.043042738679223 ], [ 38.917485726483157, -3.045178968679242 ], [ 38.91211463248316, -3.045056898679267 ], [ 38.907720101483157, -3.044446547679232 ], [ 38.903691781483182, -3.044568617679264 ], [ 38.901311410483167, -3.042249281679236 ], [ 38.898931039483152, -3.040479261679256 ], [ 38.89453650748316, -3.040235121679249 ], [ 38.889897836483208, -3.042432386679256 ], [ 38.879704964483203, -3.049146254679275 ], [ 38.876531136483202, -3.051648695679265 ], [ 38.873296273483156, -3.053235609679238 ], [ 38.867742074483196, -3.05708082467925 ], [ 38.863713754483165, -3.059461195679265 ], [ 38.851933968483188, -3.062879164679263 ], [ 38.847905648483156, -3.06294019967925 ], [ 38.846501839483203, -3.059644300679228 ], [ 38.845098031483182, -3.057141859679238 ], [ 38.8421073084832, -3.056043226679268 ], [ 38.839726937483185, -3.05763014067924 ], [ 38.837102425483174, -3.060865004679275 ], [ 38.829717171483189, -3.062451918679248 ], [ 38.826116097483172, -3.063672621679249 ], [ 38.821294320483155, -3.068433363679223 ], [ 38.818303597483172, -3.069654066679224 ], [ 38.81390906648317, -3.069776136679256 ], [ 38.810124886483202, -3.070142347679226 ], [ 38.806523812483185, -3.070935804679269 ], [ 38.802922738483169, -3.070142347679226 ], [ 38.79968787548318, -3.068372328679235 ], [ 38.798711312483185, -3.06544264067924 ], [ 38.799932015483186, -3.06153639067924 ], [ 38.80414344148317, -3.060254652679252 ], [ 38.807134164483152, -3.061780531679236 ], [ 38.809941781483182, -3.059766371679249 ], [ 38.810124886483202, -3.056043226679268 ], [ 38.807317269483171, -3.054761488679223 ], [ 38.800542367483153, -3.05427320767922 ], [ 38.79773475048318, -3.053662855679253 ], [ 38.793889535483167, -3.05177076567924 ], [ 38.789495004483165, -3.050244886679256 ], [ 38.785527718483188, -3.050244886679256 ], [ 38.782536996483195, -3.050733168679248 ], [ 38.77930213248316, -3.050061781679236 ], [ 38.777287972483172, -3.047559339679257 ], [ 38.774114144483171, -3.045667250679234 ], [ 38.770329964483203, -3.045545179679269 ], [ 38.766545785483167, -3.046277601679268 ], [ 38.761907113483169, -3.04786451567924 ], [ 38.757512582483166, -3.048963148679267 ], [ 38.753301156483182, -3.048230726679268 ], [ 38.74890662548318, -3.046765882679271 ], [ 38.745732796483189, -3.045972425679228 ], [ 38.742925179483159, -3.045484144679225 ], [ 38.735723031483182, -3.044873793679248 ], [ 38.732915414483152, -3.044141371679249 ], [ 38.725713265483186, -3.039746839679257 ], [ 38.722539437483185, -3.038770277679252 ], [ 38.719304574483196, -3.038159925679228 ], [ 38.716130746483195, -3.036634047679232 ], [ 38.708928597483172, -3.034375746679249 ], [ 38.704900277483198, -3.034375746679249 ], [ 38.69531775748316, -3.037976820679265 ], [ 38.68750525748316, -3.037976820679265 ], [ 38.684514535483167, -3.037366468679242 ], [ 38.680486214483203, -3.037854750679234 ], [ 38.6760916834832, -3.038953382679271 ], [ 38.669133675483174, -3.040235121679249 ], [ 38.665715707483166, -3.041272718679242 ], [ 38.663335336483208, -3.036878187679239 ], [ 38.662541879483165, -3.032666761679256 ], [ 38.659490121483195, -3.029676039679263 ], [ 38.65430213248316, -3.027234632679271 ], [ 38.652715218483188, -3.024732191679224 ], [ 38.650517953483181, -3.021863539679263 ], [ 38.64789344148317, -3.019544203679235 ], [ 38.646123421483189, -3.017346937679239 ], [ 38.6428885584832, -3.014966566679224 ], [ 38.638738168483194, -3.013867933679254 ], [ 38.635320199483196, -3.013440687679239 ], [ 38.632512582483166, -3.014051039679263 ], [ 38.629521859483184, -3.014173109679238 ], [ 38.626103890483186, -3.012647230679253 ], [ 38.617742074483196, -3.01215894967925 ], [ 38.614507211483208, -3.010083754679275 ], [ 38.610112679483159, -3.009168226679268 ], [ 38.607488168483194, -3.005261976679268 ], [ 38.609136117483153, -3.001050550679228 ], [ 38.608891976483157, -2.997449476679268 ], [ 38.605535043483194, -2.998853285679221 ], [ 38.602300179483159, -3.001050550679228 ], [ 38.598332894483171, -3.001355726679268 ], [ 38.593938363483169, -3.000867445679265 ], [ 38.588323129483165, -2.994641859679238 ], [ 38.586736214483203, -2.991834242679264 ], [ 38.583501351483157, -2.989636976679268 ], [ 38.578740609483184, -2.98927076567924 ], [ 38.575505746483195, -2.989636976679268 ], [ 38.572087777483198, -2.988965589679257 ], [ 38.568730843483188, -2.988965589679257 ], [ 38.56531287548318, -2.989331800679228 ], [ 38.562139046483189, -2.988843519679225 ], [ 38.557744515483186, -2.987439711679262 ], [ 38.55414344148317, -2.98536451567924 ], [ 38.550908578483181, -2.982984144679225 ], [ 38.544499886483202, -2.981763441679224 ], [ 38.539311898483156, -2.976331312679239 ], [ 38.536138070483155, -2.976270277679252 ], [ 38.5335135584832, -2.97755201567924 ], [ 38.530339730483199, -2.978040297679232 ], [ 38.526128304483159, -2.976575453679235 ], [ 38.522710336483208, -2.977063734679238 ], [ 38.518926156483182, -2.976880629679275 ], [ 38.515508187483185, -2.974256117679264 ], [ 38.513494027483198, -2.970532972679226 ], [ 38.511540902483198, -2.968274672679232 ], [ 38.508916390483186, -2.966931898679267 ], [ 38.50531531648317, -2.967053968679242 ], [ 38.501531136483202, -2.962232191679224 ], [ 38.499333871483195, -2.958936293679248 ], [ 38.49609900748316, -2.958264906679236 ], [ 38.492925179483159, -2.956250746679249 ], [ 38.493901742483153, -2.952771742679264 ], [ 38.492314828483181, -2.949964125679234 ], [ 38.489324105483199, -2.945935804679269 ], [ 38.48914100048318, -2.942029554679269 ], [ 38.487493050483174, -2.938672621679249 ], [ 38.484502328483181, -2.938550550679228 ], [ 38.480901254483165, -2.939344007679271 ], [ 38.476933968483188, -2.938672621679249 ], [ 38.475713265483186, -2.935865004679275 ], [ 38.475530160483167, -2.932263929679269 ], [ 38.474492562483185, -2.928052504679275 ], [ 38.472295296483189, -2.923047621679249 ], [ 38.469487679483159, -2.917981703679235 ], [ 38.467900765483186, -2.913281996679249 ], [ 38.465520394483171, -2.909680922679232 ], [ 38.463140023483156, -2.907666761679256 ], [ 38.461736214483203, -2.905042250679234 ], [ 38.461736214483203, -2.90083082467925 ], [ 38.458501351483157, -2.897351820679265 ], [ 38.453313363483169, -2.896741468679242 ], [ 38.451299203483181, -2.894544203679235 ], [ 38.452092660483167, -2.891248304679269 ], [ 38.454289925483174, -2.888562757679271 ], [ 38.455693734483184, -2.885877211679262 ], [ 38.454106820483155, -2.882459242679264 ], [ 38.450505746483195, -2.881482679679269 ], [ 38.446538461483208, -2.882154066679224 ], [ 38.443913949483196, -2.879163343679242 ], [ 38.446111214483203, -2.87544019967925 ], [ 38.445928109483184, -2.871045668679248 ], [ 38.4417166834832, -2.868482191679224 ], [ 38.43890906648317, -2.864759047679232 ], [ 38.439885629483165, -2.860242445679265 ], [ 38.43750525748316, -2.857984144679225 ], [ 38.433721078483181, -2.857556898679267 ], [ 38.430303109483184, -2.854932386679256 ], [ 38.428899300483174, -2.850843031679236 ], [ 38.430120004483165, -2.848035414679263 ], [ 38.431890023483156, -2.844556410679221 ], [ 38.431340707483166, -2.838941175679228 ], [ 38.427495492483153, -2.830274183679254 ], [ 38.42773963248316, -2.826062757679271 ], [ 38.427312386483202, -2.821729261679256 ], [ 38.425115121483195, -2.818982679679269 ], [ 38.421514046483189, -2.817578871679249 ], [ 38.419133675483174, -2.813977797679232 ], [ 38.420537484483184, -2.811048109679238 ], [ 38.422490609483184, -2.80763014067924 ], [ 38.42273475048318, -2.803662855679253 ], [ 38.423345101483157, -2.799939711679262 ], [ 38.425725472483172, -2.79646070767922 ], [ 38.429326546483189, -2.795056898679267 ], [ 38.43250037548318, -2.791761000679234 ], [ 38.431340707483166, -2.787183363679223 ], [ 38.42914344148317, -2.783765394679225 ], [ 38.427495492483153, -2.780164320679265 ], [ 38.426335824483196, -2.774365980679253 ], [ 38.424321664483152, -2.770581800679228 ], [ 38.421514046483189, -2.762830336679262 ], [ 38.418523324483196, -2.758069593679242 ], [ 38.415898812483185, -2.754773695679265 ], [ 38.414128793483194, -2.751844007679271 ], [ 38.411504281483182, -2.741162855679253 ], [ 38.410100472483172, -2.737378675679228 ], [ 38.40710975048318, -2.733167250679234 ], [ 38.404729379483165, -2.728772718679242 ], [ 38.402532113483169, -2.723950941679224 ], [ 38.401311410483167, -2.720777113679223 ], [ 38.400334847483172, -2.717359144679225 ], [ 38.39789344148317, -2.711255629679275 ], [ 38.396733773483156, -2.70747144967925 ], [ 38.393926156483182, -2.702832777679252 ], [ 38.391118539483152, -2.695935804679269 ], [ 38.389897836483208, -2.691541273679267 ], [ 38.388921273483156, -2.686780531679236 ], [ 38.386296761483202, -2.67927320767922 ], [ 38.384709847483172, -2.676648695679265 ], [ 38.3831229334832, -2.673535902679252 ], [ 38.382329476483157, -2.670667250679234 ], [ 38.382695687483185, -2.666150648679267 ], [ 38.379888070483155, -2.662366468679242 ], [ 38.376714242483153, -2.660169203679235 ], [ 38.368901742483153, -2.653638441679224 ], [ 38.3674979334832, -2.650952894679225 ], [ 38.367925179483159, -2.647229750679234 ], [ 38.367925179483159, -2.644177992679264 ], [ 38.364934457483166, -2.642041761679256 ], [ 38.362920296483189, -2.637830336679262 ], [ 38.362493050483174, -2.632764418679248 ], [ 38.360906136483202, -2.628064711679262 ], [ 38.356694711483208, -2.616834242679264 ], [ 38.355107796483189, -2.613477308679254 ], [ 38.354131234483184, -2.609265882679271 ], [ 38.351323617483153, -2.604383070679265 ], [ 38.349492562483185, -2.600476820679265 ], [ 38.348332894483171, -2.592847425679228 ], [ 38.345098031483182, -2.589978773679267 ], [ 38.340520394483171, -2.588574964679257 ], [ 38.339116586483208, -2.585340101679268 ], [ 38.33734656648317, -2.578137953679235 ], [ 38.336125863483169, -2.574842054679269 ], [ 38.335515511483202, -2.57185133267922 ], [ 38.333501351483157, -2.567761976679268 ], [ 38.332707894483171, -2.56403883267922 ], [ 38.335515511483202, -2.562573988679223 ], [ 38.338506234483184, -2.558362562679239 ], [ 38.33594275748316, -2.555554945679265 ], [ 38.332524789483152, -2.552930433679254 ], [ 38.32953406648317, -2.552136976679268 ], [ 38.325688851483157, -2.551648695679265 ], [ 38.32312537548318, -2.549756605679253 ], [ 38.323735726483157, -2.546033461679262 ], [ 38.322515023483156, -2.542066175679228 ], [ 38.32031775748316, -2.538343031679236 ], [ 38.321294320483155, -2.534864027679252 ], [ 38.321904671483189, -2.531629164679263 ], [ 38.318303597483172, -2.525159437679239 ], [ 38.317937386483202, -2.519177992679264 ], [ 38.31531287548318, -2.515943129679275 ], [ 38.313115609483184, -2.513928968679242 ], [ 38.313298714483203, -2.505261976679268 ], [ 38.310124886483202, -2.503064711679262 ], [ 38.303716195483155, -2.500867445679265 ], [ 38.300298226483157, -2.497571547679232 ], [ 38.298711312483185, -2.49317701567924 ], [ 38.29633094148317, -2.488965589679257 ], [ 38.292912972483172, -2.487744886679256 ], [ 38.28992225048318, -2.486463148679267 ], [ 38.28851844148317, -2.483167250679234 ], [ 38.288091195483155, -2.478467543679248 ], [ 38.287297738483169, -2.474256117679264 ], [ 38.285893929483159, -2.470532972679226 ], [ 38.285527718483188, -2.466870863679223 ], [ 38.283940804483159, -2.459363539679263 ], [ 38.2835135584832, -2.455762464679257 ], [ 38.281743539483152, -2.451673109679238 ], [ 38.280339730483199, -2.447766859679238 ], [ 38.279912484483184, -2.444654066679224 ], [ 38.278935921483189, -2.441236097679226 ], [ 38.277532113483169, -2.437146742679264 ], [ 38.276738656483182, -2.433972914679263 ], [ 38.275945199483196, -2.429761488679223 ], [ 38.274114144483171, -2.425977308679254 ], [ 38.27094031648317, -2.424573500679234 ], [ 38.267705453483181, -2.424451429679269 ], [ 38.263310921483189, -2.423780043679248 ], [ 38.259709847483172, -2.422437269679225 ], [ 38.256902230483199, -2.423047621679249 ], [ 38.253728402483198, -2.423169691679224 ], [ 38.251103890483186, -2.421582777679252 ], [ 38.248113168483194, -2.419141371679249 ], [ 38.246892464483203, -2.416577894679225 ], [ 38.244939339483203, -2.414441664679263 ], [ 38.241704476483157, -2.412976820679265 ], [ 38.238103402483198, -2.412061293679248 ], [ 38.235539925483174, -2.409680922679232 ], [ 38.234319222483172, -2.406751234679238 ], [ 38.231511605483199, -2.40388258267922 ], [ 38.224309457483166, -2.40192945767922 ], [ 38.22211219148317, -2.398572523679267 ], [ 38.219487679483159, -2.388379652679252 ], [ 38.218938363483169, -2.383740980679253 ], [ 38.2171073084832, -2.378980238679223 ], [ 38.215520394483171, -2.372754652679252 ], [ 38.213140023483156, -2.364881117679264 ], [ 38.212529671483189, -2.361463148679267 ], [ 38.21094275748316, -2.357251722679226 ], [ 38.202092660483167, -2.355969984679238 ], [ 38.198308480483199, -2.355176527679252 ], [ 38.19672156648317, -2.351758558679254 ], [ 38.189702523483156, -2.342969496679249 ], [ 38.187139046483189, -2.34138258267922 ], [ 38.183110726483157, -2.340344984679238 ], [ 38.17969275748316, -2.340467054679269 ], [ 38.176518929483159, -2.34083326567924 ], [ 38.172490609483184, -2.33888014067924 ], [ 38.168096078483181, -2.337049086679262 ], [ 38.164495004483165, -2.335767347679226 ], [ 38.156926644483171, -2.331433851679268 ], [ 38.153142464483203, -2.330030043679248 ], [ 38.151128304483159, -2.327466566679224 ], [ 38.149114144483171, -2.324475843679242 ], [ 38.144109261483202, -2.323072035679221 ], [ 38.138738168483194, -2.322766859679238 ], [ 38.134343636483202, -2.32325514067924 ], [ 38.131536019483171, -2.323865492679264 ], [ 38.127690804483159, -2.324170668679248 ], [ 38.124089730483199, -2.320935804679269 ], [ 38.120122445483155, -2.317761976679268 ], [ 38.117131722483172, -2.313977797679232 ], [ 38.116704476483157, -2.308850843679242 ], [ 38.115727914483152, -2.305066664679263 ], [ 38.11273719148317, -2.304151136679256 ], [ 38.110112679483159, -2.302075941679224 ], [ 38.11133338248316, -2.298169691679224 ], [ 38.111089242483153, -2.293836195679265 ], [ 38.112126839483203, -2.289929945679265 ], [ 38.109929574483196, -2.287244398679267 ], [ 38.106145394483171, -2.286267836679262 ], [ 38.102910531483182, -2.28474195767922 ], [ 38.100713265483186, -2.281934339679257 ], [ 38.099309457483166, -2.27778394967925 ], [ 38.095525277483198, -2.275464613679223 ], [ 38.089726937483185, -2.275281507679271 ], [ 38.086919320483155, -2.272351820679265 ], [ 38.086308968483188, -2.268140394679225 ], [ 38.084538949483196, -2.264539320679265 ], [ 38.080693734483184, -2.263379652679252 ], [ 38.076909554483159, -2.263562757679271 ], [ 38.076543343483188, -2.259961683679254 ], [ 38.076726449483196, -2.257031996679249 ], [ 38.074101937483185, -2.254651625679234 ], [ 38.072942269483171, -2.251172621679249 ], [ 38.072698129483165, -2.247266371679249 ], [ 38.072698129483165, -2.244336683679254 ], [ 38.072331918483194, -2.240979750679234 ], [ 38.070928109483184, -2.232678968679242 ], [ 38.070134652483198, -2.229383070679265 ], [ 38.068913949483196, -2.226453382679271 ], [ 38.064885629483165, -2.224744398679267 ], [ 38.064885629483165, -2.221265394679225 ], [ 38.068120492483153, -2.219251234679238 ], [ 38.070745004483165, -2.216565687679239 ], [ 38.066106332483166, -2.214063246679249 ], [ 38.062322152483198, -2.21137769967925 ], [ 38.060307992483153, -2.207959730679253 ], [ 38.056523812483185, -2.197766859679238 ], [ 38.055730355483199, -2.193677504679275 ], [ 38.055120004483165, -2.189344007679271 ], [ 38.051946175483174, -2.186231214679257 ], [ 38.0491385584832, -2.181958754679275 ], [ 38.050542367483153, -2.178357679679269 ], [ 38.051335824483196, -2.174878675679228 ], [ 38.048894418483194, -2.170972425679228 ], [ 38.044133675483174, -2.168836195679265 ], [ 38.038701546483189, -2.169080336679262 ], [ 38.029546273483156, -2.164563734679238 ], [ 38.0257010584832, -2.160230238679223 ], [ 38.023686898483156, -2.152661879679275 ], [ 38.022527230483199, -2.14997633267922 ], [ 38.019719613483169, -2.149365980679253 ], [ 38.013494027483198, -2.15278394967925 ], [ 38.010503304483159, -2.153943617679264 ], [ 38.006902230483199, -2.155164320679265 ], [ 38.000737679483159, -2.156629164679263 ], [ 37.98969031648317, -2.159864027679252 ], [ 37.986516488483169, -2.161573011679256 ], [ 37.984136117483153, -2.163281996679249 ], [ 37.98132850048318, -2.164136488679223 ], [ 37.977727425483174, -2.164868910679221 ], [ 37.974309457483166, -2.166272718679242 ], [ 37.971318734483184, -2.168836195679265 ], [ 37.966130746483195, -2.167981703679235 ], [ 37.965337289483152, -2.163831312679239 ], [ 37.96570350048318, -2.160047132679271 ], [ 37.965337289483152, -2.157056410679221 ], [ 37.964543832483166, -2.153577406679236 ], [ 37.963933480483199, -2.145581800679228 ], [ 37.956914437483185, -2.138440687679239 ], [ 37.954717171483189, -2.135938246679249 ], [ 37.954900277483198, -2.132337172679232 ], [ 37.955693734483184, -2.128064711679262 ], [ 37.955510629483165, -2.124341566679224 ], [ 37.956120980483199, -2.120862562679239 ], [ 37.95789100048318, -2.114453871679249 ], [ 37.9573416834832, -2.111646254679275 ], [ 37.958135140483186, -2.107984144679225 ], [ 37.960088265483186, -2.10395582467925 ], [ 37.958928597483172, -2.098828871679249 ], [ 37.958745492483153, -2.095044691679224 ], [ 37.959538949483196, -2.092176039679263 ], [ 37.959905160483167, -2.087354261679256 ], [ 37.960515511483202, -2.082959730679253 ], [ 37.96094275748316, -2.078382093679242 ], [ 37.960698617483153, -2.073743422679232 ], [ 37.960088265483186, -2.069165785679221 ], [ 37.957707894483171, -2.063855726679268 ], [ 37.955144418483194, -2.058972914679263 ], [ 37.95593787548318, -2.051282484679238 ], [ 37.95453406648317, -2.048230726679268 ], [ 37.952092660483167, -2.040662367679264 ], [ 37.9495291834832, -2.036939222679226 ], [ 37.946111214483203, -2.039380629679275 ], [ 37.943730843483188, -2.036573011679256 ], [ 37.94031287548318, -2.035352308679254 ], [ 37.942143929483159, -2.032849867679264 ], [ 37.943120492483153, -2.029676039679263 ], [ 37.944097054483159, -2.025464613679223 ], [ 37.940740121483195, -2.022656996679249 ], [ 37.940129769483171, -2.019239027679252 ], [ 37.9417166834832, -2.014966566679224 ], [ 37.939702523483156, -2.011853773679267 ], [ 37.937139046483189, -2.009778578679235 ], [ 37.937932504483165, -2.005384047679232 ], [ 37.935307992483153, -2.002637464679257 ], [ 37.930303109483184, -1.998670179679268 ], [ 37.930913461483151, -1.994458754679274 ], [ 37.925725472483172, -1.987256605679252 ], [ 37.92468787548318, -1.984571058679253 ], [ 37.92273475048318, -1.977429945679264 ], [ 37.921514046483189, -1.974439222679225 ], [ 37.918340218483188, -1.965467054679268 ], [ 37.916692269483171, -1.960584242679263 ], [ 37.915288461483151, -1.955640394679224 ], [ 37.917119515483186, -1.951856214679256 ], [ 37.917119515483186, -1.948743422679231 ], [ 37.914311898483156, -1.940930922679231 ], [ 37.910710824483196, -1.93635328567922 ], [ 37.910893929483159, -1.932263929679268 ], [ 37.912724984483184, -1.92854078567922 ], [ 37.911687386483202, -1.92493971167926 ], [ 37.91211463248316, -1.92176588267927 ], [ 37.91351844148317, -1.919263441679223 ], [ 37.914128793483194, -1.915662367679263 ], [ 37.917912972483172, -1.912366468679241 ], [ 37.919316781483182, -1.908765394679224 ], [ 37.918523324483196, -1.904737074679249 ], [ 37.914128793483194, -1.904553968679241 ], [ 37.909490121483195, -1.905835707679219 ], [ 37.906499398483156, -1.904431898679266 ], [ 37.906926644483171, -1.901074964679256 ], [ 37.907720101483157, -1.897473890679239 ], [ 37.90710975048318, -1.893262464679256 ], [ 37.904546273483156, -1.886365492679263 ], [ 37.903508675483174, -1.882947523679266 ], [ 37.904119027483198, -1.879163343679241 ], [ 37.900090707483166, -1.872266371679248 ], [ 37.900517953483181, -1.868848402679251 ], [ 37.902104867483153, -1.865979750679233 ], [ 37.900334847483172, -1.863477308679253 ], [ 37.893743050483174, -1.861035902679251 ], [ 37.889714730483199, -1.861157972679225 ], [ 37.887334359483184, -1.856946547679231 ], [ 37.886113656483182, -1.854383070679264 ], [ 37.886296761483202, -1.850537855679252 ], [ 37.888310921483189, -1.846265394679224 ], [ 37.892339242483153, -1.844739515679239 ], [ 37.893743050483174, -1.841931898679266 ], [ 37.8909354334832, -1.838147718679241 ], [ 37.887334359483184, -1.835584242679263 ], [ 37.882512582483166, -1.834546644679224 ], [ 37.879521859483184, -1.831739027679251 ], [ 37.874516976483157, -1.825879652679251 ], [ 37.871343148483156, -1.822644789679262 ], [ 37.868718636483202, -1.818738539679262 ], [ 37.866338265483186, -1.816968519679224 ], [ 37.861943734483184, -1.812879164679262 ], [ 37.856694711483151, -1.806958754679274 ], [ 37.851933968483188, -1.801953871679248 ], [ 37.849126351483157, -1.799878675679227 ], [ 37.844914925483174, -1.792066175679227 ], [ 37.843511117483153, -1.788281996679248 ], [ 37.841741097483172, -1.784131605679252 ], [ 37.840093148483156, -1.781568129679274 ], [ 37.841130746483195, -1.778577406679235 ], [ 37.840337289483152, -1.774365980679252 ], [ 37.842717660483167, -1.769666273679266 ], [ 37.846929086483151, -1.769177992679263 ], [ 37.850286019483171, -1.770948011679254 ], [ 37.853093636483202, -1.768140394679224 ], [ 37.854741586483151, -1.764234144679224 ], [ 37.85492469148317, -1.759839613679221 ], [ 37.856145394483171, -1.755872328679234 ], [ 37.854741586483151, -1.751538832679219 ], [ 37.85492469148317, -1.747754652679251 ], [ 37.853887093483188, -1.744763929679268 ], [ 37.85352088248316, -1.741162855679252 ], [ 37.851506722483172, -1.736463148679266 ], [ 37.851323617483153, -1.732556898679266 ], [ 37.8499198084832, -1.729871351679267 ], [ 37.846318734483184, -1.726331312679238 ], [ 37.845891488483169, -1.722364027679251 ], [ 37.846135629483165, -1.718030531679235 ], [ 37.845342171483189, -1.714063246679248 ], [ 37.841313851483157, -1.712354261679254 ], [ 37.837102425483174, -1.71174391067922 ], [ 37.836919320483155, -1.707471449679249 ], [ 37.838323129483165, -1.702954847679225 ], [ 37.837529671483189, -1.698255140679239 ], [ 37.837712777483198, -1.693433363679221 ], [ 37.833745492483153, -1.69056471167926 ], [ 37.830327523483156, -1.683850843679241 ], [ 37.825932992483153, -1.684644300679227 ], [ 37.821904671483189, -1.683179457679219 ], [ 37.820745004483165, -1.678662855679252 ], [ 37.82312537548318, -1.672376234679237 ], [ 37.822331918483194, -1.66877516067922 ], [ 37.818730843483188, -1.665662367679263 ], [ 37.81390906648317, -1.663037855679252 ], [ 37.810918343483188, -1.660169203679234 ], [ 37.809331429483159, -1.656934339679256 ], [ 37.806523812483185, -1.655164320679264 ], [ 37.806340707483166, -1.651380140679239 ], [ 37.802495492483153, -1.650159437679238 ], [ 37.804509652483198, -1.644666273679266 ], [ 37.803716195483155, -1.64143141067922 ], [ 37.801335824483196, -1.636853773679266 ], [ 37.798100961483151, -1.632764418679247 ], [ 37.796514046483189, -1.629651625679233 ], [ 37.793706429483159, -1.628247816679223 ], [ 37.792912972483172, -1.623670179679268 ], [ 37.78992225048318, -1.619336683679253 ], [ 37.787908089483203, -1.615552504679274 ], [ 37.785344613483169, -1.613965589679256 ], [ 37.784490121483195, -1.610974867679263 ], [ 37.783940804483159, -1.607984144679224 ], [ 37.781743539483152, -1.603772718679241 ], [ 37.777715218483188, -1.59846266067922 ], [ 37.776494515483186, -1.595777113679221 ], [ 37.7757010584832, -1.592359144679224 ], [ 37.773137582483166, -1.586865980679252 ], [ 37.76953650748316, -1.585462172679231 ], [ 37.766728890483186, -1.58387525767927 ], [ 37.764104379483165, -1.581983168679247 ], [ 37.762090218483188, -1.579846937679238 ], [ 37.760320199483196, -1.577344496679248 ], [ 37.758916390483186, -1.574048597679225 ], [ 37.757329476483157, -1.571179945679264 ], [ 37.754888070483155, -1.56916578567922 ], [ 37.753728402483198, -1.566480238679221 ], [ 37.751714242483153, -1.562879164679262 ], [ 37.751286996483195, -1.559766371679248 ], [ 37.7503104334832, -1.556348402679251 ], [ 37.746343148483156, -1.555982191679223 ], [ 37.742314828483181, -1.55457838267927 ], [ 37.736699593483188, -1.548535902679251 ], [ 37.731938851483157, -1.542066175679227 ], [ 37.725713265483186, -1.531079847679225 ], [ 37.724492562483185, -1.526746351679267 ], [ 37.721745980483199, -1.525342543679247 ], [ 37.715337289483152, -1.514661390679239 ], [ 37.714116586483151, -1.511975843679241 ], [ 37.71051551348318, -1.510449964679256 ], [ 37.706120980483199, -1.509229261679254 ], [ 37.702519906483182, -1.509961683679253 ], [ 37.697515023483156, -1.503675062679238 ], [ 37.695928109483184, -1.500379164679262 ], [ 37.69812537548318, -1.498365004679274 ], [ 37.700688851483157, -1.495374281679235 ], [ 37.70313025748316, -1.492932875679233 ], [ 37.70789100048318, -1.49134596167926 ], [ 37.71234656648317, -1.490979750679233 ], [ 37.721135629483165, -1.495130140679239 ], [ 37.725896371483195, -1.495862562679238 ], [ 37.72992469148317, -1.497266371679248 ], [ 37.734319222483172, -1.498365004679274 ], [ 37.739507211483151, -1.497266371679248 ], [ 37.742742074483196, -1.496167738679221 ], [ 37.74609900748316, -1.49525221167926 ], [ 37.752934945483155, -1.492871839679256 ], [ 37.760137093483188, -1.491468031679235 ], [ 37.76312781648317, -1.490430433679253 ], [ 37.77094031648317, -1.489453871679248 ], [ 37.774724496483195, -1.488233168679247 ], [ 37.778325570483155, -1.483838636679254 ], [ 37.780339730483199, -1.480237562679238 ], [ 37.780339730483199, -1.477063734679237 ], [ 37.781316293483194, -1.474073011679254 ], [ 37.783696664483152, -1.471265394679224 ], [ 37.78851844148317, -1.468335707679219 ], [ 37.790898812483185, -1.466260511679254 ], [ 37.79492713248316, -1.46174391067922 ], [ 37.798894418483194, -1.458081800679227 ], [ 37.801946175483174, -1.455640394679224 ], [ 37.80469275748316, -1.453870375679233 ], [ 37.80750037548318, -1.451551039679262 ], [ 37.810307992483153, -1.449964125679233 ], [ 37.817510140483186, -1.449170668679247 ], [ 37.817693246483195, -1.445264418679247 ], [ 37.815923226483157, -1.442761976679267 ], [ 37.813542855483199, -1.440869886679254 ], [ 37.814336312483185, -1.437635023679266 ], [ 37.813298714483203, -1.434461195679264 ], [ 37.812932504483165, -1.430371839679256 ], [ 37.810918343483188, -1.426160414679262 ], [ 37.809941781483182, -1.421460707679219 ], [ 37.808721078483181, -1.417066175679227 ], [ 37.805730355483199, -1.404859144679224 ], [ 37.80609656648317, -1.401563246679248 ], [ 37.805120004483165, -1.396863539679262 ], [ 37.802312386483202, -1.39637525767927 ], [ 37.79968787548318, -1.397534925679227 ], [ 37.799321664483152, -1.393872816679223 ], [ 37.797124398483156, -1.38947828567922 ], [ 37.79492713248316, -1.386365492679263 ], [ 37.791936410483167, -1.382642347679225 ], [ 37.790532601483157, -1.378247816679223 ], [ 37.786687386483202, -1.37775953567922 ], [ 37.77930213248316, -1.369153578679234 ], [ 37.777715218483188, -1.365369398679266 ], [ 37.776128304483159, -1.362683851679267 ], [ 37.77148963248316, -1.361463148679266 ], [ 37.769109261483202, -1.359632093679241 ], [ 37.766301644483171, -1.358472425679227 ], [ 37.76312781648317, -1.357556898679266 ], [ 37.755925668483194, -1.358472425679227 ], [ 37.752324593483188, -1.359143812679238 ], [ 37.74890662548318, -1.359571058679253 ], [ 37.746343148483156, -1.357068617679263 ], [ 37.745488656483182, -1.352857191679223 ], [ 37.743108285483167, -1.351331312679238 ], [ 37.7405448084832, -1.348828871679248 ], [ 37.73828650748316, -1.344739515679239 ], [ 37.734929574483196, -1.34364088267927 ], [ 37.732915414483152, -1.340039808679253 ], [ 37.731145394483171, -1.335156996679248 ], [ 37.729131234483184, -1.331067640679239 ], [ 37.725713265483186, -1.323255140679239 ], [ 37.724736703483181, -1.319348890679239 ], [ 37.725102914483152, -1.316358168679247 ], [ 37.722722543483194, -1.314466078679234 ], [ 37.721135629483165, -1.310681898679266 ], [ 37.718938363483169, -1.306165297679231 ], [ 37.717534554483159, -1.302381117679263 ], [ 37.714726937483185, -1.300366957679219 ], [ 37.714543832483166, -1.296948988679221 ], [ 37.714116586483151, -1.293347914679262 ], [ 37.710088265483186, -1.291150648679266 ], [ 37.708318246483195, -1.286756117679263 ], [ 37.706914437483185, -1.28205641067922 ], [ 37.70453406648317, -1.278577406679235 ], [ 37.702703011483202, -1.27424391067922 ], [ 37.699712289483152, -1.272962172679231 ], [ 37.697942269483171, -1.269483168679247 ], [ 37.696538461483151, -1.263379652679251 ], [ 37.695134652483198, -1.25965650767927 ], [ 37.694341195483155, -1.255445082679219 ], [ 37.691899789483152, -1.250745375679233 ], [ 37.689336312483185, -1.246656019679224 ], [ 37.689702523483156, -1.242932875679233 ], [ 37.685491097483172, -1.237073500679233 ], [ 37.682134164483152, -1.236157972679225 ], [ 37.67773963248316, -1.234632093679241 ], [ 37.675542367483153, -1.231153089679256 ], [ 37.669499886483202, -1.224744398679266 ], [ 37.666936410483167, -1.220166761679254 ], [ 37.664128793483194, -1.217237074679249 ], [ 37.662541879483165, -1.213941175679227 ], [ 37.660527718483188, -1.21174391067922 ], [ 37.657903207483166, -1.209729750679233 ], [ 37.656499398483156, -1.207166273679266 ], [ 37.656133187483185, -1.203870375679233 ], [ 37.653142464483203, -1.201245863679221 ], [ 37.650090707483166, -1.198255140679239 ], [ 37.64734412548318, -1.189954359679237 ], [ 37.645085824483196, -1.186170179679268 ], [ 37.644109261483202, -1.182874281679235 ], [ 37.642522347483172, -1.179456312679238 ], [ 37.640508187483185, -1.174329359679237 ], [ 37.63812781648317, -1.169263441679223 ], [ 37.635686410483167, -1.165052015679239 ], [ 37.633733285483167, -1.162976820679264 ], [ 37.631902230483199, -1.160474379679274 ], [ 37.629888070483155, -1.158277113679221 ], [ 37.627934945483155, -1.154676039679262 ], [ 37.624333871483195, -1.14954908667926 ], [ 37.62109900748316, -1.146741468679241 ], [ 37.617925179483159, -1.14533766067922 ], [ 37.61414100048318, -1.144544203679234 ], [ 37.609746468483188, -1.143140394679224 ], [ 37.60632850048318, -1.144483168679247 ], [ 37.604497445483155, -1.142041761679254 ], [ 37.604741586483151, -1.139173109679237 ], [ 37.60352088248316, -1.136548597679225 ], [ 37.601323617483153, -1.133863050679227 ], [ 37.59851600048318, -1.133374769679224 ], [ 37.596318734483184, -1.089246351679267 ], [ 37.667119515483186, -1.086072523679266 ], [ 37.6760916834832, -1.085340101679267 ], [ 37.693303597483172, -1.084363539679262 ], [ 37.734319222483172, -1.082532484679237 ], [ 37.746526254483165, -1.091443617679263 ], [ 37.753118050483174, -1.096753675679227 ], [ 37.762090218483188, -1.103162367679263 ], [ 37.7678885584832, -1.107740004679274 ], [ 37.77429725048318, -1.112378675679227 ], [ 37.777532113483169, -1.114942152679251 ], [ 37.787908089483203, -1.122266371679248 ], [ 37.792119515483186, -1.125684339679256 ], [ 37.794133675483174, -1.12806471167926 ], [ 37.796941293483194, -1.124829847679225 ], [ 37.79968787548318, -1.120862562679238 ], [ 37.802495492483153, -1.118848402679251 ], [ 37.802922738483169, -1.114942152679251 ], [ 37.804936898483156, -1.111463148679266 ], [ 37.806706918483194, -1.107556898679266 ], [ 37.808537972483172, -1.100537855679252 ], [ 37.808721078483181, -1.097364027679251 ], [ 37.809697640483186, -1.094251234679237 ], [ 37.81250525748316, -1.090772230679252 ], [ 37.81531287548318, -1.087964613679221 ], [ 37.8167166834832, -1.085462172679231 ], [ 37.818913949483196, -1.082959730679252 ], [ 37.819890511483202, -1.079480726679267 ], [ 37.822331918483194, -1.073133070679264 ], [ 37.826909554483159, -1.072949964679256 ], [ 37.830693734483184, -1.071363050679227 ], [ 37.832524789483152, -1.06916578567922 ], [ 37.834722054483159, -1.065869886679254 ], [ 37.836308968483188, -1.062329847679225 ], [ 37.839116586483151, -1.058240492679263 ], [ 37.841924203483181, -1.054334242679263 ], [ 37.845342171483189, -1.051465589679256 ], [ 37.847539437483185, -1.047254164679262 ], [ 37.848699105483199, -1.043958265679239 ], [ 37.847539437483185, -1.031262953679234 ], [ 37.849492562483185, -1.027478773679266 ], [ 37.8499198084832, -1.023633558679253 ], [ 37.850286019483171, -1.014661390679239 ], [ 37.850896371483195, -1.010266859679237 ], [ 37.850530160483167, -1.005261976679267 ], [ 37.847905648483156, -1.001966078679234 ], [ 37.847295296483189, -0.99775465267925 ], [ 37.850530160483167, -0.995130140679239 ], [ 37.852300179483159, -0.991468031679235 ], [ 37.855290902483198, -0.988965589679256 ], [ 37.858891976483157, -0.987744886679254 ], [ 37.8655448084832, -0.983838636679254 ], [ 37.863896859483184, -0.981336195679264 ], [ 37.8674979334832, -0.980054457679219 ], [ 37.867314828483181, -0.975537855679252 ], [ 37.863713754483165, -0.974866468679241 ], [ 37.863896859483184, -0.971265394679224 ], [ 37.860906136483202, -0.970471937679238 ], [ 37.858342660483167, -0.968762953679234 ], [ 37.852910531483182, -0.968579847679225 ], [ 37.848699105483199, -0.967664320679264 ], [ 37.84570838248316, -0.966565687679238 ], [ 37.849126351483157, -0.964368422679231 ], [ 37.853093636483202, -0.963147718679241 ], [ 37.85352088248316, -0.959729750679233 ], [ 37.850286019483171, -0.955762464679256 ], [ 37.851140511483202, -0.95197828567922 ], [ 37.847905648483156, -0.948743422679231 ], [ 37.848088754483165, -0.944531996679248 ], [ 37.851140511483202, -0.943555433679253 ], [ 37.853093636483202, -0.940381605679252 ], [ 37.8499198084832, -0.933545668679246 ], [ 37.847539437483185, -0.931165297679231 ], [ 37.844121471483156, -0.930249769679224 ], [ 37.843511117483153, -0.926343519679224 ], [ 37.842290414483152, -0.922864515679239 ], [ 37.838689339483203, -0.922376234679237 ], [ 37.839116586483151, -0.915967543679246 ], [ 37.83789588248316, -0.912854750679233 ], [ 37.8342948084832, -0.913465101679267 ], [ 37.833928597483172, -0.909253675679227 ], [ 37.83093787548318, -0.906079847679225 ], [ 37.827886117483153, -0.903577406679235 ], [ 37.8245291834832, -0.902539808679253 ], [ 37.819890511483202, -0.902356703679234 ], [ 37.819097054483159, -0.898877699679249 ], [ 37.822087777483198, -0.897229750679233 ], [ 37.823735726483157, -0.893079359679237 ], [ 37.822331918483194, -0.889051039679262 ], [ 37.821538461483151, -0.88557203567922 ], [ 37.822331918483194, -0.882581312679238 ], [ 37.825322640483186, -0.877332289679262 ], [ 37.827092660483167, -0.874768812679238 ], [ 37.826909554483159, -0.870679457679219 ], [ 37.828740609483184, -0.868177015679239 ], [ 37.831914437483185, -0.866468031679235 ], [ 37.829717171483189, -0.86317213267927 ], [ 37.830510629483165, -0.860059339679256 ], [ 37.83594275748316, -0.854261000679233 ], [ 37.838323129483165, -0.85145338267927 ], [ 37.837529671483189, -0.84846266067922 ], [ 37.840886605483199, -0.847180922679231 ], [ 37.844731820483155, -0.844251234679237 ], [ 37.842534554483159, -0.841931898679266 ], [ 37.841924203483181, -0.838452894679224 ], [ 37.844121468483188, -0.836682875679233 ], [ 37.848088754483165, -0.835340101679267 ], [ 37.847539437483185, -0.831555922679231 ], [ 37.847905648483156, -0.823438246679248 ], [ 37.844731820483155, -0.821179945679264 ], [ 37.84570838248316, -0.817273695679264 ], [ 37.846135629483165, -0.813733656679235 ], [ 37.850102914483152, -0.813062269679224 ], [ 37.855107796483189, -0.812451918679246 ], [ 37.859929574483196, -0.813855726679267 ], [ 37.863896859483184, -0.813733656679235 ], [ 37.867314828483181, -0.812573988679221 ], [ 37.871343148483156, -0.813184339679256 ], [ 37.879094613483169, -0.809033949679249 ], [ 37.883306039483152, -0.809766371679248 ], [ 37.884892953483181, -0.806653578679234 ], [ 37.883489144483171, -0.803052504679274 ], [ 37.880498421483189, -0.798963148679266 ], [ 37.881108773483156, -0.793653089679256 ], [ 37.883733285483167, -0.791455824679249 ], [ 37.884099496483195, -0.787854750679233 ], [ 37.884892953483181, -0.784375746679248 ], [ 37.888494027483198, -0.782971937679238 ], [ 37.892705453483181, -0.782483656679235 ], [ 37.893315804483159, -0.777173597679225 ], [ 37.8928885584832, -0.773877699679249 ], [ 37.892095101483157, -0.770032484679237 ], [ 37.89594031648317, -0.766370375679233 ], [ 37.900090707483166, -0.763745863679221 ], [ 37.903142464483203, -0.760755140679239 ], [ 37.904729379483165, -0.756543714679256 ], [ 37.907903207483166, -0.75275953567922 ], [ 37.910344613483169, -0.749463636679254 ], [ 37.912724984483184, -0.74494703567922 ], [ 37.914311898483156, -0.741162855679252 ], [ 37.91351844148317, -0.738050062679238 ], [ 37.916509164483152, -0.731336195679264 ], [ 37.91492225048318, -0.727552015679239 ], [ 37.914128793483194, -0.720349867679263 ], [ 37.91351844148317, -0.717237074679249 ], [ 37.913091195483155, -0.713574964679256 ], [ 37.911138070483155, -0.710340101679267 ], [ 37.908696664483152, -0.713269789679262 ], [ 37.905339730483199, -0.711865980679252 ], [ 37.901128304483159, -0.711682875679233 ], [ 37.899724496483195, -0.707166273679266 ], [ 37.901494515483186, -0.69715650767927 ], [ 37.904119027483198, -0.692334730679252 ], [ 37.903142464483203, -0.687573988679221 ], [ 37.89789344148317, -0.686231214679256 ], [ 37.896123421483189, -0.682630140679239 ], [ 37.89648963248316, -0.678662855679252 ], [ 37.896306527483198, -0.675550062679238 ], [ 37.897710336483151, -0.672376234679237 ], [ 37.89594031648317, -0.669446547679231 ], [ 37.894902719483177, -0.664563737679262 ], [ 37.893926156483182, -0.658765394679224 ], [ 37.893743050483174, -0.653760511679254 ], [ 37.89453650748316, -0.649060804679268 ], [ 37.898137582483166, -0.646436293679246 ], [ 37.901494515483186, -0.645154554679268 ], [ 37.90570594148317, -0.642774183679253 ], [ 37.908696664483152, -0.640637953679234 ], [ 37.910710824483196, -0.638440687679238 ], [ 37.917485726483157, -0.633557875679233 ], [ 37.920110238483169, -0.631177504679217 ], [ 37.922917855483199, -0.62775953567922 ], [ 37.92133094148317, -0.624829847679225 ], [ 37.917912972483172, -0.621656019679224 ], [ 37.912541879483165, -0.615064222679225 ], [ 37.904729379483165, -0.60658033667926 ], [ 37.902287972483172, -0.601941664679262 ], [ 37.900945199483196, -0.598157484679237 ], [ 37.897527230483199, -0.596143324679249 ], [ 37.89453650748316, -0.594129164679262 ], [ 37.891545785483167, -0.591077406679235 ], [ 37.884099496483195, -0.585156996679248 ], [ 37.884343636483202, -0.581555922679231 ], [ 37.88672400748316, -0.572644789679262 ], [ 37.888494027483198, -0.561963636679254 ], [ 37.88812781648317, -0.555432875679233 ], [ 37.886907113483169, -0.551953871679248 ], [ 37.885930550483174, -0.547864515679239 ], [ 37.884099496483195, -0.544873793679246 ], [ 37.883306039483152, -0.541638929679268 ], [ 37.8831229334832, -0.537976820679264 ], [ 37.884526742483153, -0.534253675679227 ], [ 37.885503304483159, -0.530469496679248 ], [ 37.887334359483184, -0.527173597679225 ], [ 37.890691293483194, -0.520032484679237 ], [ 37.8928885584832, -0.516858656679235 ], [ 37.893498910483167, -0.512769300679227 ], [ 37.896306527483198, -0.50947340267925 ], [ 37.897710336483151, -0.506238539679262 ], [ 37.900334847483172, -0.501050550679227 ], [ 37.90570594148317, -0.488843519679224 ], [ 37.907292855483199, -0.485974867679263 ], [ 37.909123910483167, -0.481763441679223 ], [ 37.912908089483203, -0.473828871679248 ], [ 37.914311898483156, -0.468762953679234 ], [ 37.917485726483157, -0.465283949679249 ], [ 37.920537484483184, -0.462232191679223 ], [ 37.922490609483184, -0.459363539679262 ], [ 37.926702035483167, -0.454053480679252 ], [ 37.92914344148317, -0.451428968679241 ], [ 37.931340707483166, -0.447583754679217 ], [ 37.934941781483182, -0.44056471167926 ], [ 37.936345589483203, -0.435559828679234 ], [ 37.935735238483169, -0.432080824679249 ], [ 37.938115609483184, -0.429883558679253 ], [ 37.941289437483185, -0.427869398679266 ], [ 37.944097054483159, -0.429273207679219 ], [ 37.947087777483198, -0.430249769679224 ], [ 37.94812537548318, -0.427259047679231 ], [ 37.951909554483159, -0.427869398679266 ], [ 37.955510629483165, -0.42493971167926 ], [ 37.960515511483202, -0.420362074679249 ], [ 37.961736214483203, -0.416455824679249 ], [ 37.965520394483171, -0.413281996679248 ], [ 37.966496957483166, -0.408948500679233 ], [ 37.965520394483171, -0.405774672679231 ], [ 37.966496957483166, -0.40223463267927 ], [ 37.969914925483174, -0.400342543679246 ], [ 37.970098031483182, -0.387036879679217 ], [ 37.971318734483184, -0.383679945679264 ], [ 37.974736703483181, -0.379956800679227 ], [ 37.974492562483185, -0.374768812679238 ], [ 37.973332894483171, -0.37025221167926 ], [ 37.969304574483196, -0.366162855679252 ], [ 37.972539437483185, -0.361768324679249 ], [ 37.9749198084832, -0.359754164679262 ], [ 37.977544320483155, -0.358472425679227 ], [ 37.979741586483151, -0.35627516067922 ], [ 37.976323617483153, -0.352857191679223 ], [ 37.972905648483156, -0.34846266067922 ], [ 37.973088754483165, -0.344434339679256 ], [ 37.975530160483167, -0.340772230679252 ], [ 37.978093636483202, -0.335950453679234 ], [ 37.979741586483151, -0.332166273679266 ], [ 37.980901254483165, -0.328565199679249 ], [ 37.98633338248316, -0.32587965267925 ], [ 37.986699593483188, -0.321668226679267 ], [ 37.985295785483167, -0.31916578567922 ], [ 37.9827323084832, -0.317334730679252 ], [ 37.980535043483194, -0.314282972679225 ], [ 37.982305062483185, -0.31043775767927 ], [ 37.983525765483186, -0.30653150767927 ], [ 37.984502328483181, -0.302381117679263 ], [ 37.986699593483188, -0.297742445679264 ], [ 37.990300668483194, -0.292554457679219 ], [ 37.992925179483159, -0.289441664679262 ], [ 37.993535531483182, -0.286145765679239 ], [ 37.993901742483153, -0.277967054679268 ], [ 37.995732796483189, -0.273267347679225 ], [ 37.997136605483199, -0.27033766067922 ], [ 37.999944222483172, -0.267530043679246 ], [ 38.00531531648317, -0.267530043679246 ], [ 38.012090218483188, -0.268872816679223 ], [ 38.016545785483167, -0.26923902767925 ], [ 38.019902718483188, -0.26923902767925 ], [ 38.024114144483171, -0.269544203679234 ], [ 38.028508675483174, -0.271070082679219 ], [ 38.032720101483157, -0.275647718679241 ], [ 38.03711463248316, -0.276136000679233 ], [ 38.044744027483198, -0.277967054679268 ], [ 38.0491385584832, -0.278333265679239 ], [ 38.053716195483155, -0.278272230679252 ], [ 38.058110726483157, -0.277967054679268 ], [ 38.061345589483203, -0.278760511679254 ], [ 38.065129769483171, -0.277173597679225 ], [ 38.068730843483188, -0.277356703679234 ], [ 38.071904671483189, -0.276746351679267 ], [ 38.076299203483181, -0.276441175679227 ], [ 38.081731332483166, -0.27723463267927 ], [ 38.090886605483199, -0.277173597679225 ], [ 38.095342171483189, -0.278882582679219 ], [ 38.099309457483166, -0.280652601679267 ], [ 38.103093636483202, -0.281873304679268 ], [ 38.106145394483171, -0.279065687679238 ], [ 38.110723031483182, -0.278882582679219 ], [ 38.114934457483166, -0.279065687679238 ], [ 38.116704476483157, -0.276563246679248 ], [ 38.119695199483196, -0.274365980679252 ], [ 38.123296273483156, -0.272168714679256 ], [ 38.126531136483202, -0.269666273679266 ], [ 38.127934945483155, -0.266858656679235 ], [ 38.130132211483208, -0.263867933679253 ], [ 38.132939828483181, -0.261243422679231 ], [ 38.136540902483198, -0.259046156679235 ], [ 38.138921273483156, -0.253858168679246 ], [ 38.139287484483184, -0.250684339679256 ], [ 38.140508187483185, -0.247266371679248 ], [ 38.142705453483181, -0.244641859679237 ], [ 38.14594031648317, -0.242261488679221 ], [ 38.150517953483181, -0.243482191679223 ], [ 38.154729379483165, -0.241773207679219 ], [ 38.159123910483167, -0.240674574679249 ], [ 38.162297738483169, -0.238477308679253 ], [ 38.164495004483165, -0.23518141067922 ], [ 38.16492225048318, -0.230664808679253 ], [ 38.164128793483194, -0.227063734679237 ], [ 38.167302621483195, -0.220166761679254 ], [ 38.169133675483174, -0.216931898679266 ], [ 38.172917855483199, -0.21204908667926 ], [ 38.179509652483198, -0.199536879679217 ], [ 38.182134164483152, -0.195447523679266 ], [ 38.183293832483166, -0.192334730679252 ], [ 38.184697640483186, -0.185865004679217 ], [ 38.184941781483182, -0.182080824679249 ], [ 38.186345589483203, -0.177930433679253 ], [ 38.185307992483153, -0.172254164679262 ], [ 38.185124886483202, -0.168347914679262 ], [ 38.185491097483172, -0.163831312679238 ], [ 38.186101449483196, -0.160230238679221 ], [ 38.187322152483198, -0.155347425679227 ], [ 38.190740121483195, -0.154065687679238 ], [ 38.194341195483155, -0.154065687679238 ], [ 38.196111214483203, -0.150464613679221 ], [ 38.199895394483171, -0.148755629679217 ], [ 38.20453406648317, -0.148267347679225 ], [ 38.207524789483152, -0.143750746679248 ], [ 38.206914437483185, -0.138745863679221 ], [ 38.2073416834832, -0.13447340267925 ], [ 38.208928597483172, -0.130139906679235 ], [ 38.212712777483198, -0.12806471167926 ], [ 38.214726937483185, -0.117749769679224 ], [ 38.216924203483181, -0.114575941679223 ], [ 38.219121468483188, -0.111951429679268 ], [ 38.220891488483169, -0.10926588267927 ], [ 38.224126351483157, -0.106336195679264 ], [ 38.22852088248316, -0.103955824679249 ], [ 38.231938851483157, -0.100354750679233 ], [ 38.235723031483182, -0.096936781679235 ], [ 38.239507211483208, -0.095655043679246 ], [ 38.243718636483202, -0.093946058679253 ], [ 38.247319711483208, -0.091260511679254 ], [ 38.251531136483202, -0.090467054679268 ], [ 38.254521859483184, -0.091138441679223 ], [ 38.259709847483172, -0.093762953679234 ], [ 38.26312781648317, -0.096753675679227 ], [ 38.2678885584832, -0.097730238679221 ], [ 38.271306527483198, -0.098950941679223 ], [ 38.27429725048318, -0.097180922679231 ], [ 38.275517953483181, -0.092969496679248 ], [ 38.277532113483169, -0.09065016067922 ], [ 38.282292855483199, -0.088758070679264 ], [ 38.286931527483198, -0.089368422679231 ], [ 38.288335336483208, -0.086560804679268 ], [ 38.289311898483156, -0.083448011679254 ], [ 38.291692269483171, -0.080762464679256 ], [ 38.295537484483184, -0.078382093679241 ], [ 38.2991385584832, -0.074964125679233 ], [ 38.301702035483167, -0.071851332679219 ], [ 38.30273963248316, -0.067578871679248 ], [ 38.304326546483189, -0.064466078679234 ], [ 38.306706918483194, -0.061048109679237 ], [ 38.310124886483202, -0.056653578679234 ], [ 38.314336312483185, -0.05653150767927 ], [ 38.318486703483181, -0.059949476679267 ], [ 38.322942269483171, -0.06416090267925 ], [ 38.325139535483167, -0.068433363679221 ], [ 38.328313363483169, -0.070081312679238 ] ] ] } } +, +{ "type": "Feature", "id": 16, "properties": { "OBJECTID": 17, "ID_": 5438, "COUNTY_NAM": "MACHAKOS", "CONST_CODE": 76, "CONSTITUEN": "YATTA", "COUNTY_COD": 16, "Shape_Leng": 5.69857534187, "Shape_Area": 0.49098460969 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.744623066483193, -0.781862207679242 ], [ 37.746343148483156, -0.785474379679217 ], [ 37.74750281648317, -0.788343031679235 ], [ 37.748113168483194, -0.791150648679266 ], [ 37.748296273483156, -0.795178968679241 ], [ 37.749333871483195, -0.798230726679267 ], [ 37.7503104334832, -0.802136976679267 ], [ 37.750737679483159, -0.805677015679239 ], [ 37.754888070483155, -0.815869886679254 ], [ 37.756291879483165, -0.820142347679225 ], [ 37.75812293448319, -0.824964125679233 ], [ 37.762517464483203, -0.826245863679221 ], [ 37.769902718483188, -0.82606275767927 ], [ 37.771916879483165, -0.823438246679248 ], [ 37.775334847483172, -0.824658949679249 ], [ 37.778508675483174, -0.826673109679237 ], [ 37.783696664483152, -0.82606275767927 ], [ 37.788945687483185, -0.824231703679234 ], [ 37.792729867483153, -0.820935804679268 ], [ 37.796941293483194, -0.818982679679268 ], [ 37.798711312483185, -0.815381605679252 ], [ 37.801335824483196, -0.811963636679254 ], [ 37.803716195483155, -0.808362562679238 ], [ 37.806890023483156, -0.805249769679224 ], [ 37.808537972483172, -0.809583265679239 ], [ 37.808293832483166, -0.813733656679235 ], [ 37.809697640483186, -0.816663343679241 ], [ 37.813115609483184, -0.813977797679231 ], [ 37.815923226483157, -0.809766371679248 ], [ 37.818913949483196, -0.807263929679268 ], [ 37.822515023483156, -0.80744703567922 ], [ 37.825688851483157, -0.808362562679238 ], [ 37.828740609483184, -0.808240492679263 ], [ 37.830327523483156, -0.810742933679253 ], [ 37.832097543483194, -0.814466078679234 ], [ 37.835088265483186, -0.815930922679231 ], [ 37.838323129483165, -0.813367445679264 ], [ 37.842534554483159, -0.813550550679227 ], [ 37.845525277483198, -0.814038832679219 ], [ 37.84570838248316, -0.817273695679264 ], [ 37.844731820483155, -0.821179945679264 ], [ 37.847905648483156, -0.823438246679248 ], [ 37.847539437483185, -0.831555922679231 ], [ 37.848088754483165, -0.835340101679267 ], [ 37.844121468483188, -0.836682875679233 ], [ 37.841924203483181, -0.838452894679224 ], [ 37.842534554483159, -0.841931898679266 ], [ 37.844731820483155, -0.844251234679237 ], [ 37.840886605483199, -0.847180922679231 ], [ 37.837529671483189, -0.84846266067922 ], [ 37.838323129483165, -0.85145338267927 ], [ 37.836308968483188, -0.854261000679233 ], [ 37.83289100048318, -0.857434828679234 ], [ 37.830510629483165, -0.860059339679256 ], [ 37.829717171483189, -0.86317213267927 ], [ 37.83093787548318, -0.867261488679221 ], [ 37.827092660483167, -0.869336683679253 ], [ 37.827092660483167, -0.873365004679274 ], [ 37.825139535483167, -0.87806471167926 ], [ 37.822331918483194, -0.882581312679238 ], [ 37.821538461483151, -0.88557203567922 ], [ 37.822331918483194, -0.889051039679262 ], [ 37.823735726483157, -0.893079359679237 ], [ 37.822087777483198, -0.897229750679233 ], [ 37.819097054483159, -0.898877699679249 ], [ 37.820134652483198, -0.902478773679266 ], [ 37.8245291834832, -0.902539808679253 ], [ 37.827886117483153, -0.903577406679235 ], [ 37.83093787548318, -0.906079847679225 ], [ 37.833928597483172, -0.909253675679227 ], [ 37.8342948084832, -0.913465101679267 ], [ 37.83789588248316, -0.912854750679233 ], [ 37.839116586483151, -0.915967543679246 ], [ 37.838689339483203, -0.922376234679237 ], [ 37.841741097483172, -0.92268141067922 ], [ 37.843511117483153, -0.926343519679224 ], [ 37.843694222483172, -0.930249769679224 ], [ 37.847539437483185, -0.931165297679231 ], [ 37.8499198084832, -0.933545668679246 ], [ 37.851140511483202, -0.936963636679254 ], [ 37.853093636483202, -0.940381605679252 ], [ 37.851140511483202, -0.943555433679253 ], [ 37.848088754483165, -0.94447096167926 ], [ 37.847905648483156, -0.948743422679231 ], [ 37.851140511483202, -0.95197828567922 ], [ 37.850286019483171, -0.955762464679256 ], [ 37.85352088248316, -0.959729750679233 ], [ 37.853093636483202, -0.963147718679241 ], [ 37.848699105483199, -0.964429457679219 ], [ 37.84570838248316, -0.966565687679238 ], [ 37.848699105483199, -0.967664320679264 ], [ 37.852910531483182, -0.968579847679225 ], [ 37.858342660483167, -0.968762953679234 ], [ 37.860906136483202, -0.970471937679238 ], [ 37.863896859483184, -0.971265394679224 ], [ 37.863713754483165, -0.974866468679241 ], [ 37.867314828483181, -0.975537855679252 ], [ 37.8674979334832, -0.980054457679219 ], [ 37.863896859483184, -0.981336195679264 ], [ 37.8655448084832, -0.983960707679219 ], [ 37.862126839483203, -0.985059339679256 ], [ 37.858891976483157, -0.987744886679254 ], [ 37.855290902483198, -0.988965589679256 ], [ 37.852300179483159, -0.991468031679235 ], [ 37.850530160483167, -0.995130140679239 ], [ 37.847295296483189, -0.99775465267925 ], [ 37.847905648483156, -1.001966078679234 ], [ 37.850530160483167, -1.005261976679267 ], [ 37.850896371483195, -1.010266859679237 ], [ 37.850286019483171, -1.014661390679239 ], [ 37.8499198084832, -1.023633558679253 ], [ 37.849492562483185, -1.027478773679266 ], [ 37.847539437483185, -1.031262953679234 ], [ 37.848088754483165, -1.037854750679233 ], [ 37.848699105483199, -1.042249281679235 ], [ 37.846135629483165, -1.050061781679235 ], [ 37.844731820483155, -1.052869398679266 ], [ 37.841924203483181, -1.054334242679263 ], [ 37.836308968483188, -1.062329847679225 ], [ 37.834722054483159, -1.065869886679254 ], [ 37.832524789483152, -1.06916578567922 ], [ 37.830693734483184, -1.071363050679227 ], [ 37.826909554483159, -1.072949964679256 ], [ 37.822331918483194, -1.073133070679264 ], [ 37.819890511483202, -1.079480726679267 ], [ 37.818913949483196, -1.082959730679252 ], [ 37.8167166834832, -1.085462172679231 ], [ 37.81531287548318, -1.087964613679221 ], [ 37.812322152483198, -1.091077406679235 ], [ 37.809087289483152, -1.09486158667926 ], [ 37.808721078483181, -1.099134047679231 ], [ 37.807744515483186, -1.103955824679249 ], [ 37.806706918483194, -1.107556898679266 ], [ 37.804936898483156, -1.111463148679266 ], [ 37.802922738483169, -1.114942152679251 ], [ 37.802495492483153, -1.118848402679251 ], [ 37.799504769483171, -1.121167738679221 ], [ 37.796697152483198, -1.124951918679247 ], [ 37.792119515483186, -1.125684339679256 ], [ 37.787908089483203, -1.122266371679248 ], [ 37.777532113483169, -1.114942152679251 ], [ 37.77429725048318, -1.112378675679227 ], [ 37.7678885584832, -1.107740004679274 ], [ 37.762334359483184, -1.102552015679239 ], [ 37.753118050483174, -1.096753675679227 ], [ 37.746526254483165, -1.091443617679263 ], [ 37.734319222483172, -1.082532484679237 ], [ 37.693303597483172, -1.084363539679262 ], [ 37.675908578483181, -1.085340101679267 ], [ 37.667119515483186, -1.086072523679266 ], [ 37.604131234483184, -1.088941175679227 ], [ 37.595525277483198, -1.088880140679239 ], [ 37.596745980483199, -1.096753675679227 ], [ 37.597539437483185, -1.11213453567922 ], [ 37.597295296483189, -1.119641859679237 ], [ 37.598088754483165, -1.125684339679256 ], [ 37.59851600048318, -1.133374769679224 ], [ 37.601323617483153, -1.133863050679227 ], [ 37.60352088248316, -1.136548597679225 ], [ 37.604741586483151, -1.139173109679237 ], [ 37.604497445483155, -1.142041761679254 ], [ 37.60632850048318, -1.144483168679247 ], [ 37.609746468483188, -1.143140394679224 ], [ 37.61414100048318, -1.144544203679234 ], [ 37.61914588248316, -1.145764906679235 ], [ 37.62250281648317, -1.148084242679263 ], [ 37.6253104334832, -1.150464613679221 ], [ 37.627141488483169, -1.153943617679263 ], [ 37.633733285483167, -1.162976820679264 ], [ 37.635686410483167, -1.165052015679239 ], [ 37.63812781648317, -1.169263441679223 ], [ 37.640508187483185, -1.174329359679237 ], [ 37.642522347483172, -1.179456312679238 ], [ 37.644109261483202, -1.182874281679235 ], [ 37.645085824483196, -1.186170179679268 ], [ 37.647527230483199, -1.19025953567922 ], [ 37.650090707483166, -1.198255140679239 ], [ 37.652287972483172, -1.200574476679267 ], [ 37.654912484483184, -1.202466566679223 ], [ 37.656499398483156, -1.205762464679256 ], [ 37.657536996483195, -1.209668714679256 ], [ 37.660710824483196, -1.211865980679252 ], [ 37.662541879483165, -1.214063246679248 ], [ 37.664128793483194, -1.217359144679224 ], [ 37.666936410483167, -1.219983656679235 ], [ 37.669316781483182, -1.224744398679266 ], [ 37.672917855483199, -1.228162367679263 ], [ 37.675542367483153, -1.231153089679256 ], [ 37.677312386483202, -1.23426588267927 ], [ 37.682134164483152, -1.236157972679225 ], [ 37.686101449483196, -1.238050062679238 ], [ 37.68890906648317, -1.241834242679263 ], [ 37.689336312483185, -1.246656019679224 ], [ 37.691899789483152, -1.250745375679233 ], [ 37.694341195483155, -1.255445082679219 ], [ 37.695134652483198, -1.25965650767927 ], [ 37.696538461483151, -1.263379652679251 ], [ 37.697942269483171, -1.268140394679224 ], [ 37.698735726483157, -1.271741468679241 ], [ 37.702519906483182, -1.274182875679233 ], [ 37.70453406648317, -1.278577406679235 ], [ 37.706914437483185, -1.281934339679256 ], [ 37.708135140483186, -1.28626783667926 ], [ 37.709722054483159, -1.29017408667926 ], [ 37.714116586483151, -1.294568617679263 ], [ 37.714543832483166, -1.300061781679235 ], [ 37.717534554483159, -1.302442152679251 ], [ 37.718511117483153, -1.306165297679231 ], [ 37.720525277483198, -1.309278089679256 ], [ 37.72211219148317, -1.313184339679256 ], [ 37.725102914483152, -1.316236097679225 ], [ 37.724736703483181, -1.319348890679239 ], [ 37.725713265483186, -1.323133070679264 ], [ 37.729131234483184, -1.331067640679239 ], [ 37.733098519483171, -1.338880140679239 ], [ 37.7327323084832, -1.342481214679256 ], [ 37.735539925483174, -1.343762953679234 ], [ 37.73828650748316, -1.344739515679239 ], [ 37.7405448084832, -1.348828871679248 ], [ 37.743108285483167, -1.351331312679238 ], [ 37.745488656483182, -1.352857191679223 ], [ 37.746343148483156, -1.355664808679253 ], [ 37.745488656483182, -1.358472425679227 ], [ 37.74890662548318, -1.35926588267927 ], [ 37.752690804483159, -1.358960707679219 ], [ 37.76312781648317, -1.357556898679266 ], [ 37.766301644483171, -1.358350355679252 ], [ 37.769109261483202, -1.359632093679241 ], [ 37.77148963248316, -1.361463148679266 ], [ 37.776128304483159, -1.362683851679267 ], [ 37.777898324483196, -1.365735609679237 ], [ 37.778935921483189, -1.368665297679231 ], [ 37.78070594148317, -1.371778089679256 ], [ 37.783696664483152, -1.374341566679223 ], [ 37.786687386483202, -1.37775953567922 ], [ 37.790532601483157, -1.378247816679223 ], [ 37.791936410483167, -1.382581312679238 ], [ 37.79492713248316, -1.386365492679263 ], [ 37.797124398483156, -1.38947828567922 ], [ 37.799321664483152, -1.393872816679223 ], [ 37.79968787548318, -1.397534925679227 ], [ 37.802312386483202, -1.39637525767927 ], [ 37.805120004483165, -1.396863539679262 ], [ 37.80609656648317, -1.401563246679248 ], [ 37.805730355483199, -1.404676039679262 ], [ 37.806523812483185, -1.408460218679241 ], [ 37.809941781483182, -1.421460707679219 ], [ 37.810918343483188, -1.426160414679262 ], [ 37.812932504483165, -1.430432875679233 ], [ 37.813298714483203, -1.434461195679264 ], [ 37.814336312483185, -1.437635023679266 ], [ 37.813542855483199, -1.440869886679254 ], [ 37.815923226483157, -1.442761976679267 ], [ 37.819707406483182, -1.44837721167926 ], [ 37.816533578483181, -1.449658949679249 ], [ 37.810307992483153, -1.449964125679233 ], [ 37.80750037548318, -1.451551039679262 ], [ 37.80469275748316, -1.453870375679233 ], [ 37.801702035483167, -1.455640394679224 ], [ 37.798894418483194, -1.458081800679227 ], [ 37.79492713248316, -1.46174391067922 ], [ 37.790898812483185, -1.466260511679254 ], [ 37.78851844148317, -1.468335707679219 ], [ 37.783696664483152, -1.471265394679224 ], [ 37.781316293483194, -1.474073011679254 ], [ 37.780339730483199, -1.477063734679237 ], [ 37.780339730483199, -1.480237562679238 ], [ 37.778325570483155, -1.483838636679254 ], [ 37.774724496483195, -1.488233168679247 ], [ 37.77094031648317, -1.489453871679248 ], [ 37.765325082483166, -1.490064222679225 ], [ 37.760503304483159, -1.490857679679268 ], [ 37.756108773483156, -1.492261488679221 ], [ 37.752690804483159, -1.491834242679263 ], [ 37.749333871483195, -1.49403150767927 ], [ 37.74609900748316, -1.49525221167926 ], [ 37.742742074483196, -1.496167738679221 ], [ 37.739507211483151, -1.497266371679248 ], [ 37.734319222483172, -1.498365004679274 ], [ 37.72992469148317, -1.497266371679248 ], [ 37.725713265483186, -1.495862562679238 ], [ 37.720891488483169, -1.495069105679252 ], [ 37.716313851483157, -1.492749769679224 ], [ 37.71234656648317, -1.490979750679233 ], [ 37.70789100048318, -1.49134596167926 ], [ 37.70313025748316, -1.492932875679233 ], [ 37.700688851483157, -1.495374281679235 ], [ 37.69812537548318, -1.498365004679274 ], [ 37.69531775748316, -1.499463636679254 ], [ 37.697515023483156, -1.503675062679238 ], [ 37.702519906483182, -1.509961683679253 ], [ 37.706120980483199, -1.509229261679254 ], [ 37.71051551348318, -1.510449964679256 ], [ 37.714116586483151, -1.511975843679241 ], [ 37.715337289483152, -1.514844496679248 ], [ 37.719731820483155, -1.522046644679224 ], [ 37.721135629483165, -1.525037367679263 ], [ 37.723699105483199, -1.526929457679219 ], [ 37.725530160483167, -1.531079847679225 ], [ 37.730107796483189, -1.538465101679267 ], [ 37.731938851483157, -1.542066175679227 ], [ 37.736699593483188, -1.548535902679251 ], [ 37.742314828483181, -1.55457838267927 ], [ 37.746343148483156, -1.555982191679223 ], [ 37.7503104334832, -1.556348402679251 ], [ 37.751286996483195, -1.559766371679248 ], [ 37.751714242483153, -1.562879164679262 ], [ 37.753118050483174, -1.56556471167926 ], [ 37.753545296483189, -1.568738539679262 ], [ 37.750737679483159, -1.570752699679249 ], [ 37.747319711483151, -1.571179945679264 ], [ 37.74414588248316, -1.572949964679256 ], [ 37.738103402483198, -1.576673109679237 ], [ 37.735906136483202, -1.579541761679254 ], [ 37.733708871483195, -1.583448011679254 ], [ 37.736516488483169, -1.586438734679237 ], [ 37.73633338248316, -1.590344984679237 ], [ 37.735906136483202, -1.594068129679274 ], [ 37.733342660483167, -1.596631605679252 ], [ 37.729741586483151, -1.59876783667926 ], [ 37.729131234483184, -1.603955824679249 ], [ 37.725102914483152, -1.606763441679223 ], [ 37.72211219148317, -1.609448988679221 ], [ 37.718694222483172, -1.610364515679239 ], [ 37.712102425483174, -1.606641371679248 ], [ 37.711125863483169, -1.603772718679241 ], [ 37.70648719148317, -1.595777113679221 ], [ 37.705327523483156, -1.591870863679221 ], [ 37.703740609483184, -1.588880140679239 ], [ 37.701543343483188, -1.586438734679237 ], [ 37.698918832483166, -1.587842543679247 ], [ 37.695500863483169, -1.588330824679249 ], [ 37.689702523483156, -1.589551527679251 ], [ 37.685307992483153, -1.587659437679238 ], [ 37.686345589483203, -1.592542250679233 ], [ 37.688725961483151, -1.596753675679227 ], [ 37.689885629483165, -1.599378187679238 ], [ 37.690495980483199, -1.602429945679264 ], [ 37.68890906648317, -1.60627516067922 ], [ 37.687688363483169, -1.611280043679247 ], [ 37.688298714483203, -1.61604078567922 ], [ 37.688298714483203, -1.620069105679252 ], [ 37.684514535483167, -1.622266371679248 ], [ 37.683110726483157, -1.625562269679224 ], [ 37.681523812483185, -1.628675062679238 ], [ 37.674504769483171, -1.633557875679233 ], [ 37.672124398483156, -1.637036879679274 ], [ 37.67133094148317, -1.639844496679248 ], [ 37.668889535483167, -1.643262464679256 ], [ 37.665898812483185, -1.645764906679235 ], [ 37.661504281483182, -1.645581800679227 ], [ 37.6585135584832, -1.642163832679219 ], [ 37.65710975048318, -1.63856275767927 ], [ 37.655889046483189, -1.633252699679249 ], [ 37.651128304483159, -1.631238539679262 ], [ 37.650517953483181, -1.626538832679219 ], [ 37.648503793483194, -1.622632582679219 ], [ 37.646733773483156, -1.619763929679268 ], [ 37.645085824483196, -1.615979750679233 ], [ 37.643743050483174, -1.611035902679251 ], [ 37.643498910483167, -1.606946547679231 ], [ 37.643498910483167, -1.600537855679252 ], [ 37.6428885584832, -1.597669203679234 ], [ 37.643498910483167, -1.594678480679252 ], [ 37.641301644483171, -1.592542250679233 ], [ 37.641301644483171, -1.589063246679248 ], [ 37.638310921483189, -1.59065016067922 ], [ 37.635503304483159, -1.591870863679221 ], [ 37.632512582483166, -1.591748793679247 ], [ 37.62891150748316, -1.588452894679224 ], [ 37.624089730483199, -1.58314283667926 ], [ 37.622319711483151, -1.580030043679247 ], [ 37.620488656483182, -1.57606275767927 ], [ 37.620122445483155, -1.572461683679253 ], [ 37.61914588248316, -1.568982679679268 ], [ 37.614934457483166, -1.566663343679241 ], [ 37.609929574483196, -1.568067152679251 ], [ 37.6077323084832, -1.56434400767927 ], [ 37.602544320483155, -1.563977797679231 ], [ 37.600530160483167, -1.561780531679235 ], [ 37.598088754483165, -1.554334242679263 ], [ 37.595525277483198, -1.556043226679267 ], [ 37.593328011483202, -1.558240492679263 ], [ 37.58929969148317, -1.560559828679234 ], [ 37.585332406483182, -1.561963636679254 ], [ 37.582707894483171, -1.563977797679231 ], [ 37.579717171483189, -1.567029554679268 ], [ 37.575139535483167, -1.566968519679224 ], [ 37.576543343483188, -1.560742933679253 ], [ 37.572331918483194, -1.560071547679231 ], [ 37.568486703483181, -1.560132582679219 ], [ 37.564336312483185, -1.561780531679235 ], [ 37.5589041834832, -1.560132582679219 ], [ 37.557927621483195, -1.557141859679237 ], [ 37.56250525748316, -1.555432875679233 ], [ 37.559941781483182, -1.552564222679225 ], [ 37.556523812483185, -1.551953871679248 ], [ 37.552312386483202, -1.550855238679221 ], [ 37.551335824483196, -1.547254164679262 ], [ 37.55469275748316, -1.545056898679266 ], [ 37.554936898483156, -1.542066175679227 ], [ 37.551702035483167, -1.53986891067922 ], [ 37.548528207483166, -1.539136488679221 ], [ 37.545720589483203, -1.540357191679223 ], [ 37.543706429483159, -1.542737562679238 ], [ 37.538335336483151, -1.542554457679219 ], [ 37.534734261483202, -1.542066175679227 ], [ 37.531316293483194, -1.540540297679231 ], [ 37.527104867483153, -1.539746839679256 ], [ 37.523503793483194, -1.54017408667926 ], [ 37.521123421483189, -1.538648207679219 ], [ 37.521306527483198, -1.535474379679274 ], [ 37.518926156483182, -1.533582289679262 ], [ 37.517522347483172, -1.529065687679238 ], [ 37.513494027483198, -1.52723463267927 ], [ 37.509343636483202, -1.529431898679266 ], [ 37.505132211483151, -1.529431898679266 ], [ 37.502141488483169, -1.526868422679231 ], [ 37.498296273483156, -1.525647718679241 ], [ 37.49414588248316, -1.522046644679224 ], [ 37.49109412548318, -1.519971449679249 ], [ 37.487309945483155, -1.517957289679262 ], [ 37.483342660483167, -1.519361097679225 ], [ 37.47992469148317, -1.518750746679248 ], [ 37.475530160483167, -1.520154554679268 ], [ 37.47070838248316, -1.519666273679266 ], [ 37.466130746483195, -1.519971449679249 ], [ 37.460088265483186, -1.522046644679224 ], [ 37.455693734483184, -1.524060804679268 ], [ 37.453496468483188, -1.525952894679224 ], [ 37.450688851483157, -1.529737074679249 ], [ 37.446111214483203, -1.532483656679235 ], [ 37.4417166834832, -1.532849867679263 ], [ 37.439336312483185, -1.530835707679219 ], [ 37.436345589483203, -1.533765394679224 ], [ 37.432744515483186, -1.533155043679247 ], [ 37.42914344148317, -1.533277113679221 ], [ 37.4241385584832, -1.532849867679263 ], [ 37.41992713248316, -1.531629164679262 ], [ 37.415715707483166, -1.529737074679249 ], [ 37.41211463248316, -1.527661879679274 ], [ 37.4085135584832, -1.526258070679264 ], [ 37.404546273483156, -1.524976332679219 ], [ 37.400334847483172, -1.522962172679231 ], [ 37.395513070483155, -1.523572523679266 ], [ 37.392522347483172, -1.523267347679225 ], [ 37.389104379483165, -1.522656996679248 ], [ 37.38672400748316, -1.52064283667926 ], [ 37.382695687483185, -1.521131117679263 ], [ 37.379338754483165, -1.522046644679224 ], [ 37.376897347483172, -1.524976332679219 ], [ 37.373540414483152, -1.52815016067922 ], [ 37.370122445483155, -1.532239515679239 ], [ 37.366338265483186, -1.534375746679248 ], [ 37.364934457483166, -1.537183363679221 ], [ 37.361943734483184, -1.535474379679274 ], [ 37.360295785483167, -1.539136488679221 ], [ 37.358891976483157, -1.543469984679237 ], [ 37.355901254483165, -1.544446547679231 ], [ 37.354497445483155, -1.548657972679225 ], [ 37.351140511483202, -1.550733168679247 ], [ 37.347295296483189, -1.553662855679252 ], [ 37.343328011483202, -1.555432875679233 ], [ 37.34070350048318, -1.557080824679249 ], [ 37.335515511483202, -1.562329847679225 ], [ 37.338506234483184, -1.566846449679249 ], [ 37.341741097483172, -1.570569593679241 ], [ 37.342900765483186, -1.574048597679225 ], [ 37.345342171483189, -1.576245863679221 ], [ 37.348332894483171, -1.578565199679249 ], [ 37.350286019483171, -1.581372816679223 ], [ 37.35352088248316, -1.583448011679254 ], [ 37.35632850048318, -1.586072523679266 ], [ 37.363103402483198, -1.591138441679223 ], [ 37.365117562483185, -1.595166761679254 ], [ 37.366887582483166, -1.599561293679247 ], [ 37.368901742483153, -1.602979261679254 ], [ 37.370915902483198, -1.605054457679219 ], [ 37.37250281648317, -1.61018141067922 ], [ 37.375127328483181, -1.61604078567922 ], [ 37.376531136483202, -1.621350843679241 ], [ 37.378545296483189, -1.626172621679248 ], [ 37.380498421483189, -1.628980238679221 ], [ 37.383306039483152, -1.633863050679227 ], [ 37.383489144483171, -1.638379652679251 ], [ 37.385503304483159, -1.641553480679252 ], [ 37.386540902483198, -1.644361097679225 ], [ 37.387334359483184, -1.647656996679248 ], [ 37.390141976483157, -1.64924391067922 ], [ 37.393743050483174, -1.655042250679233 ], [ 37.39648963248316, -1.661939222679225 ], [ 37.401128304483159, -1.665662367679263 ], [ 37.401921761483202, -1.670667250679233 ], [ 37.403935921483189, -1.67493971167926 ], [ 37.406133187483185, -1.678662855679252 ], [ 37.408330453483181, -1.684766371679248 ], [ 37.410100472483172, -1.687879164679262 ], [ 37.412908089483203, -1.690442640679239 ], [ 37.408696664483152, -1.692273695679264 ], [ 37.405339730483199, -1.693067152679251 ], [ 37.400945199483196, -1.695630629679274 ], [ 37.395513070483155, -1.697644789679262 ], [ 37.391728890483186, -1.699658949679249 ], [ 37.38812781648317, -1.700879652679251 ], [ 37.384526742483153, -1.703870375679233 ], [ 37.379704964483203, -1.70496900767927 ], [ 37.375493539483152, -1.706983168679247 ], [ 37.372136605483199, -1.707349379679274 ], [ 37.365727914483152, -1.706433851679267 ], [ 37.358708871483195, -1.708631117679263 ], [ 37.35492469148317, -1.707166273679266 ], [ 37.34851600048318, -1.706555922679231 ], [ 37.342717660483167, -1.702466566679223 ], [ 37.338689339483203, -1.703565199679249 ], [ 37.335698617483153, -1.703565199679249 ], [ 37.332524789483152, -1.701428968679241 ], [ 37.329717171483189, -1.70228346167926 ], [ 37.321294320483155, -1.703382093679241 ], [ 37.312932504483165, -1.702466566679223 ], [ 37.303105843483188, -1.707959730679252 ], [ 37.288701546483189, -1.713941175679227 ], [ 37.28992225048318, -1.700879652679251 ], [ 37.279546273483156, -1.689832289679262 ], [ 37.265691293483194, -1.682630140679239 ], [ 37.272710336483151, -1.670545179679268 ], [ 37.262944711483151, -1.654248793679247 ], [ 37.257939828483181, -1.647046644679224 ], [ 37.254521859483184, -1.640576918679247 ], [ 37.253118050483174, -1.637281019679224 ], [ 37.253118050483174, -1.628430922679231 ], [ 37.252690804483159, -1.619336683679253 ], [ 37.252690804483159, -1.607678968679241 ], [ 37.251897347483172, -1.594373304679268 ], [ 37.248296273483156, -1.594251234679237 ], [ 37.245122445483155, -1.594373304679268 ], [ 37.237493050483174, -1.591077406679235 ], [ 37.232488168483194, -1.591382582679219 ], [ 37.229741586483151, -1.594373304679268 ], [ 37.21094275748316, -1.602735121679248 ], [ 37.175725472483172, -1.619336683679253 ], [ 37.190740121483195, -1.65028150767927 ], [ 37.192510140483186, -1.655164320679264 ], [ 37.193913949483196, -1.669629652679251 ], [ 37.195134652483198, -1.684339125679233 ], [ 37.196294320483155, -1.700574476679267 ], [ 37.197331918483194, -1.722364027679251 ], [ 37.194524300483174, -1.723645765679239 ], [ 37.186894906483182, -1.737378675679227 ], [ 37.183721078483181, -1.743543226679267 ], [ 37.178899300483174, -1.752332289679262 ], [ 37.177129281483182, -1.756055433679253 ], [ 37.1663260584832, -1.763379652679251 ], [ 37.155889046483189, -1.779859144679224 ], [ 37.152898324483196, -1.777539808679253 ], [ 37.156133187483185, -1.770764906679235 ], [ 37.158696664483152, -1.767163832679219 ], [ 37.155889046483189, -1.764173109679237 ], [ 37.151738656483182, -1.763135511679254 ], [ 37.14929725048318, -1.76087721167926 ], [ 37.148320687483185, -1.75666578567922 ], [ 37.148137582483166, -1.752454359679237 ], [ 37.14929725048318, -1.747571547679231 ], [ 37.148931039483152, -1.741468031679235 ], [ 37.146123421483189, -1.738538343679241 ], [ 37.142522347483172, -1.738050062679238 ], [ 37.134892953483181, -1.742383558679253 ], [ 37.132939828483181, -1.74494703567922 ], [ 37.129521859483184, -1.744336683679253 ], [ 37.124700082483166, -1.74207838267927 ], [ 37.12109900748316, -1.740064222679225 ], [ 37.117742074483196, -1.738965589679256 ], [ 37.113103402483198, -1.736157972679225 ], [ 37.109319222483172, -1.731763441679223 ], [ 37.105718148483156, -1.727063734679237 ], [ 37.093694222483172, -1.710950453679234 ], [ 37.08929969148317, -1.704663832679219 ], [ 37.085088265483186, -1.700940687679238 ], [ 37.08148719148317, -1.695630629679274 ], [ 37.076726449483196, -1.688184339679256 ], [ 37.04968787548318, -1.651868422679231 ], [ 37.039739144483171, -1.638928968679241 ], [ 37.018743050483174, -1.610364515679239 ], [ 37.012944711483151, -1.603040297679231 ], [ 37.007939828483181, -1.596082289679262 ], [ 37.000127328483181, -1.598279554679268 ], [ 36.994695199483196, -1.591565687679238 ], [ 36.991521371483195, -1.587354261679254 ], [ 36.993901742483153, -1.585279066679223 ], [ 36.996709359483184, -1.583448011679254 ], [ 36.993901742483153, -1.57893141067922 ], [ 36.984746468483188, -1.565930922679231 ], [ 36.980535043483194, -1.559156019679224 ], [ 36.977117074483196, -1.555066664679262 ], [ 36.97351600048318, -1.557141859679237 ], [ 36.967900765483186, -1.556165297679231 ], [ 36.963689339483203, -1.552930433679253 ], [ 36.9592948084832, -1.546277601679267 ], [ 36.957524789483152, -1.543042738679221 ], [ 36.9573416834832, -1.538343031679235 ], [ 36.958928597483172, -1.533155043679247 ], [ 36.96234656648317, -1.53205641067922 ], [ 36.963506234483184, -1.529065687679238 ], [ 36.964116586483151, -1.520948011679254 ], [ 36.963933480483199, -1.517957289679262 ], [ 36.96429969148317, -1.513135511679254 ], [ 36.966924203483181, -1.510083754679274 ], [ 36.969304574483196, -1.507764418679247 ], [ 36.971929086483151, -1.503675062679238 ], [ 36.974309457483166, -1.50184400767927 ], [ 36.9749198084832, -1.498975355679252 ], [ 36.972905648483156, -1.495679457679219 ], [ 36.971745980483199, -1.491956312679238 ], [ 36.973332894483171, -1.487683851679267 ], [ 36.977544320483155, -1.478833754679274 ], [ 36.960698617483153, -1.468335707679219 ], [ 36.94812537548318, -1.461682875679233 ], [ 36.949346078483181, -1.457044203679234 ], [ 36.944707406483182, -1.455274183679253 ], [ 36.941106332483166, -1.455274183679253 ], [ 36.936894906483182, -1.455762464679256 ], [ 36.933721078483181, -1.457166273679266 ], [ 36.93109656648317, -1.459058363679221 ], [ 36.92773963248316, -1.458264906679235 ], [ 36.923894418483194, -1.459180433679253 ], [ 36.921514046483189, -1.461865980679252 ], [ 36.917912972483172, -1.464978773679266 ], [ 36.91492225048318, -1.466748793679247 ], [ 36.910893929483159, -1.468762953679234 ], [ 36.906926644483171, -1.471936781679235 ], [ 36.899724496483195, -1.47645338267927 ], [ 36.89648963248316, -1.479749281679235 ], [ 36.8928885584832, -1.482068617679263 ], [ 36.88953162548318, -1.485547621679248 ], [ 36.886296761483202, -1.486768324679249 ], [ 36.87891150748316, -1.477979261679254 ], [ 36.882329476483157, -1.457959730679252 ], [ 36.884709847483172, -1.445935804679268 ], [ 36.889104379483165, -1.422071058679253 ], [ 36.891728890483186, -1.41517408667926 ], [ 36.909490121483195, -1.422864515679239 ], [ 36.931890023483156, -1.432935316679223 ], [ 36.941106332483166, -1.432935316679223 ], [ 36.944890511483202, -1.433667738679221 ], [ 36.948491586483151, -1.435865004679274 ], [ 36.951116097483172, -1.437940199679249 ], [ 36.955510629483165, -1.437635023679266 ], [ 36.958318246483195, -1.441663343679241 ], [ 36.961919320483155, -1.44447096167926 ], [ 36.96234656648317, -1.438367445679264 ], [ 36.959538949483196, -1.436536390679239 ], [ 36.95593787548318, -1.429273207679219 ], [ 36.953496468483188, -1.427136976679267 ], [ 36.949712289483152, -1.42493971167926 ], [ 36.947515023483156, -1.421948988679221 ], [ 36.947087777483198, -1.418042738679221 ], [ 36.944890511483202, -1.407666761679254 ], [ 36.942693246483195, -1.404065687679238 ], [ 36.940129769483171, -1.402478773679266 ], [ 36.937688363483169, -1.400037367679263 ], [ 36.934941781483182, -1.398755629679274 ], [ 36.932134164483152, -1.398267347679225 ], [ 36.928716195483155, -1.394666273679266 ], [ 36.923894418483194, -1.393933851679267 ], [ 36.921941293483194, -1.387464125679233 ], [ 36.916936410483167, -1.37775953567922 ], [ 36.914495004483165, -1.373731214679256 ], [ 36.907292855483199, -1.363355238679221 ], [ 36.915898812483185, -1.355847914679262 ], [ 36.934514535483167, -1.338758070679264 ], [ 36.961125863483169, -1.34846266067922 ], [ 36.963689339483203, -1.351331312679238 ], [ 36.966924203483181, -1.353833754679274 ], [ 36.974126351483157, -1.33704908667926 ], [ 36.984319222483172, -1.314832289679262 ], [ 36.974492562483185, -1.289563734679237 ], [ 36.995488656483182, -1.281446058679253 ], [ 37.000737679483159, -1.294751722679225 ], [ 37.002690804483159, -1.300733168679247 ], [ 37.009892953483181, -1.297864515679239 ], [ 37.026494515483186, -1.291944105679252 ], [ 37.066106332483166, -1.301343519679224 ], [ 37.076116097483172, -1.304273207679219 ], [ 37.075932992483153, -1.300855238679221 ], [ 37.073308480483199, -1.297742445679264 ], [ 37.0745291834832, -1.293347914679262 ], [ 37.076726449483196, -1.290235121679248 ], [ 37.076909554483159, -1.28626783667926 ], [ 37.078740609483184, -1.283765394679224 ], [ 37.0823416834832, -1.284741957679219 ], [ 37.084111703483181, -1.282544691679223 ], [ 37.085088265483186, -1.279431898679266 ], [ 37.08789588248316, -1.277478773679266 ], [ 37.091496957483166, -1.276136000679233 ], [ 37.094304574483196, -1.275464613679221 ], [ 37.097539437483185, -1.274060804679268 ], [ 37.101506722483172, -1.274182875679233 ], [ 37.103887093483188, -1.271680433679253 ], [ 37.103887093483188, -1.264844496679248 ], [ 37.103093636483202, -1.261182386679254 ], [ 37.110112679483159, -1.259168226679267 ], [ 37.110295785483167, -1.254651625679233 ], [ 37.110112679483159, -1.248548109679237 ], [ 37.113896859483184, -1.247876722679225 ], [ 37.116887582483166, -1.248548109679237 ], [ 37.119939339483203, -1.247266371679248 ], [ 37.119512093483188, -1.24403150767927 ], [ 37.119512093483188, -1.239453871679248 ], [ 37.123113168483194, -1.234937269679224 ], [ 37.126531136483202, -1.233167250679233 ], [ 37.130132211483151, -1.233655531679235 ], [ 37.133916390483186, -1.233838636679254 ], [ 37.137334359483184, -1.232556898679266 ], [ 37.139714730483199, -1.229566175679227 ], [ 37.141728890483186, -1.22645338267927 ], [ 37.144902718483188, -1.225843031679235 ], [ 37.151311410483167, -1.225537855679252 ], [ 37.154546273483156, -1.22254713267927 ], [ 37.15570594148317, -1.219739515679239 ], [ 37.15570594148317, -1.216443617679263 ], [ 37.156316293483194, -1.212354261679254 ], [ 37.15430213248316, -1.209241468679241 ], [ 37.156316293483194, -1.206983168679247 ], [ 37.159734261483202, -1.205762464679256 ], [ 37.158086312483185, -1.20197828567922 ], [ 37.156743539483152, -1.19837721167926 ], [ 37.157292855483199, -1.194837172679231 ], [ 37.161138070483155, -1.193860609679237 ], [ 37.163945687483185, -1.191480238679221 ], [ 37.166692269483171, -1.188550550679227 ], [ 37.168340218483188, -1.185071547679231 ], [ 37.174504769483171, -1.174146254679274 ], [ 37.177312386483202, -1.171582777679251 ], [ 37.180913461483151, -1.168958265679239 ], [ 37.182927621483195, -1.165967543679247 ], [ 37.18250037548318, -1.161756117679263 ], [ 37.181706918483194, -1.156446058679253 ], [ 37.183721078483181, -1.15315016067922 ], [ 37.185735238483169, -1.149060804679268 ], [ 37.184331429483159, -1.144666273679266 ], [ 37.185735238483169, -1.141248304679268 ], [ 37.187322152483198, -1.138745863679221 ], [ 37.184514535483167, -1.13465650767927 ], [ 37.181890023483156, -1.130384047679231 ], [ 37.17969275748316, -1.12806471167926 ], [ 37.178105843483188, -1.123365004679274 ], [ 37.1760916834832, -1.11994703567922 ], [ 37.176335824483196, -1.115979750679233 ], [ 37.17914344148317, -1.113355238679221 ], [ 37.180486214483203, -1.110364515679239 ], [ 37.183110726483157, -1.108960707679219 ], [ 37.186528695483155, -1.107678968679241 ], [ 37.18890906648317, -1.105664808679253 ], [ 37.190495980483199, -1.098950941679223 ], [ 37.192937386483202, -1.095044691679223 ], [ 37.195928109483184, -1.093152601679267 ], [ 37.200139535483167, -1.091443617679263 ], [ 37.203496468483188, -1.088880140679239 ], [ 37.206120980483199, -1.085462172679231 ], [ 37.212712777483198, -1.080152113679221 ], [ 37.219731820483155, -1.079480726679267 ], [ 37.224309457483166, -1.078870375679233 ], [ 37.22852088248316, -1.076428968679241 ], [ 37.234136117483153, -1.07606275767927 ], [ 37.24109412548318, -1.078565199679249 ], [ 37.243718636483202, -1.07996900767927 ], [ 37.246709359483184, -1.079358656679235 ], [ 37.251286996483195, -1.078748304679268 ], [ 37.255742562483185, -1.07533033667926 ], [ 37.258733285483167, -1.072766859679237 ], [ 37.261113656483182, -1.071057875679233 ], [ 37.26453162548318, -1.069531996679248 ], [ 37.268132699483196, -1.068982679679268 ], [ 37.271306527483198, -1.068982679679268 ], [ 37.278142464483203, -1.067761976679267 ], [ 37.281926644483171, -1.067639906679235 ], [ 37.284307015483186, -1.06947096167926 ], [ 37.287297738483169, -1.071179945679264 ], [ 37.2913260584832, -1.072339613679221 ], [ 37.29633094148317, -1.072949964679256 ], [ 37.299321664483152, -1.074353773679266 ], [ 37.303288949483196, -1.078382093679241 ], [ 37.305913461483151, -1.081677992679263 ], [ 37.309331429483159, -1.083753187679238 ], [ 37.313725961483151, -1.08778150767927 ], [ 37.316289437483185, -1.091382582679219 ], [ 37.318303597483172, -1.093457777679251 ], [ 37.320134652483198, -1.095838148679266 ], [ 37.32312537548318, -1.097241957679219 ], [ 37.327519906483182, -1.101148207679219 ], [ 37.32953406648317, -1.103955824679249 ], [ 37.336919320483155, -1.110669691679223 ], [ 37.339726937483185, -1.113538343679241 ], [ 37.341313851483157, -1.116162855679252 ], [ 37.343938363483169, -1.11994703567922 ], [ 37.346501839483203, -1.115430433679253 ], [ 37.359319222483172, -1.100537855679252 ], [ 37.363713754483165, -1.096448500679233 ], [ 37.365300668483194, -1.093030531679235 ], [ 37.370488656483182, -1.085340101679267 ], [ 37.382512582483166, -1.068372328679234 ], [ 37.387944711483151, -1.06043775767927 ], [ 37.39453650748316, -1.055432875679233 ], [ 37.418706429483159, -1.038343031679235 ], [ 37.42133094148317, -1.035535414679262 ], [ 37.406743539483152, -1.01447828567922 ], [ 37.380132211483151, -0.999463636679254 ], [ 37.36273719148317, -0.990064222679225 ], [ 37.338933480483199, -0.987683851679267 ], [ 37.336492074483196, -0.983350355679252 ], [ 37.333501351483157, -0.978833754679274 ], [ 37.340093148483156, -0.979077894679224 ], [ 37.346745980483199, -0.979077894679224 ], [ 37.357305062483185, -0.972730238679221 ], [ 37.364507211483151, -0.968152601679267 ], [ 37.366521371483195, -0.965283949679249 ], [ 37.363896859483184, -0.962354261679254 ], [ 37.361943734483184, -0.959851820679264 ], [ 37.357305062483185, -0.953076918679246 ], [ 37.355901254483165, -0.949048597679225 ], [ 37.348088754483165, -0.958936293679246 ], [ 37.343328011483202, -0.964063246679248 ], [ 37.336125863483169, -0.960462172679231 ], [ 37.334111703483181, -0.957471449679249 ], [ 37.331304086483151, -0.955457289679262 ], [ 37.329289925483174, -0.95283277767925 ], [ 37.329717171483189, -0.948865492679263 ], [ 37.323491586483151, -0.948560316679223 ], [ 37.317327035483167, -0.949353773679266 ], [ 37.315495980483199, -0.94325025767927 ], [ 37.318730843483188, -0.94056471167926 ], [ 37.323491586483151, -0.937940199679249 ], [ 37.325505746483195, -0.935376722679225 ], [ 37.324712289483152, -0.932263929679268 ], [ 37.322331918483194, -0.930371839679256 ], [ 37.319707406483182, -0.927747328679234 ], [ 37.318913949483196, -0.924756605679252 ], [ 37.318913949483196, -0.920972425679227 ], [ 37.300542367483153, -0.908582289679262 ], [ 37.285710824483196, -0.900647718679241 ], [ 37.28210975048318, -0.89814527767925 ], [ 37.269902718483188, -0.885449964679256 ], [ 37.263921273483156, -0.878552992679263 ], [ 37.261296761483202, -0.875745375679233 ], [ 37.256291879483165, -0.869275648679266 ], [ 37.253118050483174, -0.863660414679262 ], [ 37.242314828483181, -0.863965589679256 ], [ 37.241521371483195, -0.861157972679225 ], [ 37.236699593483188, -0.858472425679227 ], [ 37.226506722483172, -0.854566175679227 ], [ 37.229131234483184, -0.84846266067922 ], [ 37.233342660483167, -0.84065016067922 ], [ 37.241887582483166, -0.839673597679225 ], [ 37.2503104334832, -0.83973463267927 ], [ 37.259099496483195, -0.839368422679231 ], [ 37.261296761483202, -0.818555433679253 ], [ 37.262700570483155, -0.814466078679234 ], [ 37.262090218483188, -0.811536390679239 ], [ 37.262334359483184, -0.807630140679239 ], [ 37.263738168483194, -0.793531019679224 ], [ 37.265744509483163, -0.791329734679268 ], [ 37.267917035483201, -0.787412605679267 ], [ 37.273137582483166, -0.787183363679221 ], [ 37.276494515483186, -0.785474379679217 ], [ 37.280095589483203, -0.78504713267927 ], [ 37.284123910483167, -0.784131605679252 ], [ 37.288335336483151, -0.785230238679221 ], [ 37.28992225048318, -0.787976820679264 ], [ 37.292485726483157, -0.790845472679225 ], [ 37.294744027483198, -0.794141371679248 ], [ 37.2991385584832, -0.79603346167926 ], [ 37.301946175483174, -0.79963453567922 ], [ 37.305303109483184, -0.801282484679237 ], [ 37.307134164483152, -0.803968031679235 ], [ 37.30609656648317, -0.80775221167926 ], [ 37.306523812483185, -0.811170179679268 ], [ 37.306523812483185, -0.814282972679225 ], [ 37.311528695483155, -0.817334730679252 ], [ 37.31390906648317, -0.820447523679266 ], [ 37.313725961483151, -0.823438246679248 ], [ 37.316289437483185, -0.826428968679241 ], [ 37.317327035483167, -0.830579359679237 ], [ 37.318913949483196, -0.833936293679246 ], [ 37.321538461483151, -0.836865980679252 ], [ 37.326299203483181, -0.837232191679223 ], [ 37.324712289483152, -0.840467054679268 ], [ 37.327092660483167, -0.843335707679219 ], [ 37.331914437483185, -0.844739515679239 ], [ 37.334905160483167, -0.844983656679235 ], [ 37.338506234483184, -0.846631605679252 ], [ 37.341313851483157, -0.843946058679253 ], [ 37.344487679483159, -0.843030531679235 ], [ 37.34711219148317, -0.84486158667926 ], [ 37.350286019483171, -0.84345777767925 ], [ 37.352117074483196, -0.845960218679241 ], [ 37.355535043483194, -0.84455641067922 ], [ 37.358708871483195, -0.844373304679268 ], [ 37.363103402483198, -0.845471937679238 ], [ 37.366887582483166, -0.847180922679231 ], [ 37.369695199483196, -0.848828871679248 ], [ 37.373296273483156, -0.850171644679224 ], [ 37.377324593483188, -0.851331312679238 ], [ 37.377141488483169, -0.854566175679227 ], [ 37.380132211483151, -0.857556898679266 ], [ 37.3831229334832, -0.855664808679253 ], [ 37.386540902483198, -0.853162367679263 ], [ 37.388921273483156, -0.856641371679248 ], [ 37.394109261483202, -0.85535963267927 ], [ 37.397710336483151, -0.85658033667926 ], [ 37.401738656483182, -0.854566175679227 ], [ 37.40570594148317, -0.851880629679274 ], [ 37.409123910483167, -0.850965101679267 ], [ 37.412908089483203, -0.850965101679267 ], [ 37.414739144483171, -0.854871351679267 ], [ 37.41211463248316, -0.859571058679253 ], [ 37.415898812483185, -0.862256605679252 ], [ 37.420110238483169, -0.862744886679254 ], [ 37.423528207483166, -0.864636976679267 ], [ 37.426518929483159, -0.866651136679254 ], [ 37.42969275748316, -0.866162855679252 ], [ 37.431706918483194, -0.863965589679256 ], [ 37.435491097483172, -0.863050062679238 ], [ 37.439092171483189, -0.863782484679237 ], [ 37.442937386483202, -0.863477308679253 ], [ 37.447942269483171, -0.870862562679238 ], [ 37.452092660483167, -0.871839125679233 ], [ 37.45593787548318, -0.872266371679248 ], [ 37.459538949483196, -0.871656019679224 ], [ 37.461125863483169, -0.874280531679235 ], [ 37.464543832483166, -0.875257093679241 ], [ 37.468328011483202, -0.874463636679254 ], [ 37.471135629483165, -0.87684400767927 ], [ 37.474736703483181, -0.877942640679239 ], [ 37.474309457483166, -0.881482679679268 ], [ 37.473332894483171, -0.88465650767927 ], [ 37.473088754483165, -0.887952406679235 ], [ 37.475713265483186, -0.889173109679237 ], [ 37.477117074483196, -0.892835218679241 ], [ 37.478703988483169, -0.89564283667926 ], [ 37.482305062483185, -0.89533766067922 ], [ 37.487309945483155, -0.900159437679238 ], [ 37.492314828483181, -0.90205152767925 ], [ 37.49609900748316, -0.904676039679262 ], [ 37.499516976483157, -0.903333265679239 ], [ 37.502324593483188, -0.901746351679267 ], [ 37.505742562483185, -0.901868422679231 ], [ 37.508916390483186, -0.903577406679235 ], [ 37.51312781648317, -0.903638441679223 ], [ 37.516301644483171, -0.905164320679264 ], [ 37.516911996483195, -0.91004713267927 ], [ 37.51593543448319, -0.914441663679272 ], [ 37.518315804483159, -0.917737562679238 ], [ 37.52148963248316, -0.918164808679253 ], [ 37.524541390483186, -0.917066175679227 ], [ 37.527532113483169, -0.916333754679274 ], [ 37.531743539483152, -0.915357191679223 ], [ 37.534734261483202, -0.915052015679239 ], [ 37.535344613483169, -0.910352308679253 ], [ 37.535527718483188, -0.90705641067922 ], [ 37.534307015483186, -0.904065687679238 ], [ 37.5335135584832, -0.89924391067922 ], [ 37.535710824483196, -0.895154554679268 ], [ 37.538091195483155, -0.89143141067922 ], [ 37.542729867483153, -0.889661390679239 ], [ 37.545110238483169, -0.886182386679254 ], [ 37.548345101483157, -0.885449964679256 ], [ 37.552495492483153, -0.885449964679256 ], [ 37.558293832483166, -0.878552992679263 ], [ 37.561528695483155, -0.87775953567922 ], [ 37.562932504483165, -0.880384047679231 ], [ 37.565129769483171, -0.882764418679246 ], [ 37.572515023483156, -0.880445082679219 ], [ 37.575688851483157, -0.879163343679241 ], [ 37.583318246483195, -0.880445082679219 ], [ 37.58734656648317, -0.88056715267925 ], [ 37.588689339483203, -0.877881605679252 ], [ 37.591313851483157, -0.871472914679262 ], [ 37.58789588248316, -0.868177015679239 ], [ 37.591496957483166, -0.864270765679239 ], [ 37.59570838248316, -0.86317213267927 ], [ 37.602117074483196, -0.864331800679227 ], [ 37.60492469148317, -0.86018141067922 ], [ 37.606511605483199, -0.857373793679246 ], [ 37.610295785483167, -0.857740004679274 ], [ 37.61328650748316, -0.857556898679266 ], [ 37.616338265483186, -0.857068617679263 ], [ 37.617742074483196, -0.854444105679252 ], [ 37.62109900748316, -0.853772718679241 ], [ 37.624333871483195, -0.854261000679233 ], [ 37.627507699483196, -0.853345472679225 ], [ 37.628301156483182, -0.849439222679225 ], [ 37.628728402483198, -0.845655043679246 ], [ 37.629521859483184, -0.841870863679221 ], [ 37.633489144483171, -0.840833265679239 ], [ 37.636296761483202, -0.841565687679238 ], [ 37.638310921483189, -0.844983656679235 ], [ 37.641118539483152, -0.847669203679234 ], [ 37.644109261483202, -0.846448500679233 ], [ 37.646733773483156, -0.844983656679235 ], [ 37.649541390483186, -0.846753675679227 ], [ 37.652715218483188, -0.846875746679248 ], [ 37.656133187483185, -0.848950941679223 ], [ 37.661138070483155, -0.849439222679225 ], [ 37.665288461483151, -0.848157484679237 ], [ 37.667302621483195, -0.843946058679253 ], [ 37.66992713248316, -0.840772230679252 ], [ 37.671697152483198, -0.838147718679241 ], [ 37.671697152483198, -0.834180433679253 ], [ 37.673345101483157, -0.830335218679241 ], [ 37.6760916834832, -0.827466566679223 ], [ 37.67914344148317, -0.826673109679237 ], [ 37.681706918483194, -0.823865492679263 ], [ 37.680486214483203, -0.819776136679254 ], [ 37.681340707483166, -0.815869886679254 ], [ 37.682927621483195, -0.810376722679225 ], [ 37.681890023483156, -0.802930433679253 ], [ 37.681890023483156, -0.798963148679266 ], [ 37.685124886483202, -0.796643812679238 ], [ 37.689702523483156, -0.79768141067922 ], [ 37.693120492483153, -0.797071058679253 ], [ 37.695134652483198, -0.793347914679262 ], [ 37.698735726483157, -0.791333754679274 ], [ 37.6995291834832, -0.787732679679268 ], [ 37.702336800483174, -0.785840589679256 ], [ 37.706914437483185, -0.784131605679252 ], [ 37.711492074483196, -0.782971937679238 ], [ 37.716924203483181, -0.782239515679239 ], [ 37.72211219148317, -0.782178480679252 ], [ 37.725286019483171, -0.782666761679254 ], [ 37.728093636483202, -0.780530531679235 ], [ 37.731145394483171, -0.777783949679249 ], [ 37.733891976483157, -0.77705152767925 ], [ 37.736943734483184, -0.777783949679249 ], [ 37.739934457483166, -0.778943617679263 ], [ 37.744512093483188, -0.781629164679262 ], [ 37.744623066483193, -0.781862207679242 ] ] ] } } +, +{ "type": "Feature", "id": 17, "properties": { "OBJECTID": 18, "ID_": 3699, "COUNTY_NAM": "NYANDARUA", "CONST_CODE": 90, "CONSTITUEN": "KIPIPIRI", "COUNTY_COD": 18, "Shape_Leng": 3.48082504881, "Shape_Area": 0.26542309571 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.504320681483186, 0.094996587320734 ], [ 36.512090218483188, 0.086656968320765 ], [ 36.513738168483194, 0.082018296320766 ], [ 36.51453162548318, 0.07927171432078 ], [ 36.515691293483194, 0.076219956320754 ], [ 36.517095101483157, 0.071031968320765 ], [ 36.521123421483189, 0.057665269320748 ], [ 36.521916879483165, 0.053636949320773 ], [ 36.524114144483171, 0.04802171432078 ], [ 36.573918832483166, 0.068224351320734 ], [ 36.578496468483188, 0.069628160320744 ], [ 36.5921073084832, 0.04185716332074 ], [ 36.594304574483196, 0.023424546320766 ], [ 36.605290902483198, 0.003038804320736 ], [ 36.611089242483153, 0.004259507320737 ], [ 36.637700570483155, 0.014452378320752 ], [ 36.651128304483159, -0.016065199679249 ], [ 36.591313851483157, -0.019666273679266 ], [ 36.586308968483188, -0.020581800679227 ], [ 36.58289100048318, -0.022168714679256 ], [ 36.58148719148317, -0.025647718679241 ], [ 36.578313363483169, -0.029859144679224 ], [ 36.577336800483174, -0.032666761679254 ], [ 36.574712289483152, -0.03504713267927 ], [ 36.565923226483157, -0.041761000679233 ], [ 36.562688363483169, -0.043042738679221 ], [ 36.561711800483174, -0.047132093679241 ], [ 36.560491097483172, -0.050855238679221 ], [ 36.556890023483156, -0.054883558679253 ], [ 36.556340707483166, -0.058179457679219 ], [ 36.551946175483174, -0.069531996679248 ], [ 36.560307992483153, -0.076245863679221 ], [ 36.555730355483199, -0.090344984679237 ], [ 36.56250525748316, -0.088941175679227 ], [ 36.566533578483181, -0.096753675679227 ], [ 36.573308480483199, -0.103650648679266 ], [ 36.593144906483182, -0.10236891067922 ], [ 36.635686410483167, -0.106641371679248 ], [ 36.642095101483157, -0.120740492679263 ], [ 36.64734412548318, -0.133252699679249 ], [ 36.656926644483171, -0.15315016067922 ], [ 36.660344613483169, -0.15223463267927 ], [ 36.690923226483157, -0.174268324679249 ], [ 36.683537972483172, -0.176465589679256 ], [ 36.684514535483167, -0.18153150767927 ], [ 36.684514535483167, -0.184949476679267 ], [ 36.669316781483182, -0.213880140679239 ], [ 36.664495004483165, -0.221936781679235 ], [ 36.662297738483169, -0.225843031679235 ], [ 36.660710824483196, -0.229261000679233 ], [ 36.65710975048318, -0.235364515679239 ], [ 36.655095589483203, -0.239148695679264 ], [ 36.652104867483153, -0.243238050679227 ], [ 36.650517953483181, -0.248181898679266 ], [ 36.648320687483185, -0.252271254679217 ], [ 36.641728890483186, -0.26356275767927 ], [ 36.63031531648317, -0.284070570679264 ], [ 36.627324593483188, -0.288159925679227 ], [ 36.623296273483156, -0.29676588267927 ], [ 36.621526254483165, -0.299756605679252 ], [ 36.616338265483186, -0.309583265679239 ], [ 36.6155448084832, -0.31434400767927 ], [ 36.615300668483194, -0.31916578567922 ], [ 36.613103402483198, -0.323255140679239 ], [ 36.61133338248316, -0.327161390679239 ], [ 36.610539925483174, -0.330762464679256 ], [ 36.609929574483196, -0.334973890679239 ], [ 36.610539925483174, -0.340467054679268 ], [ 36.611089242483153, -0.343762953679234 ], [ 36.612126839483203, -0.346448500679233 ], [ 36.616338265483186, -0.353345472679225 ], [ 36.616887582483166, -0.356336195679264 ], [ 36.614324105483199, -0.358838636679254 ], [ 36.608342660483167, -0.363782484679237 ], [ 36.604741586483151, -0.367871839679256 ], [ 36.604741586483151, -0.371472914679262 ], [ 36.605718148483156, -0.374646742679263 ], [ 36.609136117483153, -0.376966078679234 ], [ 36.61609412548318, -0.378369886679254 ], [ 36.619695199483196, -0.38075025767927 ], [ 36.622685921483189, -0.382459242679263 ], [ 36.626531136483202, -0.384046156679235 ], [ 36.630742562483185, -0.386365492679263 ], [ 36.632512582483166, -0.38978346167926 ], [ 36.626103890483186, -0.397779066679223 ], [ 36.62390662548318, -0.401380140679239 ], [ 36.625493539483152, -0.404065687679238 ], [ 36.635503304483159, -0.413343031679235 ], [ 36.637517464483203, -0.416455824679249 ], [ 36.639287484483184, -0.41962965267925 ], [ 36.648931039483152, -0.43153150767927 ], [ 36.651311410483167, -0.43525465267925 ], [ 36.651494515483186, -0.439038832679219 ], [ 36.651311410483167, -0.44306715267925 ], [ 36.650517953483181, -0.449964125679233 ], [ 36.652104867483153, -0.459546644679224 ], [ 36.655339730483199, -0.460950453679234 ], [ 36.659490121483195, -0.461377699679249 ], [ 36.662541879483165, -0.463147718679241 ], [ 36.665105355483199, -0.466443617679263 ], [ 36.665898812483185, -0.46986158667926 ], [ 36.667119515483186, -0.472669203679234 ], [ 36.667912972483172, -0.475965101679267 ], [ 36.668096078483181, -0.479138929679268 ], [ 36.667302621483195, -0.481946547679231 ], [ 36.665715707483166, -0.485242445679264 ], [ 36.662908089483203, -0.488538343679241 ], [ 36.661687386483202, -0.491956312679238 ], [ 36.661138070483155, -0.495679457679219 ], [ 36.661321175483174, -0.49885328567922 ], [ 36.662541879483165, -0.50184400767927 ], [ 36.661138070483155, -0.504529554679268 ], [ 36.658940804483159, -0.507276136679254 ], [ 36.658696664483152, -0.512647230679252 ], [ 36.659307015483186, -0.516858656679235 ], [ 36.661138070483155, -0.519971449679249 ], [ 36.662724984483184, -0.523877699679249 ], [ 36.66492225048318, -0.528333265679239 ], [ 36.664739144483171, -0.534436781679235 ], [ 36.666142953483181, -0.538281996679248 ], [ 36.668523324483196, -0.541577894679224 ], [ 36.669499886483202, -0.54462965267925 ], [ 36.670293343483188, -0.54853590267925 ], [ 36.670537484483184, -0.553479750679233 ], [ 36.66992713248316, -0.558362562679238 ], [ 36.67133094148317, -0.568738539679262 ], [ 36.671086800483174, -0.572766859679237 ], [ 36.67273475048318, -0.575635511679254 ], [ 36.67969275748316, -0.578748304679268 ], [ 36.680486214483203, -0.583264906679235 ], [ 36.680486214483203, -0.587659437679238 ], [ 36.685307992483153, -0.599439222679225 ], [ 36.690495980483199, -0.604871351679267 ], [ 36.692143929483159, -0.608655531679235 ], [ 36.696294320483155, -0.615064222679225 ], [ 36.698491586483151, -0.618177015679239 ], [ 36.701726449483196, -0.622144300679227 ], [ 36.704106820483155, -0.624463636679254 ], [ 36.7073416834832, -0.627149183679253 ], [ 36.708745492483153, -0.630933363679221 ], [ 36.708745492483153, -0.635144789679262 ], [ 36.70789100048318, -0.638867933679253 ], [ 36.706914437483185, -0.642163832679219 ], [ 36.70648719148317, -0.645948011679254 ], [ 36.706914437483185, -0.649671156679235 ], [ 36.708318246483195, -0.657666761679254 ], [ 36.710088265483186, -0.663465101679267 ], [ 36.708745492483153, -0.677930433679253 ], [ 36.7092948084832, -0.683240492679263 ], [ 36.709111703483181, -0.688245375679233 ], [ 36.70789100048318, -0.69325025767927 ], [ 36.707707894483171, -0.698743422679231 ], [ 36.709538949483196, -0.702771742679263 ], [ 36.710332406483182, -0.707166273679266 ], [ 36.71234656648317, -0.711072523679266 ], [ 36.713933480483199, -0.714673597679225 ], [ 36.713933480483199, -0.718762953679234 ], [ 36.714116586483151, -0.722058851679267 ], [ 36.713933480483199, -0.725476820679264 ], [ 36.714543832483166, -0.728467543679246 ], [ 36.715886605483199, -0.73158033667926 ], [ 36.716924203483181, -0.734632093679241 ], [ 36.717717660483167, -0.740430433679253 ], [ 36.717534554483159, -0.744153578679234 ], [ 36.717900765483186, -0.74775465267925 ], [ 36.718694222483172, -0.752454359679237 ], [ 36.719731820483155, -0.756848890679239 ], [ 36.721929086483151, -0.76283033667926 ], [ 36.724309457483166, -0.767163832679219 ], [ 36.729314339483203, -0.773267347679225 ], [ 36.733098519483171, -0.776746351679267 ], [ 36.73633338248316, -0.780164320679264 ], [ 36.733342660483167, -0.780469496679248 ], [ 36.72992469148317, -0.780164320679264 ], [ 36.724126351483157, -0.782971937679238 ], [ 36.720891488483169, -0.781262953679234 ], [ 36.721318734483184, -0.786939222679225 ], [ 36.723699105483199, -0.790357191679223 ], [ 36.724309457483166, -0.794446547679231 ], [ 36.723332894483171, -0.798047621679248 ], [ 36.722722543483194, -0.801953871679248 ], [ 36.721929086483151, -0.805738050679227 ], [ 36.719487679483159, -0.802259047679231 ], [ 36.717534554483159, -0.798841078679234 ], [ 36.715093148483156, -0.795362074679249 ], [ 36.712102425483174, -0.791761000679233 ], [ 36.709905160483167, -0.788037855679252 ], [ 36.707707894483171, -0.784741957679219 ], [ 36.702703011483202, -0.782178480679252 ], [ 36.699101937483185, -0.777539808679253 ], [ 36.696111214483203, -0.77424391067922 ], [ 36.693913949483196, -0.770764906679235 ], [ 36.690495980483199, -0.768140394679224 ], [ 36.686711800483174, -0.764173109679237 ], [ 36.68250037548318, -0.762464125679233 ], [ 36.679509652483198, -0.761853773679266 ], [ 36.675725472483172, -0.760755140679239 ], [ 36.672124398483156, -0.75947340267925 ], [ 36.668706429483159, -0.761853773679266 ], [ 36.66492225048318, -0.764173109679237 ], [ 36.662908089483203, -0.767774183679253 ], [ 36.659490121483195, -0.768079359679237 ], [ 36.655522836483151, -0.765760023679266 ], [ 36.6507010584832, -0.768445570679264 ], [ 36.64648963248316, -0.773084242679263 ], [ 36.650334847483172, -0.774671156679235 ], [ 36.654546273483156, -0.773633558679253 ], [ 36.657720101483157, -0.77314527767925 ], [ 36.660893929483159, -0.773450453679234 ], [ 36.66351844148317, -0.774854261679254 ], [ 36.667912972483172, -0.776136000679233 ], [ 36.673528207483166, -0.77845533667926 ], [ 36.67133094148317, -0.78205641067922 ], [ 36.636907113483169, -0.814038832679219 ], [ 36.633489144483171, -0.81806715267925 ], [ 36.630498421483189, -0.820569593679241 ], [ 36.622685921483189, -0.828137953679234 ], [ 36.622930062483185, -0.831372816679223 ], [ 36.619512093483188, -0.831433851679267 ], [ 36.613896859483184, -0.830945570679264 ], [ 36.609319222483172, -0.830762464679256 ], [ 36.605107796483189, -0.82996900767927 ], [ 36.596745980483199, -0.82893141067922 ], [ 36.589543832483166, -0.829053480679252 ], [ 36.591496957483166, -0.844373304679268 ], [ 36.592900765483186, -0.850232679679268 ], [ 36.601506722483172, -0.86243971167926 ], [ 36.601140511483202, -0.86604078567922 ], [ 36.595342171483189, -0.877942640679239 ], [ 36.593144906483182, -0.883252699679249 ], [ 36.590886605483199, -0.887464125679233 ], [ 36.586492074483196, -0.889356214679256 ], [ 36.584538949483196, -0.89173658667926 ], [ 36.58148719148317, -0.892774183679253 ], [ 36.566106332483166, -0.903760511679254 ], [ 36.56390906648317, -0.906873304679268 ], [ 36.5667166834832, -0.908338148679266 ], [ 36.571111214483203, -0.910230238679221 ], [ 36.565923226483157, -0.914258558679253 ], [ 36.556706918483194, -0.919934828679234 ], [ 36.54492713248316, -0.908338148679266 ], [ 36.54773475048318, -0.899732191679223 ], [ 36.553716195483155, -0.877637464679256 ], [ 36.55609656648317, -0.872632582679219 ], [ 36.55469275748316, -0.868360121679248 ], [ 36.553716195483155, -0.862683851679267 ], [ 36.553105843483188, -0.855054457679219 ], [ 36.560735238483169, -0.844434339679256 ], [ 36.562688363483169, -0.842237074679249 ], [ 36.560124886483202, -0.838941175679227 ], [ 36.557744515483186, -0.83173902767925 ], [ 36.550725472483172, -0.803662855679252 ], [ 36.549932015483186, -0.799756605679252 ], [ 36.547307504483165, -0.790540297679231 ], [ 36.546086800483174, -0.784436781679235 ], [ 36.543523324483196, -0.775830824679249 ], [ 36.5413260584832, -0.766553480679252 ], [ 36.537724984483184, -0.75275953567922 ], [ 36.536687386483202, -0.749951918679246 ], [ 36.533696664483152, -0.738965589679256 ], [ 36.532720101483157, -0.730237562679238 ], [ 36.530522836483151, -0.727552015679239 ], [ 36.527898324483196, -0.722974379679217 ], [ 36.52148963248316, -0.710950453679234 ], [ 36.545110238483169, -0.697461683679253 ], [ 36.531499398483156, -0.671948988679221 ], [ 36.521916879483165, -0.653333265679239 ], [ 36.527104867483153, -0.646863539679262 ], [ 36.5257010584832, -0.642835218679241 ], [ 36.525334847483172, -0.639661390679239 ], [ 36.523137582483166, -0.636731703679234 ], [ 36.5178885584832, -0.633130629679217 ], [ 36.517522347483172, -0.629529554679268 ], [ 36.520085824483196, -0.626233656679235 ], [ 36.516301644483171, -0.624829847679225 ], [ 36.513310922483178, -0.620069106679241 ], [ 36.511907113483169, -0.615552504679217 ], [ 36.507329476483157, -0.622266371679248 ], [ 36.500737679483159, -0.623975355679252 ], [ 36.490300668483194, -0.624829847679225 ], [ 36.468694222483172, -0.626966078679234 ], [ 36.463689339483203, -0.621045668679246 ], [ 36.45648719148317, -0.611157972679225 ], [ 36.456120980483199, -0.605847914679262 ], [ 36.454289925483174, -0.587842543679246 ], [ 36.453740609483184, -0.581067640679239 ], [ 36.452092660483167, -0.566052992679263 ], [ 36.44531775748316, -0.569654066679223 ], [ 36.435491097483172, -0.571668226679267 ], [ 36.422307504483165, -0.573560316679223 ], [ 36.406743539483152, -0.574964125679233 ], [ 36.40430213248316, -0.572278578679234 ], [ 36.405095589483203, -0.564038832679219 ], [ 36.404119027483198, -0.56135328567922 ], [ 36.404912484483184, -0.557141859679237 ], [ 36.406926644483171, -0.553357679679268 ], [ 36.405889046483189, -0.550366957679219 ], [ 36.403691781483182, -0.547071058679253 ], [ 36.405339730483199, -0.542066175679227 ], [ 36.403142464483203, -0.538281996679248 ], [ 36.401311410483167, -0.534375746679248 ], [ 36.402104867483153, -0.529065687679238 ], [ 36.40430213248316, -0.526746351679267 ], [ 36.405889046483189, -0.52314527767925 ], [ 36.403508675483174, -0.519177992679263 ], [ 36.401494515483186, -0.516370375679233 ], [ 36.403325570483155, -0.512464125679233 ], [ 36.403508675483174, -0.508374769679224 ], [ 36.403142464483203, -0.505384047679231 ], [ 36.400334847483172, -0.504163343679241 ], [ 36.398137582483166, -0.502149183679253 ], [ 36.397710337483197, -0.498365007679243 ], [ 36.398503793483194, -0.490247328679234 ], [ 36.396733773483156, -0.486463148679266 ], [ 36.394719613483169, -0.480542738679221 ], [ 36.39453650748316, -0.47627027767925 ], [ 36.393926156483182, -0.472730238679221 ], [ 36.392339242483153, -0.46955641067922 ], [ 36.391728890483186, -0.466565687679238 ], [ 36.389104379483165, -0.464673597679225 ], [ 36.388310921483189, -0.460584242679263 ], [ 36.386907113483169, -0.457349379679217 ], [ 36.388921273483156, -0.453748304679268 ], [ 36.389287484483184, -0.449231703679234 ], [ 36.389714730483199, -0.446363050679227 ], [ 36.389287484483184, -0.442884047679231 ], [ 36.38812781648317, -0.438245375679233 ], [ 36.386113656483182, -0.427259047679231 ], [ 36.381902230483199, -0.425366957679219 ], [ 36.380498421483189, -0.421338636679254 ], [ 36.38031531648317, -0.416883070679264 ], [ 36.380925668483194, -0.412976820679264 ], [ 36.38031531648317, -0.408460218679241 ], [ 36.378301156483182, -0.404431898679266 ], [ 36.374516976483157, -0.401929457679219 ], [ 36.3674979334832, -0.397779066679223 ], [ 36.365300668483194, -0.393567640679239 ], [ 36.363896859483184, -0.390271742679263 ], [ 36.36273719148317, -0.386731703679234 ], [ 36.361699593483188, -0.382337172679231 ], [ 36.343328011483202, -0.385633070679264 ], [ 36.3342948084832, -0.38947828567922 ], [ 36.323308480483199, -0.387342054679268 ], [ 36.315495980483199, -0.386243422679231 ], [ 36.311528695483155, -0.368665297679231 ], [ 36.293706429483159, -0.373731214679256 ], [ 36.276494515483186, -0.392835218679241 ], [ 36.269109261483202, -0.364148695679264 ], [ 36.263494027483198, -0.343152601679267 ], [ 36.253118050483174, -0.342664320679264 ], [ 36.24890662548318, -0.346448500679233 ], [ 36.24609900748316, -0.347058851679267 ], [ 36.242742074483196, -0.345655043679246 ], [ 36.23914100048318, -0.34455641067922 ], [ 36.235539925483174, -0.344251234679237 ], [ 36.232121957483166, -0.345166761679254 ], [ 36.230535043483194, -0.351331312679238 ], [ 36.226140511483202, -0.34736402767925 ], [ 36.224309457483166, -0.340283949679249 ], [ 36.218694222483172, -0.313550550679227 ], [ 36.217290414483152, -0.307630140679239 ], [ 36.216130746483195, -0.301465589679256 ], [ 36.214543832483166, -0.294568617679263 ], [ 36.213689339483203, -0.271253187679238 ], [ 36.219304574483196, -0.267346937679238 ], [ 36.245488656483182, -0.25556715267925 ], [ 36.244695199483196, -0.248059828679234 ], [ 36.23828650748316, -0.230664808679253 ], [ 36.227117074483196, -0.214246351679267 ], [ 36.224309457483166, -0.209851820679264 ], [ 36.220891488483169, -0.211682875679233 ], [ 36.212712777483198, -0.203565199679249 ], [ 36.212529671483189, -0.192029554679268 ], [ 36.212102425483174, -0.188672621679248 ], [ 36.21094275748316, -0.184339125679233 ], [ 36.205144418483194, -0.155469496679248 ], [ 36.201543343483188, -0.136548597679225 ], [ 36.208318246483195, -0.127637464679256 ], [ 36.220098031483182, -0.113355238679221 ], [ 36.221318734483184, -0.105664808679253 ], [ 36.229131234483184, -0.106946547679231 ], [ 36.228337777483198, -0.114881117679263 ], [ 36.248113168483194, -0.118360121679248 ], [ 36.249089730483199, -0.102979261679254 ], [ 36.252141488483169, -0.084363539679262 ], [ 36.251286996483195, -0.060132582679219 ], [ 36.247319711483151, -0.06025465267925 ], [ 36.249700082483166, -0.051038343679241 ], [ 36.253545296483189, -0.046155531679235 ], [ 36.255498421483189, -0.036328871679248 ], [ 36.253301156483182, -0.033948500679233 ], [ 36.256902230483199, -0.026441175679227 ], [ 36.257927553483164, -0.019951763679219 ], [ 36.262700570483155, -0.020948011679254 ], [ 36.2678885584832, -0.020459730679252 ], [ 36.273137582483166, -0.002149183679253 ], [ 36.276494515483186, 0.00084153832074 ], [ 36.281499398483156, 0.003038804320736 ], [ 36.289128793483194, 0.008470933320777 ], [ 36.292485726483157, 0.010668199320773 ], [ 36.295903695483155, 0.00224534732075 ], [ 36.302129281483182, 0.004442613320746 ], [ 36.30273963248316, 0.007860581320754 ], [ 36.303899300483174, 0.011034410320744 ], [ 36.304836507483166, 0.015084255320742 ], [ 36.311894906483182, 0.016832749320767 ], [ 36.321111214483203, 0.018236558320777 ], [ 36.329546131483191, 0.020713371320764 ], [ 36.329911658483176, 0.025172800320772 ], [ 36.336492074483196, 0.027025620320783 ], [ 36.344121468483188, 0.029467027320775 ], [ 36.34851600048318, 0.030260484320761 ], [ 36.352910531483182, 0.018053452320769 ], [ 36.365117562483185, 0.019274156320759 ], [ 36.387517464483203, 0.026476304320736 ], [ 36.390274578483165, 0.028221089320764 ], [ 36.391303202483179, 0.031935564320745 ], [ 36.394719613483169, 0.03044358932078 ], [ 36.398686898483156, 0.029039781320759 ], [ 36.402287972483172, 0.029650132320737 ], [ 36.401494515483186, 0.034471910320744 ], [ 36.405889046483189, 0.038622300320751 ], [ 36.419744027483198, 0.038439195320732 ], [ 36.425908578483181, 0.042833726320734 ], [ 36.406316293483194, 0.053636949320773 ], [ 36.402715218483188, 0.055468003320752 ], [ 36.403935921483189, 0.058458726320734 ], [ 36.423711312483185, 0.08287278832074 ], [ 36.434514535483167, 0.086473863320746 ], [ 36.444097054483159, 0.090868394320748 ], [ 36.443730843483188, 0.094835679320736 ], [ 36.446538461483151, 0.092821519320748 ], [ 36.454900277483198, 0.113024156320759 ], [ 36.45648719148317, 0.117235581320754 ], [ 36.459538949483196, 0.123461167320781 ], [ 36.463933480483199, 0.133043687320762 ], [ 36.466313851483157, 0.137438218320765 ], [ 36.476689828483181, 0.124864976320734 ], [ 36.483525765483186, 0.117418687320762 ], [ 36.485723031483182, 0.114672105320776 ], [ 36.495122445483155, 0.104418199320773 ], [ 36.504320681483186, 0.094996587320734 ] ] ] } } +, +{ "type": "Feature", "id": 18, "properties": { "OBJECTID": 19, "ID_": 3111, "COUNTY_NAM": "NYERI", "CONST_CODE": 95, "CONSTITUEN": "KIENI", "COUNTY_COD": 19, "Shape_Leng": 2.98028956743, "Shape_Area": 0.27090667838 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.078496468483188, -0.000379164679262 ], [ 37.081120980483199, -0.00556715267925 ], [ 37.086125863483169, -0.01283033667926 ], [ 37.089116586483151, -0.015882093679241 ], [ 37.0921073084832, -0.017163832679219 ], [ 37.094731820483155, -0.01923902767925 ], [ 37.098088754483165, -0.022962172679231 ], [ 37.100713265483186, -0.02528150767927 ], [ 37.104741586483151, -0.029737074679249 ], [ 37.108525765483186, -0.03236158667926 ], [ 37.11328650748316, -0.036573011679254 ], [ 37.116338265483186, -0.031446058679253 ], [ 37.120122445483155, -0.019727308679253 ], [ 37.126897347483172, -0.025952894679224 ], [ 37.130742562483185, -0.028943617679263 ], [ 37.132939828483181, -0.03114088267927 ], [ 37.133306039483152, -0.035352308679253 ], [ 37.13672400748316, -0.03877027767925 ], [ 37.140691293483194, -0.041883070679264 ], [ 37.161687386483202, -0.055738050679227 ], [ 37.173894418483194, -0.063550550679227 ], [ 37.180486214483203, -0.06806715267925 ], [ 37.308537972483172, -0.15205152767925 ], [ 37.27289344148317, -0.246533949679249 ], [ 37.238713754483165, -0.33778150767927 ], [ 37.227910531483182, -0.36604078567922 ], [ 37.216496957483166, -0.395276625679233 ], [ 37.205693734483184, -0.423963148679266 ], [ 37.203740609483184, -0.428235609679237 ], [ 37.200986988483173, -0.430776579679221 ], [ 37.200147114483165, -0.434016096679218 ], [ 37.200387078483168, -0.438815379679229 ], [ 37.197787466483184, -0.441494979679251 ], [ 37.190668529483155, -0.443014752679235 ], [ 37.187509001483186, -0.44345468667922 ], [ 37.184331429483159, -0.44056471167926 ], [ 37.179509652483198, -0.441236097679225 ], [ 37.176790601483155, -0.443254716679237 ], [ 37.176270679483189, -0.448653910679243 ], [ 37.176335824483196, -0.452344496679248 ], [ 37.177030566483204, -0.457412602679258 ], [ 37.176710613483174, -0.462051909679249 ], [ 37.177312386483202, -0.466260511679254 ], [ 37.177495492483153, -0.470166761679254 ], [ 37.177129281483182, -0.475049574679249 ], [ 37.177430506483169, -0.482448863679226 ], [ 37.174350966483182, -0.485048475679266 ], [ 37.170903695483155, -0.487073500679233 ], [ 37.167312017483191, -0.48868793167924 ], [ 37.164232477483203, -0.491327537679242 ], [ 37.163432596483169, -0.494767023679233 ], [ 37.165532601483157, -0.498975355679252 ], [ 37.168831790483175, -0.504565560679228 ], [ 37.170711509483162, -0.509244861679238 ], [ 37.171111450483174, -0.51432410367926 ], [ 37.168511838483191, -0.517723595679231 ], [ 37.165105355483199, -0.518079359679237 ], [ 37.163952519483182, -0.521483034679252 ], [ 37.162272769483188, -0.524482586679258 ], [ 37.157153534483193, -0.522442890679261 ], [ 37.154713898483173, -0.525802389679259 ], [ 37.149954609483181, -0.525042502679244 ], [ 37.146315153483151, -0.528561977679263 ], [ 37.146733773483156, -0.531568129679217 ], [ 37.147710336483151, -0.536450941679223 ], [ 37.148320687483185, -0.540967543679246 ], [ 37.147388331483164, -0.54587400167924 ], [ 37.150093338483195, -0.552826121679234 ], [ 37.150371423483186, -0.556213700679225 ], [ 37.149208523483189, -0.559575998679238 ], [ 37.149006279483153, -0.563696709679223 ], [ 37.145365896483206, -0.565213535679223 ], [ 37.145391177483184, -0.57069939067924 ], [ 37.150346142483151, -0.574997064679226 ], [ 37.150674788483165, -0.579724505679226 ], [ 37.152773064483192, -0.583921058679268 ], [ 37.156316293483194, -0.587659437679238 ], [ 37.159307015483186, -0.591138441679223 ], [ 37.161321175483174, -0.593762953679234 ], [ 37.165288461483151, -0.594373304679268 ], [ 37.168674459483206, -0.593982672679263 ], [ 37.169499886483202, -0.597241957679219 ], [ 37.171581709483171, -0.599696050679259 ], [ 37.175677140483167, -0.600884231679234 ], [ 37.178887755483167, -0.602830824679247 ], [ 37.17969275748316, -0.606153089679256 ], [ 37.180120004483165, -0.609448988679221 ], [ 37.180177057483199, -0.612690195679252 ], [ 37.178391870483203, -0.616159448679243 ], [ 37.176602792483202, -0.618306341679218 ], [ 37.175618800483157, -0.620811049679221 ], [ 37.173711312483185, -0.62385328567922 ], [ 37.172917855483199, -0.628552992679263 ], [ 37.174504769483171, -0.632764418679246 ], [ 37.171086800483174, -0.633679945679264 ], [ 37.168414247483206, -0.637097810679225 ], [ 37.164684963483175, -0.638147634679231 ], [ 37.162339984483189, -0.63807435467925 ], [ 37.155671450483162, -0.638623958679264 ], [ 37.153508675483174, -0.641858656679235 ], [ 37.149907601483157, -0.64033277767925 ], [ 37.145513070483155, -0.639539320679264 ], [ 37.141793726483165, -0.639352528679242 ], [ 37.139076453483192, -0.64025828667923 ], [ 37.135503304483159, -0.641980726679267 ], [ 37.131291879483165, -0.644361097679225 ], [ 37.127393600483167, -0.646851992679219 ], [ 37.120732520483152, -0.646868172679265 ], [ 37.116887582483166, -0.644483168679246 ], [ 37.109502328483181, -0.641980726679267 ], [ 37.103093636483202, -0.639051039679262 ], [ 37.101689828483181, -0.636060316679223 ], [ 37.102117074483196, -0.63166578567922 ], [ 37.099309457483166, -0.628675062679238 ], [ 37.095891488483169, -0.627332289679262 ], [ 37.092534554483159, -0.625745375679233 ], [ 37.089543832483166, -0.624951918679246 ], [ 37.086308968483188, -0.624829847679225 ], [ 37.084538949483196, -0.622266371679248 ], [ 37.080693734483184, -0.619763929679268 ], [ 37.077703011483202, -0.617139418679246 ], [ 37.0745291834832, -0.61604078567922 ], [ 37.071538461483151, -0.614331800679227 ], [ 37.067327035483167, -0.61243971167926 ], [ 37.063115609483184, -0.61317213267927 ], [ 37.059697640483186, -0.611768324679249 ], [ 37.058721078483181, -0.608960707679219 ], [ 37.056706918483194, -0.604566175679227 ], [ 37.053288949483196, -0.600965101679267 ], [ 37.050725472483172, -0.597669203679234 ], [ 37.047124398483156, -0.596265394679224 ], [ 37.044316781483182, -0.595471937679238 ], [ 37.040288461483151, -0.593762953679234 ], [ 37.035893929483159, -0.592664320679264 ], [ 37.031133187483185, -0.592053968679241 ], [ 37.026128304483159, -0.592053968679241 ], [ 37.022710336483151, -0.59065016067922 ], [ 37.016301644483171, -0.586255629679217 ], [ 37.012944711483151, -0.586438734679237 ], [ 37.009343636483202, -0.586377699679249 ], [ 37.005498421483189, -0.586072523679266 ], [ 37.000737679483159, -0.586255629679217 ], [ 36.997136605483199, -0.58564527767925 ], [ 36.995915902483198, -0.58283766067922 ], [ 36.995122445483155, -0.579053480679252 ], [ 36.991521371483195, -0.577954847679225 ], [ 36.987126839483203, -0.576856214679256 ], [ 36.984319222483172, -0.578748304679268 ], [ 36.980718148483156, -0.580152113679221 ], [ 36.976933968483188, -0.581067640679239 ], [ 36.972295296483189, -0.58387525767927 ], [ 36.969304574483196, -0.586377699679249 ], [ 36.966741097483172, -0.587842543679246 ], [ 36.96234656648317, -0.588758070679264 ], [ 36.958501351483157, -0.589063246679248 ], [ 36.954900277483198, -0.591077406679235 ], [ 36.951909554483159, -0.594434339679256 ], [ 36.944524299483184, -0.597241957679219 ], [ 36.94031287548318, -0.598035414679262 ], [ 36.936528695483155, -0.599439222679225 ], [ 36.932744515483186, -0.601758558679253 ], [ 36.927495492483153, -0.603955824679249 ], [ 36.924504769483171, -0.605542738679221 ], [ 36.920110238483169, -0.60517652767925 ], [ 36.917119515483186, -0.608777601679267 ], [ 36.914311898483156, -0.610364515679239 ], [ 36.910893929483159, -0.610059339679256 ], [ 36.906926644483171, -0.61018141067922 ], [ 36.898320687483185, -0.609448988679221 ], [ 36.893926156483182, -0.609571058679253 ], [ 36.888738168483194, -0.610669691679223 ], [ 36.884099496483195, -0.610364515679239 ], [ 36.88031531648317, -0.608167250679233 ], [ 36.877324593483188, -0.607251722679225 ], [ 36.873113168483194, -0.606946547679231 ], [ 36.868535531483182, -0.605664808679253 ], [ 36.8655448084832, -0.606763441679223 ], [ 36.86273719148317, -0.607373793679246 ], [ 36.858891976483157, -0.604871351679267 ], [ 36.851933968483188, -0.59876783667926 ], [ 36.847295296483189, -0.595044691679223 ], [ 36.839543832483166, -0.59486158667926 ], [ 36.8342948084832, -0.592176039679262 ], [ 36.826116097483172, -0.586865980679252 ], [ 36.822331918483194, -0.584180433679253 ], [ 36.814092171483189, -0.582471449679249 ], [ 36.811101448483207, -0.580335218679241 ], [ 36.810307992483153, -0.57606275767927 ], [ 36.810918343483188, -0.571363050679227 ], [ 36.807134164483152, -0.571179945679264 ], [ 36.80414344148317, -0.569776136679254 ], [ 36.800298226483157, -0.56947096167926 ], [ 36.79633094148317, -0.571057875679233 ], [ 36.793096078483181, -0.571057875679233 ], [ 36.782536996483195, -0.567639906679235 ], [ 36.778142464483203, -0.567334730679252 ], [ 36.774541390483186, -0.567761976679267 ], [ 36.769719613483169, -0.56806715267925 ], [ 36.7659354334832, -0.568738539679262 ], [ 36.762334359483184, -0.56916578567922 ], [ 36.7581229334832, -0.569043714679256 ], [ 36.75391150748316, -0.570447523679266 ], [ 36.749944222483172, -0.571179945679264 ], [ 36.745915902483198, -0.569654066679223 ], [ 36.7424979334832, -0.569531996679248 ], [ 36.73828650748316, -0.567578871679248 ], [ 36.733525765483186, -0.567334730679252 ], [ 36.725896371483195, -0.570935804679268 ], [ 36.723699105483199, -0.573865492679263 ], [ 36.721318734483184, -0.576428968679241 ], [ 36.717717660483167, -0.577954847679225 ], [ 36.71570350048318, -0.580457289679262 ], [ 36.71429969148317, -0.582959730679252 ], [ 36.711919320483155, -0.584668714679256 ], [ 36.7092948084832, -0.586865980679252 ], [ 36.708928597483172, -0.590772230679252 ], [ 36.710515511483202, -0.595166761679254 ], [ 36.709905160483167, -0.601880629679217 ], [ 36.71234656648317, -0.608472425679227 ], [ 36.710515511483202, -0.611157972679225 ], [ 36.709905160483167, -0.615247328679234 ], [ 36.71094275748316, -0.619580824679249 ], [ 36.710332406483182, -0.623365004679217 ], [ 36.707707894483171, -0.626966078679234 ], [ 36.704106820483155, -0.624463636679254 ], [ 36.701726449483196, -0.622144300679227 ], [ 36.698491586483151, -0.618177015679239 ], [ 36.696294320483155, -0.615064222679225 ], [ 36.692143929483159, -0.608655531679235 ], [ 36.690495980483199, -0.604871351679267 ], [ 36.685735238483169, -0.599378187679238 ], [ 36.684087289483152, -0.596570570679264 ], [ 36.680486214483203, -0.587659437679238 ], [ 36.680486214483203, -0.583264906679235 ], [ 36.679936898483156, -0.578565199679249 ], [ 36.6760916834832, -0.577161390679239 ], [ 36.67273475048318, -0.575635511679254 ], [ 36.671086800483174, -0.572644789679262 ], [ 36.67133094148317, -0.568738539679262 ], [ 36.66992713248316, -0.558362562679238 ], [ 36.670537484483184, -0.553479750679233 ], [ 36.670293343483188, -0.54853590267925 ], [ 36.669499886483202, -0.544568617679263 ], [ 36.668523324483196, -0.541577894679224 ], [ 36.666142953483181, -0.538281996679248 ], [ 36.664739144483171, -0.534436781679235 ], [ 36.66492225048318, -0.528333265679239 ], [ 36.66351844148317, -0.523938734679237 ], [ 36.659307015483186, -0.516858656679235 ], [ 36.659307015483186, -0.51283033667926 ], [ 36.658940804483159, -0.507276136679254 ], [ 36.661138070483155, -0.504529554679268 ], [ 36.662541879483165, -0.50184400767927 ], [ 36.661321175483174, -0.49885328567922 ], [ 36.661138070483155, -0.495679457679219 ], [ 36.661687386483202, -0.491956312679238 ], [ 36.662908089483203, -0.488538343679241 ], [ 36.665715707483166, -0.485242445679264 ], [ 36.667302621483195, -0.481946547679231 ], [ 36.668096078483181, -0.479138929679268 ], [ 36.667912972483172, -0.475965101679267 ], [ 36.667119515483186, -0.472669203679234 ], [ 36.665898812483185, -0.46986158667926 ], [ 36.665105355483199, -0.466443617679263 ], [ 36.662541879483165, -0.463147718679241 ], [ 36.659490121483195, -0.461377699679249 ], [ 36.655339730483199, -0.460950453679234 ], [ 36.652104867483153, -0.459546644679224 ], [ 36.651494515483186, -0.455457289679262 ], [ 36.651311410483167, -0.44306715267925 ], [ 36.651494515483186, -0.439038832679219 ], [ 36.651311410483167, -0.43525465267925 ], [ 36.648931039483152, -0.43153150767927 ], [ 36.639287484483184, -0.41962965267925 ], [ 36.637517464483203, -0.416455824679249 ], [ 36.635503304483159, -0.413343031679235 ], [ 36.625493539483152, -0.404065687679238 ], [ 36.62390662548318, -0.401380140679239 ], [ 36.626103890483186, -0.397779066679223 ], [ 36.632512582483166, -0.38978346167926 ], [ 36.630742562483185, -0.386548597679225 ], [ 36.624333871483195, -0.382947523679266 ], [ 36.620732796483189, -0.381482679679268 ], [ 36.61609412548318, -0.378369886679254 ], [ 36.609136117483153, -0.376966078679234 ], [ 36.605718148483156, -0.374646742679263 ], [ 36.604741586483151, -0.371472914679262 ], [ 36.605290902483198, -0.367566664679262 ], [ 36.608342660483167, -0.363782484679237 ], [ 36.614324105483199, -0.358838636679254 ], [ 36.616887582483166, -0.356336195679264 ], [ 36.616338265483186, -0.353345472679225 ], [ 36.612126839483203, -0.346448500679233 ], [ 36.611089242483153, -0.343762953679234 ], [ 36.610539925483174, -0.340467054679268 ], [ 36.609929574483196, -0.334973890679239 ], [ 36.611089242483153, -0.327161390679239 ], [ 36.615300668483194, -0.319348890679239 ], [ 36.615911019483171, -0.310132582679219 ], [ 36.617852814483165, -0.306106436679218 ], [ 36.619939339483203, -0.302747328679234 ], [ 36.623296273483156, -0.29676588267927 ], [ 36.627326828483199, -0.288353328679252 ], [ 36.629279953483199, -0.284752254679236 ], [ 36.630925668483194, -0.282849867679263 ], [ 36.632695687483185, -0.279859144679224 ], [ 36.641728890483186, -0.26356275767927 ], [ 36.648320687483185, -0.252271254679217 ], [ 36.650517953483181, -0.248181898679266 ], [ 36.652287972483172, -0.24384840267925 ], [ 36.660710824483196, -0.229261000679233 ], [ 36.662297738483169, -0.225843031679235 ], [ 36.664495004483165, -0.221936781679235 ], [ 36.669316781483182, -0.213880140679239 ], [ 36.684514535483167, -0.184949476679267 ], [ 36.684514535483167, -0.18153150767927 ], [ 36.683537972483172, -0.176465589679256 ], [ 36.690923226483157, -0.174268324679249 ], [ 36.660527718483188, -0.15223463267927 ], [ 36.6995291834832, -0.13947828567922 ], [ 36.705693734483184, -0.137952406679235 ], [ 36.71094275748316, -0.13587721167926 ], [ 36.717534554483159, -0.128858168679246 ], [ 36.730901254483165, -0.125379164679262 ], [ 36.743291390483186, -0.122449476679267 ], [ 36.752324593483188, -0.120557386679254 ], [ 36.760320199483196, -0.114270765679239 ], [ 36.766118539483152, -0.109143812679238 ], [ 36.769109261483202, -0.114148695679264 ], [ 36.77429725048318, -0.112866957679219 ], [ 36.7835135584832, -0.110059339679256 ], [ 36.788701546483189, -0.108655531679235 ], [ 36.793523324483196, -0.107556898679266 ], [ 36.831146991483187, -0.104043694679265 ], [ 36.832150444483197, -0.12561793767924 ], [ 36.832097543483194, -0.134778578679234 ], [ 36.83594275748316, -0.135144789679262 ], [ 36.844121468483188, -0.136365492679263 ], [ 36.848943246483195, -0.137342054679268 ], [ 36.851506722483172, -0.138867933679253 ], [ 36.855107796483189, -0.140271742679263 ], [ 36.861943734483184, -0.144361097679225 ], [ 36.861651967483162, -0.147192180679272 ], [ 36.859946097483196, -0.152610827679271 ], [ 36.863896859483184, -0.158582289679262 ], [ 36.865300668483194, -0.162244398679266 ], [ 36.8655448084832, -0.165479261679254 ], [ 36.867314828483181, -0.16877516067922 ], [ 36.870122445483155, -0.171277601679267 ], [ 36.871526254483165, -0.173963148679266 ], [ 36.871709359483184, -0.178235609679237 ], [ 36.869939339483203, -0.181165297679231 ], [ 36.866887582483166, -0.182080824679249 ], [ 36.8655448084832, -0.186841566679223 ], [ 36.861516488483169, -0.188672621679248 ], [ 36.858342660483167, -0.19056471167926 ], [ 36.855535043483194, -0.193860609679237 ], [ 36.852300179483159, -0.196729261679254 ], [ 36.848332894483171, -0.196668226679267 ], [ 36.845596716483151, -0.196963457679262 ], [ 36.840813920483178, -0.198382709679268 ], [ 36.842534554483159, -0.204846937679238 ], [ 36.845525277483198, -0.212476332679219 ], [ 36.841924203483181, -0.214063246679248 ], [ 36.845891488483169, -0.225049574679249 ], [ 36.85492469148317, -0.249036390679239 ], [ 36.857305062483185, -0.254956800679227 ], [ 36.868718636483202, -0.24915846167926 ], [ 36.872136605483199, -0.248181898679266 ], [ 36.87390662548318, -0.25306471167926 ], [ 36.879521859483184, -0.258130629679217 ], [ 36.888494027483198, -0.261243422679231 ], [ 36.896916879483165, -0.263928968679241 ], [ 36.949346078483181, -0.279676039679262 ], [ 36.958745492483153, -0.283765394679224 ], [ 36.962712777483198, -0.284375746679248 ], [ 36.974309457483166, -0.289258558679253 ], [ 36.981694711483151, -0.292737562679238 ], [ 36.988103402483198, -0.295484144679224 ], [ 36.99414588248316, -0.283032972679225 ], [ 36.99890662548318, -0.271436293679246 ], [ 36.991521371483195, -0.25575025767927 ], [ 36.995915902483198, -0.253858168679246 ], [ 36.999700082483166, -0.251966078679234 ], [ 37.002141488483169, -0.249646742679263 ], [ 37.00391150748316, -0.247266371679248 ], [ 37.006902230483199, -0.244153578679234 ], [ 37.010320199483196, -0.241956312679238 ], [ 37.012517464483203, -0.239636976679267 ], [ 37.012944711483151, -0.235974867679263 ], [ 37.013921273483156, -0.232862074679249 ], [ 37.012334359483184, -0.228772718679241 ], [ 37.009099496483195, -0.22346266067922 ], [ 37.009709847483172, -0.219068129679217 ], [ 37.012700570483155, -0.206250746679248 ], [ 37.0159354334832, -0.193738539679262 ], [ 37.018926156483182, -0.181165297679231 ], [ 37.01953650748316, -0.178235609679237 ], [ 37.019719613483169, -0.175366957679219 ], [ 37.017705453483181, -0.171643812679238 ], [ 37.017705453483181, -0.16877516067922 ], [ 37.016301644483171, -0.164563734679237 ], [ 37.015141976483157, -0.161939222679225 ], [ 37.01312781648317, -0.159558851679267 ], [ 37.010137093483188, -0.156629164679262 ], [ 37.009343636483202, -0.152173597679225 ], [ 37.007939828483181, -0.14924391067922 ], [ 37.004521859483184, -0.148450453679234 ], [ 37.000737679483159, -0.146070082679219 ], [ 36.997136605483199, -0.145276625679233 ], [ 36.994939339483203, -0.143140394679224 ], [ 36.991887582483166, -0.13978346167926 ], [ 36.986699593483188, -0.133557875679233 ], [ 36.985539925483174, -0.129163343679241 ], [ 36.984929574483196, -0.123059828679234 ], [ 36.983525765483186, -0.100965101679267 ], [ 36.982915414483152, -0.096082289679262 ], [ 36.979131234483184, -0.07923658667926 ], [ 36.978887093483188, -0.074536879679217 ], [ 36.978989073483199, -0.071370739679255 ], [ 36.982479459483152, -0.069009595679236 ], [ 36.986516488483169, -0.069043714679256 ], [ 36.98969031648317, -0.066663343679241 ], [ 36.992925179483159, -0.065747816679223 ], [ 36.997930062483185, -0.064954359679237 ], [ 37.0159354334832, -0.055249769679224 ], [ 37.026311410483167, -0.048963148679266 ], [ 37.027413164483157, -0.045876289679259 ], [ 37.036321175483174, -0.034558851679267 ], [ 37.048345101483157, -0.019666273679266 ], [ 37.051702035483167, -0.015149672679231 ], [ 37.052495492483153, -0.010938246679248 ], [ 37.054509652483198, -0.007459242679263 ], [ 37.061720281483183, -0.000789677679225 ], [ 37.068730843483188, -0.002332289679262 ], [ 37.070928109483184, 0.001024644320748 ], [ 37.072515023483156, 0.004259507320737 ], [ 37.073962592483205, 0.00804774032076 ], [ 37.078629973483196, 0.01038143132075 ], [ 37.07813025748316, 0.006456773320733 ], [ 37.07953406648317, 0.002855699320773 ], [ 37.078496468483188, -0.000379164679262 ] ] ] } } +, +{ "type": "Feature", "id": 19, "properties": { "OBJECTID": 20, "ID_": 3965, "COUNTY_NAM": "KIRINYAGA", "CONST_CODE": 101, "CONSTITUEN": "GICHUGU", "COUNTY_COD": 20, "Shape_Leng": 1.79453434734, "Shape_Area": 0.11984024832 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.423894418483194, -0.441968519679224 ], [ 37.423711312483185, -0.445874769679224 ], [ 37.427312386483202, -0.447949964679256 ], [ 37.428288949483196, -0.451428968679241 ], [ 37.427922738483169, -0.456067640679239 ], [ 37.428288949483196, -0.460279066679223 ], [ 37.42773963248316, -0.464429457679219 ], [ 37.428288949483196, -0.467969496679248 ], [ 37.427312386483202, -0.47254713267927 ], [ 37.425542367483153, -0.479444105679252 ], [ 37.42468787548318, -0.484448988679221 ], [ 37.425908578483181, -0.487561781679235 ], [ 37.427922738483169, -0.49134596167926 ], [ 37.42969275748316, -0.495862562679238 ], [ 37.427129281483182, -0.499951918679246 ], [ 37.426518929483159, -0.504163343679241 ], [ 37.426518929483159, -0.507276136679254 ], [ 37.427495492483153, -0.51057203567922 ], [ 37.429509652483198, -0.513440687679238 ], [ 37.431523812483185, -0.517346937679238 ], [ 37.434331429483159, -0.521680433679253 ], [ 37.437688363483169, -0.523572523679266 ], [ 37.441899789483152, -0.527967054679268 ], [ 37.44531775748316, -0.530652601679267 ], [ 37.44672156648317, -0.534070570679264 ], [ 37.44672156648317, -0.537671644679224 ], [ 37.44812537548318, -0.541638929679268 ], [ 37.44812537548318, -0.545362074679249 ], [ 37.450505746483195, -0.548169691679223 ], [ 37.453740609483184, -0.550977308679253 ], [ 37.457707894483171, -0.551953871679248 ], [ 37.461736214483203, -0.55244215267925 ], [ 37.462529671483189, -0.555982191679223 ], [ 37.465520394483171, -0.557630140679239 ], [ 37.472295296483189, -0.558545668679246 ], [ 37.474492562483185, -0.560742933679253 ], [ 37.476689828483181, -0.567639906679235 ], [ 37.476933968483188, -0.570752699679249 ], [ 37.47852088248316, -0.574842054679268 ], [ 37.481511605483199, -0.579358656679235 ], [ 37.485112679483159, -0.582166273679266 ], [ 37.485539925483174, -0.586072523679266 ], [ 37.484319222483172, -0.589063246679248 ], [ 37.481511605483199, -0.591565687679238 ], [ 37.479131234483184, -0.59486158667926 ], [ 37.479314339483203, -0.598645765679239 ], [ 37.479131234483184, -0.602857191679223 ], [ 37.482915414483152, -0.604932386679254 ], [ 37.484502328483181, -0.608350355679252 ], [ 37.486943734483184, -0.611463148679266 ], [ 37.488103402483198, -0.614636976679267 ], [ 37.48828650748316, -0.617749769679224 ], [ 37.487493050483174, -0.620740492679263 ], [ 37.486943734483184, -0.625135023679266 ], [ 37.483525765483186, -0.62666090267925 ], [ 37.481145394483171, -0.629346449679249 ], [ 37.480107796483189, -0.63587721167926 ], [ 37.479131234483184, -0.638867933679253 ], [ 37.47852088248316, -0.64246900767927 ], [ 37.476323617483153, -0.644666273679266 ], [ 37.47351600048318, -0.650769789679262 ], [ 37.473088754483165, -0.653943617679263 ], [ 37.474126351483157, -0.656934339679256 ], [ 37.474309457483166, -0.660230238679221 ], [ 37.476140511483202, -0.663159925679227 ], [ 37.476689828483181, -0.666577894679224 ], [ 37.478337777483198, -0.669568617679263 ], [ 37.477910531483182, -0.673169691679223 ], [ 37.477300179483159, -0.675977308679253 ], [ 37.477300179483159, -0.679151136679254 ], [ 37.475102914483152, -0.681775648679266 ], [ 37.475102914483152, -0.68525465267925 ], [ 37.479497445483155, -0.691175062679238 ], [ 37.480535043483194, -0.695630629679217 ], [ 37.47852088248316, -0.707166273679266 ], [ 37.478093636483202, -0.711682875679233 ], [ 37.479314339483203, -0.714978773679266 ], [ 37.483098519483171, -0.716931898679266 ], [ 37.490300668483194, -0.72236402767925 ], [ 37.493291390483186, -0.725171644679224 ], [ 37.49414588248316, -0.728345472679225 ], [ 37.49609900748316, -0.731763441679223 ], [ 37.493535531483182, -0.733655531679235 ], [ 37.485723031483182, -0.730969984679237 ], [ 37.480718148483156, -0.729932386679254 ], [ 37.476933968483188, -0.728345472679225 ], [ 37.473332894483171, -0.727063734679237 ], [ 37.469487679483159, -0.728772718679241 ], [ 37.4671073084832, -0.730542738679221 ], [ 37.46429969148317, -0.731763441679223 ], [ 37.463323129483165, -0.735242445679264 ], [ 37.459538949483196, -0.73518141067922 ], [ 37.449895394483171, -0.733655531679235 ], [ 37.444890511483202, -0.733045179679268 ], [ 37.427922738483169, -0.745862562679238 ], [ 37.42468787548318, -0.748181898679266 ], [ 37.421697152483198, -0.749768812679238 ], [ 37.417485726483157, -0.750073988679221 ], [ 37.406743539483152, -0.750135023679266 ], [ 37.394902718483188, -0.754041273679266 ], [ 37.3909354334832, -0.754834730679252 ], [ 37.387334359483184, -0.755872328679234 ], [ 37.380742562483185, -0.760755140679239 ], [ 37.377690804483159, -0.76337965267925 ], [ 37.374089730483199, -0.764539320679264 ], [ 37.370915902483198, -0.765943129679217 ], [ 37.367742074483196, -0.764661390679239 ], [ 37.36133338248316, -0.764539320679264 ], [ 37.359319222483172, -0.768750746679248 ], [ 37.356938851483157, -0.772656996679248 ], [ 37.350102914483152, -0.774365980679252 ], [ 37.345891488483169, -0.774060804679268 ], [ 37.332524789483152, -0.769361097679225 ], [ 37.32813025748316, -0.76746900767927 ], [ 37.324101937483185, -0.764844496679248 ], [ 37.321294320483155, -0.762464125679233 ], [ 37.318913949483196, -0.759961683679253 ], [ 37.316899789483152, -0.753430922679231 ], [ 37.31531287548318, -0.750745375679233 ], [ 37.307317269483171, -0.751172621679248 ], [ 37.30414344148317, -0.752149183679253 ], [ 37.301518929483159, -0.753858168679246 ], [ 37.298711312483185, -0.755384047679231 ], [ 37.28992225048318, -0.75697096167926 ], [ 37.284010676483199, -0.75720938167922 ], [ 37.280360756483155, -0.756538131679238 ], [ 37.276921761483202, -0.757031996679248 ], [ 37.2678885584832, -0.779065687679238 ], [ 37.268132699483196, -0.783155043679246 ], [ 37.2678885584832, -0.787366468679241 ], [ 37.264104379483165, -0.781629164679262 ], [ 37.262944711483151, -0.778638441679223 ], [ 37.262517464483203, -0.774365980679252 ], [ 37.262334359483184, -0.770276625679233 ], [ 37.260320199483196, -0.766065199679249 ], [ 37.259099496483195, -0.762158949679249 ], [ 37.25671912548318, -0.758863050679227 ], [ 37.257538267483191, -0.754692194679253 ], [ 37.261907113483169, -0.75275953567922 ], [ 37.264287484483184, -0.754651625679233 ], [ 37.268743050483174, -0.754651625679233 ], [ 37.267095101483157, -0.751355726679267 ], [ 37.264287484483184, -0.748365004679217 ], [ 37.2659354334832, -0.744641859679237 ], [ 37.262700570483155, -0.740857679679268 ], [ 37.261296761483202, -0.73817213267927 ], [ 37.258916390483186, -0.735852797679231 ], [ 37.257512582483166, -0.733350355679252 ], [ 37.258306039483152, -0.730237562679238 ], [ 37.257939828483181, -0.727063734679237 ], [ 37.254338754483165, -0.725965101679267 ], [ 37.251531136483202, -0.724256117679263 ], [ 37.252934945483155, -0.720777113679221 ], [ 37.24890662548318, -0.71082838267927 ], [ 37.244939339483203, -0.708264906679235 ], [ 37.243718636483202, -0.705335218679241 ], [ 37.243901742483153, -0.701856214679256 ], [ 37.244328988483169, -0.697949964679256 ], [ 37.243535531483182, -0.693982679679268 ], [ 37.240300668483194, -0.686536390679239 ], [ 37.239934457483166, -0.681165297679231 ], [ 37.237309945483155, -0.678662855679252 ], [ 37.237493050483174, -0.670240004679217 ], [ 37.233891976483157, -0.669141371679248 ], [ 37.231511605483199, -0.67176588267927 ], [ 37.229131234483184, -0.673352797679231 ], [ 37.226140511483202, -0.675061781679235 ], [ 37.222905648483156, -0.679273207679219 ], [ 37.220098031483182, -0.682569105679252 ], [ 37.216741097483172, -0.687635023679266 ], [ 37.214543832483166, -0.690076429679268 ], [ 37.212712777483198, -0.68665846167926 ], [ 37.211736214483203, -0.683972914679262 ], [ 37.206914437483185, -0.679456312679238 ], [ 37.204900277483198, -0.676770765679239 ], [ 37.204289925483174, -0.673047621679248 ], [ 37.20313025748316, -0.668531019679224 ], [ 37.201299203483181, -0.665052015679239 ], [ 37.197331918483194, -0.664563734679237 ], [ 37.194524300483174, -0.666577894679224 ], [ 37.189885629483165, -0.667066175679227 ], [ 37.180730355483199, -0.66767652767925 ], [ 37.180913461483151, -0.664746839679256 ], [ 37.180486214483203, -0.661878187679238 ], [ 37.178288949483196, -0.658765394679224 ], [ 37.177495492483153, -0.655652601679267 ], [ 37.175725472483172, -0.652967054679268 ], [ 37.173100961483151, -0.651563246679248 ], [ 37.170537484483184, -0.649182875679233 ], [ 37.171976382483187, -0.644193284679264 ], [ 37.168422273483195, -0.637121706679241 ], [ 37.171096464483178, -0.633692101679233 ], [ 37.174504769483171, -0.632764418679246 ], [ 37.172917855483199, -0.628552992679263 ], [ 37.173711312483185, -0.62385328567922 ], [ 37.175725472483172, -0.62025221167926 ], [ 37.176631032483151, -0.618283555679229 ], [ 37.178396942483168, -0.616165959679224 ], [ 37.180120004483165, -0.612683851679267 ], [ 37.180120004483165, -0.609448988679221 ], [ 37.17969275748316, -0.606153089679256 ], [ 37.178899300483174, -0.602857191679223 ], [ 37.175725472483172, -0.600965101679267 ], [ 37.171514046483189, -0.599683363679221 ], [ 37.169499886483202, -0.597180922679231 ], [ 37.168706429483159, -0.593946058679253 ], [ 37.165288461483151, -0.594373304679268 ], [ 37.161321175483174, -0.593762953679234 ], [ 37.159307015483186, -0.591138441679223 ], [ 37.152532113483169, -0.583570082679219 ], [ 37.1507010584832, -0.579663832679219 ], [ 37.150334847483172, -0.574964125679233 ], [ 37.145329964483203, -0.570630629679217 ], [ 37.145329964483203, -0.56525953567922 ], [ 37.148931039483152, -0.563733656679235 ], [ 37.149114144483171, -0.559583265679239 ], [ 37.150334847483172, -0.556165297679231 ], [ 37.150090707483166, -0.552930433679253 ], [ 37.149114144483171, -0.550061781679235 ], [ 37.14734412548318, -0.545850355679252 ], [ 37.148320687483185, -0.540967543679246 ], [ 37.14789344148317, -0.536756117679263 ], [ 37.146733773483156, -0.53236158667926 ], [ 37.146306527483198, -0.528577406679235 ], [ 37.149907601483157, -0.525037367679263 ], [ 37.154729379483165, -0.525769789679262 ], [ 37.15710975048318, -0.522534925679227 ], [ 37.162297738483169, -0.524365980679252 ], [ 37.163945687483185, -0.521436293679246 ], [ 37.16492225048318, -0.518140394679224 ], [ 37.168523324483196, -0.517774183679253 ], [ 37.171086800483174, -0.514356214679256 ], [ 37.170720589483203, -0.509534437679238 ], [ 37.169744027483198, -0.506848890679239 ], [ 37.168340218483188, -0.503552992679263 ], [ 37.165715707483166, -0.499463636679254 ], [ 37.163335336483151, -0.494763929679268 ], [ 37.164311898483156, -0.49134596167926 ], [ 37.166936410483167, -0.488843519679224 ], [ 37.170293343483188, -0.487256605679252 ], [ 37.173711312483185, -0.485364515679239 ], [ 37.177312386483202, -0.482434828679234 ], [ 37.177312386483202, -0.478345472679225 ], [ 37.177129281483182, -0.475049574679249 ], [ 37.177495492483153, -0.470166761679254 ], [ 37.177312386483202, -0.466077406679235 ], [ 37.176702035483167, -0.462171156679235 ], [ 37.176946175483174, -0.457349379679217 ], [ 37.176335824483196, -0.452954847679225 ], [ 37.176335824483196, -0.447949964679256 ], [ 37.176702035483167, -0.443433363679221 ], [ 37.179509652483198, -0.441236097679225 ], [ 37.184331429483159, -0.44056471167926 ], [ 37.18750525748316, -0.443433363679221 ], [ 37.190495980483199, -0.44306715267925 ], [ 37.197698129483165, -0.441541273679266 ], [ 37.200322640483186, -0.438855726679267 ], [ 37.200139535483167, -0.434033949679249 ], [ 37.200932992483153, -0.430738050679227 ], [ 37.203740609483184, -0.428235609679237 ], [ 37.205693734483184, -0.423963148679266 ], [ 37.216496957483166, -0.395276625679233 ], [ 37.227910531483182, -0.36604078567922 ], [ 37.238713754483165, -0.33778150767927 ], [ 37.27289344148317, -0.246533949679249 ], [ 37.308537972483172, -0.15205152767925 ], [ 37.341924203483181, -0.229138929679268 ], [ 37.382329476483157, -0.323133070679264 ], [ 37.425298226483157, -0.423963148679266 ], [ 37.425725472483172, -0.428052504679217 ], [ 37.426518929483159, -0.430982191679223 ], [ 37.426702035483167, -0.434156019679224 ], [ 37.425542367483153, -0.437879164679262 ], [ 37.423894418483194, -0.441968519679224 ] ] ] } } +, +{ "type": "Feature", "id": 20, "properties": { "OBJECTID": 21, "ID_": 4145, "COUNTY_NAM": "MURANG'A", "CONST_CODE": 105, "CONSTITUEN": "MATHIOYA", "COUNTY_COD": 21, "Shape_Leng": 2.43719771684, "Shape_Area": 0.20511432082 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.785527718483188, -0.568555433679253 ], [ 36.793096078483181, -0.571057875679233 ], [ 36.79633094148317, -0.571057875679233 ], [ 36.800298226483157, -0.56947096167926 ], [ 36.80414344148317, -0.569776136679254 ], [ 36.807134164483152, -0.571179945679264 ], [ 36.809697640483186, -0.572644789679262 ], [ 36.810491097483172, -0.577954847679225 ], [ 36.812932504483165, -0.581983168679246 ], [ 36.822331918483194, -0.584180433679253 ], [ 36.826116097483172, -0.586865980679252 ], [ 36.834905160483167, -0.592481214679256 ], [ 36.839543832483166, -0.59486158667926 ], [ 36.847295296483189, -0.595044691679223 ], [ 36.851933968483188, -0.59876783667926 ], [ 36.860906136483202, -0.606458265679239 ], [ 36.86469031648317, -0.60712965267925 ], [ 36.867925179483159, -0.605664808679253 ], [ 36.871343148483156, -0.606336195679264 ], [ 36.874333871483195, -0.607434828679234 ], [ 36.877324593483188, -0.607251722679225 ], [ 36.88031531648317, -0.608167250679233 ], [ 36.883489144483171, -0.609754164679262 ], [ 36.885503304483159, -0.61243971167926 ], [ 36.888921273483156, -0.610547621679248 ], [ 36.893926156483182, -0.609754164679262 ], [ 36.898320687483185, -0.609448988679221 ], [ 36.902287972483172, -0.610059339679256 ], [ 36.90570594148317, -0.61018141067922 ], [ 36.909307015483186, -0.609876234679237 ], [ 36.91351844148317, -0.610364515679239 ], [ 36.917729867483153, -0.608777601679267 ], [ 36.920537484483184, -0.605481703679234 ], [ 36.924504769483171, -0.605542738679221 ], [ 36.927495492483153, -0.603955824679249 ], [ 36.93109656648317, -0.602735121679248 ], [ 36.933537972483172, -0.600965101679267 ], [ 36.936101449483196, -0.599683363679221 ], [ 36.939885629483165, -0.598157484679237 ], [ 36.944097054483159, -0.59736402767925 ], [ 36.947515023483156, -0.595960218679241 ], [ 36.950505746483195, -0.595166761679254 ], [ 36.955693734483184, -0.590344984679237 ], [ 36.959905160483167, -0.589063246679248 ], [ 36.963933480483199, -0.588330824679249 ], [ 36.9671073084832, -0.588330824679249 ], [ 36.970098031483182, -0.585340101679267 ], [ 36.972539437483185, -0.583448011679254 ], [ 36.976323617483153, -0.581677992679263 ], [ 36.980107796483189, -0.580152113679221 ], [ 36.983525765483186, -0.579480726679267 ], [ 36.985723031483182, -0.577161390679239 ], [ 36.989507211483151, -0.577466566679223 ], [ 36.994512093483188, -0.579053480679252 ], [ 36.99609900748316, -0.583936293679246 ], [ 36.998540414483152, -0.586377699679249 ], [ 37.002690804483159, -0.586133558679253 ], [ 37.0081229334832, -0.586072523679266 ], [ 37.012944711483151, -0.586438734679237 ], [ 37.017339242483153, -0.58704908667926 ], [ 37.02094031648317, -0.58955152767925 ], [ 37.0257010584832, -0.592237074679249 ], [ 37.030339730483199, -0.592237074679249 ], [ 37.034734261483202, -0.592664320679264 ], [ 37.040105355483199, -0.593762953679234 ], [ 37.044316781483182, -0.595471937679238 ], [ 37.047124398483156, -0.596265394679224 ], [ 37.050725472483172, -0.597669203679234 ], [ 37.052495492483153, -0.600537855679252 ], [ 37.054936898483156, -0.60267408667926 ], [ 37.057134164483152, -0.60535963267927 ], [ 37.058721078483181, -0.60853346167926 ], [ 37.059697640483186, -0.611463148679266 ], [ 37.063115609483184, -0.614453871679248 ], [ 37.067327035483167, -0.61243971167926 ], [ 37.071538461483151, -0.614331800679227 ], [ 37.0745291834832, -0.61604078567922 ], [ 37.077703011483202, -0.617139418679246 ], [ 37.080144418483194, -0.619641859679237 ], [ 37.083928597483172, -0.621839125679233 ], [ 37.086308968483188, -0.624768812679238 ], [ 37.089543832483166, -0.624951918679246 ], [ 37.092900765483186, -0.625745375679233 ], [ 37.096135629483165, -0.627454359679237 ], [ 37.099309457483166, -0.628675062679238 ], [ 37.101689828483181, -0.630384047679231 ], [ 37.102300179483159, -0.633557875679233 ], [ 37.102727425483174, -0.63856275767927 ], [ 37.106694711483151, -0.640760023679266 ], [ 37.109502328483181, -0.641980726679267 ], [ 37.116887582483166, -0.644483168679246 ], [ 37.120732796483189, -0.646863539679262 ], [ 37.127324593483188, -0.646863539679262 ], [ 37.130925668483194, -0.644544203679234 ], [ 37.135503304483159, -0.641980726679267 ], [ 37.139079715483199, -0.640257660679256 ], [ 37.141728890483186, -0.639356214679256 ], [ 37.145696175483174, -0.639539320679264 ], [ 37.150090707483166, -0.64033277767925 ], [ 37.153508675483174, -0.641858656679235 ], [ 37.15570594148317, -0.63856275767927 ], [ 37.160893929483159, -0.638074476679267 ], [ 37.164739144483171, -0.638135511679254 ], [ 37.168449539483156, -0.637115456679228 ], [ 37.171941293483194, -0.64423902767925 ], [ 37.170293343483188, -0.649365980679252 ], [ 37.173100961483151, -0.651563246679248 ], [ 37.175908578483181, -0.653333265679239 ], [ 37.180303109483184, -0.661145765679239 ], [ 37.180730355483199, -0.664380629679217 ], [ 37.180486214483203, -0.667737562679238 ], [ 37.183721078483181, -0.666944105679252 ], [ 37.186528695483155, -0.668042738679221 ], [ 37.190129769483171, -0.666944105679252 ], [ 37.194524300483174, -0.666577894679224 ], [ 37.19812537548318, -0.664746839679256 ], [ 37.201116097483172, -0.66517408667926 ], [ 37.202886117483153, -0.66785963267927 ], [ 37.203496468483188, -0.671643812679238 ], [ 37.204717171483189, -0.675366957679219 ], [ 37.206914437483185, -0.679456312679238 ], [ 37.209538949483196, -0.681958754679217 ], [ 37.211736214483203, -0.684461195679264 ], [ 37.21289588248316, -0.687268812679238 ], [ 37.214543832483166, -0.690076429679268 ], [ 37.216741097483172, -0.687635023679266 ], [ 37.218938363483169, -0.684156019679224 ], [ 37.221501839483203, -0.68134840267925 ], [ 37.223088754483165, -0.678662855679252 ], [ 37.226140511483202, -0.67493971167926 ], [ 37.229131234483184, -0.673352797679231 ], [ 37.231511605483199, -0.67176588267927 ], [ 37.233891976483157, -0.669141371679248 ], [ 37.237493050483174, -0.669751722679225 ], [ 37.237309945483155, -0.675183851679267 ], [ 37.237493050483174, -0.678968031679235 ], [ 37.239507211483151, -0.681836683679253 ], [ 37.240300668483194, -0.686048109679237 ], [ 37.241887582483166, -0.69025953567922 ], [ 37.243535531483182, -0.693982679679268 ], [ 37.244328988483169, -0.697949964679256 ], [ 37.243901742483153, -0.701856214679256 ], [ 37.243718636483202, -0.705335218679241 ], [ 37.244939339483203, -0.708264906679235 ], [ 37.249024368483155, -0.71099082767927 ], [ 37.250493539483152, -0.715283949679249 ], [ 37.252865982483165, -0.720656823679237 ], [ 37.251286996483195, -0.724378187679238 ], [ 37.254338754483165, -0.725965101679267 ], [ 37.257939828483181, -0.727063734679237 ], [ 37.258306039483152, -0.730237562679238 ], [ 37.257512582483166, -0.733350355679252 ], [ 37.258916390483186, -0.735852797679231 ], [ 37.261296761483202, -0.73817213267927 ], [ 37.262700570483155, -0.740857679679268 ], [ 37.2659354334832, -0.744641859679237 ], [ 37.264287484483184, -0.748365004679217 ], [ 37.267095101483157, -0.751355726679267 ], [ 37.268743050483174, -0.754651625679233 ], [ 37.264104379483165, -0.754651625679233 ], [ 37.261907113483169, -0.75275953567922 ], [ 37.257512582483166, -0.754773695679264 ], [ 37.25671912548318, -0.758863050679227 ], [ 37.259099496483195, -0.762158949679249 ], [ 37.260320199483196, -0.766065199679249 ], [ 37.262334359483184, -0.770276625679233 ], [ 37.262517464483203, -0.774671156679235 ], [ 37.262944711483151, -0.777967054679268 ], [ 37.264104379483165, -0.781629164679262 ], [ 37.2678885584832, -0.787427504679217 ], [ 37.265691293483194, -0.791333754679274 ], [ 37.263310921483189, -0.793958265679239 ], [ 37.263310921483189, -0.798474867679263 ], [ 37.262334359483184, -0.807630140679239 ], [ 37.262334359483184, -0.812940199679249 ], [ 37.261296761483202, -0.818555433679253 ], [ 37.259099496483195, -0.839368422679231 ], [ 37.2503104334832, -0.83973463267927 ], [ 37.241887582483166, -0.839673597679225 ], [ 37.233342660483167, -0.84065016067922 ], [ 37.229131234483184, -0.84846266067922 ], [ 37.226323617483153, -0.854566175679227 ], [ 37.236699593483188, -0.858472425679227 ], [ 37.241521371483195, -0.861157972679225 ], [ 37.242314828483181, -0.863965589679256 ], [ 37.253118050483174, -0.863660414679262 ], [ 37.256291879483165, -0.869275648679266 ], [ 37.261296761483202, -0.875745375679233 ], [ 37.263921273483156, -0.878552992679263 ], [ 37.269902718483188, -0.885449964679256 ], [ 37.28210975048318, -0.89814527767925 ], [ 37.285710824483196, -0.900647718679241 ], [ 37.300542367483153, -0.908582289679262 ], [ 37.319341195483155, -0.921338636679254 ], [ 37.317327035483167, -0.923780043679246 ], [ 37.319524300483174, -0.926465589679256 ], [ 37.322331918483194, -0.930371839679256 ], [ 37.324712289483152, -0.932263929679268 ], [ 37.325505746483195, -0.935376722679225 ], [ 37.323491586483151, -0.937940199679249 ], [ 37.318730843483188, -0.94056471167926 ], [ 37.315495980483199, -0.94325025767927 ], [ 37.317327035483167, -0.949353773679266 ], [ 37.323491586483151, -0.948560316679223 ], [ 37.329717171483189, -0.948865492679263 ], [ 37.329289925483174, -0.95283277767925 ], [ 37.331304086483151, -0.955457289679262 ], [ 37.334111703483181, -0.957471449679249 ], [ 37.336125863483169, -0.960462172679231 ], [ 37.343328011483202, -0.964063246679248 ], [ 37.348088754483165, -0.958936293679246 ], [ 37.355290902483198, -0.949842054679268 ], [ 37.357305062483185, -0.953076918679246 ], [ 37.361943734483184, -0.959851820679264 ], [ 37.363896859483184, -0.962354261679254 ], [ 37.366521371483195, -0.965283949679249 ], [ 37.364507211483151, -0.968152601679267 ], [ 37.357305062483185, -0.972730238679221 ], [ 37.346745980483199, -0.979077894679224 ], [ 37.340093148483156, -0.979077894679224 ], [ 37.333501351483157, -0.978833754679274 ], [ 37.336492074483196, -0.983350355679252 ], [ 37.338933480483199, -0.987683851679267 ], [ 37.362309945483155, -0.98994215267925 ], [ 37.370732796483189, -0.994275648679266 ], [ 37.380132211483151, -0.999463636679254 ], [ 37.406743539483152, -1.01447828567922 ], [ 37.42133094148317, -1.035657484679237 ], [ 37.418706429483159, -1.038343031679235 ], [ 37.39453650748316, -1.055432875679233 ], [ 37.387944711483151, -1.06043775767927 ], [ 37.382512582483166, -1.068372328679234 ], [ 37.370488656483182, -1.085340101679267 ], [ 37.365300668483194, -1.093030531679235 ], [ 37.362493050483174, -1.095044691679223 ], [ 37.358342660483167, -1.092481214679256 ], [ 37.352727425483174, -1.093274672679231 ], [ 37.348088754483165, -1.091260511679254 ], [ 37.344914925483174, -1.087232191679223 ], [ 37.339726937483185, -1.081067640679239 ], [ 37.335515511483202, -1.082349379679274 ], [ 37.332524789483152, -1.080640394679224 ], [ 37.330144418483194, -1.078260023679266 ], [ 37.326543343483188, -1.078870375679233 ], [ 37.323918832483166, -1.077039320679264 ], [ 37.322698129483165, -1.074475843679241 ], [ 37.320500863483169, -1.070935804679268 ], [ 37.317937386483202, -1.067334730679252 ], [ 37.314702523483156, -1.065747816679223 ], [ 37.311528695483155, -1.067151625679233 ], [ 37.308721078483181, -1.064466078679234 ], [ 37.306523812483185, -1.061536390679239 ], [ 37.302312386483202, -1.05744703567922 ], [ 37.295537484483184, -1.051160414679262 ], [ 37.292729867483153, -1.049573500679233 ], [ 37.290532601483157, -1.047376234679237 ], [ 37.288945687483185, -1.044873793679247 ], [ 37.285710824483196, -1.042554457679219 ], [ 37.277532113483169, -1.031262953679234 ], [ 37.27289344148317, -1.026746351679267 ], [ 37.269292367483153, -1.024182875679233 ], [ 37.2678885584832, -1.021558363679221 ], [ 37.265508187483185, -1.018750746679248 ], [ 37.257146371483195, -1.019849379679274 ], [ 37.249333871483195, -1.023145277679251 ], [ 37.244695199483196, -1.025464613679221 ], [ 37.240117562483185, -1.024671156679235 ], [ 37.234502328483181, -1.020948011679254 ], [ 37.231938851483157, -1.018872816679223 ], [ 37.229741579483168, -1.021131124679246 ], [ 37.227117074483196, -1.024182875679233 ], [ 37.225286019483171, -1.027173597679225 ], [ 37.222295296483189, -1.026929457679219 ], [ 37.219487679483159, -1.027967054679268 ], [ 37.216741097483172, -1.030164320679264 ], [ 37.214543832483166, -1.034375746679248 ], [ 37.211308968483188, -1.034131605679252 ], [ 37.2073416834832, -1.03504713267927 ], [ 37.202519906483182, -1.037366468679241 ], [ 37.197087777483198, -1.041272718679241 ], [ 37.192327035483167, -1.042737562679238 ], [ 37.188542855483199, -1.03986891067922 ], [ 37.184331429483159, -1.038343031679235 ], [ 37.18109656648317, -1.03626783667926 ], [ 37.177922738483169, -1.034680922679231 ], [ 37.176702035483167, -1.037366468679241 ], [ 37.175908578483181, -1.042249281679235 ], [ 37.173345101483157, -1.044629652679251 ], [ 37.170293343483188, -1.045545179679268 ], [ 37.164739144483171, -1.048963148679266 ], [ 37.160344613483169, -1.050366957679219 ], [ 37.156926644483171, -1.050244886679254 ], [ 37.154912484483184, -1.053235609679237 ], [ 37.150517953483181, -1.051953871679248 ], [ 37.147099984483184, -1.050244886679254 ], [ 37.143743050483174, -1.049573500679233 ], [ 37.139714730483199, -1.050733168679247 ], [ 37.136296761483202, -1.050366957679219 ], [ 37.133916390483186, -1.048841078679234 ], [ 37.13031531648317, -1.050366957679219 ], [ 37.127324593483188, -1.051282484679237 ], [ 37.125127328483181, -1.053357679679268 ], [ 37.121709359483184, -1.051038343679241 ], [ 37.120122445483155, -1.047437269679224 ], [ 37.118108285483167, -1.043469984679237 ], [ 37.11609412548318, -1.041272718679241 ], [ 37.111516488483169, -1.039380629679274 ], [ 37.108098519483171, -1.036573011679254 ], [ 37.103337777483198, -1.034864027679251 ], [ 37.098699105483199, -1.036878187679238 ], [ 37.093938363483169, -1.033765394679224 ], [ 37.088689339483203, -1.033765394679224 ], [ 37.081914437483185, -1.030835707679219 ], [ 37.078496468483188, -1.030652601679267 ], [ 37.075322640483186, -1.027967054679268 ], [ 37.070500863483169, -1.026136000679233 ], [ 37.068730843483188, -1.022656996679248 ], [ 37.069524300483174, -1.018933851679267 ], [ 37.064885629483165, -1.016248304679268 ], [ 37.062688363483169, -1.013135511679254 ], [ 37.061101449483196, -1.016248304679268 ], [ 37.062688363483169, -1.020581800679227 ], [ 37.063115609483184, -1.02454908667926 ], [ 37.061345589483203, -1.02815016067922 ], [ 37.05750037548318, -1.029737074679249 ], [ 37.054936898483156, -1.03205641067922 ], [ 37.051518929483159, -1.034131605679252 ], [ 37.048100961483151, -1.033765394679224 ], [ 37.044499886483202, -1.032666761679254 ], [ 37.041142953483181, -1.032178480679252 ], [ 37.038091195483155, -1.031262953679234 ], [ 37.033696664483152, -1.029370863679221 ], [ 37.031743539483152, -1.02723463267927 ], [ 37.031133187483185, -1.024365980679252 ], [ 37.029729379483165, -1.021680433679253 ], [ 37.027532113483169, -1.017957289679262 ], [ 37.024907601483157, -1.016370375679233 ], [ 37.023931039483152, -1.012769300679227 ], [ 37.02094031648317, -1.01057203567922 ], [ 37.017522347483172, -1.009778578679234 ], [ 37.015325082483166, -1.007031996679248 ], [ 37.012944711483151, -1.005445082679219 ], [ 37.005132211483151, -0.998975355679252 ], [ 37.001897347483172, -0.997144300679227 ], [ 36.99890662548318, -0.994641859679237 ], [ 36.995732796483189, -0.992383558679253 ], [ 36.992314828483181, -0.990674574679249 ], [ 36.9905448084832, -0.98817213267927 ], [ 36.98773719148317, -0.985059339679256 ], [ 36.984502328483181, -0.983045179679268 ], [ 36.982121958483155, -0.979566177679262 ], [ 36.978093636483202, -0.977429945679264 ], [ 36.973332894483171, -0.976758558679253 ], [ 36.966496957483166, -0.974439222679225 ], [ 36.964116586483151, -0.971631605679252 ], [ 36.962529671483189, -0.967969496679248 ], [ 36.960088265483186, -0.965283949679249 ], [ 36.958318246483195, -0.961438734679237 ], [ 36.956731332483166, -0.957471449679249 ], [ 36.953496468483188, -0.956861097679225 ], [ 36.951726449483196, -0.954358656679235 ], [ 36.948918832483166, -0.952161390679239 ], [ 36.945928109483184, -0.950574476679267 ], [ 36.943730843483188, -0.946668226679267 ], [ 36.940495980483199, -0.945142347679225 ], [ 36.936894906483182, -0.942945082679219 ], [ 36.933293832483166, -0.941175062679238 ], [ 36.928288949483196, -0.936231214679256 ], [ 36.9241385584832, -0.936170179679268 ], [ 36.922307504483165, -0.933362562679238 ], [ 36.91992713248316, -0.931165297679231 ], [ 36.917119515483186, -0.930554945679264 ], [ 36.914311898483156, -0.927075941679223 ], [ 36.911931527483198, -0.922132093679241 ], [ 36.908940804483159, -0.918164808679253 ], [ 36.908330453483181, -0.915052015679239 ], [ 36.904119027483198, -0.913281996679248 ], [ 36.89929725048318, -0.912183363679221 ], [ 36.894719613483169, -0.911939222679225 ], [ 36.892339242483153, -0.908338148679266 ], [ 36.889897836483151, -0.903882582679219 ], [ 36.890325082483166, -0.900769789679262 ], [ 36.889104379483165, -0.89814527767925 ], [ 36.884892953483181, -0.896863539679262 ], [ 36.880925668483194, -0.89637525767927 ], [ 36.878545296483189, -0.893262464679256 ], [ 36.874333871483195, -0.892530043679246 ], [ 36.86914588248316, -0.891065199679249 ], [ 36.865300668483194, -0.890576918679246 ], [ 36.862309945483155, -0.88783033667926 ], [ 36.859929574483196, -0.884046156679235 ], [ 36.856511605483199, -0.883252699679249 ], [ 36.852544320483155, -0.883252699679249 ], [ 36.84851600048318, -0.88166578567922 ], [ 36.846135629483165, -0.879834730679252 ], [ 36.842717660483167, -0.878247816679223 ], [ 36.839543832483166, -0.877637464679256 ], [ 36.837102425483174, -0.875257093679241 ], [ 36.833318246483195, -0.874463636679254 ], [ 36.831304086483151, -0.872266371679248 ], [ 36.827703011483202, -0.869763929679268 ], [ 36.824712289483152, -0.865979750679233 ], [ 36.818913949483196, -0.863050062679238 ], [ 36.816106332483166, -0.86213453567922 ], [ 36.813725961483151, -0.860364515679239 ], [ 36.809941781483182, -0.858045179679268 ], [ 36.806340707483166, -0.857068617679263 ], [ 36.80469275748316, -0.854444105679252 ], [ 36.802495492483153, -0.852246839679256 ], [ 36.798345101483157, -0.850232679679268 ], [ 36.79492713248316, -0.84736402767925 ], [ 36.790715707483166, -0.845655043679246 ], [ 36.787724984483184, -0.843762953679234 ], [ 36.785527718483188, -0.841748793679246 ], [ 36.782536996483195, -0.840833265679239 ], [ 36.780339730483199, -0.837964613679221 ], [ 36.773503793483194, -0.834180433679253 ], [ 36.76953650748316, -0.83314283667926 ], [ 36.76453162548318, -0.83314283667926 ], [ 36.759099496483195, -0.833570082679219 ], [ 36.755742562483185, -0.832959730679252 ], [ 36.751897347483172, -0.833081800679227 ], [ 36.748540414483152, -0.82996900767927 ], [ 36.746892464483203, -0.827466566679223 ], [ 36.74414588248316, -0.82197340267925 ], [ 36.741887582483166, -0.818982679679268 ], [ 36.73914100048318, -0.817273695679264 ], [ 36.735539925483174, -0.81434400767927 ], [ 36.731694711483151, -0.812146742679263 ], [ 36.727727425483174, -0.811475355679252 ], [ 36.7249198084832, -0.808667738679221 ], [ 36.723088754483165, -0.80634840267925 ], [ 36.722722543483194, -0.801953871679248 ], [ 36.723332894483171, -0.798047621679248 ], [ 36.724309457483166, -0.794446547679231 ], [ 36.723699105483199, -0.790357191679223 ], [ 36.721318734483184, -0.786573011679254 ], [ 36.720891488483169, -0.781262953679234 ], [ 36.724126351483157, -0.782971937679238 ], [ 36.72992469148317, -0.780164320679264 ], [ 36.734502328483181, -0.780164320679264 ], [ 36.733098519483171, -0.776746351679267 ], [ 36.729314339483203, -0.773267347679225 ], [ 36.724309457483166, -0.767163832679219 ], [ 36.721929086483151, -0.76283033667926 ], [ 36.719731820483155, -0.756848890679239 ], [ 36.718694222483172, -0.752454359679237 ], [ 36.717900765483186, -0.74775465267925 ], [ 36.717534554483159, -0.744153578679234 ], [ 36.717717660483167, -0.740430433679253 ], [ 36.716924203483181, -0.734632093679241 ], [ 36.714543832483166, -0.728467543679246 ], [ 36.713933480483199, -0.725476820679264 ], [ 36.714116586483151, -0.722058851679267 ], [ 36.713933480483199, -0.718762953679234 ], [ 36.713933480483199, -0.714673597679225 ], [ 36.710332406483182, -0.707166273679266 ], [ 36.709538949483196, -0.702771742679263 ], [ 36.70789100048318, -0.699170668679246 ], [ 36.708318246483195, -0.695142347679225 ], [ 36.709905160483167, -0.689649183679253 ], [ 36.710698617483153, -0.685132582679219 ], [ 36.709111703483181, -0.681836683679253 ], [ 36.708745492483153, -0.677930433679253 ], [ 36.710088265483186, -0.665845472679225 ], [ 36.709905160483167, -0.662244398679266 ], [ 36.708318246483195, -0.657666761679254 ], [ 36.706914437483185, -0.649671156679235 ], [ 36.70648719148317, -0.645948011679254 ], [ 36.706914437483185, -0.642163832679219 ], [ 36.708745492483153, -0.637769300679227 ], [ 36.708745492483153, -0.628980238679221 ], [ 36.710088265483186, -0.625135023679266 ], [ 36.71094275748316, -0.61994703567922 ], [ 36.709905160483167, -0.615247328679234 ], [ 36.710515511483202, -0.611157972679225 ], [ 36.71234656648317, -0.608472425679227 ], [ 36.709905160483167, -0.601880629679217 ], [ 36.710515511483202, -0.594678480679252 ], [ 36.708928597483172, -0.590772230679252 ], [ 36.7092948084832, -0.586865980679252 ], [ 36.711919320483155, -0.584668714679256 ], [ 36.71429969148317, -0.582959730679252 ], [ 36.71570350048318, -0.580457289679262 ], [ 36.717717660483167, -0.577954847679225 ], [ 36.721318734483184, -0.576428968679241 ], [ 36.723699105483199, -0.573865492679263 ], [ 36.725896371483195, -0.570935804679268 ], [ 36.733525765483186, -0.567334730679252 ], [ 36.73828650748316, -0.567578871679248 ], [ 36.7424979334832, -0.569531996679248 ], [ 36.745915902483198, -0.569654066679223 ], [ 36.749944222483172, -0.571179945679264 ], [ 36.75391150748316, -0.570447523679266 ], [ 36.7581229334832, -0.569043714679256 ], [ 36.762334359483184, -0.56916578567922 ], [ 36.7659354334832, -0.568738539679262 ], [ 36.769719613483169, -0.56806715267925 ], [ 36.774541390483186, -0.567761976679267 ], [ 36.778142464483203, -0.567334730679252 ], [ 36.782536996483195, -0.567639906679235 ], [ 36.785527718483188, -0.568555433679253 ] ] ] } } +, +{ "type": "Feature", "id": 21, "properties": { "OBJECTID": 22, "ID_": 4921, "COUNTY_NAM": "KIAMBU", "CONST_CODE": 112, "CONSTITUEN": "GATUNDU NORTH", "COUNTY_COD": 22, "Shape_Leng": 3.00892182622, "Shape_Area": 0.20655368085 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.686770107483191, -0.764234238679253 ], [ 36.690495980483199, -0.768140394679224 ], [ 36.693913949483196, -0.770764906679235 ], [ 36.696111214483203, -0.77424391067922 ], [ 36.699101937483185, -0.777539808679253 ], [ 36.702703011483202, -0.782178480679252 ], [ 36.706914437483185, -0.784741957679219 ], [ 36.709905160483167, -0.788037855679252 ], [ 36.712102425483174, -0.791761000679233 ], [ 36.715093148483156, -0.795362074679249 ], [ 36.717534554483159, -0.798841078679234 ], [ 36.719487679483159, -0.802259047679231 ], [ 36.720891488483169, -0.805371839679256 ], [ 36.725713265483186, -0.809278089679256 ], [ 36.727727425483174, -0.811475355679252 ], [ 36.731694711483151, -0.812146742679263 ], [ 36.735539925483174, -0.81434400767927 ], [ 36.73914100048318, -0.817273695679264 ], [ 36.741887582483166, -0.818982679679268 ], [ 36.74414588248316, -0.82197340267925 ], [ 36.745732796483189, -0.824658949679249 ], [ 36.747685921483189, -0.828870375679233 ], [ 36.751897347483172, -0.833081800679227 ], [ 36.755742562483185, -0.832959730679252 ], [ 36.759099496483195, -0.833570082679219 ], [ 36.76453162548318, -0.83314283667926 ], [ 36.768743050483174, -0.83314283667926 ], [ 36.771916879483165, -0.833448011679254 ], [ 36.774907601483157, -0.834851820679264 ], [ 36.778935921483189, -0.837232191679223 ], [ 36.782720101483157, -0.841260511679254 ], [ 36.785527718483188, -0.841748793679246 ], [ 36.787724984483184, -0.843762953679234 ], [ 36.790898812483185, -0.845655043679246 ], [ 36.79492713248316, -0.84736402767925 ], [ 36.798345101483157, -0.850232679679268 ], [ 36.802495492483153, -0.852246839679256 ], [ 36.80469275748316, -0.854444105679252 ], [ 36.806340707483166, -0.857068617679263 ], [ 36.810491097483172, -0.858472425679227 ], [ 36.814519418483194, -0.860547621679248 ], [ 36.817693246483195, -0.862866957679219 ], [ 36.821904671483189, -0.864636976679267 ], [ 36.825688851483157, -0.86707838267927 ], [ 36.82813025748316, -0.870435316679223 ], [ 36.8342948084832, -0.874646742679263 ], [ 36.837102425483174, -0.875257093679241 ], [ 36.839543832483166, -0.877637464679256 ], [ 36.843694222483172, -0.878552992679263 ], [ 36.848088754483165, -0.881360609679237 ], [ 36.852544320483155, -0.883252699679249 ], [ 36.856511605483199, -0.883252699679249 ], [ 36.859929574483196, -0.884046156679235 ], [ 36.862309945483155, -0.88783033667926 ], [ 36.865300668483194, -0.890576918679246 ], [ 36.86914588248316, -0.891065199679249 ], [ 36.87250281648317, -0.891980726679267 ], [ 36.875493539483152, -0.893079359679237 ], [ 36.878545296483189, -0.893262464679256 ], [ 36.880925668483194, -0.89637525767927 ], [ 36.884343636483202, -0.897840101679267 ], [ 36.887700570483155, -0.896863539679262 ], [ 36.889897836483151, -0.89954908667926 ], [ 36.889897836483151, -0.903882582679219 ], [ 36.892339242483153, -0.908338148679266 ], [ 36.895085824483196, -0.911878187679238 ], [ 36.89929725048318, -0.912183363679221 ], [ 36.904119027483198, -0.913281996679248 ], [ 36.908330453483181, -0.915052015679239 ], [ 36.908940804483159, -0.918164808679253 ], [ 36.911931527483198, -0.922132093679241 ], [ 36.914311898483156, -0.927075941679223 ], [ 36.918340218483188, -0.930982191679223 ], [ 36.922307504483165, -0.933362562679238 ], [ 36.9241385584832, -0.936170179679268 ], [ 36.928288949483196, -0.936231214679256 ], [ 36.933293832483166, -0.941175062679238 ], [ 36.939092171483189, -0.94416578567922 ], [ 36.943303597483172, -0.946546156679235 ], [ 36.945500863483169, -0.950574476679267 ], [ 36.948918832483166, -0.952161390679239 ], [ 36.957097543483194, -0.958448011679254 ], [ 36.960088265483186, -0.965283949679249 ], [ 36.962529671483189, -0.967847425679227 ], [ 36.964116586483151, -0.971448500679233 ], [ 36.966496957483166, -0.974439222679225 ], [ 36.973332894483171, -0.976758558679253 ], [ 36.97852088248316, -0.977552015679239 ], [ 36.982488168483194, -0.979932386679254 ], [ 36.984502328483181, -0.983045179679268 ], [ 36.98773719148317, -0.98518141067922 ], [ 36.991521371483195, -0.989575941679223 ], [ 36.995488656483182, -0.992261488679221 ], [ 37.001103890483186, -0.996472914679262 ], [ 37.00531531648317, -0.999036390679239 ], [ 37.012944711483151, -1.005445082679219 ], [ 37.015325082483166, -1.007031996679248 ], [ 37.017522347483172, -1.009534437679238 ], [ 37.02094031648317, -1.01057203567922 ], [ 37.023931039483152, -1.012769300679227 ], [ 37.025517953483181, -1.016675550679227 ], [ 37.028142464483203, -1.018567640679239 ], [ 37.031133187483185, -1.024365980679252 ], [ 37.031743539483152, -1.02723463267927 ], [ 37.033696664483152, -1.029370863679221 ], [ 37.038091195483155, -1.031262953679234 ], [ 37.041142953483181, -1.032178480679252 ], [ 37.048345101483157, -1.033765394679224 ], [ 37.051518929483159, -1.034131605679252 ], [ 37.05469275748316, -1.032178480679252 ], [ 37.057744515483186, -1.029676039679262 ], [ 37.061345589483203, -1.02815016067922 ], [ 37.063115609483184, -1.023145277679251 ], [ 37.061101449483196, -1.016248304679268 ], [ 37.062688363483169, -1.013257582679219 ], [ 37.064885629483165, -1.016248304679268 ], [ 37.068913949483196, -1.018872816679223 ], [ 37.068730843483188, -1.022656996679248 ], [ 37.069097054483159, -1.026074964679256 ], [ 37.072087777483198, -1.026380140679239 ], [ 37.075322640483186, -1.027967054679268 ], [ 37.078740609483184, -1.030652601679267 ], [ 37.081914437483185, -1.030835707679219 ], [ 37.088689339483203, -1.033826429679268 ], [ 37.093694222483172, -1.033643324679249 ], [ 37.098699105483199, -1.036878187679238 ], [ 37.103337777483198, -1.034864027679251 ], [ 37.108098519483171, -1.036573011679254 ], [ 37.111516488483169, -1.039380629679274 ], [ 37.11609412548318, -1.041272718679241 ], [ 37.118291390483186, -1.043469984679237 ], [ 37.121709359483184, -1.050855238679221 ], [ 37.124944222483172, -1.053357679679268 ], [ 37.127324593483188, -1.051282484679237 ], [ 37.13031531648317, -1.050366957679219 ], [ 37.133916390483186, -1.048841078679234 ], [ 37.136296761483202, -1.050366957679219 ], [ 37.139714730483199, -1.050733168679247 ], [ 37.144109261483202, -1.04963453567922 ], [ 37.148137582483166, -1.05067213267927 ], [ 37.151494515483186, -1.052747328679234 ], [ 37.154912484483184, -1.053235609679237 ], [ 37.156926644483171, -1.050244886679254 ], [ 37.160893929483159, -1.04993971167926 ], [ 37.165105355483199, -1.048841078679234 ], [ 37.170293343483188, -1.045545179679268 ], [ 37.173528207483166, -1.044568617679263 ], [ 37.175908578483181, -1.042249281679235 ], [ 37.176518929483159, -1.037366468679241 ], [ 37.178105843483188, -1.034558851679267 ], [ 37.184331429483159, -1.038343031679235 ], [ 37.189336312483185, -1.040357191679223 ], [ 37.192327035483167, -1.04285963267927 ], [ 37.19531775748316, -1.041761000679233 ], [ 37.198308480483199, -1.040967543679247 ], [ 37.202336800483174, -1.037671644679224 ], [ 37.205693734483184, -1.035474379679274 ], [ 37.210088265483186, -1.034436781679235 ], [ 37.214543832483166, -1.034253675679227 ], [ 37.216924203483181, -1.030042250679233 ], [ 37.219487679483159, -1.027967054679268 ], [ 37.222295296483189, -1.026929457679219 ], [ 37.225286019483171, -1.027173597679225 ], [ 37.227117074483196, -1.024182875679233 ], [ 37.231938851483157, -1.018872816679223 ], [ 37.237493050483174, -1.022962172679231 ], [ 37.240300668483194, -1.024671156679235 ], [ 37.244695199483196, -1.025464613679221 ], [ 37.249333871483195, -1.023145277679251 ], [ 37.254338754483165, -1.020948011679254 ], [ 37.257329476483157, -1.019849379679274 ], [ 37.265691293483194, -1.018872816679223 ], [ 37.268498910483167, -1.022351820679264 ], [ 37.270696175483174, -1.025464613679221 ], [ 37.273931039483152, -1.027539808679253 ], [ 37.277532113483169, -1.031446058679253 ], [ 37.279729379483165, -1.034375746679248 ], [ 37.281133187483185, -1.037671644679224 ], [ 37.284307015483186, -1.039441664679262 ], [ 37.285710824483196, -1.042554457679219 ], [ 37.288945687483185, -1.044873793679247 ], [ 37.290532601483157, -1.047376234679237 ], [ 37.292729867483153, -1.049573500679233 ], [ 37.295537484483184, -1.051343519679224 ], [ 37.302312386483202, -1.05744703567922 ], [ 37.306523812483185, -1.061536390679239 ], [ 37.309331429483159, -1.064954359679237 ], [ 37.311711800483174, -1.067456800679227 ], [ 37.314702523483156, -1.065747816679223 ], [ 37.317693246483195, -1.067334730679252 ], [ 37.322698129483165, -1.074048597679225 ], [ 37.323918832483166, -1.077039320679264 ], [ 37.326726449483196, -1.078870375679233 ], [ 37.330510629483165, -1.078565199679249 ], [ 37.332524789483152, -1.080640394679224 ], [ 37.335515511483202, -1.082166273679266 ], [ 37.339726937483185, -1.081067640679239 ], [ 37.345342171483189, -1.087476332679219 ], [ 37.348088754483165, -1.091260511679254 ], [ 37.352910531483182, -1.093152601679267 ], [ 37.358342660483167, -1.092542250679233 ], [ 37.362493050483174, -1.095166761679254 ], [ 37.359319222483172, -1.100537855679252 ], [ 37.346501839483203, -1.115430433679253 ], [ 37.343144906483182, -1.118665297679231 ], [ 37.341313851483157, -1.116162855679252 ], [ 37.339726937483185, -1.113538343679241 ], [ 37.334111703483181, -1.107740004679274 ], [ 37.331731332483166, -1.10627516067922 ], [ 37.32953406648317, -1.103955824679249 ], [ 37.327519906483182, -1.100965101679267 ], [ 37.32312537548318, -1.097241957679219 ], [ 37.320134652483198, -1.095838148679266 ], [ 37.318303597483172, -1.093457777679251 ], [ 37.316289437483185, -1.091382582679219 ], [ 37.313725961483151, -1.08778150767927 ], [ 37.309331429483159, -1.083753187679238 ], [ 37.305913461483151, -1.081677992679263 ], [ 37.303533089483203, -1.078565199679249 ], [ 37.299321664483152, -1.074353773679266 ], [ 37.296514046483189, -1.07307203567922 ], [ 37.2913260584832, -1.072339613679221 ], [ 37.287724984483184, -1.071240980679252 ], [ 37.284123910483167, -1.069043714679256 ], [ 37.27930213248316, -1.067578871679248 ], [ 37.274541390483186, -1.068555433679253 ], [ 37.271306527483198, -1.068982679679268 ], [ 37.268132699483196, -1.068982679679268 ], [ 37.26453162548318, -1.069531996679248 ], [ 37.261113656483182, -1.071057875679233 ], [ 37.258733285483167, -1.072766859679237 ], [ 37.255742562483185, -1.07533033667926 ], [ 37.252324593483188, -1.077954847679225 ], [ 37.249944222483172, -1.079541761679254 ], [ 37.245122445483155, -1.079480726679267 ], [ 37.24109412548318, -1.078565199679249 ], [ 37.234136117483153, -1.07606275767927 ], [ 37.22852088248316, -1.076428968679241 ], [ 37.224309457483166, -1.07893141067922 ], [ 37.212712777483198, -1.080152113679221 ], [ 37.206120980483199, -1.085462172679231 ], [ 37.203496468483188, -1.088758070679264 ], [ 37.200139535483167, -1.091382582679219 ], [ 37.195928109483184, -1.093152601679267 ], [ 37.192937386483202, -1.095044691679223 ], [ 37.19031287548318, -1.099073011679254 ], [ 37.18890906648317, -1.105664808679253 ], [ 37.186528695483155, -1.107678968679241 ], [ 37.183110726483157, -1.108960707679219 ], [ 37.17969275748316, -1.111463148679266 ], [ 37.176335824483196, -1.115979750679233 ], [ 37.175115121483195, -1.119763929679268 ], [ 37.178105843483188, -1.123365004679274 ], [ 37.17969275748316, -1.12806471167926 ], [ 37.181890023483156, -1.130384047679231 ], [ 37.184514535483167, -1.13465650767927 ], [ 37.187322152483198, -1.138745863679221 ], [ 37.185735238483169, -1.141248304679268 ], [ 37.184331429483159, -1.144666273679266 ], [ 37.185735238483169, -1.149060804679268 ], [ 37.183721078483181, -1.15315016067922 ], [ 37.181706918483194, -1.156446058679253 ], [ 37.18250037548318, -1.161756117679263 ], [ 37.182927621483195, -1.165967543679247 ], [ 37.180913461483151, -1.168958265679239 ], [ 37.177312386483202, -1.171582777679251 ], [ 37.174504769483171, -1.174146254679274 ], [ 37.168340218483188, -1.185071547679231 ], [ 37.166692269483171, -1.188550550679227 ], [ 37.163945687483185, -1.191480238679221 ], [ 37.161138070483155, -1.193860609679237 ], [ 37.157292855483199, -1.194837172679231 ], [ 37.156499398483156, -1.199231703679234 ], [ 37.158086312483185, -1.20197828567922 ], [ 37.159734261483202, -1.205762464679256 ], [ 37.156316293483194, -1.206983168679247 ], [ 37.15430213248316, -1.209241468679241 ], [ 37.156316293483194, -1.212354261679254 ], [ 37.15570594148317, -1.216443617679263 ], [ 37.15570594148317, -1.219739515679239 ], [ 37.154546273483156, -1.22254713267927 ], [ 37.151311410483167, -1.225537855679252 ], [ 37.144902718483188, -1.225843031679235 ], [ 37.141728890483186, -1.22645338267927 ], [ 37.139714730483199, -1.229566175679227 ], [ 37.137334359483184, -1.232556898679266 ], [ 37.133916390483186, -1.233838636679254 ], [ 37.130132211483151, -1.233655531679235 ], [ 37.126531136483202, -1.233167250679233 ], [ 37.123540414483152, -1.234876234679237 ], [ 37.119512093483188, -1.239453871679248 ], [ 37.119512093483188, -1.246961195679264 ], [ 37.116887582483166, -1.248548109679237 ], [ 37.113896859483184, -1.247876722679225 ], [ 37.110112679483159, -1.248426039679262 ], [ 37.110295785483167, -1.258863050679227 ], [ 37.106511605483199, -1.260266859679237 ], [ 37.103093636483202, -1.260938246679248 ], [ 37.094304574483196, -1.255078871679248 ], [ 37.087529671483189, -1.248975355679252 ], [ 37.095525277483198, -1.244763929679268 ], [ 37.091496957483166, -1.237866957679219 ], [ 37.087712778483187, -1.234143812679238 ], [ 37.08093787548318, -1.237256605679252 ], [ 37.073491586483151, -1.22376783667926 ], [ 37.07031775748316, -1.217664320679264 ], [ 37.061711800483174, -1.206372816679223 ], [ 37.058110726483157, -1.208570082679219 ], [ 37.054936898483156, -1.206861097679225 ], [ 37.048100961483151, -1.209241468679241 ], [ 37.044133675483174, -1.210279066679223 ], [ 37.038091195483155, -1.213269789679262 ], [ 37.033940804483159, -1.216748793679247 ], [ 37.031743539483152, -1.219983656679235 ], [ 37.023931039483152, -1.223828871679248 ], [ 37.02094031648317, -1.226880629679274 ], [ 37.016545785483167, -1.228467543679247 ], [ 37.013738168483194, -1.23158033667926 ], [ 37.012700570483155, -1.235364515679239 ], [ 37.008306039483152, -1.236035902679251 ], [ 37.003728402483198, -1.236035902679251 ], [ 37.001103890483186, -1.234754164679262 ], [ 36.997685921483189, -1.233350355679252 ], [ 36.995305550483174, -1.231458265679239 ], [ 36.991887582483166, -1.225354750679233 ], [ 36.988713754483165, -1.224073011679254 ], [ 36.985295785483167, -1.22346266067922 ], [ 36.982305062483185, -1.224256117679263 ], [ 36.979131234483184, -1.224744398679266 ], [ 36.971501839483203, -1.228162367679263 ], [ 36.964543832483166, -1.228833754679274 ], [ 36.961308968483188, -1.227735121679248 ], [ 36.958501351483157, -1.228833754679274 ], [ 36.947515023483156, -1.225965101679267 ], [ 36.939092171483189, -1.222180922679231 ], [ 36.933110726483157, -1.221936781679235 ], [ 36.925115121483195, -1.218152601679267 ], [ 36.922124398483156, -1.217176039679262 ], [ 36.919499886483202, -1.214551527679251 ], [ 36.916509164483152, -1.212476332679219 ], [ 36.914128793483194, -1.208570082679219 ], [ 36.915898812483185, -1.204663832679219 ], [ 36.917912972483172, -1.20228346167926 ], [ 36.926518929483159, -1.192945082679219 ], [ 36.931890023483156, -1.187451918679247 ], [ 36.940740121483195, -1.177930433679253 ], [ 36.9417166834832, -1.174329359679237 ], [ 36.938298714483203, -1.171948988679221 ], [ 36.934331429483159, -1.170056898679266 ], [ 36.930730355483199, -1.168836195679264 ], [ 36.926946175483174, -1.168164808679253 ], [ 36.9241385584832, -1.165662367679263 ], [ 36.92133094148317, -1.164441664679262 ], [ 36.919499886483202, -1.162183363679221 ], [ 36.915898812483185, -1.161573011679254 ], [ 36.912297738483169, -1.161450941679223 ], [ 36.908086312483185, -1.161573011679254 ], [ 36.902104867483153, -1.160535414679262 ], [ 36.897710336483151, -1.161328871679248 ], [ 36.89453650748316, -1.168531019679224 ], [ 36.889104379483165, -1.174329359679237 ], [ 36.890691293483194, -1.176953871679248 ], [ 36.8928885584832, -1.18153150767927 ], [ 36.89594031648317, -1.18665846167926 ], [ 36.896916879483165, -1.191663343679241 ], [ 36.893743050483174, -1.193738539679262 ], [ 36.890691293483194, -1.193555433679253 ], [ 36.887334359483184, -1.195569593679241 ], [ 36.883733285483167, -1.196179945679264 ], [ 36.878545296483189, -1.196363050679227 ], [ 36.87390662548318, -1.195874769679224 ], [ 36.870122445483155, -1.19447096167926 ], [ 36.866338265483186, -1.192151625679233 ], [ 36.863896859483184, -1.190442640679239 ], [ 36.860112680483205, -1.201856214679256 ], [ 36.857121957483166, -1.201734144679224 ], [ 36.852727425483174, -1.202649672679231 ], [ 36.850713265483186, -1.208570082679219 ], [ 36.850102914483152, -1.213147718679241 ], [ 36.833318246483195, -1.209058363679221 ], [ 36.834722054483159, -1.214856703679234 ], [ 36.799321664483152, -1.195264418679247 ], [ 36.790898812483185, -1.191541273679266 ], [ 36.787724984483184, -1.198560316679223 ], [ 36.784917367483153, -1.202832777679251 ], [ 36.785344613483169, -1.206067640679239 ], [ 36.788945687483185, -1.207776625679233 ], [ 36.784490121483195, -1.215161879679274 ], [ 36.781743539483152, -1.221753675679227 ], [ 36.778935921483189, -1.226758558679253 ], [ 36.77234412548318, -1.22346266067922 ], [ 36.770513070483155, -1.226270277679251 ], [ 36.762334359483184, -1.221570570679264 ], [ 36.756536019483171, -1.220349867679263 ], [ 36.745915902483198, -1.23713453567922 ], [ 36.738530648483156, -1.236280043679247 ], [ 36.730901254483165, -1.234754164679262 ], [ 36.72852088248316, -1.241651136679254 ], [ 36.725896371483195, -1.248242933679253 ], [ 36.725530160483167, -1.251538832679219 ], [ 36.721745980483199, -1.258130629679274 ], [ 36.718694222483172, -1.262647230679252 ], [ 36.715337289483152, -1.260633070679264 ], [ 36.707097543483194, -1.259351332679219 ], [ 36.70453406648317, -1.258069593679241 ], [ 36.701543343483188, -1.261670668679247 ], [ 36.69672156648317, -1.260633070679264 ], [ 36.694097054483159, -1.263928968679241 ], [ 36.69672156648317, -1.267652113679221 ], [ 36.693120492483153, -1.267957289679262 ], [ 36.695134652483198, -1.270581800679227 ], [ 36.6917166834832, -1.271680433679253 ], [ 36.691899789483152, -1.275464613679221 ], [ 36.68890906648317, -1.275464613679221 ], [ 36.689702523483156, -1.279248793679247 ], [ 36.68890906648317, -1.282849867679263 ], [ 36.686345589483203, -1.286450941679223 ], [ 36.6839041834832, -1.293469984679237 ], [ 36.681706918483194, -1.298047621679248 ], [ 36.678533089483203, -1.301282484679237 ], [ 36.674321664483152, -1.307263929679268 ], [ 36.670903695483155, -1.306043226679267 ], [ 36.6663260584832, -1.313672621679248 ], [ 36.663945687483185, -1.31043775767927 ], [ 36.662908089483203, -1.305554945679264 ], [ 36.660893929483159, -1.303479750679233 ], [ 36.649114144483171, -1.300855238679221 ], [ 36.609746468483188, -1.293469984679237 ], [ 36.605535043483194, -1.291883070679264 ], [ 36.58594275748316, -1.28895338267927 ], [ 36.573918832483166, -1.286450941679223 ], [ 36.564336312483185, -1.284741957679219 ], [ 36.525945199483196, -1.277051527679251 ], [ 36.5003104334832, -1.272229750679233 ], [ 36.492314828483181, -1.269544203679234 ], [ 36.503118050483174, -1.255872328679234 ], [ 36.515141976483157, -1.242566664679262 ], [ 36.5178885584832, -1.225781996679248 ], [ 36.522527230483199, -1.209180433679253 ], [ 36.527104867483153, -1.194043714679256 ], [ 36.535527718483188, -1.164075453679234 ], [ 36.538945687483185, -1.150464613679221 ], [ 36.545720589483203, -1.126355726679267 ], [ 36.548711312483185, -1.12293775767927 ], [ 36.554936898483156, -1.116651136679254 ], [ 36.558537972483172, -1.111646254679274 ], [ 36.568913949483196, -1.101758558679253 ], [ 36.572331918483194, -1.099744398679266 ], [ 36.574101937483185, -1.096265394679224 ], [ 36.578923714483203, -1.087964613679221 ], [ 36.587102425483174, -1.072644789679262 ], [ 36.591741097483172, -1.068067152679251 ], [ 36.591924203483181, -1.061231214679256 ], [ 36.591313851483157, -1.052747328679234 ], [ 36.590520394483171, -1.048657972679225 ], [ 36.588689339483203, -1.043958265679239 ], [ 36.589116586483151, -1.038770277679251 ], [ 36.591741097483172, -1.033032972679225 ], [ 36.5921073084832, -1.025159437679238 ], [ 36.594304574483196, -1.015332777679251 ], [ 36.59570838248316, -1.011975843679241 ], [ 36.59570838248316, -1.007947523679266 ], [ 36.596929086483151, -1.001538832679219 ], [ 36.597295296483189, -0.997632582679219 ], [ 36.598332894483171, -0.993482191679223 ], [ 36.597295296483189, -0.985364515679239 ], [ 36.593694222483172, -0.985547621679248 ], [ 36.590886605483199, -0.983777601679267 ], [ 36.588689339483203, -0.979383070679264 ], [ 36.587529671483189, -0.97645338267927 ], [ 36.588506234483184, -0.965344984679237 ], [ 36.587102425483174, -0.962659437679238 ], [ 36.58594275748316, -0.959363539679262 ], [ 36.581304086483151, -0.949658949679249 ], [ 36.578496468483188, -0.946179945679264 ], [ 36.574346078483181, -0.944531996679248 ], [ 36.569707406483182, -0.945752699679249 ], [ 36.565129769483171, -0.942029554679268 ], [ 36.562322152483198, -0.939038832679219 ], [ 36.566106332483166, -0.93635328567922 ], [ 36.570500863483169, -0.933667738679221 ], [ 36.573308480483199, -0.932141859679237 ], [ 36.570500863483169, -0.929761488679221 ], [ 36.567510140483186, -0.928479750679233 ], [ 36.563725961483151, -0.928174574679249 ], [ 36.560491097483172, -0.927075941679223 ], [ 36.554936898483156, -0.926648695679264 ], [ 36.556706918483194, -0.919934828679234 ], [ 36.565923226483157, -0.914258558679253 ], [ 36.571111214483203, -0.910230238679221 ], [ 36.564885629483165, -0.90736158667926 ], [ 36.566106332483166, -0.903760511679254 ], [ 36.58148719148317, -0.892774183679253 ], [ 36.584538949483196, -0.89173658667926 ], [ 36.58734656648317, -0.889966566679223 ], [ 36.590337289483152, -0.88856275767927 ], [ 36.592290414483152, -0.885633070679264 ], [ 36.593511117483153, -0.882154066679223 ], [ 36.595342171483189, -0.877942640679239 ], [ 36.598699105483199, -0.871472914679262 ], [ 36.601689828483181, -0.863843519679224 ], [ 36.598943246483195, -0.858838636679254 ], [ 36.596135629483165, -0.854444105679252 ], [ 36.592900765483186, -0.850232679679268 ], [ 36.591496957483166, -0.844373304679268 ], [ 36.589543832483166, -0.82923658667926 ], [ 36.596745980483199, -0.82893141067922 ], [ 36.605107796483189, -0.82996900767927 ], [ 36.609319222483172, -0.830762464679256 ], [ 36.613896859483184, -0.830945570679264 ], [ 36.619512093483188, -0.831433851679267 ], [ 36.622930062483185, -0.831372816679223 ], [ 36.622685921483189, -0.828076918679246 ], [ 36.630498421483189, -0.820569593679241 ], [ 36.633489144483171, -0.81806715267925 ], [ 36.636907113483169, -0.814038832679219 ], [ 36.67133094148317, -0.78205641067922 ], [ 36.673528207483166, -0.77845533667926 ], [ 36.667912972483172, -0.776136000679233 ], [ 36.66351844148317, -0.774854261679254 ], [ 36.660893929483159, -0.773450453679234 ], [ 36.657720101483157, -0.77314527767925 ], [ 36.654546273483156, -0.773633558679253 ], [ 36.650517953483181, -0.77454908667926 ], [ 36.64648963248316, -0.773084242679263 ], [ 36.6507010584832, -0.768445570679264 ], [ 36.655522836483151, -0.765760023679266 ], [ 36.659490121483195, -0.768079359679237 ], [ 36.662908089483203, -0.767774183679253 ], [ 36.666509164483152, -0.763745863679221 ], [ 36.669499886483202, -0.761243422679231 ], [ 36.673345101483157, -0.759961683679253 ], [ 36.68250037548318, -0.762464125679233 ], [ 36.686770107483191, -0.764234238679253 ] ] ] } } +, +{ "type": "Feature", "id": 22, "properties": { "OBJECTID": 23, "ID_": 1, "COUNTY_NAM": "TURKANA", "CONST_CODE": 123, "CONSTITUEN": "TURKANA NORTH", "COUNTY_COD": 23, "Shape_Leng": 14.1898741549, "Shape_Area": 5.70813539469 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.632329476483157, 5.372667710320738 ], [ 35.635930550483174, 5.371874253320752 ], [ 35.638738168483194, 5.373033921320766 ], [ 35.640691293483194, 5.375475327320769 ], [ 35.64453650748316, 5.378649156320759 ], [ 35.648320687483185, 5.379869859320761 ], [ 35.656926644483171, 5.38005296432078 ], [ 35.660893929483159, 5.381456773320733 ], [ 35.664739144483171, 5.383470933320777 ], [ 35.66992713248316, 5.38487474232073 ], [ 35.67468787548318, 5.384020249320767 ], [ 35.679509652483198, 5.385424058320777 ], [ 35.684087289483152, 5.386034410320744 ], [ 35.687688363483169, 5.384630601320734 ], [ 35.692143929483159, 5.383470933320777 ], [ 35.6995291834832, 5.383043687320762 ], [ 35.703740609483184, 5.381822984320761 ], [ 35.707707894483171, 5.381029527320774 ], [ 35.710698617483153, 5.381822984320761 ], [ 35.717534554483159, 5.382250230320776 ], [ 35.720525277483198, 5.381273667320781 ], [ 35.72351600048318, 5.379869859320761 ], [ 35.726933968483188, 5.376634995320782 ], [ 35.726933968483188, 5.373033921320766 ], [ 35.725102914483152, 5.370470445320732 ], [ 35.726140511483202, 5.367418687320762 ], [ 35.729131234483184, 5.367662827320769 ], [ 35.7327323084832, 5.369066636320778 ], [ 35.73633338248316, 5.368639390320763 ], [ 35.739324105483199, 5.370226304320735 ], [ 35.743291390483186, 5.370836656320759 ], [ 35.748296273483156, 5.370226304320735 ], [ 35.752507699483196, 5.368822495320782 ], [ 35.759892953483181, 5.365221421320766 ], [ 35.762944711483151, 5.36247483932078 ], [ 35.762517464483203, 5.358263413320739 ], [ 35.765691293483194, 5.356066148320733 ], [ 35.771916879483165, 5.355638902320774 ], [ 35.775945199483196, 5.355028550320751 ], [ 35.779119027483198, 5.353258531320759 ], [ 35.785344613483169, 5.347216050320751 ], [ 35.789128793483194, 5.345262925320751 ], [ 35.793096078483181, 5.345873277320774 ], [ 35.796514046483189, 5.344652574320773 ], [ 35.799932015483186, 5.342272202320769 ], [ 35.804936898483156, 5.341417710320738 ], [ 35.809331429483159, 5.340868394320748 ], [ 35.814092171483189, 5.338854234320761 ], [ 35.817937386483202, 5.338854234320761 ], [ 35.82172156648317, 5.341051499320767 ], [ 35.825139535483167, 5.342638413320739 ], [ 35.828313363483169, 5.343676011320778 ], [ 35.831731332483166, 5.342821519320748 ], [ 35.834905160483167, 5.341417710320738 ], [ 35.837529671483189, 5.337816636320778 ], [ 35.83789588248316, 5.333055894320748 ], [ 35.838689339483203, 5.329821031320759 ], [ 35.843694222483172, 5.325060288320739 ], [ 35.845891488483169, 5.320848863320745 ], [ 35.846135629483165, 5.316820542320781 ], [ 35.84570838248316, 5.309618394320748 ], [ 35.846135629483165, 5.306017320320732 ], [ 35.848088754483165, 5.302660386320778 ], [ 35.851506722483172, 5.298448960320738 ], [ 35.853887093483188, 5.294420640320763 ], [ 35.85352088248316, 5.289232652320774 ], [ 35.851689828483181, 5.285448472320749 ], [ 35.849126351483157, 5.282274644320748 ], [ 35.843511117483153, 5.276049058320777 ], [ 35.842290414483152, 5.273058335320738 ], [ 35.841741097483172, 5.270067613320745 ], [ 35.84070350048318, 5.266649644320748 ], [ 35.83929969148317, 5.257067124320767 ], [ 35.838323129483165, 5.252245347320749 ], [ 35.837102425483174, 5.247423570320732 ], [ 35.836308968483188, 5.241259019320748 ], [ 35.83789588248316, 5.237047593320765 ], [ 35.84070350048318, 5.228441636320778 ], [ 35.842900765483186, 5.224474351320734 ], [ 35.847539437483185, 5.218065660320744 ], [ 35.849309457483166, 5.214830796320766 ], [ 35.850530160483167, 5.211656968320765 ], [ 35.851323617483153, 5.203661363320745 ], [ 35.852117074483196, 5.200670640320763 ], [ 35.853337777483198, 5.198046128320752 ], [ 35.854131234483184, 5.195055406320759 ], [ 35.855290902483198, 5.192064683320777 ], [ 35.855901254483165, 5.189257066320747 ], [ 35.855535043483194, 5.18565599232073 ], [ 35.854131234483184, 5.182054917320781 ], [ 35.853093636483202, 5.178820054320735 ], [ 35.852910531483182, 5.175463120320782 ], [ 35.853337777483198, 5.171434800320751 ], [ 35.856145394483171, 5.162462632320737 ], [ 35.85632850048318, 5.159227769320748 ], [ 35.856145394483171, 5.151659410320744 ], [ 35.855290902483198, 5.148424546320766 ], [ 35.853887093483188, 5.145250718320765 ], [ 35.853337777483198, 5.130846421320766 ], [ 35.852727425483174, 5.127672593320765 ], [ 35.852300179483159, 5.123033921320766 ], [ 35.851689828483181, 5.118639390320763 ], [ 35.847539437483185, 5.097643296320766 ], [ 35.84570838248316, 5.089830796320766 ], [ 35.844731820483155, 5.083422105320776 ], [ 35.843938363483169, 5.076219956320753 ], [ 35.843938363483169, 5.073229234320761 ], [ 35.843694222483172, 5.070055406320759 ], [ 35.843938363483169, 5.065660874320767 ], [ 35.843144906483182, 5.054430406320759 ], [ 35.841924203483181, 5.045641343320765 ], [ 35.841924203483181, 5.041429917320781 ], [ 35.8421073084832, 5.038439195320732 ], [ 35.841741097483172, 5.03526536732073 ], [ 35.841924203483181, 5.031847398320733 ], [ 35.841924203483181, 5.017870347320749 ], [ 35.8421073084832, 5.013842027320774 ], [ 35.841924203483181, 5.010424058320777 ], [ 35.841496957483166, 5.007433335320738 ], [ 35.840337289483152, 5.002672593320765 ], [ 35.838323129483165, 4.991869370320782 ], [ 35.837712777483198, 4.986254136320778 ], [ 35.83734656648317, 4.980028550320751 ], [ 35.836736214483203, 4.973863999320767 ], [ 35.836308968483188, 4.966051499320767 ], [ 35.836308968483188, 4.960253160320744 ], [ 35.835698617483153, 4.942064683320777 ], [ 35.835332406483182, 4.937853257320737 ], [ 35.836308968483188, 4.934435288320739 ], [ 35.839726937483185, 4.931627671320766 ], [ 35.843328011483202, 4.929674546320766 ], [ 35.846135629483165, 4.929064195320732 ], [ 35.848943246483195, 4.928026597320749 ], [ 35.852727425483174, 4.927233140320763 ], [ 35.860723031483182, 4.925218980320776 ], [ 35.864324105483199, 4.923632066320747 ], [ 35.8674979334832, 4.921862046320766 ], [ 35.874089730483199, 4.917467515320763 ], [ 35.877141488483169, 4.914843003320752 ], [ 35.886296761483202, 4.903429429320735 ], [ 35.888494027483198, 4.900072495320782 ], [ 35.891545785483167, 4.895861070320732 ], [ 35.893926156483182, 4.892015855320776 ], [ 35.895513070483155, 4.889025132320737 ], [ 35.896916879483165, 4.885851304320735 ], [ 35.897710336483151, 4.881456773320733 ], [ 35.89929725048318, 4.874864976320734 ], [ 35.901494515483186, 4.860643785320744 ], [ 35.904119027483198, 4.851427476320734 ], [ 35.90570594148317, 4.839830796320766 ], [ 35.90710975048318, 4.833422105320776 ], [ 35.908086312483185, 4.823656480320776 ], [ 35.908940804483159, 4.817675035320744 ], [ 35.910710824483196, 4.807421128320752 ], [ 35.911687386483202, 4.792650620320782 ], [ 35.912297738483169, 4.789415757320737 ], [ 35.911931527483198, 4.786241929320735 ], [ 35.912724984483184, 4.780626695320732 ], [ 35.912541879483165, 4.776232163320739 ], [ 35.913091195483155, 4.772264878320752 ], [ 35.914311898483156, 4.760424058320777 ], [ 35.914311898483156, 4.756029527320774 ], [ 35.915532601483157, 4.745470445320732 ], [ 35.915715707483166, 4.736254136320778 ], [ 35.916509164483152, 4.733263413320739 ], [ 35.917912972483172, 4.723070542320781 ], [ 35.918523324483196, 4.719835679320735 ], [ 35.918706429483159, 4.714830796320766 ], [ 35.920903695483155, 4.70323411732073 ], [ 35.922490609483184, 4.691027085320738 ], [ 35.922490609483184, 4.686632554320735 ], [ 35.922307504483165, 4.683275620320782 ], [ 35.92273475048318, 4.674669663320739 ], [ 35.921941293483194, 4.668260972320749 ], [ 35.921514046483189, 4.653246324320773 ], [ 35.921697152483198, 4.644457261320778 ], [ 35.922490609483184, 4.639635484320761 ], [ 35.950505746483195, 4.626024644320748 ], [ 35.94812537548318, 4.621874253320752 ], [ 35.943303597483172, 4.600817124320767 ], [ 35.940495980483199, 4.589830796320766 ], [ 35.939885629483165, 4.586840074320773 ], [ 35.94031287548318, 4.582018296320766 ], [ 35.942693246483195, 4.578661363320745 ], [ 35.963689339483203, 4.574022691320747 ], [ 35.96429969148317, 4.562426011320778 ], [ 35.943486703483181, 4.544847886320778 ], [ 35.973943246483195, 4.517626206320753 ], [ 35.999089730483199, 4.495470445320732 ], [ 36.0510916834832, 4.452623765320763 ], [ 36.050908578483181, 4.449022691320747 ], [ 36.050298226483157, 4.29606858932078 ], [ 36.049321664483152, 4.129625718320765 ], [ 36.050298226483157, 4.063463609320761 ], [ 36.050298226483157, 3.98283616732078 ], [ 36.0510916834832, 3.735033433320776 ], [ 36.0510916834832, 3.674669663320739 ], [ 36.051335824483196, 3.647264878320751 ], [ 36.051946175483174, 3.341661851320733 ], [ 36.052129281483182, 3.29783860932076 ], [ 36.05273963248316, 3.236071031320758 ], [ 36.05609656648317, 3.234423081320752 ], [ 36.062932504483165, 3.230638902320774 ], [ 36.066533578483181, 3.22807542532075 ], [ 36.069341195483155, 3.225634019320747 ], [ 36.071904671483189, 3.224474351320733 ], [ 36.074712289483152, 3.223436753320751 ], [ 36.078313363483169, 3.222826402320774 ], [ 36.082707894483171, 3.22307054232078 ], [ 36.088140023483156, 3.221849839320779 ], [ 36.0921073084832, 3.221239488320745 ], [ 36.095098031483182, 3.220018785320743 ], [ 36.098699105483199, 3.219042222320748 ], [ 36.103093636483202, 3.218248765320762 ], [ 36.107915414483152, 3.218676011320778 ], [ 36.112493050483174, 3.217821519320747 ], [ 36.115727914483152, 3.216234605320775 ], [ 36.12109900748316, 3.211046617320729 ], [ 36.124516976483157, 3.210253160320743 ], [ 36.131536019483171, 3.208055894320747 ], [ 36.135137093483188, 3.20744554232078 ], [ 36.139287484483184, 3.206468980320775 ], [ 36.142522347483172, 3.208422105320775 ], [ 36.141118539483152, 3.213426988320745 ], [ 36.142522347483172, 3.217455308320776 ], [ 36.145696175483174, 3.220629136320778 ], [ 36.149724496483195, 3.218676011320778 ], [ 36.151311410483167, 3.21525804232078 ], [ 36.152715218483188, 3.210070054320735 ], [ 36.152104867483153, 3.205248277320774 ], [ 36.152104867483153, 3.197069566320746 ], [ 36.151311410483167, 3.189440171320765 ], [ 36.149907601483157, 3.183641831320752 ], [ 36.148686898483156, 3.179430406320758 ], [ 36.14594031648317, 3.17143480032075 ], [ 36.143498910483167, 3.165270249320766 ], [ 36.141118539483152, 3.158434312320761 ], [ 36.139104379483165, 3.151842515320762 ], [ 36.139714730483199, 3.147875230320775 ], [ 36.143743050483174, 3.143663804320735 ], [ 36.14648963248316, 3.139818589320779 ], [ 36.148320687483185, 3.137072007320736 ], [ 36.149907601483157, 3.13322679232078 ], [ 36.151128304483159, 3.126024644320747 ], [ 36.151738656483182, 3.120043199320772 ], [ 36.152532113483169, 3.115831773320732 ], [ 36.152715218483188, 3.110826890320762 ], [ 36.152532113483169, 3.10783616732078 ], [ 36.150334847483172, 3.093065660320743 ], [ 36.152715218483188, 3.089220445320731 ], [ 36.153508675483174, 3.085070054320735 ], [ 36.152898324483196, 3.080858628320751 ], [ 36.151311410483167, 3.076647202320768 ], [ 36.148686898483156, 3.072618882320736 ], [ 36.145513070483155, 3.071031968320764 ], [ 36.142339242483153, 3.070665757320736 ], [ 36.1409354334832, 3.067858140320762 ], [ 36.140691293483194, 3.064440171320765 ], [ 36.139897836483151, 3.060839097320748 ], [ 36.141301644483171, 3.058275620320782 ], [ 36.142705453483181, 3.054857652320774 ], [ 36.1428885584832, 3.050829331320752 ], [ 36.142705453483181, 3.047472398320732 ], [ 36.142705453483181, 3.043260972320748 ], [ 36.142095101483157, 3.040453355320775 ], [ 36.1409354334832, 3.032823960320737 ], [ 36.138310921483189, 3.028246324320772 ], [ 36.137090218483188, 3.024034898320732 ], [ 36.137700570483155, 3.02104417532075 ], [ 36.136540902483198, 3.011034410320743 ], [ 36.132695687483185, 3.00822679232078 ], [ 36.12891150748316, 3.002245347320748 ], [ 36.127690804483159, 2.999071519320747 ], [ 36.127507699483196, 2.995470445320731 ], [ 36.126897347483172, 2.992418687320761 ], [ 36.125920785483167, 2.989672105320775 ], [ 36.1253104334832, 2.985033433320776 ], [ 36.124516976483157, 2.980822007320736 ], [ 36.126103890483186, 2.978258531320758 ], [ 36.130132211483151, 2.977831285320743 ], [ 36.131108773483156, 2.973436753320751 ], [ 36.133306039483152, 2.975634019320747 ], [ 36.13672400748316, 2.977465074320772 ], [ 36.137090218483188, 2.974047105320775 ], [ 36.135320199483196, 2.969652574320772 ], [ 36.134892953483181, 2.966417710320737 ], [ 36.138310921483189, 2.967638413320739 ], [ 36.143132699483196, 2.967821519320747 ], [ 36.14648963248316, 2.967455308320776 ], [ 36.158330453483181, 2.966844956320752 ], [ 36.161931527483198, 2.966234605320775 ], [ 36.16492225048318, 2.96525804232078 ], [ 36.167912972483172, 2.965624253320751 ], [ 36.170903695483155, 2.966661851320733 ], [ 36.1741385584832, 2.966234605320775 ], [ 36.17773963248316, 2.96525804232078 ], [ 36.180913461483151, 2.965074937320761 ], [ 36.183721078483181, 2.965624253320751 ], [ 36.192327035483167, 2.966661851320733 ], [ 36.195500863483169, 2.965074937320761 ], [ 36.202703011483202, 2.960436265320762 ], [ 36.2073416834832, 2.959459702320768 ], [ 36.212102425483174, 2.958849351320733 ], [ 36.216924203483181, 2.957872788320739 ], [ 36.221318734483184, 2.955431382320736 ], [ 36.224736703483181, 2.95463792532075 ], [ 36.228703988483169, 2.956224839320779 ], [ 36.236943734483184, 2.955065171320765 ], [ 36.240300668483194, 2.953051011320778 ], [ 36.243535531483182, 2.950426499320766 ], [ 36.247136605483199, 2.948656480320775 ], [ 36.251286996483195, 2.949449937320761 ], [ 36.25391150748316, 2.951219956320752 ], [ 36.255498421483189, 2.953661363320745 ], [ 36.256108773483156, 2.956468980320775 ], [ 36.257512582483166, 2.959276597320748 ], [ 36.259099496483195, 2.955065171320765 ], [ 36.261296761483202, 2.946031968320764 ], [ 36.261540902483198, 2.940843980320775 ], [ 36.261540902483198, 2.936449449320772 ], [ 36.262090218483188, 2.933031480320775 ], [ 36.26312781648317, 2.929430406320758 ], [ 36.264287484483184, 2.926866929320735 ], [ 36.266118539483152, 2.924059312320761 ], [ 36.267522347483172, 2.920458238320745 ], [ 36.268498910483167, 2.916246812320761 ], [ 36.269902718483188, 2.908434312320761 ], [ 36.271123421483189, 2.905626695320731 ], [ 36.272710336483151, 2.903246324320772 ], [ 36.276311410483167, 2.89885179232078 ], [ 36.278142464483203, 2.896227281320758 ], [ 36.28070594148317, 2.893663804320735 ], [ 36.283330453483181, 2.890428941320746 ], [ 36.286687386483202, 2.88823167532075 ], [ 36.290532601483157, 2.886827867320729 ], [ 36.293523324483196, 2.886034410320743 ], [ 36.296697152483198, 2.885851304320735 ], [ 36.299932015483186, 2.886034410320743 ], [ 36.303533089483203, 2.884264390320762 ], [ 36.30750037548318, 2.881639878320751 ], [ 36.310735238483169, 2.880052964320779 ], [ 36.31390906648317, 2.877672593320764 ], [ 36.316899789483152, 2.876634995320782 ], [ 36.319707406483182, 2.874437730320775 ], [ 36.322515023483156, 2.872667710320737 ], [ 36.325322640483186, 2.871263902320774 ], [ 36.335332406483182, 2.867235581320752 ], [ 36.339116586483151, 2.865038316320746 ], [ 36.346929086483151, 2.861254136320778 ], [ 36.350286019483171, 2.860826890320762 ], [ 36.353703988483169, 2.860033433320776 ], [ 36.357305062483185, 2.860033433320776 ], [ 36.360906136483202, 2.859239976320733 ], [ 36.36414100048318, 2.856676499320766 ], [ 36.366704476483157, 2.852037827320768 ], [ 36.368901742483153, 2.848863999320766 ], [ 36.374944222483172, 2.843859117320729 ], [ 36.37891150748316, 2.839830796320765 ], [ 36.381108773483156, 2.837267320320731 ], [ 36.384343636483202, 2.832018296320765 ], [ 36.387700570483155, 2.824022691320746 ], [ 36.387700570483155, 2.820055406320758 ], [ 36.388310921483189, 2.817247788320739 ], [ 36.394109261483202, 2.804857652320774 ], [ 36.39594031648317, 2.800646226320733 ], [ 36.396916879483165, 2.797655503320751 ], [ 36.398503793483194, 2.795030992320729 ], [ 36.400334847483172, 2.791246812320761 ], [ 36.402715218483188, 2.787645738320745 ], [ 36.405339730483199, 2.784044663320739 ], [ 36.406743539483152, 2.779833238320745 ], [ 36.408696664483152, 2.776659410320743 ], [ 36.410893929483159, 2.774034898320732 ], [ 36.412541879483165, 2.771654527320774 ], [ 36.413335336483151, 2.768663804320735 ], [ 36.415288461483151, 2.765428941320746 ], [ 36.417729867483153, 2.762865464320779 ], [ 36.419499886483202, 2.760668199320772 ], [ 36.420293343483188, 2.757067124320766 ], [ 36.420720589483203, 2.749620835320737 ], [ 36.421697152483198, 2.746447007320736 ], [ 36.422490609483184, 2.742418687320761 ], [ 36.421941293483194, 2.738268296320765 ], [ 36.421941293483194, 2.734850327320768 ], [ 36.423100961483151, 2.731859605320775 ], [ 36.424932015483186, 2.729418199320772 ], [ 36.426335824483196, 2.726061265320762 ], [ 36.428899300483174, 2.718859117320729 ], [ 36.430486214483203, 2.715868394320747 ], [ 36.433293832483166, 2.712267320320731 ], [ 36.439885629483165, 2.709276597320748 ], [ 36.442693246483195, 2.707262437320761 ], [ 36.445928109483184, 2.705248277320774 ], [ 36.447087777483198, 2.700243394320747 ], [ 36.443913945483182, 2.695848858320741 ], [ 36.441106332483166, 2.692430894320747 ], [ 36.438725961483151, 2.688829820320731 ], [ 36.436894906483182, 2.684862535320743 ], [ 36.435735238483169, 2.681017320320731 ], [ 36.434941781483182, 2.675829331320752 ], [ 36.436345589483203, 2.671068589320779 ], [ 36.436711800483174, 2.665819566320746 ], [ 36.435307992483153, 2.651049058320776 ], [ 36.436528695483155, 2.646227281320758 ], [ 36.438542855483199, 2.641832749320766 ], [ 36.439092171483189, 2.637255113320745 ], [ 36.438725961483151, 2.632616441320746 ], [ 36.441899789483152, 2.628221910320743 ], [ 36.443303597483172, 2.624071519320747 ], [ 36.445500863483169, 2.621447007320736 ], [ 36.448735726483157, 2.618029038320739 ], [ 36.451909554483159, 2.612657945320731 ], [ 36.454106820483155, 2.610460679320735 ], [ 36.4573416834832, 2.609056870320782 ], [ 36.460515511483202, 2.608629624320766 ], [ 36.463689339483203, 2.607653062320761 ], [ 36.472295296483189, 2.607469956320752 ], [ 36.474492562483185, 2.60307542532075 ], [ 36.475286019483171, 2.598863999320766 ], [ 36.477727425483174, 2.595446031320758 ], [ 36.481145394483171, 2.591661851320733 ], [ 36.48914100048318, 2.580675523320732 ], [ 36.491887582483166, 2.577440660320743 ], [ 36.493718636483202, 2.574449937320761 ], [ 36.496343148483156, 2.571642320320731 ], [ 36.499516976483157, 2.569445054320735 ], [ 36.502507699483196, 2.567675035320743 ], [ 36.507695687483185, 2.563829820320731 ], [ 36.510686410483167, 2.56205980032075 ], [ 36.514104379483165, 2.559435288320739 ], [ 36.516911996483195, 2.555223863320745 ], [ 36.518132699483196, 2.54924241732078 ], [ 36.519719613483169, 2.545275132320736 ], [ 36.520696175483174, 2.541674058320776 ], [ 36.523931039483152, 2.533251206320752 ], [ 36.524907601483157, 2.528246324320772 ], [ 36.525945199483196, 2.524034898320732 ], [ 36.529546273483156, 2.521471421320765 ], [ 36.531133187483185, 2.518846910320743 ], [ 36.53070594148317, 2.50346605032075 ], [ 36.531499398483156, 2.500475327320768 ], [ 36.531499398483156, 2.497240464320779 ], [ 36.528508675483174, 2.489672105320775 ], [ 36.528325570483155, 2.485216538320739 ], [ 36.528691781483182, 2.479845445320731 ], [ 36.529912484483184, 2.474230210320737 ], [ 36.530095589483203, 2.47026292532075 ], [ 36.529119027483198, 2.467272202320768 ], [ 36.527715218483188, 2.464647691320746 ], [ 36.526494515483186, 2.460863511320778 ], [ 36.525517953483181, 2.456224839320779 ], [ 36.525090707483166, 2.452440660320743 ], [ 36.524907601483157, 2.447863023320732 ], [ 36.525090707483166, 2.444445054320735 ], [ 36.526494515483186, 2.440233628320751 ], [ 36.528935921483189, 2.436449449320772 ], [ 36.53070594148317, 2.433031480320775 ], [ 36.532536996483195, 2.430040757320736 ], [ 36.534490121483195, 2.422228257320736 ], [ 36.535527718483188, 2.419054429320735 ], [ 36.537908089483203, 2.412828843320764 ], [ 36.538701546483189, 2.408861558320776 ], [ 36.540715707483166, 2.40385667532075 ], [ 36.545110238483169, 2.401232163320739 ], [ 36.5491385584832, 2.400255601320733 ], [ 36.551518929483159, 2.397875230320775 ], [ 36.554509652483198, 2.395861070320731 ], [ 36.557744515483186, 2.394823472320748 ], [ 36.561101449483196, 2.394457261320778 ], [ 36.56671668448319, 2.39744798432076 ], [ 36.568486703483181, 2.401232163320739 ], [ 36.572698129483165, 2.402269761320778 ], [ 36.576299203483181, 2.401842515320762 ], [ 36.57953406648317, 2.404039781320758 ], [ 36.583928597483172, 2.404222886320778 ], [ 36.58789588248316, 2.405443589320779 ], [ 36.593511117483153, 2.410265367320729 ], [ 36.600286019483171, 2.405626695320731 ], [ 36.602727425483174, 2.403063218320764 ], [ 36.602117074483196, 2.384630601320733 ], [ 36.602117074483196, 2.365465562320761 ], [ 36.601933968483188, 2.358446519320747 ], [ 36.725286019483171, 2.299669663320739 ], [ 36.723943246483195, 2.295275132320736 ], [ 36.724492562483185, 2.290453355320775 ], [ 36.722905648483156, 2.284227769320747 ], [ 36.724126351483157, 2.276842515320762 ], [ 36.723943246483195, 2.272875230320775 ], [ 36.721745980483199, 2.270250718320764 ], [ 36.718938363483169, 2.269030015320762 ], [ 36.716496957483166, 2.265673081320752 ], [ 36.71289588248316, 2.264269273320732 ], [ 36.709111703483181, 2.261644761320778 ], [ 36.708745492483153, 2.25822679232078 ], [ 36.712529671483189, 2.255236070320731 ], [ 36.714543832483166, 2.252062242320729 ], [ 36.715093148483156, 2.249071519320747 ], [ 36.714910043483194, 2.244615952320768 ], [ 36.713933480483199, 2.241625230320775 ], [ 36.711919320483155, 2.239427964320779 ], [ 36.710698617483153, 2.236620347320748 ], [ 36.712102425483174, 2.232225816320746 ], [ 36.713140023483156, 2.22807542532075 ], [ 36.712529671483189, 2.222826402320774 ], [ 36.708928597483172, 2.22026292532075 ], [ 36.704717171483189, 2.219225327320768 ], [ 36.701726449483196, 2.216234605320775 ], [ 36.701543343483188, 2.210619370320782 ], [ 36.701909554483159, 2.206652085320737 ], [ 36.703740609483184, 2.200670640320762 ], [ 36.701909554483159, 2.19682542532075 ], [ 36.698918832483166, 2.195665757320736 ], [ 36.69531775748316, 2.195421617320729 ], [ 36.692143929483159, 2.19487230032075 ], [ 36.687139046483189, 2.193224351320733 ], [ 36.682134164483152, 2.190843980320775 ], [ 36.671514046483189, 2.184435288320739 ], [ 36.663091195483155, 2.175829331320752 ], [ 36.659490121483195, 2.172472398320732 ], [ 36.655522836483151, 2.170030992320729 ], [ 36.64929725048318, 2.166674058320776 ], [ 36.644292367483153, 2.164843003320751 ], [ 36.637090218483188, 2.161852281320758 ], [ 36.627934945483155, 2.160021226320733 ], [ 36.62109900748316, 2.159044663320739 ], [ 36.613713754483165, 2.155626695320731 ], [ 36.61328650748316, 2.160021226320733 ], [ 36.609502328483181, 2.158434312320761 ], [ 36.601140511483202, 2.151842515320762 ], [ 36.598332894483171, 2.14744798432076 ], [ 36.596318734483184, 2.144640367320729 ], [ 36.589543832483166, 2.144030015320762 ], [ 36.587529671483189, 2.141832749320766 ], [ 36.585698617483153, 2.138475816320746 ], [ 36.584538949483196, 2.134874742320729 ], [ 36.583928597483172, 2.130052964320779 ], [ 36.582707894483171, 2.123033921320765 ], [ 36.581304086483151, 2.119432847320748 ], [ 36.577703011483202, 2.114855210320737 ], [ 36.57312537548318, 2.110216538320739 ], [ 36.568730843483188, 2.106249253320751 ], [ 36.565923226483157, 2.102831285320743 ], [ 36.565495980483199, 2.098863999320766 ], [ 36.568303597483172, 2.090074937320761 ], [ 36.568303597483172, 2.086229722320748 ], [ 36.5667166834832, 2.078661363320745 ], [ 36.568303597483172, 2.065050523320732 ], [ 36.569707406483182, 2.059435288320739 ], [ 36.569707406483182, 2.055223863320745 ], [ 36.566533578483181, 2.053026597320748 ], [ 36.562139046483189, 2.049059312320761 ], [ 36.5589041834832, 2.048021714320779 ], [ 36.556890023483156, 2.044847886320778 ], [ 36.556706918483194, 2.040453355320775 ], [ 36.552495492483153, 2.032274644320747 ], [ 36.54968787548318, 2.030016343320764 ], [ 36.546697152483198, 2.027269761320778 ], [ 36.548345101483157, 2.023424546320765 ], [ 36.545537484483184, 2.021837632320736 ], [ 36.545720589483203, 2.018663804320735 ], [ 36.547917855483199, 2.015673081320752 ], [ 36.547917855483199, 2.006456773320732 ], [ 36.54773475048318, 2.002855699320772 ], [ 36.54492713248316, 2.005663316320746 ], [ 36.542119515483186, 2.005052964320779 ], [ 36.541142953483181, 2.002245347320748 ], [ 36.543523324483196, 1.998827378320752 ], [ 36.54633094148317, 1.996874253320752 ], [ 36.547124398483156, 1.992845933320777 ], [ 36.54492713248316, 1.985643785320744 ], [ 36.542485726483157, 1.979051988320746 ], [ 36.541936410483167, 1.976244370320783 ], [ 36.540715707483166, 1.973253648320733 ], [ 36.53851844148317, 1.969835679320736 ], [ 36.536504281483182, 1.966234605320776 ], [ 36.534490121483195, 1.96122972232075 ], [ 36.533330453483181, 1.957628648320733 ], [ 36.532720101483157, 1.95482103132076 ], [ 36.534490121483195, 1.951830308320777 ], [ 36.537908089483203, 1.952623765320763 ], [ 36.540288461483151, 1.95482103132076 ], [ 36.541142953483181, 1.950426499320767 ], [ 36.541509164483152, 1.946031968320765 ], [ 36.541509164483152, 1.941820542320781 ], [ 36.540715707483166, 1.93864671432078 ], [ 36.540898812483185, 1.931261460320738 ], [ 36.542729867483153, 1.921862046320766 ], [ 36.542119515483186, 1.917833726320734 ], [ 36.5413260584832, 1.914232652320775 ], [ 36.538701546483189, 1.908434312320762 ], [ 36.538091195483155, 1.905260484320761 ], [ 36.538945687483185, 1.901659410320744 ], [ 36.535710824483196, 1.899645249320767 ], [ 36.533086312483185, 1.897020738320746 ], [ 36.530889046483189, 1.89427415632076 ], [ 36.529912484483184, 1.891222398320733 ], [ 36.526921761483202, 1.888842027320775 ], [ 36.524907601483157, 1.884630601320734 ], [ 36.521733773483156, 1.882616441320747 ], [ 36.520085824483196, 1.879869859320761 ], [ 36.516911996483195, 1.877672593320765 ], [ 36.515691293483194, 1.872057359320761 ], [ 36.515691293483194, 1.86162034732075 ], [ 36.5159354334832, 1.857225816320747 ], [ 36.516301644483171, 1.854235093320765 ], [ 36.516911996483195, 1.851061265320763 ], [ 36.519109261483202, 1.847460191320747 ], [ 36.522710336483151, 1.849230210320738 ], [ 36.525517953483181, 1.845873277320775 ], [ 36.525334847483172, 1.842028062320762 ], [ 36.522527230483199, 1.834459702320769 ], [ 36.524541390483186, 1.831652085320738 ], [ 36.523503793483194, 1.828844468320765 ], [ 36.516911996483195, 1.829637925320751 ], [ 36.515141976483157, 1.827257554320736 ], [ 36.515508187483185, 1.824266831320754 ], [ 36.516118539483152, 1.82145921432078 ], [ 36.517095101483157, 1.81846849232073 ], [ 36.522099984483184, 1.812426011320779 ], [ 36.524907601483157, 1.809862535320744 ], [ 36.530339730483199, 1.806444566320747 ], [ 36.534123910483167, 1.805040757320737 ], [ 36.532720101483157, 1.802050035320744 ], [ 36.53070594148317, 1.799852769320748 ], [ 36.528691781483182, 1.796251695320732 ], [ 36.526311410483167, 1.793016831320754 ], [ 36.524541390483186, 1.790270249320767 ], [ 36.5257010584832, 1.787035386320779 ], [ 36.522099984483184, 1.781847398320733 ], [ 36.51953650748316, 1.780626695320732 ], [ 36.516911995483206, 1.778246324320773 ], [ 36.518498910483167, 1.775255601320734 ], [ 36.518315804483159, 1.771471421320766 ], [ 36.514104379483165, 1.772875230320776 ], [ 36.512334359483184, 1.770616929320736 ], [ 36.51312781648317, 1.767443101320734 ], [ 36.51953650748316, 1.761217515320763 ], [ 36.519109261483202, 1.757860581320754 ], [ 36.52094031648317, 1.754869859320761 ], [ 36.524114144483171, 1.757616441320747 ], [ 36.525945199483196, 1.76146165632076 ], [ 36.528142464483203, 1.759264390320763 ], [ 36.528325570483155, 1.75505296432078 ], [ 36.526128304483159, 1.750658433320777 ], [ 36.523137582483166, 1.746447007320737 ], [ 36.52234412548318, 1.742235581320754 ], [ 36.520513070483155, 1.739855210320738 ], [ 36.517095101483157, 1.740221421320766 ], [ 36.514897836483151, 1.738268296320766 ], [ 36.51312781648317, 1.735826890320763 ], [ 36.509526742483153, 1.729845445320732 ], [ 36.508916390483186, 1.722460191320747 ], [ 36.506291879483165, 1.718676011320779 ], [ 36.504094613483169, 1.716417710320738 ], [ 36.504888070483155, 1.710253160320744 ], [ 36.502934945483155, 1.707262437320762 ], [ 36.5003104334832, 1.705065171320766 ], [ 36.496343148483156, 1.703844468320765 ], [ 36.4924979334832, 1.703661363320746 ], [ 36.488896859483184, 1.70286790632076 ], [ 36.487309945483155, 1.698229234320761 ], [ 36.487493050483174, 1.693834702320769 ], [ 36.488103402483198, 1.690416734320761 ], [ 36.487493050483174, 1.687670152320775 ], [ 36.48633338248316, 1.684862535320744 ], [ 36.486516488483169, 1.681627671320766 ], [ 36.484502328483181, 1.67943040632076 ], [ 36.482121957483166, 1.677416245320783 ], [ 36.480107796483189, 1.673265855320776 ], [ 36.478093636483202, 1.665270249320767 ], [ 36.476506722483172, 1.662645738320746 ], [ 36.471318734483184, 1.65544358932078 ], [ 36.470525277483198, 1.648058335320738 ], [ 36.470525276483151, 1.642259992320758 ], [ 36.469487679483159, 1.637621324320773 ], [ 36.469731820483155, 1.634447495320783 ], [ 36.468328011483202, 1.631273667320781 ], [ 36.467717660483167, 1.628221910320744 ], [ 36.464726937483185, 1.620043199320773 ], [ 36.464910043483194, 1.61607591332074 ], [ 36.463140023483156, 1.61247483932078 ], [ 36.458745492483153, 1.612230699320773 ], [ 36.455510629483165, 1.612657945320732 ], [ 36.451299203483181, 1.615038316320747 ], [ 36.44672156648317, 1.61607591332074 ], [ 36.443120492483153, 1.614061753320752 ], [ 36.441106332483166, 1.61143724232073 ], [ 36.439702523483156, 1.607225816320747 ], [ 36.439092171483189, 1.603441636320779 ], [ 36.437139046483189, 1.598863999320767 ], [ 36.434087289483152, 1.594835679320736 ], [ 36.433537972483172, 1.589220445320732 ], [ 36.432317269483171, 1.584459702320769 ], [ 36.42969275748316, 1.58122483932078 ], [ 36.427495492483153, 1.572252671320766 ], [ 36.420903695483155, 1.568041245320783 ], [ 36.418889535483167, 1.565843980320776 ], [ 36.414311898483156, 1.560228745320783 ], [ 36.41211463248316, 1.556444566320747 ], [ 36.410710824483196, 1.55302659732075 ], [ 36.408696664483152, 1.549242417320781 ], [ 36.40710975048318, 1.545641343320765 ], [ 36.403142464483203, 1.53544847232075 ], [ 36.399541390483186, 1.529467027320775 ], [ 36.398320687483185, 1.525438706320754 ], [ 36.395513070483155, 1.523668687320762 ], [ 36.391728890483186, 1.522875230320776 ], [ 36.388494027483198, 1.525865952320769 ], [ 36.386113656483182, 1.529650132320737 ], [ 36.382512582483166, 1.533068101320734 ], [ 36.38031531648317, 1.534838120320783 ], [ 36.378301156483182, 1.537645738320746 ], [ 36.376714242483153, 1.540453355320776 ], [ 36.375737679483159, 1.543627183320777 ], [ 36.374089730483199, 1.564073960320738 ], [ 36.373540414483152, 1.56865159732075 ], [ 36.375920785483167, 1.571642320320732 ], [ 36.377141488483169, 1.575243394320748 ], [ 36.377507699483196, 1.57823411732073 ], [ 36.377690804483159, 1.582445542320781 ], [ 36.376897347483172, 1.58622972232075 ], [ 36.375737679483159, 1.588854234320761 ], [ 36.37390662548318, 1.591661851320734 ], [ 36.37109900748316, 1.593676011320779 ], [ 36.367742074483196, 1.591844956320754 ], [ 36.365727914483152, 1.589647691320747 ], [ 36.359746468483188, 1.584642808320777 ], [ 36.358891976483157, 1.581652085320738 ], [ 36.358708871483195, 1.578051011320779 ], [ 36.358891976483157, 1.571031968320765 ], [ 36.357305062483185, 1.56865159732075 ], [ 36.353093636483202, 1.568224351320734 ], [ 36.34851600048318, 1.56846849232073 ], [ 36.34570838248316, 1.569872300320751 ], [ 36.344731820483155, 1.573046128320752 ], [ 36.341741097483172, 1.570848863320746 ], [ 36.335332406483182, 1.566820542320781 ], [ 36.330693734483184, 1.562853257320737 ], [ 36.326909553483169, 1.559862534320755 ], [ 36.32031775748316, 1.553453843320765 ], [ 36.3167166834832, 1.54966966332074 ], [ 36.312688363483169, 1.547472398320733 ], [ 36.308293832483166, 1.544420640320763 ], [ 36.304936898483156, 1.541246812320762 ], [ 36.303288949483196, 1.538439195320732 ], [ 36.302312386483202, 1.533861558320777 ], [ 36.301702035483167, 1.529222886320779 ], [ 36.301702035483167, 1.516222398320733 ], [ 36.301518929483159, 1.51286546432078 ], [ 36.300115121483195, 1.509447495320783 ], [ 36.299321664483152, 1.506273667320781 ], [ 36.299321664483152, 1.50224534732075 ], [ 36.297917855483199, 1.498461167320781 ], [ 36.298711312483185, 1.49443284732075 ], [ 36.300298226483157, 1.490465562320762 ], [ 36.299932015483186, 1.48662034732075 ], [ 36.296697152483198, 1.481066148320733 ], [ 36.291142953483181, 1.470018785320744 ], [ 36.289495004483165, 1.465624253320752 ], [ 36.292119515483186, 1.46263353132076 ], [ 36.295110238483169, 1.463060777320775 ], [ 36.29968787548318, 1.464830796320766 ], [ 36.315740121483195, 1.469225327320769 ], [ 36.320134652483198, 1.469835679320736 ], [ 36.323491586483151, 1.468676011320779 ], [ 36.326726449483196, 1.465868394320748 ], [ 36.33289100048318, 1.458055894320748 ], [ 36.33734656648317, 1.45146409732075 ], [ 36.339726937483185, 1.448229234320761 ], [ 36.342717660483167, 1.44505540632076 ], [ 36.344914925483174, 1.442430894320748 ], [ 36.347905648483156, 1.439440171320766 ], [ 36.350713265483186, 1.437670152320775 ], [ 36.354314339483203, 1.43583909732075 ], [ 36.357488168483194, 1.435045640320763 ], [ 36.36133338248316, 1.436266343320765 ], [ 36.364934457483166, 1.436632554320736 ], [ 36.368901742483153, 1.436449449320773 ], [ 36.37250281648317, 1.43864671432078 ], [ 36.376286996483195, 1.439867417320781 ], [ 36.380742562483185, 1.439440171320766 ], [ 36.383916390483186, 1.441454331320754 ], [ 36.387944711483151, 1.443224351320734 ], [ 36.392705453483181, 1.443041245320783 ], [ 36.395329964483203, 1.441271226320734 ], [ 36.397710336483151, 1.438463609320761 ], [ 36.399541390483186, 1.43565599232073 ], [ 36.400945199483196, 1.432848374320767 ], [ 36.402715218483188, 1.430651109320761 ], [ 36.406926644483171, 1.428453843320765 ], [ 36.410100472483172, 1.425829331320754 ], [ 36.411931527483198, 1.423265855320776 ], [ 36.416142953483181, 1.419237535320744 ], [ 36.419499887483191, 1.415453355320776 ], [ 36.423100961483151, 1.413866441320747 ], [ 36.427129281483182, 1.41325608932078 ], [ 36.428533089483203, 1.408068101320734 ], [ 36.431890023483156, 1.407457749320767 ], [ 36.435735238483169, 1.408251206320754 ], [ 36.439336312483185, 1.409471910320744 ], [ 36.442510140483186, 1.408251206320754 ], [ 36.44531775748316, 1.409227769320748 ], [ 36.448491586483151, 1.409655015320763 ], [ 36.451116097483172, 1.406420152320775 ], [ 36.452703011483202, 1.401842515320763 ], [ 36.454717171483189, 1.398058335320738 ], [ 36.457707894483171, 1.396471421320766 ], [ 36.460088265483186, 1.399462144320748 ], [ 36.463323129483165, 1.400621812320762 ], [ 36.466496957483166, 1.398058335320738 ], [ 36.466924203483181, 1.393236558320777 ], [ 36.466741097483172, 1.382860581320754 ], [ 36.465520394483171, 1.378832261320779 ], [ 36.463140023483156, 1.372423570320732 ], [ 36.460332406483182, 1.368822495320783 ], [ 36.446294320483155, 1.362230699320773 ], [ 36.442693246483195, 1.360033433320777 ], [ 36.439092171483189, 1.356066148320733 ], [ 36.436101449483196, 1.35185472232075 ], [ 36.433537972483172, 1.349657456320754 ], [ 36.430303109483184, 1.348253648320733 ], [ 36.426702035483167, 1.347032945320732 ], [ 36.423100961483151, 1.342821519320748 ], [ 36.422124398483156, 1.335253160320744 ], [ 36.421514046483189, 1.332445542320781 ], [ 36.414311898483156, 1.32841722232075 ], [ 36.407903207483166, 1.32042161732073 ], [ 36.404912484483184, 1.315416734320761 ], [ 36.401128304483159, 1.314623277320775 ], [ 36.397710336483151, 1.315660874320767 ], [ 36.395085824483196, 1.314257066320747 ], [ 36.39453650748316, 1.310228745320783 ], [ 36.397099984483184, 1.306017320320732 ], [ 36.400334847483172, 1.305223863320746 ], [ 36.403691781483182, 1.305468003320752 ], [ 36.406743539483152, 1.297472398320733 ], [ 36.410710824483196, 1.297655503320752 ], [ 36.418096078483181, 1.29503099232073 ], [ 36.421514046483189, 1.293627183320777 ], [ 36.42468787548318, 1.295275132320737 ], [ 36.426702035483167, 1.297472398320733 ], [ 36.430303109483184, 1.298632066320747 ], [ 36.435307992483153, 1.30107347232075 ], [ 36.438542855483199, 1.299059312320762 ], [ 36.438542855483199, 1.295275132320737 ], [ 36.437688363483169, 1.289843003320752 ], [ 36.440740121483195, 1.28544847232075 ], [ 36.4417166834832, 1.282640855320776 ], [ 36.444341195483155, 1.27903978132076 ], [ 36.446294320483155, 1.274462144320748 ], [ 36.449346078483181, 1.271654527320775 ], [ 36.451543343483188, 1.268846910320744 ], [ 36.452092660483167, 1.264452378320752 ], [ 36.453496468483188, 1.25987474232073 ], [ 36.454289925483174, 1.255846421320766 ], [ 36.452703011483202, 1.25206224232073 ], [ 36.448491586483151, 1.250048081320754 ], [ 36.445134652483198, 1.252428452320769 ], [ 36.442327035483167, 1.255419175320751 ], [ 36.439336312483185, 1.258043687320762 ], [ 36.432317269483171, 1.263475816320747 ], [ 36.428533089483203, 1.265062730320776 ], [ 36.423345101483157, 1.266222398320733 ], [ 36.41992713248316, 1.269457261320779 ], [ 36.417729867483153, 1.272447984320761 ], [ 36.414311898483156, 1.273851792320781 ], [ 36.410710824483196, 1.275621812320762 ], [ 36.406926644483171, 1.27263108932078 ], [ 36.403142464483203, 1.271654527320775 ], [ 36.399114144483171, 1.274034898320733 ], [ 36.396916879483165, 1.271044175320751 ], [ 36.395696175483174, 1.26787034732075 ], [ 36.391728890483186, 1.267015855320776 ], [ 36.389287484483184, 1.26286546432078 ], [ 36.3909354334832, 1.260240952320769 ], [ 36.393743050483174, 1.258043687320762 ], [ 36.396123421483189, 1.255236070320732 ], [ 36.397710336483151, 1.252855699320773 ], [ 36.4007010584832, 1.252428452320769 ], [ 36.403325570483155, 1.251024644320748 ], [ 36.406133187483185, 1.250048081320754 ], [ 36.409307015483186, 1.255663316320747 ], [ 36.411504281483182, 1.257616441320747 ], [ 36.414739144483171, 1.254442613320746 ], [ 36.41492225048318, 1.250658433320777 ], [ 36.414739144483171, 1.246874253320752 ], [ 36.415715707483166, 1.243822495320783 ], [ 36.419744027483198, 1.239244859320761 ], [ 36.421514046483189, 1.236864488320746 ], [ 36.422124398483156, 1.234056870320783 ], [ 36.421514046483189, 1.231249253320752 ], [ 36.41992713248316, 1.228075425320751 ], [ 36.417302621483195, 1.225023667320781 ], [ 36.414739144483171, 1.227465074320773 ], [ 36.411931527483198, 1.229051988320746 ], [ 36.406499398483156, 1.227648179320736 ], [ 36.399541383483204, 1.222460183320775 ], [ 36.396123421483189, 1.21885911732073 ], [ 36.39594031648317, 1.215074937320762 ], [ 36.39789344148317, 1.207018296320766 ], [ 36.397710336483151, 1.203051011320779 ], [ 36.397099984483184, 1.198229234320761 ], [ 36.397099984483184, 1.192430894320748 ], [ 36.394292367483153, 1.188829820320732 ], [ 36.390691293483194, 1.186266343320765 ], [ 36.390691293483194, 1.182421128320752 ], [ 36.391545785483167, 1.178453843320765 ], [ 36.391911996483195, 1.174242417320781 ], [ 36.393926156483182, 1.17161790632076 ], [ 36.397710336483151, 1.17106858932078 ], [ 36.401128304483159, 1.172472398320733 ], [ 36.405339730483199, 1.175218980320776 ], [ 36.414739144483171, 1.180468003320752 ], [ 36.418523324483196, 1.183275620320783 ], [ 36.421514046483189, 1.184069077320769 ], [ 36.4241385584832, 1.182054917320781 ], [ 36.427129281483182, 1.181261460320738 ], [ 36.430913461483151, 1.178453843320765 ], [ 36.433721078483181, 1.17662278832074 ], [ 36.438725961483151, 1.17607347232075 ], [ 36.442143929483159, 1.173876206320754 ], [ 36.442693246483195, 1.169054429320736 ], [ 36.441899789483152, 1.165026109320761 ], [ 36.4417166834832, 1.161425035320744 ], [ 36.437932504483165, 1.155016343320765 ], [ 36.436101449483196, 1.150255601320734 ], [ 36.435735238483169, 1.146471421320766 ], [ 36.437139046483189, 1.143846910320744 ], [ 36.435307992483153, 1.140428941320747 ], [ 36.434514535483167, 1.137072007320737 ], [ 36.437139046483189, 1.13365403832074 ], [ 36.440495980483199, 1.130419175320751 ], [ 36.440923226483157, 1.12706224232073 ], [ 36.442327035483167, 1.123827378320752 ], [ 36.443913949483196, 1.11802903832074 ], [ 36.445134652483198, 1.11442796432078 ], [ 36.44531775748316, 1.11021653832074 ], [ 36.443730843483188, 1.106432359320761 ], [ 36.4417166834832, 1.102465074320773 ], [ 36.440129769483171, 1.094469468320765 ], [ 36.440129769483171, 1.091051499320767 ], [ 36.439519418483194, 1.08763353132076 ], [ 36.439885629483165, 1.083422105320776 ], [ 36.441899789483152, 1.078661363320746 ], [ 36.443486703483181, 1.074266831320754 ], [ 36.444097054483159, 1.069445054320736 ], [ 36.443303597483172, 1.065416734320761 ], [ 36.443120492483153, 1.060472886320779 ], [ 36.444097054483159, 1.056261460320738 ], [ 36.44531775748316, 1.053636949320773 ], [ 36.444707406483182, 1.04966966332074 ], [ 36.443730843483188, 1.04503099232073 ], [ 36.443486703483181, 1.039232652320775 ], [ 36.445500863483169, 1.03544847232075 ], [ 36.447331918483194, 1.033068101320734 ], [ 36.44812537548318, 1.029222886320779 ], [ 36.449101937483185, 1.025865952320769 ], [ 36.450322640483186, 1.023241441320747 ], [ 36.452092660483167, 1.020067613320746 ], [ 36.453740609483184, 1.015673081320754 ], [ 36.453313363483169, 1.01005784732075 ], [ 36.451543343483188, 0.999437730320776 ], [ 36.450688851483157, 0.995653550320751 ], [ 36.446538461483151, 0.981249253320752 ], [ 36.443730843483188, 0.973863999320767 ], [ 36.440740121483195, 0.966844956320754 ], [ 36.43750525748316, 0.960619370320783 ], [ 36.436345589483203, 0.95787278832074 ], [ 36.432927621483195, 0.951830308320777 ], [ 36.431706918483194, 0.949266831320754 ], [ 36.427129281483182, 0.941637437320762 ], [ 36.425115121483195, 0.93864671432078 ], [ 36.419744027483198, 0.932848374320767 ], [ 36.414128793483194, 0.927416245320783 ], [ 36.408086312483185, 0.922045152320775 ], [ 36.405339730483199, 0.919237535320744 ], [ 36.402287972483172, 0.916674058320777 ], [ 36.398931039483152, 0.91325608932078 ], [ 36.394719613483169, 0.911241929320736 ], [ 36.393750584483193, 0.913976408320761 ], [ 36.394224726483166, 0.917185984320779 ], [ 36.393057607483165, 0.919775528320767 ], [ 36.390508187483185, 0.922472398320733 ], [ 36.388279715483172, 0.925647594320762 ], [ 36.38849855048317, 0.930024289320781 ], [ 36.388921273483156, 0.934069077320769 ], [ 36.389897836483151, 0.939440171320766 ], [ 36.38953162548318, 0.942675035320744 ], [ 36.388738168483194, 0.947069566320747 ], [ 36.385398391483186, 0.948771133320745 ], [ 36.383647713483178, 0.952454851320735 ], [ 36.378545296483189, 0.95341722232075 ], [ 36.375737679483159, 0.954821031320759 ], [ 36.372685921483189, 0.953844468320765 ], [ 36.369715234483174, 0.953804332320769 ], [ 36.366651548483155, 0.956649184320779 ], [ 36.363896859483184, 0.961473863320746 ], [ 36.360112679483159, 0.962633531320759 ], [ 36.356803984483172, 0.962776557320749 ], [ 36.353630880483188, 0.964600180320756 ], [ 36.3507275994832, 0.968169846320732 ], [ 36.348698803483153, 0.971858565320756 ], [ 36.348332894483171, 0.975817124320767 ], [ 36.346745980483199, 0.985033433320777 ], [ 36.343938363483169, 0.986864488320746 ], [ 36.342980310483192, 0.990244385320748 ], [ 36.335698617483153, 0.991259019320748 ], [ 36.325322640483186, 0.990038316320747 ], [ 36.317330252483195, 0.988435212320778 ], [ 36.310918343483188, 0.998033921320766 ], [ 36.290288461483151, 1.023424546320766 ], [ 36.277898324483196, 1.039049546320766 ], [ 36.273548257483178, 1.043032044320737 ], [ 36.264714730483199, 1.055651109320761 ], [ 36.260686410483167, 1.060472886320779 ], [ 36.2503104334832, 1.073473374320767 ], [ 36.247930062483185, 1.076219956320754 ], [ 36.189092171483189, 1.150072495320783 ], [ 36.173894418483194, 1.168871324320773 ], [ 36.133306039483152, 1.167833726320734 ], [ 36.121892464483203, 1.167223374320767 ], [ 36.097905648483156, 1.16685716332074 ], [ 36.088933480483199, 1.180468003320752 ], [ 36.056340707483166, 1.231676499320767 ], [ 36.045537484483184, 1.248033921320766 ], [ 36.03992225048318, 1.257433335320738 ], [ 36.03711463248316, 1.26146165632076 ], [ 36.022099984483184, 1.284655015320763 ], [ 36.020329964483203, 1.287828843320765 ], [ 36.009709847483172, 1.304247300320751 ], [ 36.0003104334832, 1.319872300320751 ], [ 35.997319711483151, 1.324266831320754 ], [ 35.987126839483203, 1.340441148320733 ], [ 35.977300179483159, 1.355455796320766 ], [ 35.969121468483188, 1.368456285320744 ], [ 35.946904671483189, 1.403063218320765 ], [ 35.942327035483167, 1.411669175320751 ], [ 35.936101449483196, 1.41966478132076 ], [ 35.915898812483185, 1.45146409732075 ], [ 35.909490121483195, 1.461840074320773 ], [ 35.904546273483156, 1.469225327320769 ], [ 35.886296761483202, 1.498217027320775 ], [ 35.883306039483152, 1.503221910320744 ], [ 35.858098519483171, 1.54185716332074 ], [ 35.795720589483203, 1.638658921320766 ], [ 35.786321175483174, 1.654650132320737 ], [ 35.784123910483167, 1.658861558320777 ], [ 35.781316293483194, 1.662035386320779 ], [ 35.778325570483155, 1.662462632320737 ], [ 35.773320687483185, 1.663622300320751 ], [ 35.7678885584832, 1.666246812320762 ], [ 35.764287484483184, 1.667223374320767 ], [ 35.758489144483171, 1.67161790632076 ], [ 35.754888070483155, 1.672228257320737 ], [ 35.751714242483153, 1.673876206320754 ], [ 35.74750281648317, 1.674852769320748 ], [ 35.740300668483194, 1.676866929320736 ], [ 35.732305062483185, 1.681627671320766 ], [ 35.728887093483188, 1.68443528832074 ], [ 35.725530160483167, 1.686815660320744 ], [ 35.721501839483203, 1.687853257320737 ], [ 35.718511117483153, 1.690843980320776 ], [ 35.715093148483156, 1.69346849232073 ], [ 35.712102425483174, 1.696031968320765 ], [ 35.708745492483153, 1.699633042320781 ], [ 35.705327523483156, 1.701830308320777 ], [ 35.702886117483153, 1.70427171432078 ], [ 35.69531775748316, 1.708055894320748 ], [ 35.688725961483151, 1.712023179320736 ], [ 35.685735238483169, 1.71403733932078 ], [ 35.683293832483166, 1.716417710320738 ], [ 35.680303109483184, 1.718676011320779 ], [ 35.677312386483202, 1.719835679320736 ], [ 35.673528207483166, 1.722216050320751 ], [ 35.671697152483198, 1.726244370320783 ], [ 35.668889535483167, 1.72862474232073 ], [ 35.664311898483156, 1.730455796320766 ], [ 35.660710824483196, 1.731432359320761 ], [ 35.657720101483157, 1.732469956320754 ], [ 35.65430213248316, 1.73521653832074 ], [ 35.6507010584832, 1.738634507320737 ], [ 35.64789344148317, 1.739855210320738 ], [ 35.641728890483186, 1.740465562320762 ], [ 35.638921273483156, 1.742662827320769 ], [ 35.635137093483188, 1.743639390320763 ], [ 35.630132211483151, 1.744615952320769 ], [ 35.625920785483167, 1.746447007320737 ], [ 35.621526254483165, 1.748033921320766 ], [ 35.618108285483167, 1.747850816320747 ], [ 35.613896859483184, 1.749071519320748 ], [ 35.609136117483153, 1.749620835320738 ], [ 35.605290902483198, 1.752428452320769 ], [ 35.602117074483196, 1.755846421320766 ], [ 35.600286019483171, 1.758226792320781 ], [ 35.59711219148317, 1.760424058320777 ], [ 35.593938363483169, 1.761644761320779 ], [ 35.590520394483171, 1.76005784732075 ], [ 35.586308968483188, 1.75865403832074 ], [ 35.582707894483171, 1.758043687320762 ], [ 35.578923714483203, 1.759020249320767 ], [ 35.57312537548318, 1.76005784732075 ], [ 35.567937386483202, 1.758043687320762 ], [ 35.565129769483171, 1.758837144320748 ], [ 35.561345589483203, 1.760424058320777 ], [ 35.556706918483194, 1.76182786732073 ], [ 35.550542367483153, 1.764025132320737 ], [ 35.547124398483156, 1.76286546432078 ], [ 35.543096078483181, 1.762438218320765 ], [ 35.538945687483185, 1.763048570320732 ], [ 35.535710824483196, 1.763048570320732 ], [ 35.53210975048318, 1.761644761320779 ], [ 35.527287972483172, 1.762621324320773 ], [ 35.523137582483166, 1.76481858932078 ], [ 35.517705453483181, 1.767015855320776 ], [ 35.513310921483189, 1.767015855320776 ], [ 35.509892953483181, 1.76646653832074 ], [ 35.502690804483159, 1.76481858932078 ], [ 35.499333871483195, 1.766649644320748 ], [ 35.495915902483198, 1.76787034732075 ], [ 35.497136605483199, 1.772020738320746 ], [ 35.495305550483174, 1.77623216332074 ], [ 35.491521371483195, 1.780016343320765 ], [ 35.48633338248316, 1.787462632320737 ], [ 35.483708871483195, 1.790819566320747 ], [ 35.4827323084832, 1.795275132320737 ], [ 35.476323617483153, 1.798265855320776 ], [ 35.475102914483152, 1.801256577320769 ], [ 35.472539437483185, 1.803270738320746 ], [ 35.475102914483152, 1.807054917320781 ], [ 35.477300179483159, 1.811022202320769 ], [ 35.473943246483195, 1.813219468320765 ], [ 35.475102914483152, 1.817430894320748 ], [ 35.476506722483172, 1.821276109320761 ], [ 35.476506722483172, 1.824633042320781 ], [ 35.4749198084832, 1.827440660320744 ], [ 35.474126351483157, 1.830675523320733 ], [ 35.473699105483199, 1.834642808320777 ], [ 35.469914934483192, 1.837450418320768 ], [ 35.468144906483182, 1.840074937320762 ], [ 35.464543832483166, 1.840258042320781 ], [ 35.461492074483196, 1.839647691320747 ], [ 35.459722054483159, 1.842272202320769 ], [ 35.4573416834832, 1.845018785320744 ], [ 35.453923714483203, 1.845262925320751 ], [ 35.452519906483182, 1.848070542320781 ], [ 35.446294320483155, 1.856066148320733 ], [ 35.37250281648317, 1.925463120320783 ], [ 35.370915902483198, 1.928453843320765 ], [ 35.373540414483152, 1.931017320320732 ], [ 35.375127328483181, 1.934252183320777 ], [ 35.375493539483152, 1.93864671432078 ], [ 35.376897347483172, 1.942858140320763 ], [ 35.37891150748316, 1.945238511320779 ], [ 35.38171912548318, 1.947252671320766 ], [ 35.38812781648317, 1.948839585320738 ], [ 35.391545785483167, 1.952257554320736 ], [ 35.390325082483166, 1.955675523320733 ], [ 35.390325082483166, 1.959459702320769 ], [ 35.393132699483196, 1.962023179320736 ], [ 35.384526742483153, 2.003649156320758 ], [ 35.372930062483185, 2.048448960320737 ], [ 35.345098031483182, 2.16166917532075 ], [ 35.343938363483169, 2.16502610932076 ], [ 35.329106820483155, 2.217028062320761 ], [ 35.315495980483199, 2.264025132320736 ], [ 35.31250525748316, 2.277819077320768 ], [ 35.307927621483195, 2.324266831320752 ], [ 35.30750037548318, 2.348253648320732 ], [ 35.306890023483156, 2.365465562320761 ], [ 35.305303109483184, 2.378221910320743 ], [ 35.303716195483155, 2.396654527320774 ], [ 35.298528207483166, 2.417040269320747 ], [ 35.295720589483203, 2.423021714320779 ], [ 35.292302621483195, 2.426073472320748 ], [ 35.284917367483153, 2.428636949320772 ], [ 35.280095589483203, 2.430834214320779 ], [ 35.277715218483188, 2.432665269320747 ], [ 35.27289344148317, 2.435045640320762 ], [ 35.269292367483153, 2.435839097320748 ], [ 35.262944711483151, 2.435839097320748 ], [ 35.2581229334832, 2.436266343320764 ], [ 35.253728402483198, 2.43705980032075 ], [ 35.249944222483172, 2.43846360932076 ], [ 35.246709359483184, 2.442064683320776 ], [ 35.237309945483155, 2.444628160320743 ], [ 35.233525765483186, 2.44487230032075 ], [ 35.229497445483155, 2.44822923432076 ], [ 35.225286019483171, 2.454821031320758 ], [ 35.22351600048318, 2.458666245320782 ], [ 35.222295296483189, 2.46245042532075 ], [ 35.221501839483203, 2.465868394320747 ], [ 35.221318734483184, 2.473253648320732 ], [ 35.22070838248316, 2.477037827320768 ], [ 35.219731820483155, 2.481249253320751 ], [ 35.219121468483188, 2.484850327320768 ], [ 35.216741097483172, 2.491625230320775 ], [ 35.215886605483199, 2.49705735932076 ], [ 35.215520394483171, 2.502245347320748 ], [ 35.215337289483152, 2.518236558320776 ], [ 35.21570350048318, 2.523241441320746 ], [ 35.214726937483185, 2.52885667532075 ], [ 35.214543832483166, 2.534227769320747 ], [ 35.213506234483184, 2.54002610932076 ], [ 35.208318246483195, 2.545824449320772 ], [ 35.203740609483184, 2.551439683320776 ], [ 35.195134652483198, 2.561266343320764 ], [ 35.192937386483202, 2.564257066320746 ], [ 35.18750525748316, 2.569017808320776 ], [ 35.186528695483155, 2.576464097320748 ], [ 35.1839041834832, 2.582628648320732 ], [ 35.183110726483157, 2.585863511320778 ], [ 35.178288949483196, 2.596849839320779 ], [ 35.170903695483155, 2.608019273320732 ], [ 35.166936410483167, 2.615038316320746 ], [ 35.162908089483203, 2.619860093320764 ], [ 35.158086312483185, 2.626024644320747 ], [ 35.155889046483189, 2.627855699320772 ], [ 35.1507010584832, 2.630846421320765 ], [ 35.143315804483159, 2.636034410320743 ], [ 35.129338754483165, 2.644457261320778 ], [ 35.125127328483181, 2.64604417532075 ], [ 35.120915902483198, 2.648058335320737 ], [ 35.11328650748316, 2.650255601320733 ], [ 35.110906136483202, 2.648241441320746 ], [ 35.108708871483195, 2.645433824320772 ], [ 35.105535043483194, 2.644457261320778 ], [ 35.0999198084832, 2.643846910320743 ], [ 35.096318734483184, 2.642443101320733 ], [ 35.093694222483172, 2.63963548432076 ], [ 35.085088265483186, 2.635240952320768 ], [ 35.08093787548318, 2.632067124320766 ], [ 35.077519906483182, 2.624864976320733 ], [ 35.074895394483171, 2.62205735932076 ], [ 35.071111214483203, 2.619860093320764 ], [ 35.0667166834832, 2.618822495320782 ], [ 35.064702523483156, 2.616259019320747 ], [ 35.063725961483151, 2.61284105032075 ], [ 35.062322152483198, 2.609056870320782 ], [ 35.060307992483153, 2.605272691320746 ], [ 35.060918343483188, 2.600267808320776 ], [ 35.060491097483172, 2.596849839320779 ], [ 35.058721078483181, 2.591844956320752 ], [ 35.057134164483152, 2.584825913320739 ], [ 35.0589041834832, 2.576830308320776 ], [ 35.0589041834832, 2.57127610932076 ], [ 35.056706918483194, 2.564623277320774 ], [ 35.05609656648317, 2.561266343320764 ], [ 35.054509652483198, 2.557421128320751 ], [ 35.050115121483195, 2.549425523320732 ], [ 35.046514046483189, 2.545030992320729 ], [ 35.042912972483172, 2.537828843320764 ], [ 35.039311898483156, 2.531420152320774 ], [ 35.035527718483188, 2.526842515320762 ], [ 35.027898324483196, 2.514818589320779 ], [ 35.022099984483184, 2.509020249320766 ], [ 35.020329964483203, 2.506639878320751 ], [ 35.01953650748316, 2.503832261320778 ], [ 35.016301644483171, 2.495226304320735 ], [ 35.019902718483188, 2.486864488320745 ], [ 35.021123421483189, 2.481249253320751 ], [ 35.02094031648317, 2.474657456320752 ], [ 35.020085824483196, 2.469469468320764 ], [ 35.021123421483189, 2.465441148320732 ], [ 35.022527230483199, 2.461046617320729 ], [ 35.020329964483203, 2.457018296320765 ], [ 35.020329964483203, 2.453417222320748 ], [ 35.021306527483198, 2.449022691320746 ], [ 35.022527230483199, 2.44487230032075 ], [ 35.023320687483185, 2.441271226320733 ], [ 35.0257010584832, 2.438219468320764 ], [ 35.026311410483167, 2.434862535320743 ], [ 35.026311410483167, 2.430834214320779 ], [ 35.022099984483184, 2.430834214320779 ], [ 34.983098519483171, 2.439623277320774 ], [ 34.978703988483169, 2.44041673432076 ], [ 34.974492562483185, 2.441454331320752 ], [ 34.970891488483169, 2.44182054232078 ], [ 34.966496957483166, 2.443834702320768 ], [ 34.952703011483202, 2.452623765320762 ], [ 34.947331918483194, 2.452867906320758 ], [ 34.950139535483167, 2.454454820320731 ], [ 34.95313025748316, 2.457872788320739 ], [ 34.953496468483188, 2.462816636320778 ], [ 34.95453406648317, 2.468065660320743 ], [ 34.953923714483203, 2.470873277320774 ], [ 34.948491586483151, 2.470629136320778 ], [ 34.943913949483196, 2.481249253320751 ], [ 34.938298714483203, 2.494860093320764 ], [ 34.934514535483167, 2.50627366732078 ], [ 34.934697640483186, 2.51323167532075 ], [ 34.91351844148317, 2.512621324320772 ], [ 34.905095589483203, 2.544847886320778 ], [ 34.899114144483171, 2.580431382320736 ], [ 34.89789344148317, 2.583055894320747 ], [ 34.894109261483202, 2.588426988320745 ], [ 34.880498421483189, 2.584642808320776 ], [ 34.880498421483189, 2.57963792532075 ], [ 34.879338754483165, 2.568224351320733 ], [ 34.868535531483182, 2.566271226320733 ], [ 34.853337777483198, 2.579027574320772 ], [ 34.838506234483184, 2.599657456320752 ], [ 34.830510629483165, 2.616869370320782 ], [ 34.799321664483152, 2.650865952320768 ], [ 34.795537484483184, 2.663439195320731 ], [ 34.794744027483198, 2.669664781320758 ], [ 34.790105355483199, 2.679430406320758 ], [ 34.7757010584832, 2.693834702320768 ], [ 34.78210975048318, 2.728258531320758 ], [ 34.784490121483195, 2.738024156320758 ], [ 34.784734261483202, 2.745226304320735 ], [ 34.781133187483185, 2.77104417532075 ], [ 34.775090707483166, 2.794847886320778 ], [ 34.770085824483196, 2.808458726320733 ], [ 34.769109261483202, 2.811815660320743 ], [ 34.7678885584832, 2.814440171320765 ], [ 34.767095101483157, 2.817675035320743 ], [ 34.760686410483167, 2.824022691320746 ], [ 34.756902230483199, 2.822435777320774 ], [ 34.7503104334832, 2.821031968320764 ], [ 34.74609900748316, 2.829454820320731 ], [ 34.742742074483196, 2.839464585320737 ], [ 34.73773719148317, 2.849657456320752 ], [ 34.732915414483152, 2.853258531320758 ], [ 34.721929086483151, 2.857225816320746 ], [ 34.712712777483198, 2.860216538320739 ], [ 34.7092948084832, 2.868822495320782 ], [ 34.702886117483153, 2.872667710320737 ], [ 34.699101937483185, 2.865831773320732 ], [ 34.692937386483202, 2.857469956320752 ], [ 34.685918343483188, 2.858873765320762 ], [ 34.670293343483188, 2.858873765320762 ], [ 34.659734261483202, 2.860460679320735 ], [ 34.65430213248316, 2.862230699320772 ], [ 34.6409354334832, 2.902269761320778 ], [ 34.633733285483167, 2.906053941320746 ], [ 34.600102914483152, 2.920458238320745 ], [ 34.589543832483166, 2.976427476320733 ], [ 34.589726937483185, 2.989855210320737 ], [ 34.58929969148317, 2.994066636320778 ], [ 34.589543832483166, 2.997850816320746 ], [ 34.588689339483203, 3.000841538320739 ], [ 34.583745492483153, 3.005846421320765 ], [ 34.58148719148317, 3.009630601320733 ], [ 34.58148719148317, 3.01323167532075 ], [ 34.577336800483174, 3.018663804320735 ], [ 34.574712289483152, 3.051073472320748 ], [ 34.575505746483195, 3.061632554320735 ], [ 34.577092660483167, 3.077623765320762 ], [ 34.574101937483185, 3.098253648320732 ], [ 34.560124886483202, 3.110216538320739 ], [ 34.546941293483194, 3.134447495320782 ], [ 34.537724984483184, 3.140856187320761 ], [ 34.52429725048318, 3.144823472320748 ], [ 34.515691293483194, 3.147631089320779 ], [ 34.512090218483188, 3.148241441320746 ], [ 34.494695199483196, 3.140245835320737 ], [ 34.490300668483194, 3.153246324320772 ], [ 34.484746468483188, 3.163256089320779 ], [ 34.472295296483189, 3.17143480032075 ], [ 34.461125863483169, 3.173448960320737 ], [ 34.455693734483184, 3.181627671320765 ], [ 34.45789100048318, 3.200243394320747 ], [ 34.454289925483174, 3.222826402320774 ], [ 34.452519906483182, 3.226427476320733 ], [ 34.451909554483159, 3.239061753320751 ], [ 34.4495291834832, 3.264818589320779 ], [ 34.448735726483157, 3.280443589320779 ], [ 34.439885629483165, 3.304430406320758 ], [ 34.436894906483182, 3.320848863320745 ], [ 34.42773963248316, 3.342821519320747 ], [ 34.413945687483185, 3.360033433320776 ], [ 34.402287972483172, 3.369066636320778 ], [ 34.4007010584832, 3.375841538320739 ], [ 34.402104867483153, 3.413256089320779 ], [ 34.411504281483182, 3.415636460320737 ], [ 34.41211463248316, 3.418627183320776 ], [ 34.414311898483156, 3.422045152320774 ], [ 34.418096078483181, 3.428636949320772 ], [ 34.419316781483182, 3.431261460320737 ], [ 34.417912972483172, 3.449449937320761 ], [ 34.406499398483156, 3.467272202320768 ], [ 34.392339242483153, 3.480638902320774 ], [ 34.3909354334832, 3.484423081320752 ], [ 34.390141976483157, 3.489672105320775 ], [ 34.392095101483157, 3.492418687320761 ], [ 34.397099984483184, 3.487047593320764 ], [ 34.424504769483171, 3.489672105320775 ], [ 34.435124886483202, 3.496447007320736 ], [ 34.443913949483196, 3.50627366732078 ], [ 34.447331918483194, 3.510668199320772 ], [ 34.451116097483172, 3.516466538320739 ], [ 34.453923714483203, 3.543260972320748 ], [ 34.456304086483151, 3.556871812320761 ], [ 34.456304086483151, 3.567247788320739 ], [ 34.457097543483194, 3.577867906320758 ], [ 34.454289925483174, 3.609850327320768 ], [ 34.458928597483172, 3.637438218320764 ], [ 34.464543832483166, 3.667467515320762 ], [ 34.455693734483184, 3.674852769320747 ], [ 34.423100961483151, 3.686632554320735 ], [ 34.408086312483185, 3.690660874320766 ], [ 34.405095589483203, 3.690843980320775 ], [ 34.401494515483186, 3.703844468320764 ], [ 34.39648963248316, 3.708055894320747 ], [ 34.37891150748316, 3.729235093320764 ], [ 34.371343148483156, 3.733019273320732 ], [ 34.355107796483189, 3.734056870320782 ], [ 34.33734656648317, 3.73002855032075 ], [ 34.325505746483195, 3.725634019320747 ], [ 34.318303597483172, 3.719042222320748 ], [ 34.312688363483169, 3.701830308320776 ], [ 34.3089041834832, 3.691027085320737 ], [ 34.306890023483156, 3.684252183320776 ], [ 34.303288949483196, 3.684252183320776 ], [ 34.305730355483199, 3.688219468320764 ], [ 34.30750037548318, 3.697618882320736 ], [ 34.308721078483181, 3.710619370320782 ], [ 34.295293343483188, 3.72166673432076 ], [ 34.283696664483152, 3.730638902320774 ], [ 34.267705453483181, 3.746630113320745 ], [ 34.260320199483196, 3.763842027320774 ], [ 34.246709359483184, 3.782823960320737 ], [ 34.240727914483152, 3.78166429232078 ], [ 34.236089242483153, 3.779467027320774 ], [ 34.232915414483152, 3.779467027320774 ], [ 34.230901254483165, 3.775865952320768 ], [ 34.227910531483182, 3.772020738320745 ], [ 34.226689828483181, 3.781053941320746 ], [ 34.221318734483184, 3.782030503320751 ], [ 34.215093148483156, 3.779833238320745 ], [ 34.211308968483188, 3.777819077320768 ], [ 34.206304086483151, 3.776232163320739 ], [ 34.192327035483167, 3.770616929320735 ], [ 34.186894906483182, 3.769274156320758 ], [ 34.173100961483151, 3.765428941320746 ], [ 34.165898812483185, 3.774218003320751 ], [ 34.170720589483203, 3.774828355320775 ], [ 34.181890023483156, 3.777819077320768 ], [ 34.185491097483172, 3.778429429320735 ], [ 34.191899789483152, 3.78026048432076 ], [ 34.189885629483165, 3.788439195320731 ], [ 34.19031287548318, 3.792650620320782 ], [ 34.1760916834832, 3.798448960320737 ], [ 34.171086800483174, 3.798876206320752 ], [ 34.163335336483151, 3.795030992320729 ], [ 34.159734261483202, 3.799669663320739 ], [ 34.153691781483182, 3.798448960320737 ], [ 34.153508675483174, 3.805223863320745 ], [ 34.157903207483166, 3.805834214320779 ], [ 34.164739144483171, 3.809252183320776 ], [ 34.170537484483184, 3.819261949320772 ], [ 34.180913461483151, 3.829271714320779 ], [ 34.217717660483167, 3.829821031320758 ], [ 34.226140511483202, 3.828417222320748 ], [ 34.226506722483172, 3.848253648320732 ], [ 34.225530160483167, 3.851854722320748 ], [ 34.216496957483166, 3.879076402320774 ], [ 34.208745492483153, 3.880846421320765 ], [ 34.202092660483167, 3.881029527320774 ], [ 34.197698129483165, 3.880236070320731 ], [ 34.176702035483167, 3.877855699320772 ], [ 34.173711312483185, 3.875841538320739 ], [ 34.16992713248316, 3.873827378320751 ], [ 34.168706429483159, 3.868639390320762 ], [ 34.164495004483165, 3.870470445320731 ], [ 34.150090707483166, 3.867662827320768 ], [ 34.128301156483182, 3.870043199320772 ], [ 34.109136117483153, 3.866442124320766 ], [ 34.093511117483153, 3.859239976320733 ], [ 34.088689339483203, 3.860216538320739 ], [ 34.089543832483166, 3.86424485932076 ], [ 34.089543832483166, 3.868273179320735 ], [ 34.091496957483166, 3.88322679232078 ], [ 34.095342171483189, 3.885851304320735 ], [ 34.104497445483155, 3.889818589320779 ], [ 34.115300668483194, 3.895067613320745 ], [ 34.119328988483169, 3.899828355320775 ], [ 34.129704964483203, 3.932665269320747 ], [ 34.134526742483153, 3.955065171320765 ], [ 34.135503304483159, 3.958666245320782 ], [ 34.11273719148317, 3.972826402320774 ], [ 34.10492469148317, 3.976244370320782 ], [ 34.080510629483165, 4.00206224232073 ], [ 34.061345589483203, 4.007616441320747 ], [ 34.059087289483152, 4.026232163320739 ], [ 34.089543832483166, 4.035875718320765 ], [ 34.092290414483152, 4.04503099232073 ], [ 34.092717660483167, 4.067064683320777 ], [ 34.081304086483151, 4.083849351320734 ], [ 34.06390906648317, 4.091844956320753 ], [ 34.050542367483153, 4.11924974232073 ], [ 34.0667166834832, 4.140428941320747 ], [ 34.048528207483166, 4.176439683320777 ], [ 34.039311898483156, 4.185228745320782 ], [ 33.992742074483196, 4.221239488320745 ], [ 34.019719613483169, 4.246447007320737 ], [ 34.085698617483153, 4.311449449320773 ], [ 34.141545785483167, 4.365221421320766 ], [ 34.230718148483156, 4.45323411732073 ], [ 34.269292367483153, 4.490831773320733 ], [ 34.305730355483199, 4.526049058320777 ], [ 34.361089242483153, 4.580431382320737 ], [ 34.392705453483181, 4.611254136320778 ], [ 34.47351600048318, 4.689623277320774 ], [ 34.5003104334832, 4.712816636320778 ], [ 34.595525277483198, 4.791674058320777 ], [ 34.627690804483159, 4.820055406320759 ], [ 34.702336800483174, 4.885057847320749 ], [ 34.822087777483198, 4.986864488320745 ], [ 34.854314339483203, 5.01481858932078 ], [ 34.884099496483195, 5.040026109320761 ], [ 34.939336312483185, 5.08604661732073 ], [ 35.125920785483167, 5.240648667320781 ], [ 35.266545785483167, 5.411058824320773 ], [ 35.292729867483153, 5.411241929320735 ], [ 35.605718148483156, 5.411669175320751 ], [ 35.608891976483157, 5.409044663320739 ], [ 35.611699593483188, 5.404833238320745 ], [ 35.613713754483165, 5.399828355320776 ], [ 35.615911019483171, 5.395250718320765 ], [ 35.618535531483182, 5.392259995320782 ], [ 35.620915902483198, 5.390245835320738 ], [ 35.62390662548318, 5.387072007320737 ], [ 35.626286996483195, 5.383226792320781 ], [ 35.629521859483184, 5.376268785320744 ], [ 35.632329476483157, 5.372667710320738 ] ] ] } } +, +{ "type": "Feature", "id": 23, "properties": { "OBJECTID": 24, "ID_": 519, "COUNTY_NAM": "WEST POKOT", "CONST_CODE": 129, "CONSTITUEN": "KAPENGURIA", "COUNTY_COD": 24, "Shape_Leng": 4.67142789986, "Shape_Area": 0.7545900016 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.259148326483164, 2.436028305320743 ], [ 35.261113656483182, 2.435472886320778 ], [ 35.269292367483153, 2.435839097320748 ], [ 35.27289344148317, 2.435045640320762 ], [ 35.277715218483188, 2.432665269320747 ], [ 35.280095589483203, 2.430834214320779 ], [ 35.284917367483153, 2.428636949320772 ], [ 35.292302621483195, 2.426073472320748 ], [ 35.295720589483203, 2.423021714320779 ], [ 35.298528207483166, 2.417040269320747 ], [ 35.303533089483203, 2.395616929320735 ], [ 35.305303109483184, 2.378221910320743 ], [ 35.30750037548318, 2.348253648320732 ], [ 35.307927621483195, 2.324266831320752 ], [ 35.31250525748316, 2.277819077320768 ], [ 35.315495980483199, 2.264025132320736 ], [ 35.329106820483155, 2.217028062320761 ], [ 35.342717660483167, 2.16502610932076 ], [ 35.344914925483174, 2.161058824320772 ], [ 35.371709359483184, 2.047472398320732 ], [ 35.384099496483195, 2.00346605032075 ], [ 35.3928885584832, 1.961840074320773 ], [ 35.390325082483166, 1.959459702320769 ], [ 35.390325082483166, 1.955431382320737 ], [ 35.391728890483186, 1.952440660320744 ], [ 35.387944711483151, 1.948839585320738 ], [ 35.381902230483199, 1.947252671320766 ], [ 35.37891150748316, 1.945238511320779 ], [ 35.376714242483153, 1.942675035320744 ], [ 35.375493539483152, 1.93864671432078 ], [ 35.375127328483181, 1.934252183320777 ], [ 35.373540414483152, 1.931017320320732 ], [ 35.370122445483155, 1.92802659732075 ], [ 35.372685921483189, 1.923632066320747 ], [ 35.445928109483184, 1.855272691320747 ], [ 35.45313025748316, 1.847216050320751 ], [ 35.454106820483155, 1.84404222232075 ], [ 35.457097543483194, 1.845018785320744 ], [ 35.459905160483167, 1.841844956320754 ], [ 35.461919320483155, 1.839220445320732 ], [ 35.464726937483185, 1.840074937320762 ], [ 35.467900765483186, 1.840258042320781 ], [ 35.470098031483182, 1.837450425320751 ], [ 35.473699105483199, 1.834642808320777 ], [ 35.474126351483157, 1.830675523320733 ], [ 35.476140511483202, 1.825670640320763 ], [ 35.476506722483172, 1.821276109320761 ], [ 35.475286019483171, 1.817430894320748 ], [ 35.471745980483199, 1.815416734320761 ], [ 35.473943246483195, 1.812670152320775 ], [ 35.476933968483188, 1.810472886320779 ], [ 35.475286019483171, 1.807421128320752 ], [ 35.474736703483181, 1.804674546320766 ], [ 35.47211219148317, 1.802660386320779 ], [ 35.4749198084832, 1.801439683320777 ], [ 35.476323617483153, 1.798265855320776 ], [ 35.4827323084832, 1.795458238320746 ], [ 35.483342660483167, 1.792040269320748 ], [ 35.485112679483159, 1.789232652320775 ], [ 35.486516488483169, 1.785631577320769 ], [ 35.48914100048318, 1.783434312320762 ], [ 35.491338265483186, 1.780016343320765 ], [ 35.49414588248316, 1.776842515320763 ], [ 35.496892464483203, 1.774645249320767 ], [ 35.496526254483165, 1.771044175320751 ], [ 35.497319711483151, 1.767443101320734 ], [ 35.500920785483167, 1.765245835320738 ], [ 35.504704964483203, 1.763842027320775 ], [ 35.507146371483195, 1.766039292320781 ], [ 35.516545785483167, 1.767626206320754 ], [ 35.520513070483155, 1.766039292320781 ], [ 35.524114144483171, 1.764025132320737 ], [ 35.527715218483188, 1.762438218320765 ], [ 35.532292855483199, 1.762072007320737 ], [ 35.537908089483203, 1.763231675320751 ], [ 35.541692269483171, 1.762438218320765 ], [ 35.545537484483184, 1.762438218320765 ], [ 35.550115121483195, 1.764025132320737 ], [ 35.553288949483196, 1.763048570320732 ], [ 35.556523812483185, 1.76182786732073 ], [ 35.561345589483203, 1.760424058320777 ], [ 35.564702523483156, 1.759020249320767 ], [ 35.568120492483153, 1.758226792320781 ], [ 35.571294320483155, 1.76005784732075 ], [ 35.5745291834832, 1.76005784732075 ], [ 35.578923714483203, 1.759020249320767 ], [ 35.58289100048318, 1.757860581320754 ], [ 35.586125863483169, 1.758470933320777 ], [ 35.590520394483171, 1.76005784732075 ], [ 35.594914925483174, 1.761217515320763 ], [ 35.599309457483166, 1.759264390320763 ], [ 35.602117074483196, 1.756029527320775 ], [ 35.603887093483188, 1.753221910320744 ], [ 35.6077323084832, 1.750658433320777 ], [ 35.612309945483155, 1.749071519320748 ], [ 35.615300668483194, 1.749071519320748 ], [ 35.618108285483167, 1.747667710320738 ], [ 35.621526254483165, 1.748033921320766 ], [ 35.626103890483186, 1.746447007320737 ], [ 35.631291879483165, 1.74424974232073 ], [ 35.635686410483167, 1.743639390320763 ], [ 35.639104379483165, 1.742662827320769 ], [ 35.641545785483167, 1.740465562320762 ], [ 35.64789344148317, 1.739855210320738 ], [ 35.6507010584832, 1.738634507320737 ], [ 35.653142464483203, 1.735826890320763 ], [ 35.656133187483185, 1.734056870320783 ], [ 35.659490121483195, 1.731676499320767 ], [ 35.664128793483194, 1.730638902320775 ], [ 35.668706429483159, 1.72862474232073 ], [ 35.671697152483198, 1.726061265320763 ], [ 35.672917855483199, 1.723253648320733 ], [ 35.675542367483153, 1.72044603132076 ], [ 35.680120004483165, 1.71885911732073 ], [ 35.689519418483194, 1.71122972232075 ], [ 35.692327035483167, 1.70982591332074 ], [ 35.696294320483155, 1.707262437320762 ], [ 35.701543343483188, 1.705065171320766 ], [ 35.704717171483189, 1.702257554320736 ], [ 35.70789100048318, 1.70006028832074 ], [ 35.710698617483153, 1.697618882320737 ], [ 35.71289588248316, 1.69542161732073 ], [ 35.716313851483157, 1.692858140320763 ], [ 35.719487679483159, 1.689440171320766 ], [ 35.722295296483189, 1.687426011320779 ], [ 35.725286019483171, 1.686815660320744 ], [ 35.729131234483184, 1.684252183320777 ], [ 35.732488168483194, 1.681261460320738 ], [ 35.736089242483153, 1.67943040632076 ], [ 35.740300668483194, 1.676866929320736 ], [ 35.744328988483169, 1.675646226320734 ], [ 35.751897347483172, 1.673876206320754 ], [ 35.755132211483151, 1.672228257320737 ], [ 35.758489144483171, 1.67161790632076 ], [ 35.761296761483202, 1.669847886320779 ], [ 35.764287484483184, 1.667223374320767 ], [ 35.7678885584832, 1.666246812320762 ], [ 35.773320687483185, 1.663622300320751 ], [ 35.778325570483155, 1.662462632320737 ], [ 35.781316293483194, 1.662035386320779 ], [ 35.784123910483167, 1.658861558320777 ], [ 35.786321175483174, 1.654467027320775 ], [ 35.781926644483171, 1.653856675320751 ], [ 35.780339730483199, 1.651049058320777 ], [ 35.781133187483185, 1.646654527320775 ], [ 35.778325570483155, 1.642626206320754 ], [ 35.778142464483203, 1.639635484320761 ], [ 35.782903207483166, 1.631639878320752 ], [ 35.786138070483155, 1.630846421320766 ], [ 35.788945687483185, 1.628832261320779 ], [ 35.790898812483185, 1.625231187320762 ], [ 35.788945687483185, 1.622850816320747 ], [ 35.785893929483159, 1.622423570320732 ], [ 35.782292855483199, 1.62224046432078 ], [ 35.781133187483185, 1.618456285320744 ], [ 35.781926644483171, 1.614244859320761 ], [ 35.784490121483195, 1.610826890320763 ], [ 35.786321175483174, 1.607469956320754 ], [ 35.784307015483186, 1.603868882320737 ], [ 35.78070594148317, 1.602037827320769 ], [ 35.782536996483195, 1.598070542320781 ], [ 35.781499398483156, 1.59404222232075 ], [ 35.782720101483157, 1.590441148320733 ], [ 35.780095589483203, 1.586656968320765 ], [ 35.78210975048318, 1.583422105320776 ], [ 35.783330453483181, 1.578051011320779 ], [ 35.780339730483199, 1.575243394320748 ], [ 35.78070594148317, 1.570665757320737 ], [ 35.776128304483159, 1.567675035320744 ], [ 35.776311410483167, 1.560045640320763 ], [ 35.774907601483157, 1.554857652320775 ], [ 35.774541390483186, 1.550646226320734 ], [ 35.77148963248316, 1.547655503320752 ], [ 35.769719613483169, 1.543871324320773 ], [ 35.768926156483182, 1.539659898320733 ], [ 35.769902718483188, 1.535631577320769 ], [ 35.769719613483169, 1.532030503320752 ], [ 35.766911996483195, 1.531053941320747 ], [ 35.764104379483165, 1.529650132320737 ], [ 35.763921273483156, 1.526049058320777 ], [ 35.763310921483189, 1.52263108932078 ], [ 35.761540902483198, 1.519457261320779 ], [ 35.761540902483198, 1.516222398320733 ], [ 35.758306039483152, 1.515428941320747 ], [ 35.756108773483156, 1.513658921320766 ], [ 35.754704964483203, 1.509630601320734 ], [ 35.752324593483188, 1.507250230320776 ], [ 35.753118050483174, 1.504076402320775 ], [ 35.748540414483152, 1.502855699320773 ], [ 35.743535531483182, 1.501268785320744 ], [ 35.7424979334832, 1.49724046432078 ], [ 35.740117562483185, 1.495653550320751 ], [ 35.737920296483189, 1.49302903832074 ], [ 35.736089242483153, 1.489855210320738 ], [ 35.730718148483156, 1.48521653832074 ], [ 35.730535043483194, 1.482225816320747 ], [ 35.727910462483173, 1.478560368320754 ], [ 35.724736703483181, 1.473070542320781 ], [ 35.721929086483151, 1.47184983932078 ], [ 35.719914925483174, 1.469469468320765 ], [ 35.720342171483189, 1.466051499320767 ], [ 35.72211219148317, 1.463671128320752 ], [ 35.723332894483171, 1.46104661732073 ], [ 35.723943246483195, 1.456652085320738 ], [ 35.721501839483203, 1.454637925320751 ], [ 35.721318734483184, 1.450670640320763 ], [ 35.719731820483155, 1.448229234320761 ], [ 35.716924203483181, 1.447435777320775 ], [ 35.714016604483156, 1.445772787320775 ], [ 35.713247394483169, 1.441686358320735 ], [ 35.711083990483182, 1.43875374532075 ], [ 35.70757446948317, 1.436638417320748 ], [ 35.708501351483157, 1.433641831320754 ], [ 35.709111703483181, 1.429674546320766 ], [ 35.70648719148317, 1.425829331320754 ], [ 35.707524789483152, 1.42302171432078 ], [ 35.708318246483195, 1.419237535320744 ], [ 35.707097543483194, 1.416246812320762 ], [ 35.708501351483157, 1.413072984320761 ], [ 35.711708974483194, 1.411542937320744 ], [ 35.711180142483151, 1.408610324320759 ], [ 35.708151377483198, 1.407456508320761 ], [ 35.707766772483176, 1.40442774432074 ], [ 35.711035915483187, 1.401014374320764 ], [ 35.708055226483161, 1.400100937320756 ], [ 35.70453406648317, 1.399462144320748 ], [ 35.70313025748316, 1.395433824320773 ], [ 35.702863057483164, 1.392456911320776 ], [ 35.700505746483195, 1.389452378320752 ], [ 35.699895394483171, 1.38646165632076 ], [ 35.702519906483182, 1.38487474232073 ], [ 35.701726449483196, 1.380663316320747 ], [ 35.696538461483151, 1.374620835320738 ], [ 35.695134652483198, 1.37083665632076 ], [ 35.694890511483202, 1.366625230320776 ], [ 35.692143929483159, 1.363451402320775 ], [ 35.691106332483166, 1.359056870320783 ], [ 35.688680746483151, 1.356544414320749 ], [ 35.689065351483173, 1.353323347320779 ], [ 35.690740121483195, 1.350267808320777 ], [ 35.688725961483151, 1.346056382320737 ], [ 35.68973841048318, 1.34322746432076 ], [ 35.690747998483168, 1.341496742320769 ], [ 35.693730843483188, 1.33763353132076 ], [ 35.69672156648317, 1.336473863320746 ], [ 35.696111214483203, 1.333422105320776 ], [ 35.698392024483205, 1.32861247232074 ], [ 35.700688851483157, 1.32506028832074 ], [ 35.698173432483195, 1.322455656320753 ], [ 35.697912554483189, 1.31626571732073 ], [ 35.691899789483152, 1.316820542320781 ], [ 35.688115609483184, 1.316454331320754 ], [ 35.682134164483152, 1.315416734320761 ], [ 35.678899300483174, 1.315050523320733 ], [ 35.672124398483156, 1.313463609320761 ], [ 35.656133187483185, 1.307421128320752 ], [ 35.644109261483202, 1.302233140320763 ], [ 35.639104379483165, 1.300646226320734 ], [ 35.635930550483174, 1.300218980320776 ], [ 35.632512582483166, 1.298876206320754 ], [ 35.630498421483189, 1.295824449320773 ], [ 35.627690804483159, 1.293444077320769 ], [ 35.624516976483157, 1.292650620320783 ], [ 35.62109900748316, 1.290270249320767 ], [ 35.616887582483166, 1.286669175320751 ], [ 35.614934457483166, 1.282640855320776 ], [ 35.612920296483189, 1.279650132320737 ], [ 35.608791803483193, 1.277800264320772 ], [ 35.604131234483184, 1.27763597232075 ], [ 35.594121468483188, 1.279467027320775 ], [ 35.589910043483194, 1.280870835320738 ], [ 35.58829269348319, 1.281886688320751 ], [ 35.583745492483153, 1.286669175320751 ], [ 35.5797179014832, 1.289188659320755 ], [ 35.572331918483194, 1.289659898320733 ], [ 35.569097054483159, 1.290026109320761 ], [ 35.561345589483203, 1.287462632320737 ], [ 35.558110726483157, 1.284227769320748 ], [ 35.553288949483196, 1.284227769320748 ], [ 35.546086800483174, 1.284655015320763 ], [ 35.539739144483171, 1.280870835320738 ], [ 35.500920785483167, 1.250658433320777 ], [ 35.476689828483181, 1.230028550320751 ], [ 35.46791066348316, 1.222868008320743 ], [ 35.459538949483196, 1.215624253320752 ], [ 35.453306722483198, 1.209402906320745 ], [ 35.445928109483184, 1.204454820320732 ], [ 35.436559083483182, 1.196674701320771 ], [ 35.428288949483196, 1.190050523320733 ], [ 35.423428934483177, 1.185018344320779 ], [ 35.418889535483167, 1.182238023320733 ], [ 35.410893929483159, 1.175829331320754 ], [ 35.403325570483155, 1.169420640320763 ], [ 35.390508187483185, 1.159227769320748 ], [ 35.386907113483169, 1.156237046320766 ], [ 35.379664742483151, 1.149748453320737 ], [ 35.371526254483165, 1.14341966332074 ], [ 35.364507211483151, 1.137621324320773 ], [ 35.357982981483183, 1.131452135320783 ], [ 35.346694181483194, 1.126784192320767 ], [ 35.343121776483194, 1.125641022320733 ], [ 35.318486703483181, 1.167467515320763 ], [ 35.315923226483157, 1.169420640320763 ], [ 35.311894906483182, 1.169847886320779 ], [ 35.308278790483193, 1.171734346320759 ], [ 35.305250206483201, 1.167117601320738 ], [ 35.30414344148317, 1.164049546320766 ], [ 35.303105843483188, 1.16026536732073 ], [ 35.302922738483169, 1.156420152320775 ], [ 35.300908578483181, 1.153673570320732 ], [ 35.29968787548318, 1.150865952320769 ], [ 35.298528207483166, 1.146654527320775 ], [ 35.296086800483174, 1.14427415632076 ], [ 35.295537484483184, 1.140673081320754 ], [ 35.294316781483182, 1.137072007320737 ], [ 35.291509164483152, 1.134447495320783 ], [ 35.287908089483203, 1.134020249320767 ], [ 35.267705453483181, 1.14427415632076 ], [ 35.261540902483198, 1.147020738320746 ], [ 35.25531531648317, 1.148424546320766 ], [ 35.249089730483199, 1.151842515320763 ], [ 35.225286019483171, 1.163072984320761 ], [ 35.201116097483172, 1.174852769320748 ], [ 35.152287972483172, 1.198229234320761 ], [ 35.146733773483156, 1.194628160320744 ], [ 35.13171912548318, 1.18583909732075 ], [ 35.124516976483157, 1.183824937320762 ], [ 35.12109900748316, 1.18583909732075 ], [ 35.11609412548318, 1.186022202320769 ], [ 35.10632850048318, 1.182238023320733 ], [ 35.102727425483174, 1.183458726320734 ], [ 35.091741097483172, 1.181871812320762 ], [ 35.088506234483184, 1.179857652320775 ], [ 35.086736214483203, 1.172655503320752 ], [ 35.085698617483153, 1.167223374320767 ], [ 35.082707894483171, 1.169847886320779 ], [ 35.079717171483189, 1.172838609320761 ], [ 35.073918832483166, 1.17662278832074 ], [ 35.070134652483198, 1.17784349232073 ], [ 35.066106332483166, 1.177660386320779 ], [ 35.062139046483189, 1.17943040632076 ], [ 35.056706918483194, 1.183641831320754 ], [ 35.052312386483202, 1.187670152320775 ], [ 35.049321664483152, 1.190843980320776 ], [ 35.046941293483194, 1.193041245320783 ], [ 35.043889535483167, 1.193834702320769 ], [ 35.042119515483186, 1.196825425320751 ], [ 35.039495004483165, 1.199449937320762 ], [ 35.038335336483151, 1.202440660320744 ], [ 35.044316781483182, 1.21403733932078 ], [ 35.041509164483152, 1.216417710320738 ], [ 35.025945199483196, 1.231859605320776 ], [ 35.019902718483188, 1.242052476320734 ], [ 35.013738168483194, 1.253038804320736 ], [ 35.0003104334832, 1.255846421320766 ], [ 34.994695199483196, 1.256822984320761 ], [ 34.980290902483198, 1.25084153832074 ], [ 34.970525277483198, 1.246263902320775 ], [ 34.959722054483159, 1.248033921320766 ], [ 34.955693734483184, 1.248461167320781 ], [ 34.950322640483186, 1.249620835320738 ], [ 34.939092171483189, 1.251268785320744 ], [ 34.934087289483152, 1.25084153832074 ], [ 34.917729867483153, 1.250231187320762 ], [ 34.908696664483152, 1.250231187320762 ], [ 34.90570594148317, 1.250048081320754 ], [ 34.906926644483171, 1.269030015320763 ], [ 34.907292855483199, 1.281237046320766 ], [ 34.903935921483189, 1.280626695320732 ], [ 34.896733773483156, 1.278673570320732 ], [ 34.833501351483157, 1.263048570320732 ], [ 34.819524300483174, 1.258470933320777 ], [ 34.829106820483155, 1.265856187320762 ], [ 34.831304086483151, 1.26964036732073 ], [ 34.829717171483189, 1.273241441320747 ], [ 34.828923714483203, 1.284655015320763 ], [ 34.828923714483203, 1.293871324320773 ], [ 34.82953406648317, 1.297228257320737 ], [ 34.830327523483156, 1.300218980320776 ], [ 34.830693734483184, 1.304064195320732 ], [ 34.828923714483203, 1.308824937320762 ], [ 34.822698129483165, 1.315843980320776 ], [ 34.818303597483172, 1.322435777320775 ], [ 34.812322152483198, 1.329637925320751 ], [ 34.806706918483194, 1.337267320320732 ], [ 34.804509652483198, 1.341051499320767 ], [ 34.802129281483182, 1.344469468320765 ], [ 34.796697152483198, 1.353075425320751 ], [ 34.793096078483181, 1.357653062320762 ], [ 34.785710824483196, 1.36607591332074 ], [ 34.782292855483199, 1.372057359320761 ], [ 34.781133187483185, 1.376451890320763 ], [ 34.776738656483182, 1.383226792320781 ], [ 34.777532113483169, 1.387621324320773 ], [ 34.778142464483203, 1.392443101320734 ], [ 34.779119027483198, 1.395616929320736 ], [ 34.781499398483156, 1.39763108932078 ], [ 34.7835135584832, 1.400438706320754 ], [ 34.786321175483174, 1.403673570320732 ], [ 34.788701546483189, 1.406053941320747 ], [ 34.791692269483171, 1.407823960320738 ], [ 34.793889535483167, 1.410021226320734 ], [ 34.795537484483184, 1.413439195320732 ], [ 34.797124398483156, 1.416246812320762 ], [ 34.798894418483194, 1.418627183320777 ], [ 34.801518929483159, 1.42106858932078 ], [ 34.804936898483156, 1.423265855320776 ], [ 34.808110726483157, 1.424852769320748 ], [ 34.814702523483156, 1.427416245320783 ], [ 34.818303597483172, 1.429674546320766 ], [ 34.821294320483155, 1.432848374320767 ], [ 34.822942269483171, 1.436815660320744 ], [ 34.825322640483186, 1.440416734320761 ], [ 34.82953406648317, 1.44365159732075 ], [ 34.833135140483186, 1.447069566320747 ], [ 34.836308968483188, 1.448839585320738 ], [ 34.839543832483166, 1.449449937320762 ], [ 34.843511117483153, 1.449266831320754 ], [ 34.847539437483185, 1.449816148320733 ], [ 34.850286019483171, 1.453051011320779 ], [ 34.852117074483196, 1.456652085320738 ], [ 34.85352088248316, 1.460436265320763 ], [ 34.853703988483169, 1.464830796320766 ], [ 34.854741586483151, 1.470262925320751 ], [ 34.85632850048318, 1.474047105320776 ], [ 34.856511605483199, 1.477648179320736 ], [ 34.855107796483189, 1.487230699320773 ], [ 34.854741586483151, 1.490831773320733 ], [ 34.85492469148317, 1.494066636320779 ], [ 34.85632850048318, 1.497667710320738 ], [ 34.857305062483185, 1.50084153832074 ], [ 34.861516488483169, 1.516222398320733 ], [ 34.863896859483184, 1.52623216332074 ], [ 34.889897836483151, 1.553453843320765 ], [ 34.894109261483202, 1.55302659732075 ], [ 34.90570594148317, 1.55107347232075 ], [ 34.917302621483195, 1.557665269320748 ], [ 34.920537484483184, 1.557848374320767 ], [ 34.92273475048318, 1.56083909732075 ], [ 34.929936898483156, 1.565660874320767 ], [ 34.943730843483188, 1.575853745320783 ], [ 34.94672156648317, 1.580858628320752 ], [ 34.951543343483188, 1.586473863320746 ], [ 34.95453406648317, 1.59385911732073 ], [ 34.96094275748316, 1.604051988320746 ], [ 34.962529671483189, 1.607653062320762 ], [ 34.967534554483159, 1.617052476320734 ], [ 34.98914100048318, 1.660021226320734 ], [ 34.99109412548318, 1.664232652320775 ], [ 34.991887582483166, 1.67003099232073 ], [ 34.993718636483202, 1.68864671432078 ], [ 34.993901742483153, 1.693041245320783 ], [ 34.994695199483196, 1.701830308320777 ], [ 34.995305550483174, 1.706468980320776 ], [ 34.995488656483182, 1.710863511320779 ], [ 34.997136605483199, 1.72862474232073 ], [ 34.999516976483157, 1.746630113320746 ], [ 35.000920785483167, 1.837023179320736 ], [ 35.010137093483188, 1.862230699320773 ], [ 35.02930213248316, 1.920275132320737 ], [ 35.011907113483169, 1.940660874320767 ], [ 34.993291390483186, 1.964220445320732 ], [ 34.984136117483153, 1.979051988320746 ], [ 34.983891976483157, 1.998217027320775 ], [ 34.983525765483186, 2.007860581320752 ], [ 34.983098519483171, 2.014452378320751 ], [ 34.983891976483157, 2.018846910320743 ], [ 34.982488168483194, 2.023241441320746 ], [ 34.982121957483166, 2.034044663320739 ], [ 34.981694711483151, 2.03862230032075 ], [ 34.981145394483171, 2.050829331320752 ], [ 34.975896371483195, 2.073656480320775 ], [ 34.973699105483199, 2.084276597320748 ], [ 34.9671073084832, 2.113817613320745 ], [ 34.96094275748316, 2.140673081320752 ], [ 34.959905160483167, 2.147631089320779 ], [ 34.958318246483195, 2.153063218320764 ], [ 34.955693734483184, 2.164232652320774 ], [ 34.952092660483167, 2.180223863320745 ], [ 34.951116097483172, 2.185228745320782 ], [ 34.949895394483171, 2.189623277320774 ], [ 34.949101937483185, 2.194017808320776 ], [ 34.947087777483198, 2.203234117320729 ], [ 34.945928109483184, 2.210619370320782 ], [ 34.945134652483198, 2.218065660320743 ], [ 34.944097054483159, 2.22221605032075 ], [ 34.940495980483199, 2.244249742320729 ], [ 34.93750525748316, 2.261034410320743 ], [ 34.936894906483182, 2.265428941320746 ], [ 34.936711800483174, 2.269274156320758 ], [ 34.935491097483172, 2.274462144320747 ], [ 34.934697640483186, 2.279039781320758 ], [ 34.930730355483199, 2.302843492320729 ], [ 34.92914344148317, 2.313646714320779 ], [ 34.927922738483169, 2.31987230032075 ], [ 34.9260916834832, 2.331224839320779 ], [ 34.925298226483157, 2.336473863320745 ], [ 34.925298226483157, 2.342028062320761 ], [ 34.923345101483157, 2.347826402320774 ], [ 34.920293343483188, 2.366075913320739 ], [ 34.919499886483202, 2.37205735932076 ], [ 34.917485726483157, 2.384630601320733 ], [ 34.917729867483153, 2.390428941320746 ], [ 34.914739144483171, 2.394640367320729 ], [ 34.914128793483194, 2.399462144320747 ], [ 34.91492225048318, 2.404222886320778 ], [ 34.915898812483185, 2.408251206320752 ], [ 34.916692269483171, 2.412828843320764 ], [ 34.9163260584832, 2.417223374320766 ], [ 34.916509164483152, 2.421068589320779 ], [ 34.922917855483199, 2.424852769320747 ], [ 34.925908578483181, 2.426256577320768 ], [ 34.928899300483174, 2.427233140320762 ], [ 34.931523812483185, 2.430040757320736 ], [ 34.93109656648317, 2.433275620320782 ], [ 34.930913461483151, 2.436449449320772 ], [ 34.934331429483159, 2.436815660320743 ], [ 34.936711800483174, 2.439073960320737 ], [ 34.936894906483182, 2.442675035320743 ], [ 34.939336312483185, 2.446459214320779 ], [ 34.942510140483186, 2.449022691320746 ], [ 34.944890511483202, 2.452440660320743 ], [ 34.952703011483202, 2.452623765320762 ], [ 34.966741097483172, 2.443468492320729 ], [ 34.970891488483169, 2.44182054232078 ], [ 34.974492562483185, 2.441454331320752 ], [ 34.978703988483169, 2.44041673432076 ], [ 34.983098519483171, 2.439623277320774 ], [ 35.022099984483184, 2.430834214320779 ], [ 35.026311410483167, 2.430834214320779 ], [ 35.026311410483167, 2.434862535320743 ], [ 35.0257010584832, 2.438219468320764 ], [ 35.023320687483185, 2.441271226320733 ], [ 35.022527230483199, 2.44487230032075 ], [ 35.021306527483198, 2.449022691320746 ], [ 35.020329964483203, 2.453417222320748 ], [ 35.020329964483203, 2.457018296320765 ], [ 35.022527230483199, 2.461046617320729 ], [ 35.021123421483189, 2.465441148320732 ], [ 35.020085824483196, 2.469469468320764 ], [ 35.02094031648317, 2.474657456320752 ], [ 35.021123421483189, 2.481249253320751 ], [ 35.019902718483188, 2.486864488320745 ], [ 35.016301644483171, 2.495226304320735 ], [ 35.01953650748316, 2.503832261320778 ], [ 35.020329964483203, 2.506639878320751 ], [ 35.022099984483184, 2.509020249320766 ], [ 35.027898324483196, 2.514818589320779 ], [ 35.029729379483165, 2.517443101320733 ], [ 35.035527718483188, 2.526842515320762 ], [ 35.039311898483156, 2.531420152320774 ], [ 35.042912972483172, 2.537828843320764 ], [ 35.046514046483189, 2.545030992320729 ], [ 35.050115121483195, 2.549425523320732 ], [ 35.054509652483198, 2.557421128320751 ], [ 35.05609656648317, 2.561266343320764 ], [ 35.056706918483194, 2.564623277320774 ], [ 35.0589041834832, 2.57127610932076 ], [ 35.0589041834832, 2.576830308320776 ], [ 35.057134164483152, 2.584825913320739 ], [ 35.058721078483181, 2.591844956320752 ], [ 35.060491097483172, 2.596849839320779 ], [ 35.060918343483188, 2.600267808320776 ], [ 35.060307992483153, 2.605272691320746 ], [ 35.062322152483198, 2.609056870320782 ], [ 35.064092171483189, 2.61284105032075 ], [ 35.064702523483156, 2.616259019320747 ], [ 35.0667166834832, 2.618822495320782 ], [ 35.071111214483203, 2.619860093320764 ], [ 35.074895394483171, 2.62205735932076 ], [ 35.077519906483182, 2.624864976320733 ], [ 35.08093787548318, 2.632067124320766 ], [ 35.085088265483186, 2.635240952320768 ], [ 35.093694222483172, 2.63963548432076 ], [ 35.096318734483184, 2.642443101320733 ], [ 35.0999198084832, 2.643846910320743 ], [ 35.105535043483194, 2.644457261320778 ], [ 35.108708871483195, 2.645433824320772 ], [ 35.111089242483153, 2.647631089320779 ], [ 35.11328650748316, 2.650255601320733 ], [ 35.120915902483198, 2.648058335320737 ], [ 35.125127328483181, 2.64604417532075 ], [ 35.129521859483184, 2.644274156320758 ], [ 35.143315804483159, 2.636034410320743 ], [ 35.1507010584832, 2.630846421320765 ], [ 35.155889046483189, 2.627855699320772 ], [ 35.158086312483185, 2.626024644320747 ], [ 35.162908089483203, 2.619860093320764 ], [ 35.166936410483167, 2.615038316320746 ], [ 35.170903695483155, 2.608019273320732 ], [ 35.178288949483196, 2.596849839320779 ], [ 35.183110726483157, 2.585863511320778 ], [ 35.1839041834832, 2.582628648320732 ], [ 35.186528695483155, 2.576464097320748 ], [ 35.18750525748316, 2.569017808320776 ], [ 35.192937386483202, 2.564257066320746 ], [ 35.195134652483198, 2.561266343320764 ], [ 35.203740609483184, 2.551439683320776 ], [ 35.208318246483195, 2.545824449320772 ], [ 35.213506234483184, 2.54002610932076 ], [ 35.214543832483166, 2.534227769320747 ], [ 35.215337289483152, 2.518236558320776 ], [ 35.215520394483171, 2.502245347320748 ], [ 35.215886605483199, 2.49705735932076 ], [ 35.216496957483166, 2.492662827320768 ], [ 35.219121468483188, 2.484850327320768 ], [ 35.220891488483169, 2.476427476320733 ], [ 35.221318734483184, 2.473253648320732 ], [ 35.221501839483203, 2.465868394320747 ], [ 35.222722543483194, 2.461229722320748 ], [ 35.224309457483166, 2.456468980320775 ], [ 35.226933968483188, 2.452440660320743 ], [ 35.229131234483184, 2.448473374320766 ], [ 35.232488168483194, 2.445238511320778 ], [ 35.241704476483157, 2.443651597320748 ], [ 35.246709359483184, 2.442064683320776 ], [ 35.249944222483172, 2.43846360932076 ], [ 35.254521859483184, 2.43705980032075 ], [ 35.259148326483164, 2.436028305320743 ] ] ] } } +, +{ "type": "Feature", "id": 24, "properties": { "OBJECTID": 25, "ID_": 401, "COUNTY_NAM": "SAMBURU", "CONST_CODE": 134, "CONSTITUEN": "SAMBURU NORTH", "COUNTY_COD": 25, "Shape_Leng": 7.83144153059, "Shape_Area": 1.70766586839 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.758973688483188, 2.512693569320728 ], [ 36.766118539483152, 2.491259019320747 ], [ 36.771123421483189, 2.48002855032075 ], [ 36.775945199483196, 2.467028062320761 ], [ 36.786687386483202, 2.436632554320735 ], [ 36.789495004483165, 2.42924730032075 ], [ 36.796697152483198, 2.408861558320776 ], [ 36.805730355483199, 2.384020249320766 ], [ 36.81531287548318, 2.354235093320764 ], [ 36.825932992483153, 2.328051011320778 ], [ 36.835698617483153, 2.300829331320752 ], [ 36.845342171483189, 2.27244798432076 ], [ 36.85352088248316, 2.26323167532075 ], [ 36.865300668483194, 2.252062242320729 ], [ 36.8831229334832, 2.213426988320745 ], [ 36.8928885584832, 2.193224351320733 ], [ 36.895513070483155, 2.190233628320751 ], [ 36.901128304483159, 2.16166917532075 ], [ 36.902287972483172, 2.154833238320745 ], [ 36.914495004483165, 2.124071519320747 ], [ 36.912541879483165, 2.105455796320765 ], [ 36.912541879483165, 2.102465074320772 ], [ 36.915105355483199, 2.099657456320752 ], [ 36.918340218483188, 2.099047105320775 ], [ 36.919744027483198, 2.093248765320762 ], [ 36.919744027483198, 2.088243882320736 ], [ 36.919499886483202, 2.082262437320761 ], [ 36.920903695483155, 2.07322923432076 ], [ 36.921086800483174, 2.067675035320743 ], [ 36.922124398483156, 2.062426011320778 ], [ 36.922307504483165, 2.056444566320746 ], [ 36.920293343483188, 2.051073472320748 ], [ 36.920903695483155, 2.047228257320736 ], [ 36.920720589483203, 2.042040269320747 ], [ 36.91992713248316, 2.03807298432076 ], [ 36.920110238483169, 2.032274644320747 ], [ 36.919316781483182, 2.028429429320735 ], [ 36.917119515483186, 2.020067613320745 ], [ 36.918096078483181, 2.016222398320732 ], [ 36.921697152483198, 2.015428941320746 ], [ 36.925115121483195, 2.015673081320752 ], [ 36.928716195483155, 2.017015855320775 ], [ 36.934697640483186, 2.02104417532075 ], [ 36.938115609483184, 2.022875230320775 ], [ 36.941106332483166, 2.02385179232078 ], [ 36.94812537548318, 2.024462144320747 ], [ 36.952703011483202, 2.022875230320775 ], [ 36.956731332483166, 2.019823472320748 ], [ 36.961492074483196, 2.015673081320752 ], [ 36.964116586483151, 2.014025132320736 ], [ 36.971501839483203, 2.009874742320729 ], [ 36.977117074483196, 2.00627366732078 ], [ 36.998296273483156, 1.99724046432078 ], [ 37.002690804483159, 1.990465562320762 ], [ 37.004888070483155, 1.988268296320766 ], [ 37.009099496483195, 1.983629624320767 ], [ 37.012090218483188, 1.982042710320738 ], [ 37.032903207483166, 1.981066148320733 ], [ 37.067327035483167, 1.980455796320766 ], [ 37.072515023483156, 1.980028550320751 ], [ 37.075932992483153, 1.980028550320751 ], [ 37.07953406648317, 1.979418199320773 ], [ 37.09070350048318, 1.973863999320767 ], [ 37.095098031483182, 1.972032945320732 ], [ 37.102300179483159, 1.970018785320744 ], [ 37.105718148483156, 1.969469468320765 ], [ 37.109136117483153, 1.968676011320779 ], [ 37.115727916483188, 1.967455307320731 ], [ 37.120305550483174, 1.966234605320776 ], [ 37.122930062483185, 1.964830796320766 ], [ 37.129521859483184, 1.96403733932078 ], [ 37.134709847483172, 1.963060777320775 ], [ 37.1507010584832, 1.962450425320751 ], [ 37.155522836483151, 1.961840074320773 ], [ 37.158940804483159, 1.96122972232075 ], [ 37.161931527483198, 1.961840074320773 ], [ 37.162908089483203, 1.955431382320737 ], [ 37.163701546483189, 1.942064683320777 ], [ 37.164311898483156, 1.93864671432078 ], [ 37.165532601483157, 1.93583909732075 ], [ 37.167912972483172, 1.931444566320747 ], [ 37.172124398483156, 1.924852769320748 ], [ 37.173894418483194, 1.922655503320752 ], [ 37.177495492483153, 1.919054429320736 ], [ 37.181706918483194, 1.915636460320738 ], [ 37.184697640483186, 1.913622300320751 ], [ 37.18750525748316, 1.911425035320744 ], [ 37.191106332483166, 1.909227769320748 ], [ 37.196904671483189, 1.905016343320765 ], [ 37.202092660483167, 1.901842515320763 ], [ 37.208318246483195, 1.897447984320761 ], [ 37.213506234483184, 1.894030015320763 ], [ 37.216924203483181, 1.891222398320733 ], [ 37.221135629483165, 1.888231675320751 ], [ 37.224309457483166, 1.88365403832074 ], [ 37.230290902483198, 1.874437730320776 ], [ 37.232488168483194, 1.871630113320746 ], [ 37.23633338248316, 1.86943284732075 ], [ 37.247319711483151, 1.86924974232073 ], [ 37.250920785483167, 1.868639390320763 ], [ 37.25531531648317, 1.868639390320763 ], [ 37.264104379483165, 1.86802903832074 ], [ 37.27148963248316, 1.867845933320777 ], [ 37.274541390483186, 1.867235581320754 ], [ 37.2757010584832, 1.864061753320752 ], [ 37.277287972483172, 1.85826341332074 ], [ 37.278325570483155, 1.853868882320737 ], [ 37.282292855483199, 1.839220445320732 ], [ 37.284490121483195, 1.830065171320766 ], [ 37.290715707483166, 1.806627671320766 ], [ 37.290715707483166, 1.801439683320777 ], [ 37.293096078483181, 1.796862046320766 ], [ 37.298894418483194, 1.775255601320734 ], [ 37.30469275748316, 1.75206224232073 ], [ 37.307134164483152, 1.748827378320752 ], [ 37.310735238483169, 1.747667710320738 ], [ 37.317693246483195, 1.745043199320773 ], [ 37.32031775748316, 1.743822495320783 ], [ 37.326543343483188, 1.741625230320776 ], [ 37.335088265483186, 1.73802415632076 ], [ 37.344914925483174, 1.734239976320734 ], [ 37.350530160483167, 1.731859605320776 ], [ 37.359746468483188, 1.72667161732073 ], [ 37.363530648483156, 1.721239488320746 ], [ 37.366338265483186, 1.716417710320738 ], [ 37.368901742483153, 1.712816636320779 ], [ 37.373540414483152, 1.705675523320733 ], [ 37.38171912548318, 1.69224778832074 ], [ 37.386113656483182, 1.68565599232073 ], [ 37.387517464483203, 1.683031480320776 ], [ 37.398137582483166, 1.66685716332074 ], [ 37.401128304483159, 1.66185228132076 ], [ 37.407720101483157, 1.651842515320763 ], [ 37.409734261483202, 1.647875230320776 ], [ 37.412724984483184, 1.643663804320736 ], [ 37.427312386483202, 1.62083665632076 ], [ 37.438542855483199, 1.604051988320746 ], [ 37.445500863483169, 1.593065660320744 ], [ 37.447698129483165, 1.589220445320732 ], [ 37.45313025748316, 1.581652085320738 ], [ 37.460698617483153, 1.569872300320751 ], [ 37.470891488483169, 1.555223863320746 ], [ 37.476140511483202, 1.546862046320766 ], [ 37.477910531483182, 1.542833726320734 ], [ 37.482915414483152, 1.533434312320762 ], [ 37.487493050483174, 1.524034898320733 ], [ 37.4924979334832, 1.514452378320752 ], [ 37.494328988483169, 1.510424058320777 ], [ 37.496343148483156, 1.506639878320752 ], [ 37.49750281648317, 1.503832261320779 ], [ 37.500493539483152, 1.498033921320766 ], [ 37.517705453483181, 1.467821519320748 ], [ 37.543340218483188, 1.421862046320766 ], [ 37.546697152483198, 1.416246812320762 ], [ 37.559331429483159, 1.393846910320744 ], [ 37.56250525748316, 1.391649644320748 ], [ 37.564519418483194, 1.38786546432078 ], [ 37.570134652483198, 1.386644761320779 ], [ 37.57312537548318, 1.381456773320733 ], [ 37.574895394483171, 1.378038804320736 ], [ 37.578740609483184, 1.376634995320783 ], [ 37.581914437483185, 1.371630113320746 ], [ 37.583318246483195, 1.367235581320754 ], [ 37.581731332483166, 1.363451402320775 ], [ 37.587529671483189, 1.364855210320738 ], [ 37.59070350048318, 1.372423570320732 ], [ 37.591496957483166, 1.376268785320744 ], [ 37.597905648483156, 1.382616441320747 ], [ 37.599126351483157, 1.38786546432078 ], [ 37.601506722483172, 1.386217515320763 ], [ 37.603337777483198, 1.380236070320732 ], [ 37.605107796483189, 1.376818101320734 ], [ 37.608342660483167, 1.373644273320733 ], [ 37.613103402483198, 1.372667710320738 ], [ 37.617314828483181, 1.374620835320738 ], [ 37.623540414483152, 1.37584153832074 ], [ 37.624516976483157, 1.38005296432078 ], [ 37.631536019483171, 1.381822984320761 ], [ 37.634099496483195, 1.385240952320769 ], [ 37.637700570483155, 1.387255113320746 ], [ 37.6409354334832, 1.388658921320766 ], [ 37.643743050483174, 1.391222398320733 ], [ 37.647527230483199, 1.395067613320746 ], [ 37.651738656483182, 1.397447984320761 ], [ 37.65570594148317, 1.398058335320738 ], [ 37.657292855483199, 1.395616929320736 ], [ 37.659917367483153, 1.393663804320736 ], [ 37.664311898483156, 1.395616929320736 ], [ 37.671086800483174, 1.396654527320775 ], [ 37.673528207483166, 1.399462144320748 ], [ 37.677495492483153, 1.400865952320769 ], [ 37.680486214483203, 1.398851792320781 ], [ 37.684331429483159, 1.396837632320737 ], [ 37.687932504483165, 1.39763108932078 ], [ 37.692510140483186, 1.399645249320767 ], [ 37.696111214483203, 1.400621812320762 ], [ 37.703313363483169, 1.402025620320783 ], [ 37.706120980483199, 1.403246324320773 ], [ 37.710332406483182, 1.404467027320775 ], [ 37.715520394483171, 1.40544358932078 ], [ 37.72070838248316, 1.40544358932078 ], [ 37.728337777483198, 1.40403978132076 ], [ 37.733525765483186, 1.40403978132076 ], [ 37.737920296483189, 1.404650132320737 ], [ 37.741338265483186, 1.406664292320781 ], [ 37.744328988483169, 1.408068101320734 ], [ 37.747685921483189, 1.410021226320734 ], [ 37.750920785483167, 1.41044847232075 ], [ 37.75531531648317, 1.409471910320744 ], [ 37.764714730483199, 1.411425035320744 ], [ 37.768132699483196, 1.411425035320744 ], [ 37.771306527483198, 1.411669175320751 ], [ 37.773931039483152, 1.41026536732073 ], [ 37.778325570483155, 1.410021226320734 ], [ 37.781316293483194, 1.414049546320766 ], [ 37.783940804483159, 1.416429917320781 ], [ 37.787908089483203, 1.413866441320747 ], [ 37.791936410483167, 1.412645738320746 ], [ 37.795293343483188, 1.41221849232073 ], [ 37.79968787548318, 1.414659898320733 ], [ 37.803899300483174, 1.415636460320738 ], [ 37.808293832483166, 1.415270249320767 ], [ 37.811345589483203, 1.415453355320776 ], [ 37.817510140483186, 1.419847886320779 ], [ 37.821294320483155, 1.42003099232073 ], [ 37.825505746483195, 1.418444077320769 ], [ 37.828740609483184, 1.418627183320777 ], [ 37.831304086483151, 1.42161790632076 ], [ 37.835332406483182, 1.422838609320761 ], [ 37.841496957483166, 1.422838609320761 ], [ 37.844304574483196, 1.423448960320738 ], [ 37.845098031483182, 1.42662278832074 ], [ 37.84570838248316, 1.430223863320746 ], [ 37.847722543483194, 1.43443528832074 ], [ 37.84711219148317, 1.439257066320747 ], [ 37.848943246483195, 1.442064683320777 ], [ 37.851140511483202, 1.444445054320736 ], [ 37.850713265483186, 1.449266831320754 ], [ 37.851933968483188, 1.453844468320765 ], [ 37.854131234483184, 1.456835191320747 ], [ 37.952336800483174, 1.38487474232073 ], [ 37.950932992483153, 1.349474351320734 ], [ 37.946904671483189, 1.261034410320744 ], [ 37.947087777483198, 1.253038804320736 ], [ 37.947942269483171, 1.232653062320762 ], [ 37.949895394483171, 1.191820542320781 ], [ 37.974126351483157, 1.159471910320744 ], [ 38.001531136483202, 1.126451890320763 ], [ 38.031499398483156, 1.085863511320779 ], [ 38.033086312483185, 1.082445542320781 ], [ 38.034123910483167, 1.071642320320732 ], [ 38.035100472483172, 1.047655503320752 ], [ 38.03711463248316, 1.008470933320777 ], [ 38.037297738483169, 1.00364915632076 ], [ 38.037297738483169, 0.99302903832074 ], [ 38.037724984483184, 0.982836167320781 ], [ 38.038091195483155, 0.978868882320737 ], [ 38.039495004483165, 0.951830308320777 ], [ 38.039495004483165, 0.947069566320747 ], [ 38.03992225048318, 0.943041245320783 ], [ 38.03992225048318, 0.939257066320747 ], [ 38.040532601483157, 0.931261460320738 ], [ 38.042302621483195, 0.899462144320748 ], [ 38.043096078483181, 0.881639878320752 ], [ 38.045537484483184, 0.839464585320738 ], [ 38.045903695483155, 0.835436265320763 ], [ 38.04633094148317, 0.824266831320754 ], [ 38.047124398483156, 0.813829820320732 ], [ 38.047490609483184, 0.803270738320746 ], [ 38.056523812483185, 0.797045152320775 ], [ 38.076543343483188, 0.783861558320777 ], [ 38.079289925483174, 0.781053941320747 ], [ 38.072087777483198, 0.781053941320747 ], [ 38.068486703483181, 0.780016343320765 ], [ 38.06531287548318, 0.778673570320732 ], [ 38.062322152483198, 0.77763597232075 ], [ 38.058293832483166, 0.777025620320783 ], [ 38.05469275748316, 0.776842515320763 ], [ 38.051335824483196, 0.778429429320736 ], [ 38.048711312483185, 0.780016343320765 ], [ 38.046941293483194, 0.782274644320748 ], [ 38.04633094148317, 0.785021226320734 ], [ 38.043340218483188, 0.786425035320744 ], [ 38.037908089483203, 0.787828843320765 ], [ 38.034123910483167, 0.789049546320766 ], [ 38.03070594148317, 0.790819566320747 ], [ 38.028508675483174, 0.792650620320783 ], [ 38.0257010584832, 0.794420640320763 ], [ 38.02234412548318, 0.796862046320766 ], [ 38.017339242483153, 0.796862046320766 ], [ 38.016728890483186, 0.801439683320777 ], [ 38.013310921483189, 0.80284349232073 ], [ 38.009343636483202, 0.800035874320767 ], [ 38.008916390483186, 0.796251695320732 ], [ 38.009343636483202, 0.79185716332074 ], [ 38.006291879483165, 0.787828843320765 ], [ 38.001531136483202, 0.786241929320736 ], [ 37.997685921483189, 0.779833238320746 ], [ 37.995305550483174, 0.777269761320779 ], [ 37.992314828483181, 0.776842515320763 ], [ 37.987920296483189, 0.775621812320762 ], [ 37.985295785483167, 0.772447984320761 ], [ 37.980290902483198, 0.767259995320783 ], [ 37.97852088248316, 0.764025132320737 ], [ 37.975713265483186, 0.760668199320773 ], [ 37.973332894483171, 0.755419175320751 ], [ 37.969914925483174, 0.75206224232073 ], [ 37.963323129483165, 0.751024644320748 ], [ 37.959722054483159, 0.748217027320775 ], [ 37.956304086483151, 0.74424974232073 ], [ 37.947331918483194, 0.74302903832074 ], [ 37.943303597483172, 0.738451402320775 ], [ 37.940495980483199, 0.732836167320781 ], [ 37.931706918483194, 0.724230210320738 ], [ 37.930303109483184, 0.721056382320737 ], [ 37.92773963248316, 0.719469468320765 ], [ 37.925298226483157, 0.71763841332074 ], [ 37.921941293483194, 0.718065660320744 ], [ 37.918523324483196, 0.716051499320767 ], [ 37.9163260584832, 0.712267320320732 ], [ 37.912541879483165, 0.712450425320751 ], [ 37.91211463248316, 0.715624253320752 ], [ 37.910100472483172, 0.719469468320765 ], [ 37.906133187483185, 0.71904222232075 ], [ 37.902715218483188, 0.721056382320737 ], [ 37.903935921483189, 0.725267808320777 ], [ 37.901494515483186, 0.727648179320736 ], [ 37.89789344148317, 0.726427476320734 ], [ 37.894292367483153, 0.728258531320759 ], [ 37.893498910483167, 0.732225816320747 ], [ 37.891911996483195, 0.73521653832074 ], [ 37.88953162548318, 0.737230699320773 ], [ 37.8831229334832, 0.740038316320747 ], [ 37.879094613483169, 0.741625230320776 ], [ 37.877324593483188, 0.738634507320737 ], [ 37.875127328483181, 0.734423081320754 ], [ 37.876714242483153, 0.731066148320733 ], [ 37.874333871483195, 0.727037827320769 ], [ 37.867742074483196, 0.725023667320781 ], [ 37.864324105483199, 0.721666734320761 ], [ 37.861943734483184, 0.719652574320773 ], [ 37.855290902483198, 0.716051499320767 ], [ 37.851933968483188, 0.714464585320738 ], [ 37.848699105483199, 0.711656968320765 ], [ 37.846929086483151, 0.70787278832074 ], [ 37.844731820483155, 0.704027574320773 ], [ 37.844304574483196, 0.700670640320763 ], [ 37.843511117483153, 0.697863023320733 ], [ 37.843694222483172, 0.694445054320736 ], [ 37.845525277483198, 0.690233628320752 ], [ 37.843144906483182, 0.687059800320751 ], [ 37.84070350048318, 0.684862535320744 ], [ 37.839116586483151, 0.682238023320733 ], [ 37.836492074483196, 0.679247300320751 ], [ 37.83289100048318, 0.677416245320783 ], [ 37.829106820483155, 0.677416245320783 ], [ 37.824346078483181, 0.677660386320779 ], [ 37.820500863483169, 0.676866929320736 ], [ 37.817693246483195, 0.674852769320748 ], [ 37.812688363483169, 0.674242417320781 ], [ 37.808110726483157, 0.674425523320733 ], [ 37.803716195483155, 0.674242417320781 ], [ 37.800725472483172, 0.673265855320776 ], [ 37.797490609483184, 0.671862046320766 ], [ 37.792485726483157, 0.670458238320746 ], [ 37.788701546483189, 0.672655503320752 ], [ 37.785893929483159, 0.674852769320748 ], [ 37.782536996483195, 0.675218980320776 ], [ 37.778142464483203, 0.675646226320734 ], [ 37.773320687483185, 0.673448960320738 ], [ 37.7678885584832, 0.672045152320775 ], [ 37.76312781648317, 0.671251695320732 ], [ 37.7581229334832, 0.67106858932078 ], [ 37.75391150748316, 0.673448960320738 ], [ 37.749700082483166, 0.67466966332074 ], [ 37.745305550483174, 0.672655503320752 ], [ 37.743535531483182, 0.669054429320736 ], [ 37.741521371483195, 0.665636460320738 ], [ 37.73828650748316, 0.663439195320732 ], [ 37.73633338248316, 0.66026536732073 ], [ 37.7327323084832, 0.66044847232075 ], [ 37.730107796483189, 0.658434312320762 ], [ 37.728337777483198, 0.654222886320779 ], [ 37.725530160483167, 0.653246324320773 ], [ 37.722722543483194, 0.655260484320761 ], [ 37.718328011483202, 0.656847398320733 ], [ 37.715337289483152, 0.658434312320762 ], [ 37.713506234483184, 0.660631577320769 ], [ 37.712529671483189, 0.664232652320775 ], [ 37.709905160483167, 0.667040269320748 ], [ 37.706304086483151, 0.666063706320754 ], [ 37.701543343483188, 0.663866441320747 ], [ 37.696294320483155, 0.662462632320737 ], [ 37.692510140483186, 0.662035386320779 ], [ 37.689336312483185, 0.658434312320762 ], [ 37.685918343483188, 0.655016343320765 ], [ 37.683721078483181, 0.650865952320769 ], [ 37.683293832483166, 0.647264878320752 ], [ 37.6839041834832, 0.644274156320759 ], [ 37.682317269483171, 0.641222398320733 ], [ 37.678899300483174, 0.640428941320747 ], [ 37.675115121483195, 0.638842027320775 ], [ 37.671514046483189, 0.635851304320736 ], [ 37.669133675483174, 0.634264390320763 ], [ 37.665898812483185, 0.632433335320738 ], [ 37.660527718483188, 0.631639878320752 ], [ 37.65570594148317, 0.630419175320751 ], [ 37.651311410483167, 0.630236070320732 ], [ 37.64734412548318, 0.626451890320763 ], [ 37.644902718483188, 0.622057359320761 ], [ 37.640508187483185, 0.620653550320751 ], [ 37.639104379483165, 0.61802903832074 ], [ 37.639104379483165, 0.614244859320761 ], [ 37.642095101483157, 0.612047593320765 ], [ 37.639287484483184, 0.608629624320767 ], [ 37.637090218483188, 0.60466233932078 ], [ 37.637517464483203, 0.60045091332074 ], [ 37.635930550483174, 0.597460191320747 ], [ 37.63171912548318, 0.595446031320759 ], [ 37.628301156483182, 0.598253648320733 ], [ 37.623113168483194, 0.597032945320732 ], [ 37.619328988483169, 0.598253648320733 ], [ 37.613896859483184, 0.594652574320773 ], [ 37.610906136483202, 0.593431870320783 ], [ 37.606145394483171, 0.589830796320766 ], [ 37.603093636483202, 0.58903733932078 ], [ 37.599492562483185, 0.590074937320762 ], [ 37.596135629483165, 0.590074937320762 ], [ 37.592900765483186, 0.587816636320779 ], [ 37.589116586483151, 0.586473863320746 ], [ 37.583928597483172, 0.58622972232075 ], [ 37.5823416834832, 0.582018296320766 ], [ 37.58289100048318, 0.577623765320763 ], [ 37.582707894483171, 0.573656480320776 ], [ 37.580327523483156, 0.572069566320747 ], [ 37.577092660483167, 0.572863023320733 ], [ 37.574101937483185, 0.573046128320752 ], [ 37.570745004483165, 0.570848863320746 ], [ 37.565923226483157, 0.570238511320779 ], [ 37.561528695483155, 0.570055406320759 ], [ 37.557134164483152, 0.569445054320736 ], [ 37.55273963248316, 0.57145921432078 ], [ 37.5491385584832, 0.573839585320738 ], [ 37.546514046483189, 0.576219956320754 ], [ 37.542485726483157, 0.574816148320733 ], [ 37.538335336483151, 0.57145921432078 ], [ 37.536138070483155, 0.567064683320777 ], [ 37.53210975048318, 0.564623277320775 ], [ 37.527898324483196, 0.566271226320734 ], [ 37.525090707483166, 0.56865159732075 ], [ 37.521306527483198, 0.568834702320769 ], [ 37.518498910483167, 0.567675035320744 ], [ 37.516118539483152, 0.565660874320767 ], [ 37.512944711483151, 0.566454331320754 ], [ 37.509099496483195, 0.567858140320763 ], [ 37.506291879483165, 0.570055406320759 ], [ 37.504094613483169, 0.573046128320752 ], [ 37.500493539483152, 0.574449937320762 ], [ 37.493718636483202, 0.575853745320783 ], [ 37.491338265483186, 0.578051011320779 ], [ 37.493108285483167, 0.582445542320781 ], [ 37.492742074483196, 0.587023179320736 ], [ 37.48914100048318, 0.588426988320746 ], [ 37.483708871483195, 0.588426988320746 ], [ 37.480901254483165, 0.586840074320773 ], [ 37.477117074483196, 0.587633531320759 ], [ 37.473943246483195, 0.589830796320766 ], [ 37.471745980483199, 0.591661851320734 ], [ 37.468328011483202, 0.591661851320734 ], [ 37.46570350048318, 0.589647691320747 ], [ 37.463506234483184, 0.586473863320746 ], [ 37.459722054483159, 0.584459702320769 ], [ 37.454717171483189, 0.58287278832074 ], [ 37.450688851483157, 0.580858628320752 ], [ 37.446111214483203, 0.579821031320759 ], [ 37.442143929483159, 0.581041734320761 ], [ 37.439519418483194, 0.579637925320751 ], [ 37.436711800483174, 0.578844468320765 ], [ 37.432317269483171, 0.581041734320761 ], [ 37.428533089483203, 0.581835191320747 ], [ 37.425725472483172, 0.57927171432078 ], [ 37.421941293483194, 0.57823411732073 ], [ 37.418340218483188, 0.579027574320773 ], [ 37.410527718483188, 0.57841722232075 ], [ 37.407292855483199, 0.57841722232075 ], [ 37.404119027483198, 0.577257554320736 ], [ 37.400945199483196, 0.577440660320744 ], [ 37.397710336483151, 0.577074449320773 ], [ 37.394292367483153, 0.575853745320783 ], [ 37.390508187483185, 0.575670640320763 ], [ 37.382695687483185, 0.581041734320761 ], [ 37.379888070483155, 0.582018296320766 ], [ 37.376897347483172, 0.584032456320754 ], [ 37.373723519483171, 0.586656968320765 ], [ 37.369695199483196, 0.585863511320779 ], [ 37.365727914483152, 0.585863511320779 ], [ 37.364324105483199, 0.58903733932078 ], [ 37.364507211483151, 0.592028062320762 ], [ 37.364507211483151, 0.596056382320737 ], [ 37.361699593483188, 0.598253648320733 ], [ 37.357305062483185, 0.598619859320761 ], [ 37.354741586483151, 0.601061265320763 ], [ 37.35492469148317, 0.605028550320751 ], [ 37.354314339483203, 0.609056870320783 ], [ 37.352727425483174, 0.613268296320766 ], [ 37.352544320483155, 0.616259019320748 ], [ 37.35352088248316, 0.61924974232073 ], [ 37.352910531483182, 0.622057359320761 ], [ 37.350286019483171, 0.624437730320776 ], [ 37.348943246483195, 0.62706224232073 ], [ 37.349126351483157, 0.630419175320751 ], [ 37.347539437483185, 0.63365403832074 ], [ 37.344304574483196, 0.637255113320746 ], [ 37.344914925483174, 0.640673081320754 ], [ 37.343144906483182, 0.643663804320736 ], [ 37.340520394483171, 0.646471421320766 ], [ 37.336736214483203, 0.647447984320761 ], [ 37.3323416834832, 0.649462144320748 ], [ 37.330510629483165, 0.653246324320773 ], [ 37.327519906483182, 0.656847398320733 ], [ 37.326299203483181, 0.661425035320744 ], [ 37.326299203483181, 0.664415757320737 ], [ 37.323308480483199, 0.671251695320732 ], [ 37.321111214483203, 0.674059312320762 ], [ 37.320134652483198, 0.676866929320736 ], [ 37.317510140483186, 0.680040757320737 ], [ 37.314519418483194, 0.684252183320777 ], [ 37.310918343483188, 0.693834702320769 ], [ 37.309514535483167, 0.697069566320747 ], [ 37.307744515483186, 0.700670640320763 ], [ 37.305303109483184, 0.703051011320779 ], [ 37.305730355483199, 0.706468980320776 ], [ 37.303533089483203, 0.70927659732075 ], [ 37.30273963248316, 0.712450425320751 ], [ 37.301518929483159, 0.715868394320748 ], [ 37.300542367483153, 0.719225327320769 ], [ 37.298894418483194, 0.721666734320761 ], [ 37.293889535483167, 0.727220933320777 ], [ 37.290715707483166, 0.730455796320766 ], [ 37.28992225048318, 0.734056870320783 ], [ 37.287724984483184, 0.73643724232073 ], [ 37.283330453483181, 0.738024156320759 ], [ 37.27930213248316, 0.739855210320738 ], [ 37.273503793483194, 0.74424974232073 ], [ 37.27148963248316, 0.748461167320781 ], [ 37.268132699483196, 0.751024644320748 ], [ 37.265508187483185, 0.754625718320765 ], [ 37.262700570483155, 0.756639878320752 ], [ 37.260930550483174, 0.759264390320763 ], [ 37.258306039483152, 0.762255113320746 ], [ 37.254338754483165, 0.762255113320746 ], [ 37.249944222483172, 0.76182786732073 ], [ 37.24609900748316, 0.760668199320773 ], [ 37.24109412548318, 0.755419175320751 ], [ 37.237920296483189, 0.753466050320751 ], [ 37.235906136483202, 0.750231187320762 ], [ 37.232121957483166, 0.748461167320781 ], [ 37.229497445483155, 0.746874253320752 ], [ 37.227727425483174, 0.744066636320779 ], [ 37.225286019483171, 0.742052476320734 ], [ 37.219121468483188, 0.738024156320759 ], [ 37.215886605483199, 0.737657945320732 ], [ 37.213140023483156, 0.738268296320766 ], [ 37.210088265483186, 0.739672105320776 ], [ 37.206304086483151, 0.740465562320762 ], [ 37.20453406648317, 0.743822495320783 ], [ 37.201299203483181, 0.744615952320769 ], [ 37.197515023483156, 0.744615952320769 ], [ 37.193486703483181, 0.743639390320763 ], [ 37.18890906648317, 0.742845933320777 ], [ 37.1839041834832, 0.741442124320767 ], [ 37.17969275748316, 0.741259019320748 ], [ 37.177312386483202, 0.74302903832074 ], [ 37.173894418483194, 0.743456285320744 ], [ 37.17133094148317, 0.741625230320776 ], [ 37.167119515483186, 0.741442124320767 ], [ 37.16351844148317, 0.745043199320773 ], [ 37.161931527483198, 0.749620835320738 ], [ 37.1585135584832, 0.751268785320744 ], [ 37.154912484483184, 0.751268785320744 ], [ 37.151738656483182, 0.753221910320744 ], [ 37.1507010584832, 0.757860581320754 ], [ 37.146733773483156, 0.757860581320754 ], [ 37.142095101483157, 0.758226792320781 ], [ 37.138738168483194, 0.757616441320747 ], [ 37.134892953483181, 0.758043687320762 ], [ 37.132329476483157, 0.760668199320773 ], [ 37.130132211483151, 0.762621324320773 ], [ 37.127324593483188, 0.764635484320761 ], [ 37.126286996483195, 0.769030015320763 ], [ 37.124333871483195, 0.774218003320752 ], [ 37.120732796483189, 0.776842515320763 ], [ 37.117925179483159, 0.779650132320737 ], [ 37.113896859483184, 0.780016343320765 ], [ 37.109746468483188, 0.779039781320759 ], [ 37.107915414483152, 0.781420152320775 ], [ 37.106511605483199, 0.784227769320748 ], [ 37.100530160483167, 0.78544847232075 ], [ 37.096929086483151, 0.783861558320777 ], [ 37.093328011483202, 0.781664292320781 ], [ 37.089116586483151, 0.78044358932078 ], [ 37.084538949483196, 0.779833238320746 ], [ 37.076116097483172, 0.777819077320769 ], [ 37.072087777483198, 0.776476304320736 ], [ 37.070500863483169, 0.77263108932078 ], [ 37.070928109483184, 0.769274156320759 ], [ 37.070134652483198, 0.765245835320738 ], [ 37.066106332483166, 0.764025132320737 ], [ 37.062322152483198, 0.765428941320747 ], [ 37.060307992483153, 0.76787034732075 ], [ 37.058110726483157, 0.770067613320746 ], [ 37.051518929483159, 0.766832749320767 ], [ 37.047490609483184, 0.764635484320761 ], [ 37.043523324483196, 0.76286546432078 ], [ 37.036687386483202, 0.761034410320744 ], [ 37.02429725048318, 0.756639878320752 ], [ 37.016728890483186, 0.753832261320779 ], [ 37.009099496483195, 0.750475327320769 ], [ 37.001103890483186, 0.748644273320733 ], [ 36.996343148483156, 0.749071519320748 ], [ 36.992131722483172, 0.746630113320746 ], [ 36.987493050483174, 0.745043199320773 ], [ 36.980901254483165, 0.743273179320736 ], [ 36.977300179483159, 0.743639390320763 ], [ 36.974309457483166, 0.745470445320732 ], [ 36.970891488483169, 0.742662827320769 ], [ 36.9671073084832, 0.740831773320733 ], [ 36.959538949483196, 0.742052476320734 ], [ 36.951299203483181, 0.742235581320754 ], [ 36.947698129483165, 0.742845933320777 ], [ 36.940495980483199, 0.74724046432078 ], [ 36.937932504483165, 0.750475327320769 ], [ 36.935124886483202, 0.751024644320748 ], [ 36.93241633548319, 0.745808826320738 ], [ 36.93172971448319, 0.741640383320769 ], [ 36.927881897483182, 0.739055447320763 ], [ 36.924495218483166, 0.738193675320756 ], [ 36.921520382483202, 0.737237871320756 ], [ 36.919863705483174, 0.73456745232073 ], [ 36.916704224483162, 0.727207295320736 ], [ 36.91211463248316, 0.727220933320777 ], [ 36.909123910483167, 0.729051988320746 ], [ 36.908696664483152, 0.732836167320781 ], [ 36.906133187483185, 0.736254136320779 ], [ 36.903142464483203, 0.738451402320775 ], [ 36.89780804248317, 0.738436110320774 ], [ 36.894466222483167, 0.737669134320752 ], [ 36.88953162548318, 0.736071031320759 ], [ 36.88672400748316, 0.733873765320763 ], [ 36.882939828483181, 0.735033433320777 ], [ 36.870488656483182, 0.736071031320759 ], [ 36.86609412548318, 0.736864488320746 ], [ 36.863530648483156, 0.739672105320776 ], [ 36.863103402483198, 0.743639390320763 ], [ 36.862309945483155, 0.746874253320752 ], [ 36.860539925483174, 0.750048081320754 ], [ 36.854497445483155, 0.763842027320775 ], [ 36.853093636483202, 0.767443101320734 ], [ 36.852727425483174, 0.770616929320736 ], [ 36.850713265483186, 0.772875230320776 ], [ 36.848943246483195, 0.776842515320763 ], [ 36.847295296483189, 0.780016343320765 ], [ 36.843511117483153, 0.786058824320773 ], [ 36.842290414483152, 0.789415757320737 ], [ 36.844121468483188, 0.794237535320744 ], [ 36.840093148483156, 0.797045152320775 ], [ 36.836736214483203, 0.799059312320762 ], [ 36.834905160483167, 0.801866929320736 ], [ 36.833745492483153, 0.812853257320737 ], [ 36.830510629483165, 0.819872300320751 ], [ 36.826116097483172, 0.827867906320759 ], [ 36.820134652483198, 0.840441148320733 ], [ 36.819890511483202, 0.845873277320775 ], [ 36.819890511483202, 0.851427476320734 ], [ 36.817937386483202, 0.85466233932078 ], [ 36.811101449483196, 0.858629624320767 ], [ 36.807317269483171, 0.862230699320773 ], [ 36.8010916834832, 0.864855210320738 ], [ 36.793889535483167, 0.869066636320779 ], [ 36.7835135584832, 0.867418687320762 ], [ 36.779912484483184, 0.866259019320748 ], [ 36.763921273483156, 0.86021653832074 ], [ 36.760320199483196, 0.859056870320783 ], [ 36.757146371483195, 0.857225816320747 ], [ 36.751103890483186, 0.848436753320752 ], [ 36.745122445483155, 0.838426988320746 ], [ 36.738896859483184, 0.829027574320773 ], [ 36.735906136483202, 0.826830308320777 ], [ 36.732305062483185, 0.825426499320767 ], [ 36.724309457483166, 0.821825425320751 ], [ 36.71570350048318, 0.818224351320734 ], [ 36.710088265483186, 0.81865159732075 ], [ 36.70313025748316, 0.820848863320746 ], [ 36.698491586483151, 0.82042161732073 ], [ 36.690129769483171, 0.820055406320759 ], [ 36.685124886483202, 0.819017808320777 ], [ 36.680303109483184, 0.816820542320781 ], [ 36.676518929483159, 0.816271226320734 ], [ 36.675542367483153, 0.812670152320775 ], [ 36.671941293483194, 0.812670152320775 ], [ 36.668340218483188, 0.812426011320779 ], [ 36.66351844148317, 0.812426011320779 ], [ 36.6585135584832, 0.812670152320775 ], [ 36.653508675483174, 0.812426011320779 ], [ 36.623540414483152, 0.812426011320779 ], [ 36.619695199483196, 0.812670152320775 ], [ 36.531743539483152, 0.812670152320775 ], [ 36.526738656483182, 0.812853257320737 ], [ 36.521733773483156, 0.812670152320775 ], [ 36.511907113483169, 0.812853257320737 ], [ 36.495122445483155, 0.812853257320737 ], [ 36.488103402483198, 0.812426011320779 ], [ 36.484746468483188, 0.813036363320746 ], [ 36.483708871483195, 0.816027085320738 ], [ 36.484746468483188, 0.818834702320769 ], [ 36.484746468483188, 0.822069566320747 ], [ 36.485906136483202, 0.825426499320767 ], [ 36.486516488483169, 0.830858628320752 ], [ 36.487920296483189, 0.83482591332074 ], [ 36.488896859483184, 0.839220445320732 ], [ 36.490300668483194, 0.842821519320748 ], [ 36.490300668483194, 0.846056382320737 ], [ 36.487920296483189, 0.849047105320776 ], [ 36.485295785483167, 0.85185472232075 ], [ 36.481694711483151, 0.85185472232075 ], [ 36.47852088248316, 0.855272691320747 ], [ 36.473699105483199, 0.857836167320781 ], [ 36.471318734483184, 0.861071031320759 ], [ 36.468938363483169, 0.862657945320732 ], [ 36.465886605483199, 0.863268296320766 ], [ 36.463506234483184, 0.865831773320733 ], [ 36.46094275748316, 0.86802903832074 ], [ 36.458135140483186, 0.86943284732075 ], [ 36.453313363483169, 0.870470445320732 ], [ 36.448735726483157, 0.870043199320773 ], [ 36.444524300483174, 0.871447007320737 ], [ 36.440129769483171, 0.875231187320762 ], [ 36.435735238483169, 0.878466050320751 ], [ 36.431523812483185, 0.882067124320767 ], [ 36.426518929483159, 0.888475816320747 ], [ 36.423711312483185, 0.897020738320746 ], [ 36.420720589483203, 0.898851792320781 ], [ 36.417729867483153, 0.899828355320776 ], [ 36.414311898483156, 0.898851792320781 ], [ 36.411138070483155, 0.898424546320766 ], [ 36.407292855483199, 0.899218003320752 ], [ 36.40430213248316, 0.899034898320733 ], [ 36.401738656483182, 0.900621812320762 ], [ 36.395423482483174, 0.903922995320781 ], [ 36.395423482483174, 0.907310237320755 ], [ 36.394736316483197, 0.911261588320767 ], [ 36.398931039483152, 0.91325608932078 ], [ 36.402287972483172, 0.916674058320777 ], [ 36.405339730483199, 0.919237535320744 ], [ 36.408086312483185, 0.922045152320775 ], [ 36.416936410483167, 0.930040757320737 ], [ 36.419744027483198, 0.932848374320767 ], [ 36.425115121483195, 0.93864671432078 ], [ 36.428716195483155, 0.944017808320777 ], [ 36.43109656648317, 0.946031968320765 ], [ 36.431706918483194, 0.949266831320754 ], [ 36.432927621483195, 0.951830308320777 ], [ 36.436345589483203, 0.95787278832074 ], [ 36.43750525748316, 0.960619370320783 ], [ 36.440740121483195, 0.966844956320754 ], [ 36.443730843483188, 0.973863999320767 ], [ 36.446538461483151, 0.981249253320752 ], [ 36.4495291834832, 0.991625230320776 ], [ 36.450932992483153, 0.995470445320732 ], [ 36.452092660483167, 1.003038804320736 ], [ 36.453496468483188, 1.010668199320773 ], [ 36.453740609483184, 1.015856187320762 ], [ 36.452092660483167, 1.020067613320746 ], [ 36.450322640483186, 1.023241441320747 ], [ 36.449101937483185, 1.025865952320769 ], [ 36.44812537548318, 1.029222886320779 ], [ 36.447331918483194, 1.033068101320734 ], [ 36.445500863483169, 1.03544847232075 ], [ 36.443486703483181, 1.039232652320775 ], [ 36.443730843483188, 1.04503099232073 ], [ 36.444707406483182, 1.04966966332074 ], [ 36.44531775748316, 1.053636949320773 ], [ 36.444097054483159, 1.056261460320738 ], [ 36.443120492483153, 1.060472886320779 ], [ 36.443303597483172, 1.065416734320761 ], [ 36.444097054483159, 1.069445054320736 ], [ 36.443486703483181, 1.074266831320754 ], [ 36.441899789483152, 1.078661363320746 ], [ 36.439885629483165, 1.083422105320776 ], [ 36.439519418483194, 1.08763353132076 ], [ 36.440129769483171, 1.091051499320767 ], [ 36.440129769483171, 1.094469468320765 ], [ 36.4417166834832, 1.102465074320773 ], [ 36.443730843483188, 1.106432359320761 ], [ 36.44531775748316, 1.110033433320777 ], [ 36.445134652483198, 1.11442796432078 ], [ 36.443913949483196, 1.11802903832074 ], [ 36.442327035483167, 1.123827378320752 ], [ 36.440923226483157, 1.12706224232073 ], [ 36.440495980483199, 1.130846421320766 ], [ 36.437139046483189, 1.13365403832074 ], [ 36.434514535483167, 1.137072007320737 ], [ 36.435307992483153, 1.140428941320747 ], [ 36.437139046483189, 1.143846910320744 ], [ 36.435918343483188, 1.147447984320761 ], [ 36.436528695483155, 1.15123216332074 ], [ 36.437932504483165, 1.155016343320765 ], [ 36.4417166834832, 1.161425035320744 ], [ 36.441899789483152, 1.165026109320761 ], [ 36.442693246483195, 1.169054429320736 ], [ 36.442143929483159, 1.173876206320754 ], [ 36.438725961483151, 1.17607347232075 ], [ 36.433721078483181, 1.17662278832074 ], [ 36.430913461483151, 1.178453843320765 ], [ 36.427129281483182, 1.181261460320738 ], [ 36.4241385584832, 1.182054917320781 ], [ 36.421514046483189, 1.184069077320769 ], [ 36.418523324483196, 1.183275620320783 ], [ 36.414739144483171, 1.180468003320752 ], [ 36.405339730483199, 1.175218980320776 ], [ 36.401128304483159, 1.172472398320733 ], [ 36.397527230483199, 1.17106858932078 ], [ 36.393926156483182, 1.17161790632076 ], [ 36.391911996483195, 1.174242417320781 ], [ 36.391728890483186, 1.177233140320763 ], [ 36.391118539483152, 1.181017320320732 ], [ 36.390691293483194, 1.186022202320769 ], [ 36.394292367483153, 1.188829820320732 ], [ 36.397099984483184, 1.192430894320748 ], [ 36.397099984483184, 1.198229234320761 ], [ 36.397710336483151, 1.203051011320779 ], [ 36.39789344148317, 1.207018296320766 ], [ 36.396123421483189, 1.213671128320752 ], [ 36.39594031648317, 1.21763841332074 ], [ 36.39929725048318, 1.222216050320751 ], [ 36.403142464483203, 1.225267808320777 ], [ 36.406926644483171, 1.227831285320744 ], [ 36.412297738483169, 1.229235093320765 ], [ 36.414739144483171, 1.227465074320773 ], [ 36.417302621483195, 1.225023667320781 ], [ 36.41992713248316, 1.228075425320751 ], [ 36.421514046483189, 1.231249253320752 ], [ 36.422124398483156, 1.234056870320783 ], [ 36.421514046483189, 1.236864488320746 ], [ 36.419744027483198, 1.239244859320761 ], [ 36.415715707483166, 1.243822495320783 ], [ 36.414739144483171, 1.248217027320775 ], [ 36.415105355483199, 1.252672593320765 ], [ 36.414128793483194, 1.255663316320747 ], [ 36.411931527483198, 1.257616441320747 ], [ 36.409307015483186, 1.255663316320747 ], [ 36.406133187483185, 1.250048081320754 ], [ 36.401921761483202, 1.251818101320734 ], [ 36.397710336483151, 1.252855699320773 ], [ 36.396123421483189, 1.255236070320732 ], [ 36.393743050483174, 1.258043687320762 ], [ 36.3909354334832, 1.260240952320769 ], [ 36.389714730483199, 1.264025132320737 ], [ 36.392095101483157, 1.267443101320734 ], [ 36.395513070483155, 1.267626206320754 ], [ 36.396916879483165, 1.271044175320751 ], [ 36.399114144483171, 1.274034898320733 ], [ 36.403142464483203, 1.271654527320775 ], [ 36.406926644483171, 1.27263108932078 ], [ 36.410710824483196, 1.275621812320762 ], [ 36.414311898483156, 1.273851792320781 ], [ 36.417729867483153, 1.272447984320761 ], [ 36.41992713248316, 1.269457261320779 ], [ 36.422490609483184, 1.266832749320767 ], [ 36.425908578483181, 1.265062730320776 ], [ 36.429936898483156, 1.265062730320776 ], [ 36.432317269483171, 1.263475816320747 ], [ 36.439336312483185, 1.258043687320762 ], [ 36.442327035483167, 1.255419175320751 ], [ 36.445134652483198, 1.252428452320769 ], [ 36.448308480483199, 1.249864976320734 ], [ 36.452703011483202, 1.25206224232073 ], [ 36.454289925483174, 1.255846421320766 ], [ 36.453740609483184, 1.258837144320748 ], [ 36.452092660483167, 1.264635484320761 ], [ 36.451543343483188, 1.26841966332074 ], [ 36.449346078483181, 1.271654527320775 ], [ 36.446294320483155, 1.274462144320748 ], [ 36.444341195483155, 1.27903978132076 ], [ 36.4417166834832, 1.282640855320776 ], [ 36.440740121483195, 1.28544847232075 ], [ 36.437688363483169, 1.289843003320752 ], [ 36.438725961483151, 1.29661790632076 ], [ 36.437139046483189, 1.300829331320754 ], [ 36.4339041834832, 1.300463120320783 ], [ 36.430303109483184, 1.298632066320747 ], [ 36.426702035483167, 1.297472398320733 ], [ 36.42468787548318, 1.295275132320737 ], [ 36.421697152483198, 1.293627183320777 ], [ 36.414311898483156, 1.296434800320751 ], [ 36.410527718483188, 1.297655503320752 ], [ 36.406743539483152, 1.297472398320733 ], [ 36.405522836483151, 1.30107347232075 ], [ 36.402715218483188, 1.305468003320752 ], [ 36.398137582483166, 1.30583421432078 ], [ 36.39453650748316, 1.310228745320783 ], [ 36.395085824483196, 1.314257066320747 ], [ 36.397710336483151, 1.315660874320767 ], [ 36.401128304483159, 1.314623277320775 ], [ 36.404912484483184, 1.315416734320761 ], [ 36.407903207483166, 1.32042161732073 ], [ 36.414311898483156, 1.32841722232075 ], [ 36.418096078483181, 1.330431382320737 ], [ 36.421941293483194, 1.333666245320783 ], [ 36.423100961483151, 1.343065660320744 ], [ 36.426518929483159, 1.347032945320732 ], [ 36.430303109483184, 1.348253648320733 ], [ 36.4339041834832, 1.349840562320762 ], [ 36.436101449483196, 1.35185472232075 ], [ 36.439092171483189, 1.356066148320733 ], [ 36.442693246483195, 1.360033433320777 ], [ 36.446294320483155, 1.362230699320773 ], [ 36.460332406483182, 1.368822495320783 ], [ 36.463140023483156, 1.372423570320732 ], [ 36.465520394483171, 1.378832261320779 ], [ 36.466741097483172, 1.382860581320754 ], [ 36.466741097483172, 1.388475816320747 ], [ 36.4671073084832, 1.396837632320737 ], [ 36.46429969148317, 1.400255601320734 ], [ 36.460088265483186, 1.399462144320748 ], [ 36.4573416834832, 1.39622728132076 ], [ 36.454717171483189, 1.398058335320738 ], [ 36.452703011483202, 1.401842515320763 ], [ 36.451116097483172, 1.406664292320781 ], [ 36.448918832483166, 1.409471910320744 ], [ 36.445745004483165, 1.409471910320744 ], [ 36.442510140483186, 1.408251206320754 ], [ 36.439336312483185, 1.409471910320744 ], [ 36.435735238483169, 1.408251206320754 ], [ 36.432744515483186, 1.408068101320734 ], [ 36.42969275748316, 1.406420152320775 ], [ 36.428288949483196, 1.409471910320744 ], [ 36.427129281483182, 1.41325608932078 ], [ 36.423100961483151, 1.413866441320747 ], [ 36.419499887483191, 1.415453355320776 ], [ 36.416142953483181, 1.419237535320744 ], [ 36.411931527483198, 1.423265855320776 ], [ 36.410100472483172, 1.425829331320754 ], [ 36.406926644483171, 1.428453843320765 ], [ 36.402715218483188, 1.430651109320761 ], [ 36.396306527483198, 1.440233628320752 ], [ 36.393743050483174, 1.442675035320744 ], [ 36.387944711483151, 1.443224351320734 ], [ 36.383916390483186, 1.441454331320754 ], [ 36.380925668483194, 1.439440171320766 ], [ 36.376286996483195, 1.439867417320781 ], [ 36.372685921483189, 1.438829820320732 ], [ 36.368901742483153, 1.436449449320773 ], [ 36.364934457483166, 1.436632554320736 ], [ 36.36133338248316, 1.436266343320765 ], [ 36.357488168483194, 1.435045640320763 ], [ 36.354314339483203, 1.43583909732075 ], [ 36.350713265483186, 1.437670152320775 ], [ 36.347905648483156, 1.439440171320766 ], [ 36.344914925483174, 1.442430894320748 ], [ 36.342717660483167, 1.44505540632076 ], [ 36.339726937483185, 1.448229234320761 ], [ 36.332707894483171, 1.458055894320748 ], [ 36.326726449483196, 1.465868394320748 ], [ 36.323491586483151, 1.468676011320779 ], [ 36.320134652483198, 1.470018785320744 ], [ 36.310918343483188, 1.468065660320744 ], [ 36.308110726483157, 1.467028062320762 ], [ 36.302312386483202, 1.465441148320733 ], [ 36.299504769483171, 1.464830796320766 ], [ 36.295110238483169, 1.463060777320775 ], [ 36.292119515483186, 1.46263353132076 ], [ 36.289495004483165, 1.465624253320752 ], [ 36.291142953483181, 1.470018785320744 ], [ 36.296697152483198, 1.481066148320733 ], [ 36.299932015483186, 1.48662034732075 ], [ 36.300542367483153, 1.489672105320776 ], [ 36.2991385584832, 1.493639390320763 ], [ 36.297917855483199, 1.498461167320781 ], [ 36.299321664483152, 1.50224534732075 ], [ 36.299321664483152, 1.506456773320733 ], [ 36.300115121483195, 1.509447495320783 ], [ 36.301518929483159, 1.51286546432078 ], [ 36.301702035483167, 1.516222398320733 ], [ 36.301702035483167, 1.529222886320779 ], [ 36.302312386483202, 1.533861558320777 ], [ 36.303288949483196, 1.538439195320732 ], [ 36.304936898483156, 1.541246812320762 ], [ 36.308293832483166, 1.544420640320763 ], [ 36.312688363483169, 1.547472398320733 ], [ 36.317143929483159, 1.550035874320767 ], [ 36.32031775748316, 1.553453843320765 ], [ 36.326909553483169, 1.559862534320755 ], [ 36.330693734483184, 1.562853257320737 ], [ 36.335332406483182, 1.566820542320781 ], [ 36.344914925483174, 1.572863023320733 ], [ 36.34570838248316, 1.569872300320751 ], [ 36.34851600048318, 1.56846849232073 ], [ 36.353093636483202, 1.568224351320734 ], [ 36.357305062483185, 1.56865159732075 ], [ 36.358891976483157, 1.571031968320765 ], [ 36.358708871483195, 1.574633042320781 ], [ 36.358891976483157, 1.581652085320738 ], [ 36.360723031483182, 1.585619370320783 ], [ 36.36469031648317, 1.588854234320761 ], [ 36.367742074483196, 1.591844956320754 ], [ 36.370732796483189, 1.593676011320779 ], [ 36.37390662548318, 1.591661851320734 ], [ 36.375737679483159, 1.588854234320761 ], [ 36.376897347483172, 1.58622972232075 ], [ 36.377690804483159, 1.582445542320781 ], [ 36.377507699483196, 1.57823411732073 ], [ 36.377141488483169, 1.575243394320748 ], [ 36.375920785483167, 1.571642320320732 ], [ 36.373540414483152, 1.56865159732075 ], [ 36.374089730483199, 1.564073960320738 ], [ 36.375737679483159, 1.543627183320777 ], [ 36.376714242483153, 1.540453355320776 ], [ 36.378301156483182, 1.537645738320746 ], [ 36.38031531648317, 1.534838120320783 ], [ 36.382512582483166, 1.533068101320734 ], [ 36.386113656483182, 1.529650132320737 ], [ 36.388494027483198, 1.525865952320769 ], [ 36.391728890483186, 1.522875230320776 ], [ 36.395513070483155, 1.523668687320762 ], [ 36.398320687483185, 1.525438706320754 ], [ 36.399541390483186, 1.529650132320737 ], [ 36.403142464483203, 1.53544847232075 ], [ 36.40710975048318, 1.545641343320765 ], [ 36.408696664483152, 1.549242417320781 ], [ 36.410100472483172, 1.551866929320736 ], [ 36.411931527483198, 1.55583421432078 ], [ 36.414311898483156, 1.560228745320783 ], [ 36.418889535483167, 1.565843980320776 ], [ 36.420903695483155, 1.568041245320783 ], [ 36.427495492483153, 1.572252671320766 ], [ 36.429326546483189, 1.580248277320775 ], [ 36.431890023483156, 1.583849351320734 ], [ 36.433537972483172, 1.589220445320732 ], [ 36.434087289483152, 1.594469468320765 ], [ 36.437139046483189, 1.598863999320767 ], [ 36.439092171483189, 1.603441636320779 ], [ 36.439702523483156, 1.607225816320747 ], [ 36.441106332483166, 1.61143724232073 ], [ 36.443120492483153, 1.614061753320752 ], [ 36.44672156648317, 1.61607591332074 ], [ 36.451299203483181, 1.615038316320747 ], [ 36.455510629483165, 1.612657945320732 ], [ 36.458745492483153, 1.612230699320773 ], [ 36.463323129483165, 1.61247483932078 ], [ 36.464910043483194, 1.61607591332074 ], [ 36.464726937483185, 1.620226304320736 ], [ 36.4671073084832, 1.625048081320754 ], [ 36.468328011483202, 1.631273667320781 ], [ 36.469731820483155, 1.634447495320783 ], [ 36.469487679483159, 1.637621324320773 ], [ 36.470525276483151, 1.642259992320758 ], [ 36.470525277483198, 1.648058335320738 ], [ 36.471318734483184, 1.65544358932078 ], [ 36.477117074483196, 1.663439195320732 ], [ 36.478703988483169, 1.667223374320767 ], [ 36.479741586483151, 1.672045152320775 ], [ 36.482121957483166, 1.677416245320783 ], [ 36.484502328483181, 1.67943040632076 ], [ 36.486516488483169, 1.681627671320766 ], [ 36.48633338248316, 1.684862535320744 ], [ 36.487493050483174, 1.687670152320775 ], [ 36.488103402483198, 1.690416734320761 ], [ 36.487493050483174, 1.693834702320769 ], [ 36.487309945483155, 1.698229234320761 ], [ 36.488896859483184, 1.70286790632076 ], [ 36.491887582483166, 1.703661363320746 ], [ 36.495915902483198, 1.703844468320765 ], [ 36.500493539483152, 1.705248277320775 ], [ 36.502934945483155, 1.707262437320762 ], [ 36.504888070483155, 1.710253160320744 ], [ 36.504094613483169, 1.716417710320738 ], [ 36.506291879483165, 1.718676011320779 ], [ 36.508916390483186, 1.722460191320747 ], [ 36.509526742483153, 1.729845445320732 ], [ 36.51312781648317, 1.735826890320763 ], [ 36.514897836483151, 1.738268296320766 ], [ 36.517095101483157, 1.740221421320766 ], [ 36.521916879483165, 1.738817613320746 ], [ 36.52234412548318, 1.742235581320754 ], [ 36.523137582483166, 1.746447007320737 ], [ 36.526128304483159, 1.750658433320777 ], [ 36.528325570483155, 1.75505296432078 ], [ 36.528142464483203, 1.759264390320763 ], [ 36.525945199483196, 1.76146165632076 ], [ 36.524114144483171, 1.757616441320747 ], [ 36.520696175483174, 1.755236070320732 ], [ 36.519109261483202, 1.760668199320773 ], [ 36.516545785483167, 1.764025132320737 ], [ 36.51312781648317, 1.767443101320734 ], [ 36.512334359483184, 1.770616929320736 ], [ 36.514104379483165, 1.772875230320776 ], [ 36.518315804483159, 1.77122728132076 ], [ 36.518926156483182, 1.774462144320748 ], [ 36.517095101483157, 1.778063218320765 ], [ 36.51953650748316, 1.780626695320732 ], [ 36.522099984483184, 1.781847398320733 ], [ 36.5257010584832, 1.787035386320779 ], [ 36.52429725048318, 1.790453355320776 ], [ 36.528691781483182, 1.796251695320732 ], [ 36.53070594148317, 1.799852769320748 ], [ 36.532720101483157, 1.802050035320744 ], [ 36.534490121483195, 1.804857652320775 ], [ 36.530339730483199, 1.806444566320747 ], [ 36.527287972483172, 1.808275620320783 ], [ 36.523931039483152, 1.81083909732075 ], [ 36.52094031648317, 1.813829820320732 ], [ 36.5178885584832, 1.817430894320748 ], [ 36.516118539483152, 1.82145921432078 ], [ 36.515508187483185, 1.824266831320754 ], [ 36.515141976483157, 1.827257554320736 ], [ 36.516911996483195, 1.829637925320751 ], [ 36.523503793483194, 1.828844468320765 ], [ 36.524541390483186, 1.831652085320738 ], [ 36.522527230483199, 1.834459702320769 ], [ 36.523686898483156, 1.838060777320775 ], [ 36.525090707483166, 1.841234605320776 ], [ 36.525517953483181, 1.846239488320746 ], [ 36.523137582483166, 1.849230210320738 ], [ 36.518926156483182, 1.847216050320751 ], [ 36.516911996483195, 1.851061265320763 ], [ 36.516301644483171, 1.854235093320765 ], [ 36.5159354334832, 1.857836167320781 ], [ 36.515691293483194, 1.862230699320773 ], [ 36.515691293483194, 1.872057359320761 ], [ 36.516911996483195, 1.877672593320765 ], [ 36.520085824483196, 1.879869859320761 ], [ 36.521733773483156, 1.882616441320747 ], [ 36.525090707483166, 1.88487474232073 ], [ 36.526921761483202, 1.888842027320775 ], [ 36.529912484483184, 1.891222398320733 ], [ 36.530889046483189, 1.89427415632076 ], [ 36.533086312483185, 1.897020738320746 ], [ 36.535710824483196, 1.899645249320767 ], [ 36.538945687483185, 1.901659410320744 ], [ 36.538091195483155, 1.905260484320761 ], [ 36.538701546483189, 1.908434312320762 ], [ 36.5413260584832, 1.914232652320775 ], [ 36.542119515483186, 1.917833726320734 ], [ 36.542729867483153, 1.922045152320775 ], [ 36.540898812483185, 1.931261460320738 ], [ 36.540715707483166, 1.935228745320783 ], [ 36.540715707483166, 1.93864671432078 ], [ 36.541509164483152, 1.941820542320781 ], [ 36.541509164483152, 1.945848863320746 ], [ 36.540898812483185, 1.952074449320773 ], [ 36.542119515483186, 1.95482103132076 ], [ 36.540898812483185, 1.957445542320781 ], [ 36.538701546483189, 1.953844468320765 ], [ 36.534307015483186, 1.951830308320777 ], [ 36.532720101483157, 1.95482103132076 ], [ 36.533330453483181, 1.957628648320733 ], [ 36.534490121483195, 1.961473863320746 ], [ 36.536504281483182, 1.966234605320776 ], [ 36.53851844148317, 1.969835679320736 ], [ 36.540715707483166, 1.973253648320733 ], [ 36.541936410483167, 1.976244370320783 ], [ 36.542485726483157, 1.979051988320746 ], [ 36.54492713248316, 1.985643785320744 ], [ 36.547124398483156, 1.99302903832074 ], [ 36.54633094148317, 1.996874253320752 ], [ 36.543523324483196, 1.998827378320752 ], [ 36.541142953483181, 2.002245347320748 ], [ 36.542119515483186, 2.005052964320779 ], [ 36.54492713248316, 2.005663316320746 ], [ 36.54773475048318, 2.002855699320772 ], [ 36.547917855483199, 2.006456773320732 ], [ 36.547917855483199, 2.015673081320752 ], [ 36.545720589483203, 2.018663804320735 ], [ 36.545537484483184, 2.021837632320736 ], [ 36.548345101483157, 2.023424546320765 ], [ 36.546697152483198, 2.027452867320729 ], [ 36.552495492483153, 2.032274644320747 ], [ 36.556706918483194, 2.040453355320775 ], [ 36.556890023483156, 2.044847886320778 ], [ 36.5589041834832, 2.048021714320779 ], [ 36.562139046483189, 2.049059312320761 ], [ 36.566533578483181, 2.053026597320748 ], [ 36.569707406483182, 2.055223863320745 ], [ 36.569707406483182, 2.059435288320739 ], [ 36.568303597483172, 2.065050523320732 ], [ 36.5667166834832, 2.078661363320745 ], [ 36.568303597483172, 2.086229722320748 ], [ 36.568303597483172, 2.090074937320761 ], [ 36.565495980483199, 2.098863999320766 ], [ 36.565923226483157, 2.102831285320743 ], [ 36.568730843483188, 2.106249253320751 ], [ 36.57312537548318, 2.110216538320739 ], [ 36.577703011483202, 2.114855210320737 ], [ 36.581304086483151, 2.119432847320748 ], [ 36.582707894483171, 2.123033921320765 ], [ 36.5842948084832, 2.126024644320747 ], [ 36.583928597483172, 2.130052964320779 ], [ 36.584538949483196, 2.134874742320729 ], [ 36.585698617483153, 2.138475816320746 ], [ 36.587529671483189, 2.141832749320766 ], [ 36.589543832483166, 2.144030015320762 ], [ 36.596318734483184, 2.144640367320729 ], [ 36.598332894483171, 2.14744798432076 ], [ 36.601140511483202, 2.151842515320762 ], [ 36.609502328483181, 2.158434312320761 ], [ 36.613103402483198, 2.160265367320729 ], [ 36.613713754483165, 2.155626695320731 ], [ 36.62109900748316, 2.159044663320739 ], [ 36.627934945483155, 2.160021226320733 ], [ 36.637090218483188, 2.161852281320758 ], [ 36.644292367483153, 2.164843003320751 ], [ 36.64929725048318, 2.166674058320776 ], [ 36.655522836483151, 2.170030992320729 ], [ 36.659490121483195, 2.172472398320732 ], [ 36.663091195483155, 2.175829331320752 ], [ 36.671514046483189, 2.184435288320739 ], [ 36.682134164483152, 2.190843980320775 ], [ 36.687139046483189, 2.193224351320733 ], [ 36.692143929483159, 2.19487230032075 ], [ 36.69531775748316, 2.195421617320729 ], [ 36.698918832483166, 2.195665757320736 ], [ 36.702092660483167, 2.196642320320731 ], [ 36.703740609483184, 2.200670640320762 ], [ 36.701909554483159, 2.206652085320737 ], [ 36.701543343483188, 2.210619370320782 ], [ 36.701726449483196, 2.216234605320775 ], [ 36.704717171483189, 2.219225327320768 ], [ 36.708928597483172, 2.22026292532075 ], [ 36.712529671483189, 2.222826402320774 ], [ 36.713140023483156, 2.22807542532075 ], [ 36.712102425483174, 2.232225816320746 ], [ 36.710698617483153, 2.236620347320748 ], [ 36.711919320483155, 2.239427964320779 ], [ 36.713933480483199, 2.241625230320775 ], [ 36.714910043483194, 2.244615952320768 ], [ 36.715093148483156, 2.249071519320747 ], [ 36.714543832483166, 2.252062242320729 ], [ 36.712529671483189, 2.255236070320731 ], [ 36.708745492483153, 2.25822679232078 ], [ 36.709111703483181, 2.261644761320778 ], [ 36.71289588248316, 2.264269273320732 ], [ 36.716496957483166, 2.265673081320752 ], [ 36.718938363483169, 2.269030015320762 ], [ 36.721745980483199, 2.270250718320764 ], [ 36.723943246483195, 2.272875230320775 ], [ 36.724126351483157, 2.276842515320762 ], [ 36.722905648483156, 2.284227769320747 ], [ 36.724492562483185, 2.290453355320775 ], [ 36.723943246483195, 2.295275132320736 ], [ 36.725286019483171, 2.299669663320739 ], [ 36.601933968483188, 2.358446519320747 ], [ 36.602117074483196, 2.365465562320761 ], [ 36.602117074483196, 2.384630601320733 ], [ 36.602727425483174, 2.403063218320764 ], [ 36.605290902483198, 2.399462144320747 ], [ 36.60632850048318, 2.395067613320745 ], [ 36.608891976483157, 2.393236558320776 ], [ 36.612920296483189, 2.393846910320743 ], [ 36.616887582483166, 2.394823472320748 ], [ 36.619512093483188, 2.396227281320758 ], [ 36.621892464483203, 2.400438706320752 ], [ 36.62250281648317, 2.404650132320736 ], [ 36.622136605483199, 2.409471910320743 ], [ 36.624700082483166, 2.412218492320729 ], [ 36.627690804483159, 2.41166917532075 ], [ 36.631536019483171, 2.409838120320782 ], [ 36.632329476483157, 2.407030503320751 ], [ 36.635320199483196, 2.403063218320764 ], [ 36.639287484483184, 2.404222886320778 ], [ 36.639897836483151, 2.400072495320782 ], [ 36.641118539483152, 2.394457261320778 ], [ 36.643132699483196, 2.397631089320779 ], [ 36.644292367483153, 2.402025620320782 ], [ 36.644719613483169, 2.406237046320765 ], [ 36.644292367483153, 2.409227769320747 ], [ 36.64594031648317, 2.413439195320731 ], [ 36.64929725048318, 2.411852281320758 ], [ 36.651738656483182, 2.415636460320737 ], [ 36.656316293483194, 2.416674058320776 ], [ 36.659734261483202, 2.420458238320745 ], [ 36.661321175483174, 2.424425523320732 ], [ 36.662724984483184, 2.427050035320743 ], [ 36.66492225048318, 2.43065110932076 ], [ 36.667119515483186, 2.433641831320752 ], [ 36.668889535483167, 2.436449449320772 ], [ 36.671697152483198, 2.441454331320752 ], [ 36.673894418483194, 2.444261949320772 ], [ 36.6760916834832, 2.44627610932076 ], [ 36.679326546483189, 2.448656480320775 ], [ 36.681523812483185, 2.451036851320733 ], [ 36.684331429483159, 2.453661363320745 ], [ 36.687322152483198, 2.455858628320751 ], [ 36.6917166834832, 2.454821031320758 ], [ 36.695745004483165, 2.452440660320743 ], [ 36.699346078483181, 2.451830308320776 ], [ 36.700322640483186, 2.45463792532075 ], [ 36.698491586483151, 2.462816636320778 ], [ 36.699895394483171, 2.466234605320775 ], [ 36.701909554483159, 2.469042222320748 ], [ 36.703923714483203, 2.47361985932076 ], [ 36.704106820483155, 2.477831285320743 ], [ 36.70313025748316, 2.48143235932076 ], [ 36.702703011483202, 2.485460679320735 ], [ 36.703313363483169, 2.490831773320732 ], [ 36.703313363483169, 2.495043199320772 ], [ 36.702519906483182, 2.498827378320751 ], [ 36.702336800483174, 2.502855699320772 ], [ 36.701299203483181, 2.510057847320748 ], [ 36.706120980483199, 2.510057847320748 ], [ 36.708928597483172, 2.507067124320766 ], [ 36.712712777483198, 2.506029527320774 ], [ 36.716130746483195, 2.505846421320765 ], [ 36.719731820483155, 2.50682298432076 ], [ 36.723088754483165, 2.508043687320761 ], [ 36.726506722483172, 2.509020249320766 ], [ 36.729314339483203, 2.509630601320733 ], [ 36.733342660483167, 2.509874742320729 ], [ 36.74109412548318, 2.511827867320729 ], [ 36.749333871483195, 2.511461656320758 ], [ 36.753545296483189, 2.51323167532075 ], [ 36.758916390483186, 2.512865464320779 ], [ 36.758973688483188, 2.512693569320728 ] ] ] } } +, +{ "type": "Feature", "id": 25, "properties": { "OBJECTID": 26, "ID_": 1723, "COUNTY_NAM": "UASIN GISHU", "CONST_CODE": 144, "CONSTITUEN": "AINABKOI", "COUNTY_COD": 27, "Shape_Leng": 3.79630380519, "Shape_Area": 0.27589006735 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.42105754348318, 0.937293850320768 ], [ 35.419316781483182, 0.929430406320759 ], [ 35.415532601483157, 0.914659898320733 ], [ 35.416692269483171, 0.907457749320767 ], [ 35.421514046483189, 0.906237046320766 ], [ 35.438542855483199, 0.904039781320759 ], [ 35.451299203483181, 0.902025620320783 ], [ 35.455327523483156, 0.901659410320744 ], [ 35.468694222483172, 0.899218003320752 ], [ 35.466130746483195, 0.897020738320746 ], [ 35.464910043483194, 0.893236558320777 ], [ 35.463689339483203, 0.888658921320766 ], [ 35.461308968483188, 0.884447495320783 ], [ 35.458745492483153, 0.881029527320775 ], [ 35.458318246483195, 0.87706224232073 ], [ 35.463689339483203, 0.875658433320777 ], [ 35.475102914483152, 0.875475327320769 ], [ 35.484502328483181, 0.875658433320777 ], [ 35.488713754483165, 0.874254624320767 ], [ 35.488713754483165, 0.869615952320769 ], [ 35.488896859483184, 0.866625230320776 ], [ 35.49109412548318, 0.863817613320746 ], [ 35.492314828483181, 0.859850327320769 ], [ 35.492925179483159, 0.852831285320744 ], [ 35.492131722483172, 0.849047105320776 ], [ 35.490911019483171, 0.846056382320737 ], [ 35.4905448084832, 0.841844956320754 ], [ 35.489324105483199, 0.837633531320759 ], [ 35.487309945483155, 0.833055894320748 ], [ 35.486089242483153, 0.829454820320732 ], [ 35.484502328483181, 0.826219956320754 ], [ 35.482915414483152, 0.822252671320766 ], [ 35.485723031483182, 0.821276109320761 ], [ 35.489324105483199, 0.821642320320732 ], [ 35.495122445483155, 0.820848863320746 ], [ 35.498723519483171, 0.817858140320763 ], [ 35.500493539483152, 0.813463609320761 ], [ 35.500493539483152, 0.80583421432078 ], [ 35.500737679483159, 0.800463120320783 ], [ 35.501714242483153, 0.78721849232073 ], [ 35.501897347483172, 0.782823960320738 ], [ 35.502324593483188, 0.778429429320736 ], [ 35.503545296483189, 0.773668687320762 ], [ 35.506902230483199, 0.770433824320773 ], [ 35.507512582483166, 0.76646653832074 ], [ 35.506902230483199, 0.763658921320766 ], [ 35.501714242483153, 0.758226792320781 ], [ 35.500127328483181, 0.754869859320761 ], [ 35.498296273483156, 0.748217027320775 ], [ 35.495488656483182, 0.75084153832074 ], [ 35.492314828483181, 0.747850816320747 ], [ 35.497930062483185, 0.744860093320765 ], [ 35.496343148483156, 0.736864488320746 ], [ 35.495305550483174, 0.733019273320733 ], [ 35.49414588248316, 0.726427476320734 ], [ 35.495915902483198, 0.722643296320766 ], [ 35.49750281648317, 0.717821519320748 ], [ 35.499089730483199, 0.71403733932078 ], [ 35.502690804483159, 0.712023179320736 ], [ 35.505498421483189, 0.709032456320754 ], [ 35.50531531648317, 0.70427171432078 ], [ 35.504521859483184, 0.70146409732075 ], [ 35.499333871483195, 0.701219956320754 ], [ 35.49109412548318, 0.701647202320769 ], [ 35.486943734483184, 0.701647202320769 ], [ 35.452703011483202, 0.702623765320763 ], [ 35.435918343483188, 0.702623765320763 ], [ 35.432317269483171, 0.702440660320744 ], [ 35.423100961483151, 0.702440660320744 ], [ 35.418096078483181, 0.702257554320736 ], [ 35.41211463248316, 0.700853745320783 ], [ 35.41351844148317, 0.695848863320746 ], [ 35.416509164483152, 0.690050523320733 ], [ 35.432134164483152, 0.664049546320766 ], [ 35.45789100048318, 0.627428452320769 ], [ 35.46094275748316, 0.622667710320738 ], [ 35.466496957483166, 0.613268296320766 ], [ 35.473088754483165, 0.603075425320751 ], [ 35.478337777483198, 0.594225327320769 ], [ 35.481694711483151, 0.587633531320759 ], [ 35.478093636483202, 0.565050523320733 ], [ 35.475713265483186, 0.552416245320783 ], [ 35.472722543483194, 0.540636460320738 ], [ 35.469731820483155, 0.527025620320783 ], [ 35.466496957483166, 0.513475816320747 ], [ 35.463140023483156, 0.504442613320746 ], [ 35.463933480483199, 0.499620835320738 ], [ 35.463506234483184, 0.49424974232073 ], [ 35.462712777483198, 0.472216050320751 ], [ 35.463506234483184, 0.453661363320746 ], [ 35.467900765483186, 0.452440660320744 ], [ 35.472295296483189, 0.448229234320761 ], [ 35.474126351483157, 0.442858140320763 ], [ 35.475713265483186, 0.431017320320732 ], [ 35.476933968483188, 0.424059312320762 ], [ 35.48132850048318, 0.418016831320754 ], [ 35.481938851483157, 0.403246324320773 ], [ 35.487493050483174, 0.402269761320779 ], [ 35.485112679483159, 0.398241441320747 ], [ 35.481694711483151, 0.393053452320769 ], [ 35.480718148483156, 0.387072007320737 ], [ 35.483342660483167, 0.385668199320773 ], [ 35.485723031483182, 0.383837144320748 ], [ 35.487309945483155, 0.379869859320761 ], [ 35.481511605483199, 0.379259507320737 ], [ 35.478703988483169, 0.381822984320761 ], [ 35.474736703483181, 0.378466050320751 ], [ 35.470891488483169, 0.374864976320734 ], [ 35.469731820483155, 0.371263902320775 ], [ 35.469914925483174, 0.367662827320769 ], [ 35.472295296483189, 0.36442796432078 ], [ 35.4749198084832, 0.361864488320746 ], [ 35.479131234483184, 0.35966722232075 ], [ 35.482305062483185, 0.356249253320752 ], [ 35.4827323084832, 0.353075425320751 ], [ 35.483708871483195, 0.349840562320762 ], [ 35.487493050483174, 0.349230210320738 ], [ 35.4905448084832, 0.347216050320751 ], [ 35.493108285483167, 0.344652574320773 ], [ 35.497136605483199, 0.341417710320738 ], [ 35.50391150748316, 0.333055894320748 ], [ 35.505925668483194, 0.329821031320759 ], [ 35.506536019483171, 0.326647202320769 ], [ 35.508916390483186, 0.323839585320738 ], [ 35.512700570483155, 0.323229234320761 ], [ 35.514104379483165, 0.320055406320759 ], [ 35.511907113483169, 0.316820542320781 ], [ 35.510503304483159, 0.314073960320738 ], [ 35.505742562483185, 0.313036363320746 ], [ 35.501103890483186, 0.313036363320746 ], [ 35.496343148483156, 0.312059800320751 ], [ 35.497930062483185, 0.309069077320769 ], [ 35.49890662548318, 0.306017320320732 ], [ 35.499700082483166, 0.302233140320763 ], [ 35.500920785483167, 0.29966966332074 ], [ 35.502934945483155, 0.296251695320732 ], [ 35.504888070483155, 0.292467515320763 ], [ 35.500737679483159, 0.289659898320733 ], [ 35.500920785483167, 0.286058824320773 ], [ 35.500737679483159, 0.282823960320738 ], [ 35.500493539483152, 0.279833238320746 ], [ 35.499944222483172, 0.276476304320736 ], [ 35.49750281648317, 0.273058335320738 ], [ 35.491704476483157, 0.26182786732073 ], [ 35.493535531483182, 0.258837144320748 ], [ 35.494328988483169, 0.255236070320732 ], [ 35.490727914483152, 0.25224534732075 ], [ 35.487126839483203, 0.247057359320761 ], [ 35.494512093483188, 0.234850327320769 ], [ 35.496892464483203, 0.230028550320751 ], [ 35.500493539483152, 0.22685472232075 ], [ 35.504521859483184, 0.223863999320767 ], [ 35.507512582483166, 0.223863999320767 ], [ 35.510686410483167, 0.225634019320748 ], [ 35.51453162548318, 0.22685472232075 ], [ 35.520085824483196, 0.227220933320777 ], [ 35.525334847483172, 0.228075425320751 ], [ 35.528325570483155, 0.228258531320759 ], [ 35.531743539483152, 0.226427476320734 ], [ 35.536504281483182, 0.226244370320783 ], [ 35.540288461483151, 0.223436753320752 ], [ 35.536687386483202, 0.220873277320775 ], [ 35.531316293483194, 0.218431870320783 ], [ 35.52429725048318, 0.205858628320752 ], [ 35.520696175483174, 0.20146409732075 ], [ 35.520329964483203, 0.195665757320737 ], [ 35.513310921483189, 0.187242906320759 ], [ 35.520513070483155, 0.187059800320751 ], [ 35.531316293483194, 0.187426011320779 ], [ 35.534917367483153, 0.186815660320744 ], [ 35.540105355483199, 0.187853257320737 ], [ 35.555730355483199, 0.188463609320761 ], [ 35.564092171483189, 0.19365159732075 ], [ 35.568486703483181, 0.196642320320732 ], [ 35.568303597483172, 0.191027085320738 ], [ 35.569341195483155, 0.184618394320748 ], [ 35.576726449483196, 0.181017320320732 ], [ 35.578923714483203, 0.177416245320783 ], [ 35.581120980483199, 0.175646226320734 ], [ 35.583135140483186, 0.173448960320738 ], [ 35.586308968483188, 0.170641343320765 ], [ 35.588689339483203, 0.168016831320754 ], [ 35.59070350048318, 0.15263597232075 ], [ 35.591313851483157, 0.146654527320775 ], [ 35.576116097483172, 0.113268296320766 ], [ 35.575322640483186, 0.098619859320761 ], [ 35.574101937483185, 0.064257066320747 ], [ 35.558293832483166, 0.076219956320754 ], [ 35.549504769483171, 0.082262437320762 ], [ 35.545903695483155, 0.085863511320779 ], [ 35.542485726483157, 0.087267320320732 ], [ 35.541142953483181, 0.081652085320738 ], [ 35.540715707483166, 0.07823411732073 ], [ 35.544499886483202, 0.072435777320775 ], [ 35.545293343483188, 0.069261949320773 ], [ 35.542485726483157, 0.064867417320781 ], [ 35.53992225048318, 0.059862535320744 ], [ 35.547124398483156, 0.055223863320746 ], [ 35.543706429483159, 0.040453355320776 ], [ 35.536504281483182, 0.037828843320765 ], [ 35.526494515483186, 0.036669175320751 ], [ 35.52429725048318, 0.020067613320746 ], [ 35.522099984483184, 0.013475816320747 ], [ 35.516911996483195, 0.012255113320746 ], [ 35.515141976483157, 0.007616441320747 ], [ 35.509526742483153, 0.006639878320752 ], [ 35.506536019483171, 0.006639878320752 ], [ 35.49890662548318, 0.009264390320763 ], [ 35.495305550483174, 0.012438218320765 ], [ 35.489934457483166, 0.013048570320732 ], [ 35.485906136483202, 0.013231675320751 ], [ 35.479741586483151, 0.013231675320751 ], [ 35.46429969148317, 0.009630601320734 ], [ 35.458501351483157, 0.010851304320736 ], [ 35.461919320483155, 0.013231675320751 ], [ 35.466313851483157, 0.015245835320738 ], [ 35.471501839483203, 0.018053452320769 ], [ 35.468938363483169, 0.022447984320761 ], [ 35.465886605483199, 0.025438706320754 ], [ 35.449101937483185, 0.025072495320783 ], [ 35.445500863483169, 0.024828355320776 ], [ 35.426946175483174, 0.024828355320776 ], [ 35.408330453483181, 0.02623216332074 ], [ 35.40430213248316, 0.026842515320763 ], [ 35.394292367483153, 0.032457749320767 ], [ 35.389897836483151, 0.034655015320763 ], [ 35.385137093483188, 0.036241929320736 ], [ 35.380742562483185, 0.037462632320737 ], [ 35.376897347483172, 0.038866441320747 ], [ 35.369695199483196, 0.040819566320747 ], [ 35.350896371483195, 0.056627671320766 ], [ 35.348699105483199, 0.06083909732075 ], [ 35.351933968483188, 0.063219468320765 ], [ 35.354741586483151, 0.062670152320775 ], [ 35.359136117483153, 0.063036363320746 ], [ 35.36273719148317, 0.069261949320773 ], [ 35.36609412548318, 0.071031968320765 ], [ 35.370488656483182, 0.070238511320779 ], [ 35.373723519483171, 0.072618882320737 ], [ 35.380742562483185, 0.092272202320769 ], [ 35.382512582483166, 0.094652574320773 ], [ 35.382512582483166, 0.098436753320752 ], [ 35.385320199483196, 0.105822007320737 ], [ 35.387517464483203, 0.112841050320751 ], [ 35.384343636483202, 0.114672105320776 ], [ 35.379704964483203, 0.11442796432078 ], [ 35.375737679483159, 0.11607591332074 ], [ 35.373296273483156, 0.119615952320769 ], [ 35.372136605483199, 0.123033921320766 ], [ 35.36914588248316, 0.126024644320748 ], [ 35.364934457483166, 0.126634995320783 ], [ 35.358525765483186, 0.128649156320759 ], [ 35.353703988483169, 0.131029527320775 ], [ 35.343144906483182, 0.136644761320779 ], [ 35.33594275748316, 0.140673081320754 ], [ 35.336492074483196, 0.14482347232075 ], [ 35.336736214483203, 0.156664292320781 ], [ 35.338933480483199, 0.161425035320744 ], [ 35.341741097483172, 0.16685716332074 ], [ 35.342900765483186, 0.17003099232073 ], [ 35.342534554483159, 0.173876206320754 ], [ 35.3421073084832, 0.183824937320762 ], [ 35.341741097483172, 0.188219468320765 ], [ 35.341741097483172, 0.192430894320748 ], [ 35.349492562483185, 0.191454332320743 ], [ 35.35352088248316, 0.189257066320747 ], [ 35.356694711483151, 0.18864671432078 ], [ 35.360539925483174, 0.188463609320761 ], [ 35.366338265483186, 0.185228745320783 ], [ 35.366704476483157, 0.191027085320738 ], [ 35.366521371483195, 0.198046128320752 ], [ 35.363896859483184, 0.200426499320767 ], [ 35.360906136483202, 0.204821031320759 ], [ 35.358891976483157, 0.208055894320748 ], [ 35.357915414483152, 0.21122972232075 ], [ 35.341496957483166, 0.206041734320761 ], [ 35.336919320483155, 0.212023179320736 ], [ 35.334538949483196, 0.214830796320766 ], [ 35.333135140483186, 0.218248765320763 ], [ 35.330510629483165, 0.221422593320765 ], [ 35.325932992483153, 0.225267808320777 ], [ 35.322515023483156, 0.225817124320767 ], [ 35.312322152483198, 0.217455308320777 ], [ 35.309514535483167, 0.219469468320765 ], [ 35.306706918483194, 0.22184983932078 ], [ 35.302922738483169, 0.223253648320733 ], [ 35.2991385584832, 0.224230210320738 ], [ 35.296697152483198, 0.225817124320767 ], [ 35.294316781483182, 0.228441636320779 ], [ 35.291509164483152, 0.230638902320775 ], [ 35.289128793483194, 0.233019273320733 ], [ 35.286687386483202, 0.23643724232073 ], [ 35.279912484483184, 0.246874253320752 ], [ 35.277104867483153, 0.250658433320777 ], [ 35.274907601483157, 0.254259507320737 ], [ 35.27234412548318, 0.258043687320762 ], [ 35.269719613483169, 0.261461656320759 ], [ 35.267339242483153, 0.265245835320738 ], [ 35.262090218483188, 0.272875230320776 ], [ 35.261296761483202, 0.275865952320769 ], [ 35.258489144483171, 0.277819077320769 ], [ 35.252934945483155, 0.286241929320736 ], [ 35.244695199483196, 0.297655503320752 ], [ 35.238530648483156, 0.306627671320766 ], [ 35.233525765483186, 0.314440171320766 ], [ 35.226933968483188, 0.324266831320754 ], [ 35.223699105483199, 0.330248277320775 ], [ 35.22211219148317, 0.332628648320733 ], [ 35.219304574483196, 0.337816636320779 ], [ 35.215886605483199, 0.343248765320763 ], [ 35.213933480483199, 0.34684983932078 ], [ 35.19672156648317, 0.375475327320769 ], [ 35.194890511483202, 0.378832261320779 ], [ 35.193730843483188, 0.381822984320761 ], [ 35.1917166834832, 0.385851304320736 ], [ 35.190495980483199, 0.389269273320733 ], [ 35.186711800483174, 0.398668687320762 ], [ 35.184331429483159, 0.402819077320769 ], [ 35.183110726483157, 0.405870835320738 ], [ 35.181706918483194, 0.408617417320781 ], [ 35.180303109483184, 0.41221849232073 ], [ 35.177312386483202, 0.418871324320773 ], [ 35.173528207483166, 0.42106858932078 ], [ 35.171514046483189, 0.423265855320776 ], [ 35.1585135584832, 0.442858140320763 ], [ 35.15430213248316, 0.449633042320781 ], [ 35.151311410483167, 0.453844468320765 ], [ 35.1428885584832, 0.470446031320759 ], [ 35.145513070483155, 0.475023667320781 ], [ 35.148931039483152, 0.47966233932078 ], [ 35.152104867483153, 0.483019273320733 ], [ 35.153691781483182, 0.486254136320779 ], [ 35.157292855483199, 0.495226304320736 ], [ 35.158696664483152, 0.499254624320767 ], [ 35.158696664483152, 0.502672593320765 ], [ 35.161504281483182, 0.503221910320744 ], [ 35.160893929483159, 0.506639878320752 ], [ 35.161504281483182, 0.512621324320773 ], [ 35.16211463248316, 0.516039292320781 ], [ 35.162541879483165, 0.520616929320736 ], [ 35.163701546483189, 0.528063218320765 ], [ 35.166142953483181, 0.538866441320747 ], [ 35.168096078483181, 0.544664781320759 ], [ 35.164495004483165, 0.543444077320769 ], [ 35.161687386483202, 0.540270249320767 ], [ 35.1585135584832, 0.538439195320732 ], [ 35.154546273483156, 0.536852281320759 ], [ 35.150090707483166, 0.537035386320779 ], [ 35.146306527483198, 0.537462632320737 ], [ 35.143132699483196, 0.535631577320769 ], [ 35.139287484483184, 0.535875718320765 ], [ 35.136296761483202, 0.538439195320732 ], [ 35.134343636483202, 0.541063706320754 ], [ 35.130742562483185, 0.54185716332074 ], [ 35.127507699483196, 0.543627183320777 ], [ 35.124516976483157, 0.543444077320769 ], [ 35.117742074483196, 0.544420640320763 ], [ 35.115300668483194, 0.54606858932078 ], [ 35.111943734483184, 0.547228257320737 ], [ 35.108891976483157, 0.549059312320762 ], [ 35.107915414483152, 0.551866929320736 ], [ 35.104497445483155, 0.555040757320737 ], [ 35.104314339483203, 0.55162278832074 ], [ 35.100102914483152, 0.53825608932078 ], [ 35.063542855483199, 0.553270738320746 ], [ 35.059331429483159, 0.555223863320746 ], [ 35.046941293483194, 0.560472886320779 ], [ 35.040288461483151, 0.560472886320779 ], [ 35.036321175483174, 0.560228745320783 ], [ 35.033086312483185, 0.560228745320783 ], [ 35.02234412548318, 0.559069077320769 ], [ 35.019109261483202, 0.559252183320777 ], [ 35.013738168483194, 0.558458726320734 ], [ 35.010503304483159, 0.558275620320783 ], [ 35.006291879483165, 0.557665269320748 ], [ 35.002507699483196, 0.557421128320752 ], [ 34.995915902483198, 0.556627671320766 ], [ 34.984929574483196, 0.55583421432078 ], [ 34.964543832483166, 0.554064195320732 ], [ 34.956120980483199, 0.553636949320773 ], [ 34.943303597483172, 0.552233140320763 ], [ 34.931340707483166, 0.551439683320777 ], [ 34.918889535483167, 0.550218980320776 ], [ 34.911504281483182, 0.549852769320748 ], [ 34.908086312483185, 0.549425523320733 ], [ 34.904546273483156, 0.549425523320733 ], [ 34.899907601483157, 0.548876206320754 ], [ 34.887334359483184, 0.54802171432078 ], [ 34.881291879483165, 0.547838609320761 ], [ 34.874944222483172, 0.547045152320775 ], [ 34.868108285483167, 0.546434800320751 ], [ 34.863896859483184, 0.546251695320732 ], [ 34.854497445483155, 0.547228257320737 ], [ 34.859746468483188, 0.553636949320773 ], [ 34.897710336483151, 0.598070542320781 ], [ 34.896306527483198, 0.600817124320767 ], [ 34.891301644483171, 0.605638902320775 ], [ 34.898320687483185, 0.604235093320765 ], [ 34.901128304483159, 0.602648179320736 ], [ 34.908086312483185, 0.594469468320765 ], [ 34.911321175483174, 0.59263841332074 ], [ 34.91992713248316, 0.589830796320766 ], [ 34.924932015483186, 0.593248765320763 ], [ 34.935491097483172, 0.60185472232075 ], [ 34.938542855483199, 0.60362474232073 ], [ 34.945134652483198, 0.606676499320767 ], [ 34.953740609483184, 0.606859605320776 ], [ 34.958745492483153, 0.609056870320783 ], [ 34.963506234483184, 0.607836167320781 ], [ 34.9671073084832, 0.60966722232075 ], [ 34.969121468483188, 0.612047593320765 ], [ 34.971745980483199, 0.613634507320737 ], [ 34.97351600048318, 0.616625230320776 ], [ 34.975102914483152, 0.620043199320773 ], [ 34.977300179483159, 0.62224046432078 ], [ 34.980107796483189, 0.624437730320776 ], [ 34.984136117483153, 0.626268785320744 ], [ 34.988530648483156, 0.627672593320765 ], [ 34.993535531483182, 0.628649156320759 ], [ 34.996892464483203, 0.631029527320775 ], [ 34.998540414483152, 0.634020249320767 ], [ 35.0003104334832, 0.636461656320759 ], [ 35.026311410483167, 0.612047593320765 ], [ 35.02930213248316, 0.613451402320775 ], [ 35.031499398483156, 0.615221421320766 ], [ 35.033086312483185, 0.618639390320763 ], [ 35.035344613483169, 0.622423570320732 ], [ 35.03711463248316, 0.62706224232073 ], [ 35.040898812483185, 0.631456773320733 ], [ 35.040715707483166, 0.638231675320751 ], [ 35.044133675483174, 0.636461656320759 ], [ 35.047917855483199, 0.635424058320777 ], [ 35.053288949483196, 0.634447495320783 ], [ 35.055486214483203, 0.630419175320751 ], [ 35.058293832483166, 0.629259507320737 ], [ 35.06390906648317, 0.631822984320761 ], [ 35.0667166834832, 0.631273667320781 ], [ 35.069890511483202, 0.629076402320775 ], [ 35.07312537548318, 0.627855699320773 ], [ 35.076299203483181, 0.628832261320779 ], [ 35.080144418483194, 0.628649156320759 ], [ 35.083501351483157, 0.629076402320775 ], [ 35.08734656648317, 0.628832261320779 ], [ 35.094121468483188, 0.633837144320748 ], [ 35.096929086483151, 0.635668199320773 ], [ 35.09851600048318, 0.638231675320751 ], [ 35.100713265483186, 0.641222398320733 ], [ 35.10352088248316, 0.64464036732073 ], [ 35.106694711483151, 0.64464036732073 ], [ 35.110112679483159, 0.642015855320776 ], [ 35.114507211483151, 0.640062730320776 ], [ 35.117314828483181, 0.641649644320748 ], [ 35.117314828483181, 0.645067613320746 ], [ 35.118901742483153, 0.64763108932078 ], [ 35.122136605483199, 0.649645249320767 ], [ 35.124516976483157, 0.652269761320779 ], [ 35.128728402483198, 0.653063218320765 ], [ 35.1331229334832, 0.653673570320732 ], [ 35.135930550483174, 0.655260484320761 ], [ 35.138921273483156, 0.657457749320767 ], [ 35.142339242483153, 0.659471910320744 ], [ 35.14594031648317, 0.658251206320754 ], [ 35.149114144483171, 0.658068101320734 ], [ 35.151921761483202, 0.658861558320777 ], [ 35.154912484483184, 0.660021226320734 ], [ 35.156133187483185, 0.663622300320751 ], [ 35.152715218483188, 0.667650620320783 ], [ 35.154729379483165, 0.671862046320766 ], [ 35.155889046483189, 0.682665269320748 ], [ 35.155889046483189, 0.697435777320775 ], [ 35.155095589483203, 0.73942796432078 ], [ 35.151494515483186, 0.738817613320746 ], [ 35.146916879483165, 0.738817613320746 ], [ 35.144902718483188, 0.746874253320752 ], [ 35.144109261483202, 0.826647202320769 ], [ 35.140325082483166, 0.827623765320763 ], [ 35.136296761483202, 0.82841722232075 ], [ 35.132329476483157, 0.828844468320765 ], [ 35.129521859483184, 0.827867906320759 ], [ 35.126897347483172, 0.826647202320769 ], [ 35.125920785483167, 0.823473374320767 ], [ 35.1174979334832, 0.847460191320747 ], [ 35.116704476483157, 0.850634019320748 ], [ 35.11328650748316, 0.880236070320732 ], [ 35.115727914483152, 0.882250230320776 ], [ 35.116521371483195, 0.887072007320737 ], [ 35.114324105483199, 0.892015855320776 ], [ 35.11609412548318, 0.896471421320766 ], [ 35.1174979334832, 0.899034898320733 ], [ 35.117742074483196, 0.90245286732073 ], [ 35.118291390483186, 0.906420152320775 ], [ 35.121343148483156, 0.909655015320763 ], [ 35.124944222483172, 0.911425035320744 ], [ 35.128118050483174, 0.913439195320732 ], [ 35.128545296483189, 0.917040269320748 ], [ 35.131108773483156, 0.919054429320736 ], [ 35.134526742483153, 0.918444077320769 ], [ 35.13812781648317, 0.918627183320777 ], [ 35.141301644483171, 0.919420640320763 ], [ 35.144109261483202, 0.917467515320763 ], [ 35.147527230483199, 0.917223374320767 ], [ 35.151738656483182, 0.917833726320734 ], [ 35.156926644483171, 0.917833726320734 ], [ 35.167302621483195, 0.921617906320759 ], [ 35.173100961483151, 0.919237535320744 ], [ 35.176335824483196, 0.919847886320779 ], [ 35.18109656648317, 0.921434800320751 ], [ 35.185918343483188, 0.923632066320747 ], [ 35.19031287548318, 0.924425523320733 ], [ 35.193730843483188, 0.92466966332074 ], [ 35.197515023483156, 0.92302171432078 ], [ 35.201909554483159, 0.921617906320759 ], [ 35.207097543483194, 0.921862046320766 ], [ 35.211736214483203, 0.920458238320746 ], [ 35.215886605483199, 0.920458238320746 ], [ 35.220342171483189, 0.919054429320736 ], [ 35.224309457483166, 0.919237535320744 ], [ 35.22852088248316, 0.920824449320773 ], [ 35.232488168483194, 0.924059312320762 ], [ 35.234746468483188, 0.92607347232075 ], [ 35.236089242483153, 0.929064195320732 ], [ 35.244695199483196, 0.933275620320783 ], [ 35.247136605483199, 0.936449449320773 ], [ 35.2503104334832, 0.938219468320765 ], [ 35.25391150748316, 0.939257066320747 ], [ 35.261296761483202, 0.936449449320773 ], [ 35.263921273483156, 0.93443528832074 ], [ 35.267339242483153, 0.93443528832074 ], [ 35.271123421483189, 0.934069077320769 ], [ 35.272710336483151, 0.93083421432078 ], [ 35.273931039483152, 0.927416245320783 ], [ 35.2757010584832, 0.92466966332074 ], [ 35.278325570483155, 0.922045152320775 ], [ 35.281316293483194, 0.919664781320759 ], [ 35.284490121483195, 0.919054429320736 ], [ 35.287908089483203, 0.917833726320734 ], [ 35.2913260584832, 0.915453355320776 ], [ 35.293523324483196, 0.912462632320737 ], [ 35.294316781483182, 0.909227769320748 ], [ 35.295903695483155, 0.905626695320732 ], [ 35.297124398483156, 0.901659410320744 ], [ 35.299932015483186, 0.898058335320738 ], [ 35.303288949483196, 0.895067613320746 ], [ 35.304509652483198, 0.89146653832074 ], [ 35.306706918483194, 0.889025132320737 ], [ 35.308293832483166, 0.893236558320777 ], [ 35.327336800483174, 0.926256577320769 ], [ 35.328923714483203, 0.929430406320759 ], [ 35.331304086483151, 0.931444566320747 ], [ 35.334722054483159, 0.92784349232073 ], [ 35.349492562483185, 0.919847886320779 ], [ 35.354497445483155, 0.931627671320766 ], [ 35.360539925483174, 0.94346849232073 ], [ 35.365117562483185, 0.941820542320781 ], [ 35.369328988483169, 0.940050523320733 ], [ 35.372136605483199, 0.938219468320765 ], [ 35.377690804483159, 0.936266343320765 ], [ 35.382939828483181, 0.939257066320747 ], [ 35.385686410483167, 0.943224351320734 ], [ 35.388738168483194, 0.94365159732075 ], [ 35.392095101483157, 0.942675035320744 ], [ 35.396123421483189, 0.94224778832074 ], [ 35.411504281483182, 0.939073960320738 ], [ 35.421086800483174, 0.937426011320779 ], [ 35.42105754348318, 0.937293850320768 ] ] ] } } +, +{ "type": "Feature", "id": 26, "properties": { "OBJECTID": 27, "ID_": 778, "COUNTY_NAM": "ELEGEYO-MARAKWET", "CONST_CODE": 147, "CONSTITUEN": "MARAKWET EAST", "COUNTY_COD": 28, "Shape_Leng": 3.8541213715, "Shape_Area": 0.24576217495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.6986421264832, 1.278294274320726 ], [ 35.698308480483199, 1.276659410320744 ], [ 35.701116097483172, 1.275438706320754 ], [ 35.702886117483153, 1.272447984320761 ], [ 35.703740609483184, 1.26964036732073 ], [ 35.707097543483194, 1.270616929320736 ], [ 35.70789100048318, 1.266832749320767 ], [ 35.705327523483156, 1.261644761320779 ], [ 35.702886117483153, 1.257860581320754 ], [ 35.700322640483186, 1.255663316320747 ], [ 35.701909554483159, 1.251634995320783 ], [ 35.701299203483181, 1.248644273320733 ], [ 35.702092660483167, 1.244615952320769 ], [ 35.703313363483169, 1.239855210320738 ], [ 35.700932992483153, 1.23747483932078 ], [ 35.701299203483181, 1.233873765320763 ], [ 35.703496468483188, 1.230028550320751 ], [ 35.70453406648317, 1.226244370320783 ], [ 35.703496468483188, 1.222643296320766 ], [ 35.701543343483188, 1.220262925320751 ], [ 35.700505746483195, 1.217272202320769 ], [ 35.69812537548318, 1.21403733932078 ], [ 35.698491586483151, 1.209642808320777 ], [ 35.698308480483199, 1.205675523320733 ], [ 35.697942269483171, 1.202440660320744 ], [ 35.699346078483181, 1.199633042320781 ], [ 35.702886117483153, 1.197863023320733 ], [ 35.704717171483189, 1.190416734320761 ], [ 35.704106820483155, 1.187670152320775 ], [ 35.704106820483155, 1.183458726320734 ], [ 35.705510629483165, 1.17662278832074 ], [ 35.70593787548318, 1.169237535320744 ], [ 35.705510629483165, 1.165270249320767 ], [ 35.704900277483198, 1.16185228132076 ], [ 35.705693734483184, 1.158434312320762 ], [ 35.705327523483156, 1.154222886320779 ], [ 35.70593787548318, 1.149645249320767 ], [ 35.709722054483159, 1.148058335320738 ], [ 35.7073416834832, 1.14464036732073 ], [ 35.70648719148317, 1.139269273320733 ], [ 35.706120980483199, 1.13487474232073 ], [ 35.706120980483199, 1.131639878320752 ], [ 35.704289925483174, 1.129076402320775 ], [ 35.702092660483167, 1.125475327320769 ], [ 35.702519906483182, 1.121019761320779 ], [ 35.700932992483153, 1.117662827320769 ], [ 35.698308480483199, 1.11143724232073 ], [ 35.697942269483171, 1.107653062320762 ], [ 35.699712289483152, 1.10466233932078 ], [ 35.69812537548318, 1.10185472232075 ], [ 35.694524300483174, 1.10185472232075 ], [ 35.692693246483195, 1.099657456320754 ], [ 35.690923226483157, 1.097032945320732 ], [ 35.68750525748316, 1.096422593320765 ], [ 35.685735238483169, 1.09385911732073 ], [ 35.685124886483202, 1.090258042320781 ], [ 35.6839041834832, 1.086840074320773 ], [ 35.679936898483156, 1.08604661732073 ], [ 35.678288949483196, 1.08122483932078 ], [ 35.677922738483169, 1.077623765320763 ], [ 35.675725472483172, 1.073656480320776 ], [ 35.672490609483184, 1.071276109320761 ], [ 35.673528207483166, 1.067675035320744 ], [ 35.675298226483157, 1.064073960320738 ], [ 35.675542367483153, 1.059862535320744 ], [ 35.673711312483185, 1.056017320320732 ], [ 35.672490609483184, 1.052233140320763 ], [ 35.670293343483188, 1.049425523320733 ], [ 35.669499886483202, 1.04606858932078 ], [ 35.671941293483194, 1.043444077320769 ], [ 35.668523324483196, 1.041429917320781 ], [ 35.667485726483157, 1.037828843320765 ], [ 35.664739144483171, 1.03404466332074 ], [ 35.660710824483196, 1.033434312320762 ], [ 35.657720101483157, 1.030870835320738 ], [ 35.655095589483203, 1.027025620320783 ], [ 35.651311410483167, 1.027269761320779 ], [ 35.647099984483184, 1.027025620320783 ], [ 35.644292367483153, 1.023241441320747 ], [ 35.6428885584832, 1.01964036732073 ], [ 35.643926156483182, 1.016222398320733 ], [ 35.643498910483167, 1.011644761320779 ], [ 35.6409354334832, 1.004869859320761 ], [ 35.638738168483194, 1.002428452320769 ], [ 35.637517464483203, 0.999864976320734 ], [ 35.636296761483202, 0.996263902320775 ], [ 35.634709847483172, 0.99302903832074 ], [ 35.634709847483172, 0.990038316320747 ], [ 35.63672400748316, 0.987047593320765 ], [ 35.638921273483156, 0.984239976320734 ], [ 35.63953162548318, 0.981432359320761 ], [ 35.639287484483184, 0.978258531320759 ], [ 35.636296761483202, 0.976244370320783 ], [ 35.63672400748316, 0.973253648320733 ], [ 35.636540902483198, 0.969652574320773 ], [ 35.638310921483189, 0.965258042320781 ], [ 35.635320199483196, 0.963426988320746 ], [ 35.637334359483184, 0.96104661732073 ], [ 35.635686410483167, 0.956652085320738 ], [ 35.630498421483189, 0.951219956320754 ], [ 35.631536019483171, 0.948473374320767 ], [ 35.632329476483157, 0.944628160320744 ], [ 35.632512582483166, 0.937242906320759 ], [ 35.634526742483153, 0.933031480320776 ], [ 35.635930550483174, 0.928270738320746 ], [ 35.635503304483159, 0.924059312320762 ], [ 35.63672400748316, 0.919664781320759 ], [ 35.636113656483182, 0.915819566320747 ], [ 35.635137093483188, 0.912035386320779 ], [ 35.632939828483181, 0.908617417320781 ], [ 35.630132211483151, 0.907274644320748 ], [ 35.627141488483169, 0.906420152320775 ], [ 35.627507699483196, 0.900621812320762 ], [ 35.628118050483174, 0.896044175320751 ], [ 35.627141488483169, 0.892443101320734 ], [ 35.626714242483153, 0.889025132320737 ], [ 35.624089730483199, 0.885851304320736 ], [ 35.623723519483171, 0.882616441320747 ], [ 35.626103890483186, 0.879076402320775 ], [ 35.626897347483172, 0.874620835320738 ], [ 35.6253104334832, 0.87224046432078 ], [ 35.624944222483172, 0.86924974232073 ], [ 35.624089730483199, 0.865648667320781 ], [ 35.624944222483172, 0.859423081320754 ], [ 35.625920785483167, 0.855455796320766 ], [ 35.626897347483172, 0.852465074320773 ], [ 35.629338754483165, 0.850634019320748 ], [ 35.636113656483182, 0.846422593320765 ], [ 35.636296761483202, 0.843065660320744 ], [ 35.639104379483165, 0.841417710320738 ], [ 35.642339242483153, 0.83903733932078 ], [ 35.641118539483152, 0.835436265320763 ], [ 35.639287484483184, 0.832262437320762 ], [ 35.639714730483199, 0.827867906320759 ], [ 35.63812781648317, 0.824816148320733 ], [ 35.641728890483186, 0.822252671320766 ], [ 35.643132699483196, 0.818834702320769 ], [ 35.6428885584832, 0.815843980320776 ], [ 35.640141976483157, 0.813036363320746 ], [ 35.636540902483198, 0.808458726320734 ], [ 35.634526742483153, 0.803636949320773 ], [ 35.635503304483159, 0.799059312320762 ], [ 35.636540902483198, 0.790453355320776 ], [ 35.637517464483203, 0.786669175320751 ], [ 35.635137093483188, 0.784227769320748 ], [ 35.635686410483167, 0.780870835320738 ], [ 35.635137093483188, 0.776476304320736 ], [ 35.6331229334832, 0.772447984320761 ], [ 35.631108773483156, 0.76787034732075 ], [ 35.629521859483184, 0.763658921320766 ], [ 35.628118050483174, 0.757067124320767 ], [ 35.626897347483172, 0.753649156320759 ], [ 35.626531136483202, 0.750658433320777 ], [ 35.626531136483202, 0.746263902320775 ], [ 35.625127328483181, 0.742052476320734 ], [ 35.622136605483199, 0.738817613320746 ], [ 35.621343148483156, 0.734850327320769 ], [ 35.624089730483199, 0.732225816320747 ], [ 35.624700082483166, 0.727831285320744 ], [ 35.627507699483196, 0.726427476320734 ], [ 35.628301156483182, 0.723619859320761 ], [ 35.630498421483189, 0.720629136320779 ], [ 35.63171912548318, 0.71763841332074 ], [ 35.630498421483189, 0.714830796320766 ], [ 35.633306039483152, 0.712023179320736 ], [ 35.634343636483202, 0.705248277320775 ], [ 35.634526742483153, 0.698046128320752 ], [ 35.631902230483199, 0.69365159732075 ], [ 35.632512582483166, 0.690233628320752 ], [ 35.6253104334832, 0.685045640320763 ], [ 35.624700082483166, 0.681017320320732 ], [ 35.6253104334832, 0.67784349232073 ], [ 35.621343148483156, 0.67607347232075 ], [ 35.616521371483195, 0.675829331320754 ], [ 35.61414100048318, 0.673448960320738 ], [ 35.610112679483159, 0.67106858932078 ], [ 35.606511605483199, 0.670458238320746 ], [ 35.604741586483151, 0.668016831320754 ], [ 35.605290902483198, 0.664232652320775 ], [ 35.606511605483199, 0.659838120320783 ], [ 35.606511605483199, 0.655626695320732 ], [ 35.608342660483167, 0.653063218320765 ], [ 35.608891976483157, 0.650072495320783 ], [ 35.608342660483167, 0.647264878320752 ], [ 35.609136117483153, 0.644274156320759 ], [ 35.608342660483167, 0.641039292320781 ], [ 35.607121957483166, 0.637438218320765 ], [ 35.603337777483198, 0.634447495320783 ], [ 35.601323617483153, 0.631029527320775 ], [ 35.600530160483167, 0.627855699320773 ], [ 35.599309457483166, 0.624437730320776 ], [ 35.59711219148317, 0.621263902320775 ], [ 35.597295296483189, 0.612841050320751 ], [ 35.59851600048318, 0.604418199320773 ], [ 35.599309457483166, 0.601427476320734 ], [ 35.601323617483153, 0.598863999320767 ], [ 35.60492469148317, 0.596056382320737 ], [ 35.609502328483181, 0.593248765320763 ], [ 35.61273719148317, 0.590074937320762 ], [ 35.612126839483203, 0.585863511320779 ], [ 35.613530648483156, 0.582445542320781 ], [ 35.61414100048318, 0.577867906320759 ], [ 35.613103402483198, 0.573046128320752 ], [ 35.611089242483153, 0.56846849232073 ], [ 35.608708871483195, 0.564623277320775 ], [ 35.606511605483199, 0.561632554320736 ], [ 35.60352088248316, 0.555040757320737 ], [ 35.602910531483182, 0.551256577320769 ], [ 35.604131234483184, 0.546862046320766 ], [ 35.605718148483156, 0.542467515320763 ], [ 35.60492469148317, 0.538439195320732 ], [ 35.603093636483202, 0.53526536732073 ], [ 35.603703988483169, 0.531237046320766 ], [ 35.605718148483156, 0.528429429320736 ], [ 35.609136117483153, 0.526659410320744 ], [ 35.611516488483169, 0.524034898320733 ], [ 35.614324105483199, 0.517443101320734 ], [ 35.61328650748316, 0.514635484320761 ], [ 35.614324105483199, 0.510424058320777 ], [ 35.616704476483157, 0.506456773320733 ], [ 35.622930062483185, 0.503466050320751 ], [ 35.625737679483159, 0.501451890320763 ], [ 35.630132211483151, 0.500475327320769 ], [ 35.633916390483186, 0.488451402320775 ], [ 35.632939828483181, 0.485643785320744 ], [ 35.635686410483167, 0.47685472232075 ], [ 35.639104379483165, 0.474474351320734 ], [ 35.6409354334832, 0.469835679320736 ], [ 35.643315804483159, 0.46763841332074 ], [ 35.644719613483169, 0.46403733932078 ], [ 35.64789344148317, 0.460253160320744 ], [ 35.646733773483156, 0.457628648320733 ], [ 35.64734412548318, 0.453661363320746 ], [ 35.645329964483203, 0.450670640320763 ], [ 35.648686898483156, 0.448839585320738 ], [ 35.651738656483182, 0.447618882320737 ], [ 35.653325570483155, 0.445238511320779 ], [ 35.653508675483174, 0.44224778832074 ], [ 35.653935921483189, 0.439073960320738 ], [ 35.655095589483203, 0.436266343320765 ], [ 35.655095589483203, 0.432665269320748 ], [ 35.654546273483156, 0.429064195320732 ], [ 35.655339730483199, 0.424425523320733 ], [ 35.657720101483157, 0.420824449320773 ], [ 35.661504281483182, 0.41044847232075 ], [ 35.659734261483202, 0.407640855320776 ], [ 35.656316293483194, 0.405626695320732 ], [ 35.656926644483171, 0.401842515320763 ], [ 35.656316293483194, 0.396471421320766 ], [ 35.659123910483167, 0.393663804320736 ], [ 35.660344613483169, 0.390428941320747 ], [ 35.66211463248316, 0.387072007320737 ], [ 35.665105355483199, 0.386217515320763 ], [ 35.667729867483153, 0.384630601320734 ], [ 35.668706429483159, 0.380236070320732 ], [ 35.672124398483156, 0.37706224232073 ], [ 35.679936898483156, 0.372850816320747 ], [ 35.681706918483194, 0.370226304320736 ], [ 35.684514535483167, 0.371019761320779 ], [ 35.688298714483203, 0.369615952320769 ], [ 35.690923226483157, 0.367845933320777 ], [ 35.697698129483165, 0.363817613320746 ], [ 35.698491586483151, 0.367052476320734 ], [ 35.701909554483159, 0.363634507320737 ], [ 35.70593787548318, 0.362657945320732 ], [ 35.708745492483153, 0.359850327320769 ], [ 35.710698617483153, 0.356859605320776 ], [ 35.718328011483202, 0.355028550320751 ], [ 35.720891488483169, 0.353441636320779 ], [ 35.722539437483185, 0.349230210320738 ], [ 35.720891488483169, 0.346056382320737 ], [ 35.720098031483182, 0.34263841332074 ], [ 35.723088754483165, 0.338243882320737 ], [ 35.721135629483165, 0.335253160320744 ], [ 35.720342171483189, 0.331468980320776 ], [ 35.718328011483202, 0.32841722232075 ], [ 35.717717660483167, 0.324816148320733 ], [ 35.717717660483167, 0.320848863320746 ], [ 35.71570350048318, 0.31865159732075 ], [ 35.713689339483203, 0.315660874320767 ], [ 35.713506234483184, 0.311449449320773 ], [ 35.71429969148317, 0.307421128320752 ], [ 35.715337289483152, 0.296617906320759 ], [ 35.714910043483194, 0.291246812320762 ], [ 35.715093148483156, 0.286425035320744 ], [ 35.71429969148317, 0.28044358932078 ], [ 35.714543832483166, 0.276049058320777 ], [ 35.71289588248316, 0.272875230320776 ], [ 35.713323129483165, 0.26964036732073 ], [ 35.711125863483169, 0.266649644320748 ], [ 35.711125863483169, 0.263658921320766 ], [ 35.710088265483186, 0.259630601320734 ], [ 35.710088265483186, 0.255663316320747 ], [ 35.712102425483174, 0.252428452320769 ], [ 35.714910043483194, 0.248644273320733 ], [ 35.717900765483186, 0.240465562320762 ], [ 35.719487679483159, 0.237841050320751 ], [ 35.720891488483169, 0.234423081320754 ], [ 35.721501839483203, 0.231066148320733 ], [ 35.721501839483203, 0.22667161732073 ], [ 35.722905648483156, 0.220018785320744 ], [ 35.723088754483165, 0.215258042320781 ], [ 35.721501839483203, 0.210619370320783 ], [ 35.718328011483202, 0.208238999320767 ], [ 35.7171073084832, 0.205065171320766 ], [ 35.713323129483165, 0.20427171432078 ], [ 35.7092948084832, 0.202440660320744 ], [ 35.70648719148317, 0.200670640320763 ], [ 35.70313025748316, 0.197069566320747 ], [ 35.700932992483153, 0.192430894320748 ], [ 35.696904671483189, 0.189440171320766 ], [ 35.693486703483181, 0.186022202320769 ], [ 35.693486703483181, 0.182421128320752 ], [ 35.695134652483198, 0.178820054320736 ], [ 35.693730843483188, 0.175829331320754 ], [ 35.672307504483165, 0.169664781320759 ], [ 35.66992713248316, 0.168016831320754 ], [ 35.656926644483171, 0.168016831320754 ], [ 35.651738656483182, 0.168871324320773 ], [ 35.646123421483189, 0.168016831320754 ], [ 35.621709359483184, 0.16826097232075 ], [ 35.613103402483198, 0.169237535320744 ], [ 35.605535043483194, 0.168016831320754 ], [ 35.588689339483203, 0.168016831320754 ], [ 35.586492074483196, 0.170458238320746 ], [ 35.583318246483195, 0.17302171432078 ], [ 35.581120980483199, 0.175646226320734 ], [ 35.578496468483188, 0.178270738320746 ], [ 35.576116097483172, 0.182421128320752 ], [ 35.569341195483155, 0.184618394320748 ], [ 35.568303597483172, 0.191027085320738 ], [ 35.568486703483181, 0.196642320320732 ], [ 35.564092171483189, 0.19365159732075 ], [ 35.555730355483199, 0.188463609320761 ], [ 35.547917855483199, 0.188829820320732 ], [ 35.540105355483199, 0.187853257320737 ], [ 35.528142464483203, 0.187242906320759 ], [ 35.520513070483155, 0.187059800320751 ], [ 35.513310921483189, 0.187242906320759 ], [ 35.520329964483203, 0.195665757320737 ], [ 35.521306527483198, 0.201830308320777 ], [ 35.52429725048318, 0.205858628320752 ], [ 35.531316293483194, 0.218431870320783 ], [ 35.536687386483202, 0.220873277320775 ], [ 35.540288461483151, 0.223619859320761 ], [ 35.536504281483182, 0.226244370320783 ], [ 35.531743539483152, 0.226427476320734 ], [ 35.526494515483186, 0.228441636320779 ], [ 35.520085824483196, 0.227220933320777 ], [ 35.515325082483166, 0.22685472232075 ], [ 35.512334359483184, 0.226427476320734 ], [ 35.509709847483172, 0.225023667320781 ], [ 35.50671912548318, 0.223863999320767 ], [ 35.502507699483196, 0.225267808320777 ], [ 35.499516976483157, 0.227648179320736 ], [ 35.496892464483203, 0.230028550320751 ], [ 35.4924979334832, 0.238268296320766 ], [ 35.487126839483203, 0.247057359320761 ], [ 35.490727914483152, 0.25224534732075 ], [ 35.495488656483182, 0.256029527320775 ], [ 35.493535531483182, 0.258837144320748 ], [ 35.491704476483157, 0.26182786732073 ], [ 35.49750281648317, 0.272875230320776 ], [ 35.5003104334832, 0.27745286732073 ], [ 35.500737679483159, 0.281847398320733 ], [ 35.500920785483167, 0.286058824320773 ], [ 35.500737679483159, 0.289659898320733 ], [ 35.504888070483155, 0.292467515320763 ], [ 35.500920785483167, 0.29966966332074 ], [ 35.499700082483166, 0.302233140320763 ], [ 35.497930062483185, 0.309069077320769 ], [ 35.49609900748316, 0.311449449320773 ], [ 35.501103890483186, 0.313036363320746 ], [ 35.505742562483185, 0.313036363320746 ], [ 35.510320199483196, 0.313829820320732 ], [ 35.512944711483151, 0.317858140320763 ], [ 35.513310921483189, 0.322435777320775 ], [ 35.508916390483186, 0.323839585320738 ], [ 35.506536019483171, 0.326647202320769 ], [ 35.505925668483194, 0.329637925320751 ], [ 35.503728402483198, 0.333422105320776 ], [ 35.499700082483166, 0.338243882320737 ], [ 35.497319711483151, 0.341661851320734 ], [ 35.492925180483205, 0.344835679320736 ], [ 35.4905448084832, 0.347216050320751 ], [ 35.48773719148317, 0.349047105320776 ], [ 35.483891976483157, 0.349657456320754 ], [ 35.4827323084832, 0.353075425320751 ], [ 35.482305062483185, 0.356249253320752 ], [ 35.479741586483151, 0.359423081320754 ], [ 35.4749198084832, 0.361864488320746 ], [ 35.472295296483189, 0.36442796432078 ], [ 35.469914925483174, 0.367662827320769 ], [ 35.469731820483155, 0.371263902320775 ], [ 35.470891488483169, 0.374864976320734 ], [ 35.474736703483181, 0.378466050320751 ], [ 35.481511605483199, 0.379076402320775 ], [ 35.487126839483203, 0.379869859320761 ], [ 35.485723031483182, 0.383837144320748 ], [ 35.483342660483167, 0.385668199320773 ], [ 35.480718148483156, 0.387072007320737 ], [ 35.481694711483151, 0.393053452320769 ], [ 35.485112679483159, 0.398241441320747 ], [ 35.487493050483174, 0.402269761320779 ], [ 35.481938851483157, 0.403246324320773 ], [ 35.482305062483185, 0.407457749320767 ], [ 35.481511605483199, 0.412645738320746 ], [ 35.48132850048318, 0.41826097232075 ], [ 35.476933968483188, 0.424059312320762 ], [ 35.475102914483152, 0.435045640320763 ], [ 35.474126351483157, 0.442858140320763 ], [ 35.472539437483185, 0.448473374320767 ], [ 35.468511117483153, 0.452257554320736 ], [ 35.463506234483184, 0.453661363320746 ], [ 35.462712777483198, 0.472216050320751 ], [ 35.463506234483184, 0.489061753320752 ], [ 35.463506234483184, 0.494066636320779 ], [ 35.463933480483199, 0.499620835320738 ], [ 35.464116586483151, 0.504869859320761 ], [ 35.466496957483166, 0.513475816320747 ], [ 35.473088754483165, 0.540636460320738 ], [ 35.475713265483186, 0.552416245320783 ], [ 35.480535043483194, 0.578051011320779 ], [ 35.481694711483151, 0.587633531320759 ], [ 35.478337777483198, 0.594225327320769 ], [ 35.4749198084832, 0.599657456320754 ], [ 35.473088754483165, 0.603075425320751 ], [ 35.466496957483166, 0.613268296320766 ], [ 35.458745492483153, 0.62706224232073 ], [ 35.453496468483188, 0.63365403832074 ], [ 35.4495291834832, 0.63981858932078 ], [ 35.445745004483165, 0.64464036732073 ], [ 35.434514535483167, 0.660631577320769 ], [ 35.433110726483157, 0.664415757320737 ], [ 35.43109656648317, 0.668444077320769 ], [ 35.424321664483152, 0.677050035320744 ], [ 35.416509164483152, 0.690050523320733 ], [ 35.41351844148317, 0.695848863320746 ], [ 35.41211463248316, 0.700853745320783 ], [ 35.418096078483181, 0.702257554320736 ], [ 35.423100961483151, 0.702440660320744 ], [ 35.440740121483195, 0.702623765320763 ], [ 35.445500863483169, 0.702074449320773 ], [ 35.452703011483202, 0.702623765320763 ], [ 35.481694711483151, 0.701830308320777 ], [ 35.486089242483153, 0.700243394320748 ], [ 35.49109412548318, 0.701647202320769 ], [ 35.499333871483195, 0.701219956320754 ], [ 35.503545296483189, 0.700426499320767 ], [ 35.505925668483194, 0.702257554320736 ], [ 35.50531531648317, 0.706041734320761 ], [ 35.505742562483185, 0.710436265320763 ], [ 35.499089730483199, 0.71403733932078 ], [ 35.49750281648317, 0.717821519320748 ], [ 35.495915902483198, 0.722643296320766 ], [ 35.49414588248316, 0.726427476320734 ], [ 35.496343148483156, 0.732836167320781 ], [ 35.496343148483156, 0.736864488320746 ], [ 35.497930062483185, 0.744860093320765 ], [ 35.492314828483181, 0.747850816320747 ], [ 35.495488656483182, 0.75084153832074 ], [ 35.498296273483156, 0.748217027320775 ], [ 35.5003104334832, 0.75505296432078 ], [ 35.501714242483153, 0.75865403832074 ], [ 35.505132211483151, 0.761461656320759 ], [ 35.508306039483152, 0.765428941320747 ], [ 35.507329476483157, 0.768236558320777 ], [ 35.505498421483189, 0.772020738320746 ], [ 35.502507699483196, 0.774462144320748 ], [ 35.502324593483188, 0.778429429320736 ], [ 35.501897347483172, 0.782823960320738 ], [ 35.501714242483153, 0.787645738320746 ], [ 35.500737679483159, 0.800463120320783 ], [ 35.500493539483152, 0.80583421432078 ], [ 35.500493539483152, 0.813463609320761 ], [ 35.498723519483171, 0.817858140320763 ], [ 35.495122445483155, 0.820848863320746 ], [ 35.488103402483198, 0.822069566320747 ], [ 35.483708871483195, 0.823046128320752 ], [ 35.485295785483167, 0.827867906320759 ], [ 35.488713754483165, 0.83622972232075 ], [ 35.490117562483185, 0.840258042320781 ], [ 35.492314828483181, 0.849230210320738 ], [ 35.492742074483196, 0.853075425320751 ], [ 35.4924979334832, 0.856432359320761 ], [ 35.4924979334832, 0.859850327320769 ], [ 35.49109412548318, 0.863817613320746 ], [ 35.488896859483184, 0.867845933320777 ], [ 35.488530648483156, 0.871630113320746 ], [ 35.488530648483156, 0.874864976320734 ], [ 35.484502328483181, 0.875658433320777 ], [ 35.475102914483152, 0.875475327320769 ], [ 35.463689339483203, 0.875658433320777 ], [ 35.458135140483186, 0.876818101320734 ], [ 35.458745492483153, 0.881029527320775 ], [ 35.461308968483188, 0.884447495320783 ], [ 35.463689339483203, 0.888658921320766 ], [ 35.465520394483171, 0.895616929320736 ], [ 35.467900765483186, 0.898424546320766 ], [ 35.469304574483196, 0.901049058320777 ], [ 35.462102425483174, 0.900438706320754 ], [ 35.455327523483156, 0.901659410320744 ], [ 35.451299203483181, 0.903063218320765 ], [ 35.443913949483196, 0.903246324320773 ], [ 35.421514046483189, 0.906237046320766 ], [ 35.416692269483171, 0.907457749320767 ], [ 35.415532601483157, 0.914659898320733 ], [ 35.419316781483182, 0.929430406320759 ], [ 35.421086800483174, 0.937426011320779 ], [ 35.411504281483182, 0.939073960320738 ], [ 35.396123421483189, 0.94224778832074 ], [ 35.392095101483157, 0.942675035320744 ], [ 35.388738168483194, 0.94346849232073 ], [ 35.385686410483167, 0.943224351320734 ], [ 35.382939828483181, 0.939257066320747 ], [ 35.377690804483159, 0.936266343320765 ], [ 35.372136605483199, 0.938219468320765 ], [ 35.369328988483169, 0.940050523320733 ], [ 35.363896859483184, 0.94224778832074 ], [ 35.359502328483181, 0.94365159732075 ], [ 35.344487679483159, 0.946642320320732 ], [ 35.343694222483172, 0.949449937320762 ], [ 35.341130746483195, 0.962023179320736 ], [ 35.343694222483172, 0.963426988320746 ], [ 35.346745980483199, 0.965441148320733 ], [ 35.338140023483156, 0.967455308320777 ], [ 35.339910043483194, 0.971239488320746 ], [ 35.345891488483169, 0.975267808320777 ], [ 35.3499198084832, 0.977037827320769 ], [ 35.352910531483182, 0.979235093320765 ], [ 35.351933968483188, 0.98326341332074 ], [ 35.34851600048318, 0.98942796432078 ], [ 35.347295296483189, 0.992235581320754 ], [ 35.345891488483169, 0.996263902320775 ], [ 35.344487679483159, 0.999437730320776 ], [ 35.344121468483188, 1.00364915632076 ], [ 35.360295785483167, 1.007067124320767 ], [ 35.362920296483189, 1.00865403832074 ], [ 35.36328650748316, 1.012255113320746 ], [ 35.362920296483189, 1.017015855320776 ], [ 35.358708871483195, 1.020250718320765 ], [ 35.355535043483194, 1.020861070320732 ], [ 35.351689828483181, 1.022020738320746 ], [ 35.34711219148317, 1.023851792320781 ], [ 35.331120980483199, 1.029222886320779 ], [ 35.313542855483199, 1.035631577320769 ], [ 35.309331429483159, 1.038072984320761 ], [ 35.281743539483152, 1.055468003320752 ], [ 35.274114144483171, 1.060045640320763 ], [ 35.267522347483172, 1.063219468320765 ], [ 35.249944222483172, 1.07042161732073 ], [ 35.242742074483196, 1.072863023320733 ], [ 35.241338265483186, 1.075853745320783 ], [ 35.23828650748316, 1.080675523320733 ], [ 35.235539925483174, 1.08287278832074 ], [ 35.235112679483159, 1.085863511320779 ], [ 35.219914925483174, 1.112047593320765 ], [ 35.218328011483202, 1.11442796432078 ], [ 35.213323129483165, 1.115038316320747 ], [ 35.207524789483152, 1.115465562320762 ], [ 35.202092660483167, 1.117052476320734 ], [ 35.192510140483186, 1.132250230320776 ], [ 35.185307992483153, 1.144030015320763 ], [ 35.183293832483166, 1.146837632320737 ], [ 35.178105843483188, 1.155016343320765 ], [ 35.161321175483174, 1.17802659732075 ], [ 35.155095589483203, 1.191637437320762 ], [ 35.152287972483172, 1.198229234320761 ], [ 35.201116097483172, 1.174852769320748 ], [ 35.225286019483171, 1.163072984320761 ], [ 35.23773719148317, 1.157274644320748 ], [ 35.240300668483194, 1.155870835320738 ], [ 35.249089730483199, 1.151842515320763 ], [ 35.254338754483165, 1.149034898320733 ], [ 35.263310921483189, 1.146471421320766 ], [ 35.277898324483196, 1.13981858932078 ], [ 35.287908089483203, 1.134020249320767 ], [ 35.2913260584832, 1.134447495320783 ], [ 35.294316781483182, 1.137072007320737 ], [ 35.295537484483184, 1.140673081320754 ], [ 35.296086800483174, 1.14427415632076 ], [ 35.298528207483166, 1.147020738320746 ], [ 35.299932015483186, 1.150621812320762 ], [ 35.300725472483172, 1.153429429320736 ], [ 35.302922738483169, 1.155870835320738 ], [ 35.303105843483188, 1.159655015320763 ], [ 35.303716195483155, 1.16325608932078 ], [ 35.305303109483184, 1.167040269320748 ], [ 35.308110726483157, 1.171862046320766 ], [ 35.311894906483182, 1.169847886320779 ], [ 35.315923226483157, 1.169420640320763 ], [ 35.318486703483181, 1.167467515320763 ], [ 35.343144906483182, 1.125658433320777 ], [ 35.346745980483199, 1.126818101320734 ], [ 35.358098519483171, 1.131456773320733 ], [ 35.364507211483151, 1.137621324320773 ], [ 35.371526254483165, 1.14341966332074 ], [ 35.38031531648317, 1.150255601320734 ], [ 35.386907113483169, 1.156237046320766 ], [ 35.390508187483185, 1.159227769320748 ], [ 35.403325570483155, 1.169420640320763 ], [ 35.410893929483159, 1.175829331320754 ], [ 35.418889535483167, 1.182238023320733 ], [ 35.423528207483166, 1.185228745320783 ], [ 35.428288949483196, 1.190050523320733 ], [ 35.437322152483198, 1.197252671320766 ], [ 35.445928109483184, 1.204454820320732 ], [ 35.45313025748316, 1.20927659732075 ], [ 35.459538949483196, 1.215624253320752 ], [ 35.467900765483186, 1.222826402320775 ], [ 35.476689828483181, 1.230028550320751 ], [ 35.484319222483172, 1.23662034732075 ], [ 35.493291390483186, 1.244066636320779 ], [ 35.500920785483167, 1.250658433320777 ], [ 35.518926156483182, 1.26481858932078 ], [ 35.540532601483157, 1.281420152320775 ], [ 35.546514046483189, 1.284655015320763 ], [ 35.553288949483196, 1.284227769320748 ], [ 35.558110726483157, 1.284227769320748 ], [ 35.561345589483203, 1.287462632320737 ], [ 35.569097054483159, 1.290026109320761 ], [ 35.575322640483186, 1.289415757320737 ], [ 35.579289925483174, 1.289232652320775 ], [ 35.583745492483153, 1.286669175320751 ], [ 35.588506234483184, 1.281664292320781 ], [ 35.591130746483195, 1.280260484320761 ], [ 35.594304574483196, 1.279467027320775 ], [ 35.604131234483184, 1.27763597232075 ], [ 35.609319222483172, 1.278063218320765 ], [ 35.61328650748316, 1.280016343320765 ], [ 35.615727914483152, 1.284471910320744 ], [ 35.617742074483196, 1.287645738320746 ], [ 35.62109900748316, 1.290270249320767 ], [ 35.624516976483157, 1.292650620320783 ], [ 35.627690804483159, 1.293444077320769 ], [ 35.630498421483189, 1.295824449320773 ], [ 35.632512582483166, 1.298876206320754 ], [ 35.635930550483174, 1.300218980320776 ], [ 35.639104379483165, 1.300646226320734 ], [ 35.644109261483202, 1.302233140320763 ], [ 35.656133187483185, 1.307421128320752 ], [ 35.672124398483156, 1.313463609320761 ], [ 35.678899300483174, 1.315050523320733 ], [ 35.682134164483152, 1.315416734320761 ], [ 35.688115609483184, 1.316454331320754 ], [ 35.691899789483152, 1.316820542320781 ], [ 35.697942269483171, 1.316271226320734 ], [ 35.698491586483151, 1.31224290632076 ], [ 35.698308480483199, 1.303453843320765 ], [ 35.696111214483203, 1.297045152320775 ], [ 35.696294320483155, 1.293871324320773 ], [ 35.696904671483189, 1.289232652320775 ], [ 35.695745004483165, 1.285631577320769 ], [ 35.698918832483166, 1.279650132320737 ], [ 35.6986421264832, 1.278294274320726 ] ] ] } } +, +{ "type": "Feature", "id": 27, "properties": { "OBJECTID": 28, "ID_": 1582, "COUNTY_NAM": "NANDI", "CONST_CODE": 156, "CONSTITUEN": "MOSOP", "COUNTY_COD": 29, "Shape_Leng": 3.05726592217, "Shape_Area": 0.23023133721 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.046941293483194, 0.560472886320779 ], [ 35.07312537548318, 0.549242417320781 ], [ 35.100102914483152, 0.53825608932078 ], [ 35.104314339483203, 0.55162278832074 ], [ 35.105535043483194, 0.554247300320751 ], [ 35.107915414483152, 0.551866929320736 ], [ 35.108891976483157, 0.549059312320762 ], [ 35.111943734483184, 0.547228257320737 ], [ 35.115300668483194, 0.54606858932078 ], [ 35.117742074483196, 0.544420640320763 ], [ 35.124516976483157, 0.543444077320769 ], [ 35.128118050483174, 0.543444077320769 ], [ 35.130742562483185, 0.541674058320777 ], [ 35.134343636483202, 0.541063706320754 ], [ 35.136296761483202, 0.538439195320732 ], [ 35.138921273483156, 0.53544847232075 ], [ 35.143132699483196, 0.535631577320769 ], [ 35.146306527483198, 0.537462632320737 ], [ 35.150090707483166, 0.537035386320779 ], [ 35.154546273483156, 0.536852281320759 ], [ 35.158696664483152, 0.538622300320751 ], [ 35.161687386483202, 0.540270249320767 ], [ 35.165105355483199, 0.543627183320777 ], [ 35.166142953483181, 0.538866441320747 ], [ 35.163701546483189, 0.528063218320765 ], [ 35.162541879483165, 0.520616929320736 ], [ 35.16211463248316, 0.516039292320781 ], [ 35.161504281483182, 0.512621324320773 ], [ 35.159490121483195, 0.504259507320737 ], [ 35.158696664483152, 0.499254624320767 ], [ 35.157292855483199, 0.495226304320736 ], [ 35.153691781483182, 0.486254136320779 ], [ 35.152104867483153, 0.483019273320733 ], [ 35.148931039483152, 0.47966233932078 ], [ 35.145513070483155, 0.475023667320781 ], [ 35.143132699483196, 0.470262925320751 ], [ 35.14648963248316, 0.463243882320737 ], [ 35.148137582483166, 0.460619370320783 ], [ 35.151311410483167, 0.453844468320765 ], [ 35.15430213248316, 0.449633042320781 ], [ 35.156743539483152, 0.445665757320737 ], [ 35.159734261483202, 0.441454331320754 ], [ 35.167729867483153, 0.428820054320736 ], [ 35.16992713248316, 0.425829331320754 ], [ 35.171514046483189, 0.423265855320776 ], [ 35.173528207483166, 0.42106858932078 ], [ 35.177312386483202, 0.418871324320773 ], [ 35.180303109483184, 0.41221849232073 ], [ 35.181706918483194, 0.407030503320752 ], [ 35.186711800483174, 0.398668687320762 ], [ 35.1917166834832, 0.385851304320736 ], [ 35.19672156648317, 0.375475327320769 ], [ 35.213933480483199, 0.34684983932078 ], [ 35.215886605483199, 0.343248765320763 ], [ 35.219304574483196, 0.337816636320779 ], [ 35.22211219148317, 0.332628648320733 ], [ 35.223699105483199, 0.330248277320775 ], [ 35.22852088248316, 0.321642320320732 ], [ 35.230718148483156, 0.31865159732075 ], [ 35.238530648483156, 0.306627671320766 ], [ 35.240911019483171, 0.302050035320744 ], [ 35.243535531483182, 0.29606858932078 ], [ 35.246892464483203, 0.294664781320759 ], [ 35.252934945483155, 0.286241929320736 ], [ 35.254704964483203, 0.283068101320734 ], [ 35.258916390483186, 0.27763597232075 ], [ 35.267339242483153, 0.265245835320738 ], [ 35.267705453483181, 0.261461656320759 ], [ 35.270513070483155, 0.260424058320777 ], [ 35.27234412548318, 0.258043687320762 ], [ 35.274907601483157, 0.254259507320737 ], [ 35.277104867483153, 0.250658433320777 ], [ 35.279912484483184, 0.246874253320752 ], [ 35.284734261483202, 0.23942796432078 ], [ 35.286138070483155, 0.236071031320759 ], [ 35.289128793483194, 0.233019273320733 ], [ 35.291692269483171, 0.229845445320732 ], [ 35.295720589483203, 0.227037827320769 ], [ 35.2991385584832, 0.224230210320738 ], [ 35.303533089483203, 0.223070542320781 ], [ 35.306706918483194, 0.22184983932078 ], [ 35.312139046483189, 0.217272202320769 ], [ 35.315740121483195, 0.219652574320773 ], [ 35.322515023483156, 0.225817124320767 ], [ 35.325932992483153, 0.225267808320777 ], [ 35.330693734483184, 0.221239488320746 ], [ 35.333135140483186, 0.218248765320763 ], [ 35.334538949483196, 0.214830796320766 ], [ 35.336919320483155, 0.212023179320736 ], [ 35.341496957483166, 0.206041734320761 ], [ 35.357915414483152, 0.21122972232075 ], [ 35.358891976483157, 0.208055894320748 ], [ 35.360723031483182, 0.205248277320775 ], [ 35.363896859483184, 0.200426499320767 ], [ 35.366521371483195, 0.198046128320752 ], [ 35.366704476483157, 0.191027085320738 ], [ 35.365911019483171, 0.186022202320769 ], [ 35.360723031483182, 0.188463609320761 ], [ 35.356694711483151, 0.18864671432078 ], [ 35.35352088248316, 0.189257066320747 ], [ 35.350286019483171, 0.191454331320754 ], [ 35.347295296483189, 0.192858140320763 ], [ 35.341741097483172, 0.192430894320748 ], [ 35.341741097483172, 0.188219468320765 ], [ 35.3421073084832, 0.183824937320762 ], [ 35.3421073084832, 0.174059312320762 ], [ 35.342900765483186, 0.17003099232073 ], [ 35.341741097483172, 0.16685716332074 ], [ 35.338933480483199, 0.161425035320744 ], [ 35.336736214483203, 0.157457749320767 ], [ 35.334722054483159, 0.155260484320761 ], [ 35.336492074483196, 0.147875230320776 ], [ 35.336492074483196, 0.14482347232075 ], [ 35.33594275748316, 0.140673081320754 ], [ 35.343144906483182, 0.136644761320779 ], [ 35.353703988483169, 0.131029527320775 ], [ 35.358525765483186, 0.128649156320759 ], [ 35.364934457483166, 0.126634995320783 ], [ 35.36914588248316, 0.126024644320748 ], [ 35.372136605483199, 0.123033921320766 ], [ 35.373296273483156, 0.119615952320769 ], [ 35.375737679483159, 0.11607591332074 ], [ 35.379704964483203, 0.11442796432078 ], [ 35.384099496483195, 0.114672105320776 ], [ 35.387517464483203, 0.112841050320751 ], [ 35.385320199483196, 0.105822007320737 ], [ 35.382512582483166, 0.098436753320752 ], [ 35.38031531648317, 0.092028062320762 ], [ 35.378301156483182, 0.085253160320744 ], [ 35.373723519483171, 0.072618882320737 ], [ 35.370488656483182, 0.070238511320779 ], [ 35.365727914483152, 0.071276109320761 ], [ 35.36273719148317, 0.069017808320777 ], [ 35.360295785483167, 0.064440171320766 ], [ 35.357488168483194, 0.062853257320737 ], [ 35.353337777483198, 0.063036363320746 ], [ 35.348699105483199, 0.06083909732075 ], [ 35.350896371483195, 0.056627671320766 ], [ 35.356145394483171, 0.052233140320763 ], [ 35.357305062483185, 0.049059312320762 ], [ 35.361089242483153, 0.04802171432078 ], [ 35.369695199483196, 0.040819566320747 ], [ 35.376897347483172, 0.038866441320747 ], [ 35.384099496483195, 0.036425035320744 ], [ 35.386296761483202, 0.034471910320744 ], [ 35.389897836483151, 0.034655015320763 ], [ 35.39453650748316, 0.032457749320767 ], [ 35.401311410483167, 0.028429429320736 ], [ 35.40430213248316, 0.026842515320763 ], [ 35.408330453483181, 0.02623216332074 ], [ 35.422490609483184, 0.025072495320783 ], [ 35.426946175483174, 0.024828355320776 ], [ 35.434697640483186, 0.024828355320776 ], [ 35.437688363483169, 0.020433824320773 ], [ 35.43890906648317, 0.017626206320754 ], [ 35.429326546483189, 0.01182786732073 ], [ 35.42273475048318, 0.008470933320777 ], [ 35.419499886483202, 0.007616441320747 ], [ 35.414311898483156, 0.002855699320773 ], [ 35.413091195483155, -0.000379164679262 ], [ 35.409123910483167, -0.012464125679233 ], [ 35.407292855483199, -0.016065199679249 ], [ 35.406133187483185, -0.020764906679235 ], [ 35.405095589483203, -0.023633558679253 ], [ 35.40710975048318, -0.029553968679241 ], [ 35.407903207483166, -0.034436781679235 ], [ 35.409490121483195, -0.036939222679225 ], [ 35.410527718483188, -0.041150648679266 ], [ 35.411687386483202, -0.044568617679263 ], [ 35.414495004483165, -0.050183851679267 ], [ 35.424321664483152, -0.077344496679248 ], [ 35.420110238483169, -0.080335218679241 ], [ 35.408940804483159, -0.084668714679256 ], [ 35.40430213248316, -0.086255629679217 ], [ 35.401738656483182, -0.087476332679219 ], [ 35.398931039483152, -0.089856703679234 ], [ 35.390508187483185, -0.097669203679234 ], [ 35.37250281648317, -0.109754164679262 ], [ 35.343694222483172, -0.108472425679227 ], [ 35.340093148483156, -0.108045179679268 ], [ 35.335698617483153, -0.104749281679235 ], [ 35.328313363483169, -0.101880629679217 ], [ 35.308293832483166, -0.085950453679234 ], [ 35.279912484483184, -0.098950941679223 ], [ 35.276128304483159, -0.099683363679221 ], [ 35.266301644483171, -0.100965101679267 ], [ 35.261540902483198, -0.101758558679253 ], [ 35.257939828483181, -0.102063734679237 ], [ 35.236089242483153, -0.105237562679238 ], [ 35.227117074483196, -0.106153089679256 ], [ 35.227117074483196, -0.093762953679234 ], [ 35.227300179483159, -0.085767347679225 ], [ 35.227300179483159, -0.07197340267925 ], [ 35.227117074483196, -0.066052992679263 ], [ 35.225286019483171, -0.058545668679246 ], [ 35.224309457483166, -0.051770765679239 ], [ 35.221501839483203, -0.040540297679231 ], [ 35.221745980483199, -0.037366468679241 ], [ 35.217717660483167, -0.03596266067922 ], [ 35.214543832483166, -0.033155043679246 ], [ 35.206304086483151, -0.029065687679238 ], [ 35.201116097483172, -0.027478773679266 ], [ 35.196904671483189, -0.026929457679219 ], [ 35.193913949483196, -0.026136000679233 ], [ 35.191533578483181, -0.028272230679252 ], [ 35.187932504483165, -0.028882582679219 ], [ 35.1839041834832, -0.028943617679263 ], [ 35.18109656648317, -0.027356703679234 ], [ 35.178288949483196, -0.028760511679254 ], [ 35.17468787548318, -0.028333265679239 ], [ 35.171086800483174, -0.030469496679248 ], [ 35.166936410483167, -0.031873304679268 ], [ 35.161931527483198, -0.032971937679238 ], [ 35.157536996483195, -0.036450941679223 ], [ 35.152715218483188, -0.037427504679217 ], [ 35.148137582483166, -0.034253675679227 ], [ 35.143743050483174, -0.032178480679252 ], [ 35.135930550483174, -0.026746351679267 ], [ 35.1331229334832, -0.024365980679252 ], [ 35.127934945483155, -0.021131117679263 ], [ 35.123723519483171, -0.018140394679224 ], [ 35.120732796483189, -0.016370375679233 ], [ 35.108098519483171, -0.007581312679238 ], [ 35.103887093483188, -0.005078871679248 ], [ 35.102117074483196, -0.009229261679254 ], [ 35.102727425483174, -0.014966566679223 ], [ 35.103337777483198, -0.018933851679267 ], [ 35.10352088248316, -0.023572523679266 ], [ 35.101140511483202, -0.027478773679266 ], [ 35.097295296483189, -0.030469496679248 ], [ 35.09570838248316, -0.033460218679241 ], [ 35.095342171483189, -0.036573011679254 ], [ 35.094487679483159, -0.039563734679237 ], [ 35.0921073084832, -0.044568617679263 ], [ 35.088689339483203, -0.048169691679223 ], [ 35.085088265483186, -0.050244886679254 ], [ 35.079106820483155, -0.052564222679225 ], [ 35.075322640483186, -0.055432875679233 ], [ 35.071904671483189, -0.058850843679241 ], [ 35.065923226483157, -0.066663343679241 ], [ 35.062688363483169, -0.060132582679219 ], [ 35.060491097483172, -0.057935316679223 ], [ 35.059697640483186, -0.054456312679238 ], [ 35.055303109483184, -0.054151136679254 ], [ 35.021123421483189, -0.054151136679254 ], [ 35.015325082483166, -0.054029066679223 ], [ 35.010503304483159, -0.054151136679254 ], [ 35.007939828483181, -0.052075941679223 ], [ 35.0081229334832, -0.039563734679237 ], [ 35.008489144483171, -0.033948500679233 ], [ 35.006536019483171, -0.02815016067922 ], [ 35.001714242483153, -0.025952894679224 ], [ 34.999333871483195, -0.02424391067922 ], [ 34.995305550483174, -0.022840101679267 ], [ 34.990300668483194, -0.020154554679268 ], [ 34.98914100048318, -0.024060804679268 ], [ 34.978887093483188, -0.02454908667926 ], [ 34.964726937483185, -0.032666761679254 ], [ 34.960698617483153, -0.029431898679266 ], [ 34.958318246483195, -0.02705152767925 ], [ 34.953313363483169, -0.027539808679253 ], [ 34.955144418483194, -0.030774672679231 ], [ 34.951299203483181, -0.03095777767925 ], [ 34.942143929483159, -0.033277113679221 ], [ 34.935918343483188, -0.035840589679256 ], [ 34.928105843483188, -0.035840589679256 ], [ 34.923894418483194, -0.036634047679231 ], [ 34.920110238483169, -0.033338148679266 ], [ 34.921941293483194, -0.026868422679231 ], [ 34.916936410483167, -0.026563246679248 ], [ 34.910893929483159, -0.028333265679239 ], [ 34.906926644483171, -0.02815016067922 ], [ 34.8928885584832, -0.025464613679221 ], [ 34.888738168483194, -0.025159437679238 ], [ 34.884709847483172, -0.026258070679264 ], [ 34.881108773483156, -0.026746351679267 ], [ 34.870305550483174, -0.026929457679219 ], [ 34.86469031648317, -0.027356703679234 ], [ 34.852544320483155, -0.027539808679253 ], [ 34.834538949483196, -0.02815016067922 ], [ 34.828313363483169, -0.02815016067922 ], [ 34.815495980483199, -0.024182875679233 ], [ 34.808293832483166, -0.021131117679263 ], [ 34.807927621483195, -0.016675550679227 ], [ 34.810735238483169, -0.013867933679253 ], [ 34.809331429483159, -0.011243422679231 ], [ 34.810735238483169, -0.008130629679217 ], [ 34.814885629483165, -0.000379164679262 ], [ 34.825688851483157, 0.015062730320776 ], [ 34.82813025748316, 0.018236558320777 ], [ 34.830510629483165, 0.022020738320746 ], [ 34.826543343483188, 0.02263108932078 ], [ 34.822942269483171, 0.022020738320746 ], [ 34.818913949483196, 0.018846910320744 ], [ 34.817143929483159, 0.01646653832074 ], [ 34.814519418483194, 0.014452378320752 ], [ 34.810918343483188, 0.010668199320773 ], [ 34.808110726483157, 0.009447495320783 ], [ 34.804936898483156, 0.00865403832074 ], [ 34.802129281483182, 0.006273667320781 ], [ 34.796514046483189, 0.001024644320748 ], [ 34.793889535483167, -0.001782972679225 ], [ 34.789128793483194, -0.006177504679217 ], [ 34.786687386483202, -0.008740980679252 ], [ 34.784307015483186, -0.012036879679217 ], [ 34.782720101483157, -0.016065199679249 ], [ 34.779912484483184, -0.018140394679224 ], [ 34.775945199483196, -0.01673658667926 ], [ 34.772527230483199, -0.016858656679235 ], [ 34.769109261483202, -0.017957289679262 ], [ 34.765508187483185, -0.01746900767927 ], [ 34.762944711483151, -0.021131117679263 ], [ 34.75671912548318, -0.028943617679263 ], [ 34.751714242483153, -0.033765394679224 ], [ 34.750493539483152, -0.031079847679225 ], [ 34.749516976483157, -0.027844984679237 ], [ 34.74750281648317, -0.023572523679266 ], [ 34.7503104334832, -0.021253187679238 ], [ 34.748296273483156, -0.018262464679256 ], [ 34.745488656483182, -0.017163832679219 ], [ 34.745305550483174, -0.013135511679254 ], [ 34.743901742483153, -0.009778578679234 ], [ 34.741521371483195, -0.005384047679231 ], [ 34.740300668483194, -0.001172621679248 ], [ 34.741704476483157, 0.003221910320744 ], [ 34.747930062483185, 0.003832261320779 ], [ 34.751531136483202, 0.005663316320747 ], [ 34.754888070483155, 0.008226792320781 ], [ 34.758306039483152, 0.008043687320762 ], [ 34.760686410483167, 0.005419175320751 ], [ 34.761113656483182, 0.001634995320783 ], [ 34.763310921483189, -0.001538832679219 ], [ 34.767522347483172, -0.000562269679224 ], [ 34.770696175483174, 0.000475327320769 ], [ 34.774907601483157, 0.003221910320744 ], [ 34.779119027483198, 0.005419175320751 ], [ 34.781133187483185, 0.009020249320767 ], [ 34.784307015483186, 0.011644761320779 ], [ 34.787724984483184, 0.013048570320732 ], [ 34.790105355483199, 0.016039292320781 ], [ 34.794133675483174, 0.01982347232075 ], [ 34.798894418483194, 0.022447984320761 ], [ 34.801946175483174, 0.021837632320737 ], [ 34.804936898483156, 0.020250718320765 ], [ 34.807927621483195, 0.020861070320732 ], [ 34.810307992483153, 0.022875230320776 ], [ 34.809514535483167, 0.026476304320736 ], [ 34.811711800483174, 0.028429429320736 ], [ 34.819524300483174, 0.032274644320748 ], [ 34.826543343483188, 0.030626695320732 ], [ 34.830510629483165, 0.029039781320759 ], [ 34.834111703483181, 0.028429429320736 ], [ 34.836919320483155, 0.03044358932078 ], [ 34.838933480483199, 0.034838120320783 ], [ 34.84070350048318, 0.045275132320737 ], [ 34.847905648483156, 0.055468003320752 ], [ 34.849309457483166, 0.059862535320744 ], [ 34.848088754483165, 0.062853257320737 ], [ 34.849126351483157, 0.066271226320734 ], [ 34.854741586483151, 0.074022691320747 ], [ 34.857121957483166, 0.078051011320779 ], [ 34.860112679483159, 0.081468980320776 ], [ 34.858342660483167, 0.092028062320762 ], [ 34.858891976483157, 0.096056382320737 ], [ 34.859746468483188, 0.099657456320754 ], [ 34.859746468483188, 0.102831285320744 ], [ 34.857915414483152, 0.105638902320775 ], [ 34.857915414483152, 0.109850327320769 ], [ 34.859319222483172, 0.11607591332074 ], [ 34.86133338248316, 0.119615952320769 ], [ 34.864934457483166, 0.121019761320779 ], [ 34.869939339483203, 0.12706224232073 ], [ 34.871709359483184, 0.129625718320765 ], [ 34.874089730483199, 0.131822984320761 ], [ 34.878545296483189, 0.134264390320763 ], [ 34.8831229334832, 0.138475816320747 ], [ 34.884892953483181, 0.142259995320783 ], [ 34.888738168483194, 0.14464036732073 ], [ 34.893498910483167, 0.147020738320746 ], [ 34.89789344148317, 0.148668687320762 ], [ 34.901128304483159, 0.151049058320777 ], [ 34.90570594148317, 0.151842515320763 ], [ 34.910527718483188, 0.152025620320783 ], [ 34.914495004483165, 0.154039781320759 ], [ 34.916692269483171, 0.157030503320752 ], [ 34.920293343483188, 0.167223374320767 ], [ 34.917302621483195, 0.170458238320746 ], [ 34.918340218483188, 0.174242417320781 ], [ 34.921941293483194, 0.181261460320738 ], [ 34.922917855483199, 0.18565599232073 ], [ 34.923894418483194, 0.189073960320738 ], [ 34.925542367483153, 0.19365159732075 ], [ 34.927495492483153, 0.200853745320783 ], [ 34.92969275748316, 0.207262437320762 ], [ 34.940495980483199, 0.206835191320747 ], [ 34.945134652483198, 0.20622483932078 ], [ 34.944890511483202, 0.209459702320769 ], [ 34.948735726483157, 0.218676011320779 ], [ 34.950505746483195, 0.223436753320752 ], [ 34.95313025748316, 0.229418199320773 ], [ 34.955327523483156, 0.23521653832074 ], [ 34.958318246483195, 0.239244859320761 ], [ 34.96234656648317, 0.238634507320737 ], [ 34.974126351483157, 0.23942796432078 ], [ 34.979314339483203, 0.238451402320775 ], [ 34.97852088248316, 0.245043199320773 ], [ 34.973699105483199, 0.25505296432078 ], [ 34.971745980483199, 0.26005784732075 ], [ 34.969914925483174, 0.264025132320737 ], [ 34.968144906483182, 0.267259995320783 ], [ 34.966741097483172, 0.270616929320736 ], [ 34.95313025748316, 0.297838609320761 ], [ 34.945928109483184, 0.315233628320752 ], [ 34.942327035483167, 0.324816148320733 ], [ 34.941289437483185, 0.333422105320776 ], [ 34.939885629483165, 0.342028062320762 ], [ 34.939092171483189, 0.350023667320781 ], [ 34.937932504483165, 0.357042710320738 ], [ 34.944097054483159, 0.354845445320732 ], [ 34.949346078483181, 0.35185472232075 ], [ 34.955510629483165, 0.368456285320744 ], [ 34.956120980483199, 0.375231187320762 ], [ 34.95648719148317, 0.390428941320747 ], [ 34.956914437483185, 0.399645249320767 ], [ 34.957097543483194, 0.408617417320781 ], [ 34.956731332483166, 0.414843003320752 ], [ 34.95313025748316, 0.422838609320761 ], [ 34.951726449483196, 0.427050035320744 ], [ 34.949895394483171, 0.429247300320751 ], [ 34.946904671483189, 0.435228745320783 ], [ 34.944097054483159, 0.440233628320752 ], [ 34.943303597483172, 0.44365159732075 ], [ 34.94031287548318, 0.447435777320775 ], [ 34.938542855483199, 0.450426499320767 ], [ 34.932927621483195, 0.460863511320779 ], [ 34.93109656648317, 0.465074937320762 ], [ 34.928288949483196, 0.468676011320779 ], [ 34.924504769483171, 0.474840562320762 ], [ 34.918889535483167, 0.480028550320751 ], [ 34.917485726483157, 0.48326341332074 ], [ 34.910100472483172, 0.488451402320775 ], [ 34.908696664483152, 0.493639390320763 ], [ 34.907903207483166, 0.501451890320763 ], [ 34.908086312483185, 0.50505296432078 ], [ 34.904546273483156, 0.506456773320733 ], [ 34.888921273483156, 0.51964036732073 ], [ 34.884343636483202, 0.522020738320746 ], [ 34.875493539483152, 0.527269761320779 ], [ 34.871343148483156, 0.531664292320781 ], [ 34.86469031648317, 0.536669175320751 ], [ 34.857305062483185, 0.54185716332074 ], [ 34.853337777483198, 0.545641343320765 ], [ 34.868108285483167, 0.546434800320751 ], [ 34.874944222483172, 0.547045152320775 ], [ 34.881291879483165, 0.547838609320761 ], [ 34.887334359483184, 0.54802171432078 ], [ 34.893498910483167, 0.548448960320738 ], [ 34.89929725048318, 0.548265855320776 ], [ 34.904729379483165, 0.549425523320733 ], [ 34.908086312483185, 0.549425523320733 ], [ 34.911504281483182, 0.549852769320748 ], [ 34.918889535483167, 0.550218980320776 ], [ 34.922917855483199, 0.550646226320734 ], [ 34.92773963248316, 0.550829331320754 ], [ 34.931340707483166, 0.551439683320777 ], [ 34.943303597483172, 0.552233140320763 ], [ 34.951299203483181, 0.55302659732075 ], [ 34.955327523483156, 0.553270738320746 ], [ 34.964910043483194, 0.553453843320765 ], [ 34.974736703483181, 0.554857652320775 ], [ 34.984746468483188, 0.555223863320746 ], [ 35.002507699483196, 0.557421128320752 ], [ 35.007146371483195, 0.556627671320766 ], [ 35.010503304483159, 0.558275620320783 ], [ 35.018743050483174, 0.558824937320762 ], [ 35.021733773483156, 0.558641831320754 ], [ 35.024907601483157, 0.55943528832074 ], [ 35.028325570483155, 0.559618394320748 ], [ 35.033086312483185, 0.560228745320783 ], [ 35.036321175483174, 0.560228745320783 ], [ 35.040288461483151, 0.560472886320779 ], [ 35.046941293483194, 0.560472886320779 ] ] ] } } +, +{ "type": "Feature", "id": 28, "properties": { "OBJECTID": 29, "ID_": 1555, "COUNTY_NAM": "BARINGO", "CONST_CODE": 159, "CONSTITUEN": "BARINGO CENTRAL", "COUNTY_COD": 30, "Shape_Leng": 5.81571392065, "Shape_Area": 0.88451236882 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.02930213248316, 1.273668687320762 ], [ 36.03711463248316, 1.26146165632076 ], [ 36.03992225048318, 1.257433335320738 ], [ 36.045537484483184, 1.248033921320766 ], [ 36.056340707483166, 1.231676499320767 ], [ 36.098088754483165, 1.166063706320754 ], [ 36.133306039483152, 1.167833726320734 ], [ 36.173894418483194, 1.168871324320773 ], [ 36.189092171483189, 1.150072495320783 ], [ 36.247930062483185, 1.076219956320754 ], [ 36.2503104334832, 1.073473374320767 ], [ 36.260686410483167, 1.060472886320779 ], [ 36.264714730483199, 1.055651109320761 ], [ 36.273503793483194, 1.043016831320754 ], [ 36.277898324483196, 1.039049546320766 ], [ 36.290288461483151, 1.023424546320766 ], [ 36.310918343483188, 0.998033921320766 ], [ 36.317327035483167, 0.988451402320775 ], [ 36.325322640483186, 0.990038316320747 ], [ 36.335698617483153, 0.991259019320748 ], [ 36.342900765483186, 0.990221421320766 ], [ 36.343938363483169, 0.987047593320765 ], [ 36.346745980483199, 0.985033433320777 ], [ 36.348332894483171, 0.975817124320767 ], [ 36.348699105483199, 0.97184983932078 ], [ 36.350713265483186, 0.968248765320763 ], [ 36.35352088248316, 0.964647691320747 ], [ 36.356694711483151, 0.962816636320779 ], [ 36.360112679483159, 0.962633531320759 ], [ 36.363896859483184, 0.961473863320746 ], [ 36.366704476483157, 0.956652085320738 ], [ 36.369695199483196, 0.953844468320765 ], [ 36.372685921483189, 0.953844468320765 ], [ 36.375737679483159, 0.954821031320759 ], [ 36.378545296483189, 0.95341722232075 ], [ 36.383733285483167, 0.952440660320744 ], [ 36.385320199483196, 0.948839585320738 ], [ 36.388738168483194, 0.947069566320747 ], [ 36.38953162548318, 0.942675035320744 ], [ 36.389897836483151, 0.939073960320738 ], [ 36.388921273483156, 0.93443528832074 ], [ 36.388494027483198, 0.929857652320775 ], [ 36.388310921483189, 0.925646226320734 ], [ 36.390691293483194, 0.922472398320733 ], [ 36.393132699483196, 0.919664781320759 ], [ 36.394292367483153, 0.91685716332074 ], [ 36.393743050483174, 0.914049546320766 ], [ 36.394735341483162, 0.91127744632075 ], [ 36.395513070483155, 0.907030503320752 ], [ 36.395513070483155, 0.904039781320759 ], [ 36.401738656483182, 0.900621812320762 ], [ 36.40430213248316, 0.899034898320733 ], [ 36.407292855483199, 0.899218003320752 ], [ 36.410893929483159, 0.898424546320766 ], [ 36.414311898483156, 0.898851792320781 ], [ 36.417729867483153, 0.899828355320776 ], [ 36.420720589483203, 0.898851792320781 ], [ 36.423711312483185, 0.897020738320746 ], [ 36.426518929483159, 0.888475816320747 ], [ 36.429509652483198, 0.884447495320783 ], [ 36.432317269483171, 0.881273667320781 ], [ 36.435735238483169, 0.878466050320751 ], [ 36.440129769483171, 0.875231187320762 ], [ 36.444524300483174, 0.871447007320737 ], [ 36.448735726483157, 0.870043199320773 ], [ 36.453313363483169, 0.870470445320732 ], [ 36.458135140483186, 0.86943284732075 ], [ 36.46094275748316, 0.86802903832074 ], [ 36.463689339483203, 0.865831773320733 ], [ 36.465886605483199, 0.863268296320766 ], [ 36.468938363483169, 0.862657945320732 ], [ 36.471318734483184, 0.860826890320763 ], [ 36.473699105483199, 0.857836167320781 ], [ 36.477544320483155, 0.855822007320737 ], [ 36.479741586483151, 0.853868882320737 ], [ 36.483098519483171, 0.851244370320783 ], [ 36.486699593483188, 0.849840562320762 ], [ 36.489507211483151, 0.846056382320737 ], [ 36.486089242483153, 0.843065660320744 ], [ 36.481938851483157, 0.840441148320733 ], [ 36.476140511483202, 0.83622972232075 ], [ 36.473699105483199, 0.830431382320737 ], [ 36.470891488483169, 0.822618882320737 ], [ 36.466313851483157, 0.814623277320775 ], [ 36.457097543483194, 0.800035874320767 ], [ 36.450688851483157, 0.789415757320737 ], [ 36.444890511483202, 0.78044358932078 ], [ 36.442327035483167, 0.776049058320777 ], [ 36.440129769483171, 0.773058335320738 ], [ 36.436711800483174, 0.766832749320767 ], [ 36.428105843483188, 0.752672593320765 ], [ 36.425725472483172, 0.749254624320767 ], [ 36.410344613483169, 0.723863999320767 ], [ 36.405889046483189, 0.717028062320762 ], [ 36.399114144483171, 0.710253160320744 ], [ 36.388494027483198, 0.70006028832074 ], [ 36.365300668483194, 0.67662278832074 ], [ 36.362126839483203, 0.674059312320762 ], [ 36.360112679483159, 0.671434800320751 ], [ 36.356145394483171, 0.667223374320767 ], [ 36.351323617483153, 0.662462632320737 ], [ 36.348088754483165, 0.659655015320763 ], [ 36.344731820483155, 0.658617417320781 ], [ 36.306340707483166, 0.648851792320781 ], [ 36.289739144483171, 0.644274156320759 ], [ 36.278935921483189, 0.631273667320781 ], [ 36.280095589483203, 0.624071519320748 ], [ 36.284490121483195, 0.604845445320732 ], [ 36.288335336483151, 0.589647691320747 ], [ 36.289311898483156, 0.58482591332074 ], [ 36.291509164483152, 0.576036851320734 ], [ 36.294133675483174, 0.566454331320754 ], [ 36.294499886483202, 0.563036363320746 ], [ 36.291509164483152, 0.554857652320775 ], [ 36.28992225048318, 0.55107347232075 ], [ 36.2757010584832, 0.519030015320763 ], [ 36.273931039483152, 0.516222398320733 ], [ 36.272527230483199, 0.512072007320737 ], [ 36.270085824483196, 0.506822984320761 ], [ 36.266301644483171, 0.497850816320747 ], [ 36.264714730483199, 0.495043199320773 ], [ 36.257939828483181, 0.480028550320751 ], [ 36.256291879483165, 0.47685472232075 ], [ 36.249516976483157, 0.462023179320736 ], [ 36.247685921483189, 0.458422105320776 ], [ 36.245732796483189, 0.45341722232075 ], [ 36.243718636483202, 0.448839585320738 ], [ 36.240727914483152, 0.442858140320763 ], [ 36.233342660483167, 0.426439683320777 ], [ 36.232121957483166, 0.423265855320776 ], [ 36.230290902483198, 0.42003099232073 ], [ 36.229314339483203, 0.41685716332074 ], [ 36.229497445483155, 0.411241929320736 ], [ 36.229131234483184, 0.405870835320738 ], [ 36.22852088248316, 0.40123216332074 ], [ 36.228093636483202, 0.396227281320759 ], [ 36.240117562483185, 0.388658921320766 ], [ 36.245915902483198, 0.385240952320769 ], [ 36.255132211483151, 0.379076402320775 ], [ 36.259099496483195, 0.374864976320734 ], [ 36.260320199483196, 0.369615952320769 ], [ 36.260320199483196, 0.36607591332074 ], [ 36.260930550483174, 0.357469956320754 ], [ 36.261296761483202, 0.348863999320767 ], [ 36.261113656483182, 0.34385911732073 ], [ 36.261540902483198, 0.340441148320733 ], [ 36.258489144483171, 0.337816636320779 ], [ 36.251103890483186, 0.330248277320775 ], [ 36.246343148483156, 0.327257554320736 ], [ 36.248296273483156, 0.340624253320752 ], [ 36.23132850048318, 0.332628648320733 ], [ 36.228093636483202, 0.326036851320734 ], [ 36.227300179483159, 0.323229234320761 ], [ 36.226689828483181, 0.319872300320751 ], [ 36.22992469148317, 0.31724778832074 ], [ 36.232488168483194, 0.315843980320776 ], [ 36.240727914483152, 0.313036363320746 ], [ 36.245732796483189, 0.305040757320737 ], [ 36.251286996483195, 0.296617906320759 ], [ 36.253545296483189, 0.294420640320763 ], [ 36.259709847483172, 0.289659898320733 ], [ 36.261296761483202, 0.287035386320779 ], [ 36.264104379483165, 0.279833238320746 ], [ 36.265691293483194, 0.275255601320734 ], [ 36.269902718483188, 0.274645249320767 ], [ 36.275945199483196, 0.273058335320738 ], [ 36.280339730483199, 0.271654527320775 ], [ 36.281499398483156, 0.267626206320754 ], [ 36.282536996483195, 0.26481858932078 ], [ 36.281499398483156, 0.261644761320779 ], [ 36.279912484483184, 0.254869859320761 ], [ 36.292729867483153, 0.251024644320748 ], [ 36.294499886483202, 0.246630113320746 ], [ 36.296514046483189, 0.238451402320775 ], [ 36.297124398483156, 0.23466722232075 ], [ 36.296697152483198, 0.230822007320737 ], [ 36.296697152483198, 0.227220933320777 ], [ 36.292485726483157, 0.216051499320767 ], [ 36.292485726483157, 0.212633531320759 ], [ 36.291142953483181, 0.208666245320783 ], [ 36.288701546483189, 0.205248277320775 ], [ 36.286504281483182, 0.202867906320759 ], [ 36.283330453483181, 0.200243394320748 ], [ 36.27930213248316, 0.198046128320752 ], [ 36.276128304483159, 0.195055406320759 ], [ 36.273137582483166, 0.19365159732075 ], [ 36.270513070483155, 0.191027085320738 ], [ 36.267095101483157, 0.18864671432078 ], [ 36.265325082483166, 0.184618394320748 ], [ 36.259892953483181, 0.182238023320733 ], [ 36.256536019483171, 0.181627671320766 ], [ 36.252141488483169, 0.185228745320783 ], [ 36.243901742483153, 0.198046128320752 ], [ 36.239507211483151, 0.204637925320751 ], [ 36.23633338248316, 0.209032456320754 ], [ 36.202886117483153, 0.233629624320767 ], [ 36.184941781483182, 0.229235093320765 ], [ 36.180913461483151, 0.227220933320777 ], [ 36.182317269483171, 0.224230210320738 ], [ 36.188725961483151, 0.220262925320751 ], [ 36.192693246483195, 0.219469468320765 ], [ 36.196904671483189, 0.21763841332074 ], [ 36.198735726483157, 0.215258042320781 ], [ 36.198491586483151, 0.211840074320773 ], [ 36.1995291834832, 0.207262437320762 ], [ 36.1995291834832, 0.202867906320759 ], [ 36.200139535483167, 0.199816148320733 ], [ 36.195500863483169, 0.197435777320775 ], [ 36.165532601483157, 0.189073960320738 ], [ 36.155889046483189, 0.186815660320744 ], [ 36.148931039483152, 0.184252183320777 ], [ 36.147710336483151, 0.174425523320733 ], [ 36.146733773483156, 0.169054429320736 ], [ 36.144719613483169, 0.153063218320765 ], [ 36.143743050483174, 0.149645249320767 ], [ 36.143743050483174, 0.146654527320775 ], [ 36.141545785483167, 0.129869859320761 ], [ 36.140691293483194, 0.125475327320769 ], [ 36.137944711483151, 0.117845933320777 ], [ 36.136540902483198, 0.113451402320775 ], [ 36.133489144483171, 0.096422593320765 ], [ 36.132695687483185, 0.090441148320733 ], [ 36.131536019483171, 0.085619370320783 ], [ 36.130925668483194, 0.07841722232075 ], [ 36.129704964483203, 0.068224351320734 ], [ 36.128728402483198, 0.058031480320776 ], [ 36.106938851483157, 0.060045640320763 ], [ 36.112920296483189, 0.015428941320747 ], [ 36.113103402483198, 0.01005784732075 ], [ 36.114324105483199, 0.004442613320746 ], [ 36.109502328483181, 0.001024644320748 ], [ 36.104497445483155, -0.004529554679268 ], [ 36.094304574483196, -0.012342054679268 ], [ 36.081914437483185, -0.007764418679246 ], [ 36.078740609483184, -0.006238539679262 ], [ 36.072331918483194, -0.004529554679268 ], [ 36.063115609483184, -0.000135023679266 ], [ 36.056706918483194, 0.001818101320734 ], [ 36.054326546483189, 0.003466050320751 ], [ 36.051335824483196, 0.007067124320767 ], [ 36.04773475048318, 0.012255113320746 ], [ 36.045720589483203, 0.01481858932078 ], [ 36.043523324483196, 0.01841966332074 ], [ 36.037297738483169, 0.01982347232075 ], [ 36.030889046483189, 0.021654527320775 ], [ 36.023686898483156, 0.024218003320752 ], [ 36.013310921483189, 0.02763597232075 ], [ 36.008306039483152, 0.029833238320746 ], [ 36.006536019483171, 0.034471910320744 ], [ 36.005498421483189, 0.03825608932078 ], [ 36.004888070483155, 0.041246812320762 ], [ 36.004888070483155, 0.04503099232073 ], [ 36.003118050483174, 0.04966966332074 ], [ 36.001714242483153, 0.055468003320752 ], [ 35.999516976483157, 0.059069077320769 ], [ 35.9905448084832, 0.058824937320762 ], [ 35.983891976483157, 0.057421128320752 ], [ 35.974736703483181, 0.056627671320766 ], [ 35.96570350048318, 0.057848374320767 ], [ 35.964543832483166, 0.061632554320736 ], [ 35.964910043483194, 0.065843980320776 ], [ 35.966313851483157, 0.068834702320769 ], [ 35.964910043483194, 0.072252671320766 ], [ 35.965520394483171, 0.075853745320783 ], [ 35.96234656648317, 0.082445542320781 ], [ 35.961736214483203, 0.08622972232075 ], [ 35.958318246483195, 0.088243882320737 ], [ 35.95593787548318, 0.091051499320767 ], [ 35.950505746483195, 0.091234605320776 ], [ 35.941533578483181, 0.095018785320744 ], [ 35.936101449483196, 0.081835191320747 ], [ 35.930730355483199, 0.067675035320744 ], [ 35.936528695483155, 0.062242906320759 ], [ 35.939092171483189, 0.059252183320777 ], [ 35.94812537548318, 0.049425523320733 ], [ 35.960088265483186, 0.035631577320769 ], [ 35.96570350048318, 0.029650132320737 ], [ 35.972295296483189, 0.023241441320747 ], [ 35.9749198084832, 0.021837632320737 ], [ 35.977117074483196, 0.018846910320744 ], [ 35.97852088248316, 0.016039292320781 ], [ 35.978887093483188, 0.01182786732073 ], [ 35.978093636483202, 0.008043687320762 ], [ 35.976933968483188, 0.004625718320765 ], [ 35.9749198084832, 0.001024644320748 ], [ 35.974492562483185, -0.00306471167926 ], [ 35.973332894483171, -0.008374769679224 ], [ 35.971929086483151, -0.012769300679227 ], [ 35.970525277483198, -0.015882093679241 ], [ 35.967717660483167, -0.019361097679225 ], [ 35.965337289483152, -0.021863539679262 ], [ 35.963506234483184, -0.024732191679223 ], [ 35.961308968483188, -0.026868422679231 ], [ 35.961736214483203, -0.030164320679264 ], [ 35.960515511483202, -0.033032972679225 ], [ 35.956304086483151, -0.037061293679246 ], [ 35.95453406648317, -0.040662367679263 ], [ 35.95313025748316, -0.04462965267925 ], [ 35.950932992483153, -0.048963148679266 ], [ 35.9495291834832, -0.052869398679266 ], [ 35.947087777483198, -0.054944593679241 ], [ 35.943303597483172, -0.056958754679217 ], [ 35.939092171483189, -0.059583265679239 ], [ 35.938115609483184, -0.063367445679264 ], [ 35.935735238483169, -0.067578871679248 ], [ 35.93250037548318, -0.068372328679234 ], [ 35.929326546483189, -0.071057875679233 ], [ 35.929326546483189, -0.076367933679253 ], [ 35.926335824483196, -0.078382093679241 ], [ 35.922490609483184, -0.07996900767927 ], [ 35.919133675483174, -0.082044203679234 ], [ 35.915288461483151, -0.07783277767925 ], [ 35.911504281483182, -0.069959242679263 ], [ 35.905522836483151, -0.058240492679263 ], [ 35.901128304483159, -0.048963148679266 ], [ 35.894902718483188, -0.052075941679223 ], [ 35.886907113483169, -0.045178968679241 ], [ 35.884709847483172, -0.042737562679238 ], [ 35.881902230483199, -0.040662367679263 ], [ 35.877507699483196, -0.035840589679256 ], [ 35.872930062483185, -0.043958265679239 ], [ 35.86609412548318, -0.055066664679262 ], [ 35.858525765483186, -0.066480238679221 ], [ 35.847722543483194, -0.083631117679263 ], [ 35.844304574483196, -0.088147718679241 ], [ 35.830144418483194, -0.108350355679252 ], [ 35.820928109483184, -0.118054945679264 ], [ 35.819341195483155, -0.115247328679234 ], [ 35.815740121483195, -0.109876234679237 ], [ 35.808110726483157, -0.099561293679246 ], [ 35.80469275748316, -0.099683363679221 ], [ 35.799504769483171, -0.104383070679264 ], [ 35.796514046483189, -0.111463148679266 ], [ 35.791142953483181, -0.112561781679235 ], [ 35.791142953483181, -0.163465101679267 ], [ 35.785893929483159, -0.172132093679241 ], [ 35.772710336483151, -0.194654066679223 ], [ 35.761540902483198, -0.195447523679266 ], [ 35.749944222483172, -0.199475843679241 ], [ 35.7249198084832, -0.205335218679241 ], [ 35.723699105483199, -0.200147230679252 ], [ 35.723943246483195, -0.196729261679254 ], [ 35.72351600048318, -0.173780043679246 ], [ 35.730535043483194, -0.157666761679254 ], [ 35.71429969148317, -0.132642347679225 ], [ 35.706914437483185, -0.123670179679268 ], [ 35.704900277483198, -0.119275648679266 ], [ 35.698918832483166, -0.112866957679219 ], [ 35.694097054483159, -0.109448988679221 ], [ 35.689336312483185, -0.093335707679219 ], [ 35.691106332483166, -0.085156996679248 ], [ 35.689702523483156, -0.074842054679268 ], [ 35.666692269483171, -0.074964125679233 ], [ 35.661687386483202, -0.076551039679262 ], [ 35.654119027483198, -0.078443129679217 ], [ 35.65570594148317, -0.072949964679256 ], [ 35.66211463248316, -0.061231214679256 ], [ 35.667729867483153, -0.050183851679267 ], [ 35.660344613483169, -0.054761488679221 ], [ 35.6585135584832, -0.051953871679248 ], [ 35.656133187483185, -0.05384596167926 ], [ 35.652104867483153, -0.056165297679231 ], [ 35.648686898483156, -0.058972914679262 ], [ 35.641911996483195, -0.060865004679217 ], [ 35.637517464483203, -0.05457838267927 ], [ 35.640141976483157, -0.050366957679219 ], [ 35.638494027483198, -0.045667250679233 ], [ 35.636296761483202, -0.040662367679263 ], [ 35.633916390483186, -0.036328871679248 ], [ 35.631536019483171, -0.034436781679235 ], [ 35.628118050483174, -0.034680922679231 ], [ 35.623723519483171, -0.034070570679264 ], [ 35.6155448084832, -0.033338148679266 ], [ 35.61133338248316, -0.03205641067922 ], [ 35.585332406483182, -0.008435804679268 ], [ 35.581120980483199, -0.007764418679246 ], [ 35.575932992483153, -0.008863050679227 ], [ 35.565740121483195, -0.008130629679217 ], [ 35.552312386483202, -0.008557875679233 ], [ 35.544499886483202, -0.008435804679268 ], [ 35.542119515483186, -0.006238539679262 ], [ 35.539311898483156, -0.003247816679223 ], [ 35.536931527483198, -0.000379164679262 ], [ 35.533696664483152, 0.002672593320765 ], [ 35.523686898483156, 0.013658921320766 ], [ 35.52429725048318, 0.020067613320746 ], [ 35.526494515483186, 0.036669175320751 ], [ 35.536504281483182, 0.037828843320765 ], [ 35.543706429483159, 0.040453355320776 ], [ 35.547124398483156, 0.055223863320746 ], [ 35.53992225048318, 0.059862535320744 ], [ 35.542485726483157, 0.064867417320781 ], [ 35.546086800483174, 0.069628160320744 ], [ 35.544499886483202, 0.072435777320775 ], [ 35.540715707483166, 0.07823411732073 ], [ 35.541692269483171, 0.08622972232075 ], [ 35.545293343483188, 0.085253160320744 ], [ 35.558293832483166, 0.076219956320754 ], [ 35.574346078483181, 0.06364671432078 ], [ 35.574712289483152, 0.082445542320781 ], [ 35.575322640483186, 0.098619859320761 ], [ 35.576116097483172, 0.113024156320759 ], [ 35.581304086483151, 0.124864976320734 ], [ 35.591313851483157, 0.146654527320775 ], [ 35.59070350048318, 0.15263597232075 ], [ 35.588689339483203, 0.168016831320754 ], [ 35.61328650748316, 0.168016831320754 ], [ 35.620488656483182, 0.16826097232075 ], [ 35.622930062483185, 0.166674058320777 ], [ 35.629521859483184, 0.16826097232075 ], [ 35.637334359483184, 0.168016831320754 ], [ 35.66992713248316, 0.168016831320754 ], [ 35.672307504483165, 0.169664781320759 ], [ 35.693730843483188, 0.175829331320754 ], [ 35.695928109483184, 0.17784349232073 ], [ 35.693486703483181, 0.182421128320752 ], [ 35.693913949483196, 0.186449449320773 ], [ 35.700932992483153, 0.192430894320748 ], [ 35.70313025748316, 0.197069566320747 ], [ 35.70648719148317, 0.200670640320763 ], [ 35.7092948084832, 0.202440660320744 ], [ 35.713323129483165, 0.20427171432078 ], [ 35.7171073084832, 0.205065171320766 ], [ 35.718938363483169, 0.208849351320734 ], [ 35.722295296483189, 0.210619370320783 ], [ 35.723088754483165, 0.215074937320762 ], [ 35.722905648483156, 0.220018785320744 ], [ 35.721929086483151, 0.224657456320754 ], [ 35.720891488483169, 0.234239976320734 ], [ 35.718938363483169, 0.238817613320746 ], [ 35.716924203483181, 0.242235581320754 ], [ 35.716496957483166, 0.245470445320732 ], [ 35.714910043483194, 0.248827378320752 ], [ 35.71234656648317, 0.252428452320769 ], [ 35.710515511483202, 0.255846421320766 ], [ 35.710088265483186, 0.259020249320767 ], [ 35.711125863483169, 0.263658921320766 ], [ 35.711125863483169, 0.266649644320748 ], [ 35.713323129483165, 0.26964036732073 ], [ 35.71289588248316, 0.272875230320776 ], [ 35.714543832483166, 0.276049058320777 ], [ 35.71429969148317, 0.279833238320746 ], [ 35.714910043483194, 0.282823960320738 ], [ 35.715337289483152, 0.286669175320751 ], [ 35.714910043483194, 0.291246812320762 ], [ 35.715337289483152, 0.296617906320759 ], [ 35.715337289483152, 0.301439683320777 ], [ 35.713933480483199, 0.304064195320732 ], [ 35.71429969148317, 0.307421128320752 ], [ 35.713506234483184, 0.311266343320765 ], [ 35.713689339483203, 0.315416734320761 ], [ 35.71570350048318, 0.31865159732075 ], [ 35.717900765483186, 0.321276109320761 ], [ 35.717900765483186, 0.325243394320748 ], [ 35.718328011483202, 0.32841722232075 ], [ 35.720342171483189, 0.331835191320747 ], [ 35.721135629483165, 0.335619370320783 ], [ 35.723088754483165, 0.338243882320737 ], [ 35.720098031483182, 0.34263841332074 ], [ 35.720891488483169, 0.346056382320737 ], [ 35.722539437483185, 0.349230210320738 ], [ 35.721745980483199, 0.352831285320744 ], [ 35.719304574483196, 0.355028550320751 ], [ 35.715093148483156, 0.356432359320761 ], [ 35.712102425483174, 0.355822007320737 ], [ 35.708745492483153, 0.360033433320777 ], [ 35.70593787548318, 0.362657945320732 ], [ 35.701909554483159, 0.363634507320737 ], [ 35.698918832483166, 0.367052476320734 ], [ 35.697698129483165, 0.363817613320746 ], [ 35.689702523483156, 0.368822495320783 ], [ 35.685491097483172, 0.370836656320759 ], [ 35.681523812483185, 0.370226304320736 ], [ 35.679509652483198, 0.373217027320775 ], [ 35.675542367483153, 0.374864976320734 ], [ 35.668706429483159, 0.380236070320732 ], [ 35.667485726483157, 0.384020249320767 ], [ 35.663701546483189, 0.386461656320759 ], [ 35.659734261483202, 0.392015855320776 ], [ 35.656316293483194, 0.396471421320766 ], [ 35.656743539483152, 0.401049058320777 ], [ 35.6585135584832, 0.40544358932078 ], [ 35.661138070483155, 0.408861558320777 ], [ 35.660344613483169, 0.413866441320747 ], [ 35.657903207483166, 0.420641343320765 ], [ 35.656133187483185, 0.422838609320761 ], [ 35.654729379483165, 0.426866929320736 ], [ 35.654729379483165, 0.43083421432078 ], [ 35.65570594148317, 0.434862535320744 ], [ 35.654119027483198, 0.439440171320766 ], [ 35.653691781483182, 0.444445054320736 ], [ 35.651128304483159, 0.447618882320737 ], [ 35.647099984483184, 0.450670640320763 ], [ 35.647527230483199, 0.45982591332074 ], [ 35.644719613483169, 0.46403733932078 ], [ 35.643315804483159, 0.46763841332074 ], [ 35.6409354334832, 0.469835679320736 ], [ 35.639287484483184, 0.474230210320738 ], [ 35.63672400748316, 0.477465074320773 ], [ 35.634343636483202, 0.481066148320733 ], [ 35.6331229334832, 0.48466722232075 ], [ 35.634099496483195, 0.48747483932078 ], [ 35.632329476483157, 0.492662827320769 ], [ 35.631536019483171, 0.496263902320775 ], [ 35.63031531648317, 0.500475327320769 ], [ 35.625737679483159, 0.501268785320744 ], [ 35.625127328483181, 0.504076402320775 ], [ 35.62109900748316, 0.504076402320775 ], [ 35.616521371483195, 0.506456773320733 ], [ 35.614324105483199, 0.510424058320777 ], [ 35.613896859483184, 0.516039292320781 ], [ 35.61273719148317, 0.521227281320759 ], [ 35.611516488483169, 0.524034898320733 ], [ 35.608708871483195, 0.526842515320763 ], [ 35.60492469148317, 0.529039781320759 ], [ 35.60352088248316, 0.532030503320752 ], [ 35.603093636483202, 0.53544847232075 ], [ 35.605535043483194, 0.539232652320775 ], [ 35.605107796483189, 0.543627183320777 ], [ 35.603703988483169, 0.547655503320752 ], [ 35.602910531483182, 0.551439683320777 ], [ 35.605107796483189, 0.558275620320783 ], [ 35.606511605483199, 0.561632554320736 ], [ 35.610723031483182, 0.567064683320777 ], [ 35.612126839483203, 0.570848863320746 ], [ 35.613530648483156, 0.574022691320747 ], [ 35.61414100048318, 0.577867906320759 ], [ 35.613530648483156, 0.582445542320781 ], [ 35.61273719148317, 0.585863511320779 ], [ 35.612920296483189, 0.589647691320747 ], [ 35.609929574483196, 0.593065660320744 ], [ 35.60492469148317, 0.596056382320737 ], [ 35.601323617483153, 0.599047105320776 ], [ 35.599126351483157, 0.601244370320783 ], [ 35.598088754483165, 0.607653062320762 ], [ 35.597295296483189, 0.610460679320736 ], [ 35.598332894483171, 0.613634507320737 ], [ 35.597295296483189, 0.616869370320783 ], [ 35.596929086483151, 0.620043199320773 ], [ 35.597905648483156, 0.623033921320766 ], [ 35.600286019483171, 0.626451890320763 ], [ 35.601323617483153, 0.631029527320775 ], [ 35.603337777483198, 0.634264390320763 ], [ 35.607121957483166, 0.637438218320765 ], [ 35.608342660483167, 0.641039292320781 ], [ 35.609136117483153, 0.644274156320759 ], [ 35.608342660483167, 0.653063218320765 ], [ 35.60632850048318, 0.655870835320738 ], [ 35.606511605483199, 0.659838120320783 ], [ 35.605290902483198, 0.662828843320765 ], [ 35.605107796483189, 0.666246812320762 ], [ 35.60632850048318, 0.670458238320746 ], [ 35.610112679483159, 0.67106858932078 ], [ 35.613103402483198, 0.672838609320761 ], [ 35.615911019483171, 0.675463120320783 ], [ 35.620305550483174, 0.675829331320754 ], [ 35.625493539483152, 0.677660386320779 ], [ 35.624700082483166, 0.681017320320732 ], [ 35.6253104334832, 0.685045640320763 ], [ 35.629521859483184, 0.687059800320751 ], [ 35.632512582483166, 0.690233628320752 ], [ 35.631536019483171, 0.693041245320783 ], [ 35.633489144483171, 0.696276109320761 ], [ 35.634892953483181, 0.699266831320754 ], [ 35.634343636483202, 0.702257554320736 ], [ 35.634343636483202, 0.706041734320761 ], [ 35.633733285483167, 0.709642808320777 ], [ 35.631536019483171, 0.716051499320767 ], [ 35.631108773483156, 0.720018785320744 ], [ 35.628545296483189, 0.722826402320775 ], [ 35.627324593483188, 0.72685472232075 ], [ 35.624089730483199, 0.727831285320744 ], [ 35.624089730483199, 0.732469956320754 ], [ 35.621343148483156, 0.734850327320769 ], [ 35.622136605483199, 0.739061753320752 ], [ 35.625127328483181, 0.742052476320734 ], [ 35.626531136483202, 0.745470445320732 ], [ 35.626897347483172, 0.753649156320759 ], [ 35.62891150748316, 0.757433335320738 ], [ 35.628728402483198, 0.76182786732073 ], [ 35.629888070483155, 0.765673081320754 ], [ 35.63171912548318, 0.76841966332074 ], [ 35.632329476483157, 0.771654527320775 ], [ 35.634343636483202, 0.773851792320781 ], [ 35.635320199483196, 0.778673570320732 ], [ 35.635137093483188, 0.783861558320777 ], [ 35.637517464483203, 0.786669175320751 ], [ 35.636540902483198, 0.790453355320776 ], [ 35.635503304483159, 0.799059312320762 ], [ 35.634709847483172, 0.803270738320746 ], [ 35.635686410483167, 0.807238023320733 ], [ 35.637090218483188, 0.809862535320744 ], [ 35.639714730483199, 0.812853257320737 ], [ 35.642705453483181, 0.815843980320776 ], [ 35.643132699483196, 0.818834702320769 ], [ 35.641728890483186, 0.822252671320766 ], [ 35.63812781648317, 0.824816148320733 ], [ 35.639714730483199, 0.827867906320759 ], [ 35.639287484483184, 0.832445542320781 ], [ 35.641118539483152, 0.835436265320763 ], [ 35.642339242483153, 0.83903733932078 ], [ 35.639104379483165, 0.841417710320738 ], [ 35.636296761483202, 0.843065660320744 ], [ 35.636113656483182, 0.846422593320765 ], [ 35.629338754483165, 0.850634019320748 ], [ 35.626897347483172, 0.852465074320773 ], [ 35.624944222483172, 0.858873765320763 ], [ 35.624944222483172, 0.861864488320746 ], [ 35.624089730483199, 0.865648667320781 ], [ 35.625127328483181, 0.870653550320751 ], [ 35.626714242483153, 0.874620835320738 ], [ 35.626103890483186, 0.879076402320775 ], [ 35.623723519483171, 0.882616441320747 ], [ 35.624089730483199, 0.885851304320736 ], [ 35.626714242483153, 0.889025132320737 ], [ 35.627141488483169, 0.892443101320734 ], [ 35.628118050483174, 0.896044175320751 ], [ 35.627507699483196, 0.900621812320762 ], [ 35.627141488483169, 0.906420152320775 ], [ 35.631108773483156, 0.907823960320738 ], [ 35.634526742483153, 0.911058824320773 ], [ 35.636907113483169, 0.917223374320767 ], [ 35.635503304483159, 0.924425523320733 ], [ 35.635686410483167, 0.92784349232073 ], [ 35.634709847483172, 0.932848374320767 ], [ 35.6331229334832, 0.936022202320769 ], [ 35.632512582483166, 0.939867417320781 ], [ 35.632329476483157, 0.944628160320744 ], [ 35.631536019483171, 0.948473374320767 ], [ 35.630498421483189, 0.951219956320754 ], [ 35.635686410483167, 0.956652085320738 ], [ 35.636907113483169, 0.962267320320732 ], [ 35.639104379483165, 0.964464585320738 ], [ 35.636296761483202, 0.97184983932078 ], [ 35.636296761483202, 0.976244370320783 ], [ 35.639287484483184, 0.978258531320759 ], [ 35.63953162548318, 0.981432359320761 ], [ 35.638921273483156, 0.984239976320734 ], [ 35.634709847483172, 0.990038316320747 ], [ 35.634709847483172, 0.99302903832074 ], [ 35.636296761483202, 0.996263902320775 ], [ 35.637517464483203, 0.999864976320734 ], [ 35.638738168483194, 1.002428452320769 ], [ 35.6409354334832, 1.004869859320761 ], [ 35.64453650748316, 1.014269273320733 ], [ 35.643132699483196, 1.018053452320769 ], [ 35.644109261483202, 1.022447984320761 ], [ 35.648320687483185, 1.026476304320736 ], [ 35.653935921483189, 1.027269761320779 ], [ 35.657720101483157, 1.030870835320738 ], [ 35.660710824483196, 1.033434312320762 ], [ 35.664739144483171, 1.03404466332074 ], [ 35.667485726483157, 1.037828843320765 ], [ 35.667485726483157, 1.041674058320777 ], [ 35.67133094148317, 1.040453355320776 ], [ 35.671941293483194, 1.043444077320769 ], [ 35.669499886483202, 1.04606858932078 ], [ 35.670293343483188, 1.049425523320733 ], [ 35.672490609483184, 1.052233140320763 ], [ 35.675542367483153, 1.05943528832074 ], [ 35.675298226483157, 1.064073960320738 ], [ 35.673345101483157, 1.06846849232073 ], [ 35.673894418483194, 1.072069566320747 ], [ 35.676518929483159, 1.074633042320781 ], [ 35.678288949483196, 1.078844468320765 ], [ 35.67773963248316, 1.083055894320748 ], [ 35.680303109483184, 1.085619370320783 ], [ 35.6839041834832, 1.086840074320773 ], [ 35.685124886483202, 1.090258042320781 ], [ 35.685735238483169, 1.093248765320763 ], [ 35.687139046483189, 1.096056382320737 ], [ 35.691106332483166, 1.097032945320732 ], [ 35.692693246483195, 1.099657456320754 ], [ 35.695134652483198, 1.101427476320734 ], [ 35.699101937483185, 1.102831285320744 ], [ 35.6995291834832, 1.106432359320761 ], [ 35.69812537548318, 1.109850327320769 ], [ 35.698918832483166, 1.11302415632076 ], [ 35.701116097483172, 1.116625230320776 ], [ 35.702519906483182, 1.121263902320775 ], [ 35.702092660483167, 1.125658433320777 ], [ 35.704106820483155, 1.128832261320779 ], [ 35.706120980483199, 1.131456773320733 ], [ 35.706120980483199, 1.13487474232073 ], [ 35.70648719148317, 1.139269273320733 ], [ 35.7073416834832, 1.14464036732073 ], [ 35.709722054483159, 1.148058335320738 ], [ 35.706914437483185, 1.148851792320781 ], [ 35.70453406648317, 1.150438706320754 ], [ 35.705144418483194, 1.15403978132076 ], [ 35.705510629483165, 1.158251206320754 ], [ 35.704900277483198, 1.162462632320737 ], [ 35.706120980483199, 1.16685716332074 ], [ 35.705510629483165, 1.170458238320746 ], [ 35.70593787548318, 1.175035874320767 ], [ 35.704717171483189, 1.17943040632076 ], [ 35.703740609483184, 1.187059800320751 ], [ 35.704900277483198, 1.189623277320775 ], [ 35.703740609483184, 1.194017808320777 ], [ 35.703313363483169, 1.198046128320752 ], [ 35.699346078483181, 1.199266831320754 ], [ 35.69812537548318, 1.202257554320736 ], [ 35.697942269483171, 1.205248277320775 ], [ 35.698735726483157, 1.208666245320783 ], [ 35.697942269483171, 1.21263353132076 ], [ 35.701543343483188, 1.220262925320751 ], [ 35.703496468483188, 1.222643296320766 ], [ 35.70453406648317, 1.225634019320748 ], [ 35.704289925483174, 1.228868882320737 ], [ 35.701726449483196, 1.230822007320737 ], [ 35.701116097483172, 1.235460679320736 ], [ 35.702886117483153, 1.239672105320776 ], [ 35.702519906483182, 1.244860093320765 ], [ 35.701299203483181, 1.254259507320737 ], [ 35.7073416834832, 1.265428941320747 ], [ 35.7073416834832, 1.270067613320746 ], [ 35.703740609483184, 1.26964036732073 ], [ 35.702886117483153, 1.272447984320761 ], [ 35.701116097483172, 1.275438706320754 ], [ 35.698735726483157, 1.277819077320769 ], [ 35.697942269483171, 1.281847398320733 ], [ 35.696111214483203, 1.284471910320744 ], [ 35.69672156648317, 1.28825608932078 ], [ 35.69672156648317, 1.293444077320769 ], [ 35.696111214483203, 1.297045152320775 ], [ 35.698308480483199, 1.303820054320736 ], [ 35.698458027483177, 1.312874295320737 ], [ 35.697912554483189, 1.31626571732073 ], [ 35.69812537548318, 1.322435777320775 ], [ 35.700688851483157, 1.32506028832074 ], [ 35.698308480483199, 1.328844468320765 ], [ 35.696111214483203, 1.333422105320776 ], [ 35.69672156648317, 1.336473863320746 ], [ 35.693730843483188, 1.33763353132076 ], [ 35.689702523483156, 1.343248765320763 ], [ 35.688725961483151, 1.346056382320737 ], [ 35.690740121483195, 1.350267808320777 ], [ 35.689092171483189, 1.35325853132076 ], [ 35.688725961483151, 1.356432359320761 ], [ 35.691106332483166, 1.359056870320783 ], [ 35.692143929483159, 1.363451402320775 ], [ 35.694890511483202, 1.366625230320776 ], [ 35.695134652483198, 1.37083665632076 ], [ 35.696538461483151, 1.374620835320738 ], [ 35.701726449483196, 1.380663316320747 ], [ 35.702519906483182, 1.38487474232073 ], [ 35.699895394483171, 1.38646165632076 ], [ 35.700505746483195, 1.389452378320752 ], [ 35.702886117483153, 1.392443101320734 ], [ 35.703313363483169, 1.395861070320732 ], [ 35.70453406648317, 1.399462144320748 ], [ 35.707707894483171, 1.400072495320783 ], [ 35.711125862483179, 1.401049058320777 ], [ 35.707707894483171, 1.404467027320775 ], [ 35.708318246483195, 1.407457749320767 ], [ 35.711125863483169, 1.408617417320781 ], [ 35.711736214483203, 1.411425035320744 ], [ 35.708501351483157, 1.413072984320761 ], [ 35.707097543483194, 1.416246812320762 ], [ 35.708318246483195, 1.419237535320744 ], [ 35.707524789483152, 1.42302171432078 ], [ 35.70648719148317, 1.425829331320754 ], [ 35.709111703483181, 1.429674546320766 ], [ 35.708501351483157, 1.433641831320754 ], [ 35.707524789483152, 1.436449449320773 ], [ 35.711125863483169, 1.438829820320732 ], [ 35.713323129483165, 1.442064683320777 ], [ 35.713933480483199, 1.445665757320737 ], [ 35.716924203483181, 1.447435777320775 ], [ 35.719731820483155, 1.448229234320761 ], [ 35.721318734483184, 1.450670640320763 ], [ 35.721501839483203, 1.454637925320751 ], [ 35.723943246483195, 1.456652085320738 ], [ 35.723332894483171, 1.46104661732073 ], [ 35.72211219148317, 1.463671128320752 ], [ 35.720342171483189, 1.466051499320767 ], [ 35.719914925483174, 1.469469468320765 ], [ 35.721929086483151, 1.47184983932078 ], [ 35.724736703483181, 1.473070542320781 ], [ 35.727910531483182, 1.478441636320779 ], [ 35.730602697483157, 1.482069889320767 ], [ 35.730843075483158, 1.485242881320741 ], [ 35.736089242483153, 1.489855210320738 ], [ 35.73773719148317, 1.492845933320777 ], [ 35.739934457483166, 1.495470445320732 ], [ 35.7424979334832, 1.49724046432078 ], [ 35.743535042483181, 1.501252066320771 ], [ 35.746563807483192, 1.502309730320744 ], [ 35.753118050483174, 1.504076402320775 ], [ 35.752324593483188, 1.507250230320776 ], [ 35.754704964483203, 1.509630601320734 ], [ 35.756108773483156, 1.513658921320766 ], [ 35.758306039483152, 1.515428941320747 ], [ 35.761540902483198, 1.516222398320733 ], [ 35.761540902483198, 1.519457261320779 ], [ 35.763310921483189, 1.52263108932078 ], [ 35.763921273483156, 1.526049058320777 ], [ 35.764104379483165, 1.529650132320737 ], [ 35.766911996483195, 1.531053941320747 ], [ 35.769719613483169, 1.532030503320752 ], [ 35.769902718483188, 1.535631577320769 ], [ 35.768926156483182, 1.539659898320733 ], [ 35.769719613483169, 1.543871324320773 ], [ 35.77148963248316, 1.547655503320752 ], [ 35.774541390483186, 1.550646226320734 ], [ 35.774907601483157, 1.554857652320775 ], [ 35.776311410483167, 1.560045640320763 ], [ 35.776178396483196, 1.567740665320739 ], [ 35.78070594148317, 1.570665757320737 ], [ 35.780339730483199, 1.575243394320748 ], [ 35.783329124483195, 1.578045572320773 ], [ 35.78210975048318, 1.583422105320776 ], [ 35.780095589483203, 1.586656968320765 ], [ 35.782720101483157, 1.590441148320733 ], [ 35.781499398483156, 1.59404222232075 ], [ 35.782536996483195, 1.598070542320781 ], [ 35.78070594148317, 1.602037827320769 ], [ 35.784307015483186, 1.603868882320737 ], [ 35.786321175483174, 1.607469956320754 ], [ 35.784490121483195, 1.610826890320763 ], [ 35.781926644483171, 1.614244859320761 ], [ 35.781133187483185, 1.618456285320744 ], [ 35.782296945483203, 1.622226595320737 ], [ 35.785360842483151, 1.622402658320764 ], [ 35.788945687483185, 1.622850816320747 ], [ 35.790898812483185, 1.625231187320762 ], [ 35.788945687483185, 1.628832261320779 ], [ 35.786138070483155, 1.630846421320766 ], [ 35.782903207483166, 1.631639878320752 ], [ 35.778142464483203, 1.639635484320761 ], [ 35.778325570483155, 1.642626206320754 ], [ 35.781133187483185, 1.646654527320775 ], [ 35.780339730483199, 1.651049058320777 ], [ 35.781926644483171, 1.653856675320751 ], [ 35.786265421483158, 1.654509746320739 ], [ 35.795720589483203, 1.638658921320766 ], [ 35.8089041834832, 1.61802903832074 ], [ 35.821294320483155, 1.599047105320776 ], [ 35.858098519483171, 1.54185716332074 ], [ 35.883306039483152, 1.503221910320744 ], [ 35.886296761483202, 1.498217027320775 ], [ 35.904546273483156, 1.469225327320769 ], [ 35.909490121483195, 1.461840074320773 ], [ 35.915898812483185, 1.45146409732075 ], [ 35.936101449483196, 1.41966478132076 ], [ 35.966924203483181, 1.371874253320752 ], [ 35.968511117483153, 1.368456285320744 ], [ 35.977300179483159, 1.355455796320766 ], [ 35.987126839483203, 1.340441148320733 ], [ 35.997319711483151, 1.324266831320754 ], [ 36.0003104334832, 1.319872300320751 ], [ 36.009709847483172, 1.304247300320751 ], [ 36.020329964483203, 1.287828843320765 ], [ 36.020085824483196, 1.284838120320783 ], [ 36.02930213248316, 1.273668687320762 ] ] ] } } +, +{ "type": "Feature", "id": 29, "properties": { "OBJECTID": 30, "ID_": 1416, "COUNTY_NAM": "LAIKIPIA", "CONST_CODE": 165, "CONSTITUEN": "LAIKIPIA NORTH", "COUNTY_COD": 31, "Shape_Leng": 5.22280558966, "Shape_Area": 0.77470766941 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.830510629483165, 0.819872300320751 ], [ 36.833745492483153, 0.812853257320737 ], [ 36.834905160483167, 0.801866929320736 ], [ 36.836736214483203, 0.799059312320762 ], [ 36.840093148483156, 0.797045152320775 ], [ 36.844121468483188, 0.794237535320744 ], [ 36.842290414483152, 0.789415757320737 ], [ 36.843511117483153, 0.786058824320773 ], [ 36.847295296483189, 0.780016343320765 ], [ 36.848943246483195, 0.776842515320763 ], [ 36.851933968483188, 0.770250718320765 ], [ 36.854497445483155, 0.763842027320775 ], [ 36.860539925483174, 0.750048081320754 ], [ 36.862309945483155, 0.746874253320752 ], [ 36.863103402483198, 0.74302903832074 ], [ 36.863530648483156, 0.739672105320776 ], [ 36.86609412548318, 0.736864488320746 ], [ 36.870488656483182, 0.736071031320759 ], [ 36.882939828483181, 0.735033433320777 ], [ 36.88672400748316, 0.733873765320763 ], [ 36.88953162548318, 0.736071031320759 ], [ 36.893743050483174, 0.73747483932078 ], [ 36.898320687483185, 0.738451402320775 ], [ 36.902715218483188, 0.738634507320737 ], [ 36.906316293483194, 0.736254136320779 ], [ 36.908696664483152, 0.732836167320781 ], [ 36.909123910483167, 0.729051988320746 ], [ 36.91211463248316, 0.727220933320777 ], [ 36.916692269483171, 0.727220933320777 ], [ 36.91992713248316, 0.73466722232075 ], [ 36.921514046483189, 0.737230699320773 ], [ 36.92468787548318, 0.738268296320766 ], [ 36.927922738483169, 0.739061753320752 ], [ 36.93172971448319, 0.741640383320769 ], [ 36.931706918483194, 0.733019273320733 ], [ 36.928533089483203, 0.72862474232073 ], [ 36.927129281483182, 0.723619859320761 ], [ 36.926702035483167, 0.719652574320773 ], [ 36.926946175483174, 0.716661851320734 ], [ 36.926946175483174, 0.713426988320746 ], [ 36.926702035483167, 0.709032456320754 ], [ 36.926518929483159, 0.694445054320736 ], [ 36.9260916834832, 0.687670152320775 ], [ 36.9260916834832, 0.683275620320783 ], [ 36.927129281483182, 0.675035874320767 ], [ 36.9241385584832, 0.667833726320734 ], [ 36.923711312483185, 0.663439195320732 ], [ 36.922307504483165, 0.659655015320763 ], [ 36.918340218483188, 0.659471910320744 ], [ 36.914495004483165, 0.659838120320783 ], [ 36.912541879483165, 0.653246324320773 ], [ 36.912908089483203, 0.650072495320783 ], [ 36.911687386483202, 0.647447984320761 ], [ 36.909307015483186, 0.644030015320763 ], [ 36.909490121483195, 0.639452378320752 ], [ 36.909917367483153, 0.635851304320736 ], [ 36.909490121483195, 0.631822984320761 ], [ 36.906499398483156, 0.629442613320746 ], [ 36.902104867483153, 0.629259507320737 ], [ 36.89789344148317, 0.628466050320751 ], [ 36.896123421483189, 0.625475327320769 ], [ 36.894902718483188, 0.62224046432078 ], [ 36.891545785483167, 0.620836656320759 ], [ 36.890508187483185, 0.617052476320734 ], [ 36.88953162548318, 0.61162034732075 ], [ 36.887944711483151, 0.60826341332074 ], [ 36.883733285483167, 0.60966722232075 ], [ 36.881108773483156, 0.606432358320771 ], [ 36.879521859483184, 0.603441636320779 ], [ 36.876103890483186, 0.603075425320751 ], [ 36.874516976483157, 0.600267808320777 ], [ 36.871709359483184, 0.59684983932078 ], [ 36.868108285483167, 0.594225327320769 ], [ 36.866704476483157, 0.590624253320752 ], [ 36.867925179483159, 0.587816636320779 ], [ 36.868718636483202, 0.58482591332074 ], [ 36.867314828483181, 0.574816148320733 ], [ 36.865117562483185, 0.571031968320765 ], [ 36.868291390483186, 0.568834702320769 ], [ 36.88171912548318, 0.567430894320748 ], [ 36.908330453483181, 0.564073960320738 ], [ 36.930303109483184, 0.561632554320736 ], [ 36.941106332483166, 0.56065599232073 ], [ 36.952703011483202, 0.559069077320769 ], [ 36.974126351483157, 0.556627671320766 ], [ 37.005742562483185, 0.552416245320783 ], [ 37.046697152483198, 0.547655503320752 ], [ 37.07172156648317, 0.544420640320763 ], [ 37.093144906483182, 0.542040269320748 ], [ 37.11414100048318, 0.539232652320775 ], [ 37.1331229334832, 0.53721849232073 ], [ 37.139287484483184, 0.536241929320736 ], [ 37.17468787548318, 0.532030503320752 ], [ 37.194890511483202, 0.529833238320746 ], [ 37.198491586483151, 0.528856675320751 ], [ 37.205693734483184, 0.528429429320736 ], [ 37.216313851483157, 0.527269761320779 ], [ 37.230290902483198, 0.525438706320754 ], [ 37.258733285483167, 0.522020738320746 ], [ 37.333928597483172, 0.514025132320737 ], [ 37.351933968483188, 0.512255113320746 ], [ 37.368718636483202, 0.509447495320783 ], [ 37.368108285483167, 0.506029527320775 ], [ 37.361943734483184, 0.501634995320783 ], [ 37.360906136483202, 0.498033921320766 ], [ 37.359929574483196, 0.493456285320744 ], [ 37.360906136483202, 0.489672105320776 ], [ 37.36273719148317, 0.485826890320763 ], [ 37.360539925483174, 0.483019273320733 ], [ 37.360723031483182, 0.475817124320767 ], [ 37.358891976483157, 0.473070542320781 ], [ 37.358098519483171, 0.468248765320763 ], [ 37.356694711483151, 0.465441148320733 ], [ 37.354314339483203, 0.463426988320746 ], [ 37.350286019483171, 0.458849351320734 ], [ 37.350530160483167, 0.455675523320733 ], [ 37.350286019483171, 0.452074449320773 ], [ 37.348943246483195, 0.448229234320761 ], [ 37.349492562483185, 0.441820542320781 ], [ 37.350102914483152, 0.439073960320738 ], [ 37.351323617483153, 0.436266343320765 ], [ 37.352300179483159, 0.432054917320781 ], [ 37.352727425483174, 0.428453843320765 ], [ 37.353093636483202, 0.420641343320765 ], [ 37.353887093483188, 0.415026109320761 ], [ 37.354741586483151, 0.411669175320751 ], [ 37.357488168483194, 0.410021226320734 ], [ 37.361516488483169, 0.408434312320762 ], [ 37.363896859483184, 0.406847398320733 ], [ 37.3655448084832, 0.403856675320751 ], [ 37.3674979334832, 0.401049058320777 ], [ 37.370122445483155, 0.392626206320754 ], [ 37.371343148483156, 0.38786546432078 ], [ 37.370305550483174, 0.38487474232073 ], [ 37.37109900748316, 0.382067124320767 ], [ 37.375127328483181, 0.380419175320751 ], [ 37.379521859483184, 0.377672593320765 ], [ 37.378728402483198, 0.367662827320769 ], [ 37.379094613483169, 0.364672105320776 ], [ 37.383733285483167, 0.359056870320783 ], [ 37.384892953483181, 0.356432359320761 ], [ 37.389104379483165, 0.355638902320775 ], [ 37.392339242483153, 0.353441636320779 ], [ 37.3928885584832, 0.343676011320779 ], [ 37.3928885584832, 0.336473863320746 ], [ 37.393498910483167, 0.333422105320776 ], [ 37.392522347483172, 0.325853745320783 ], [ 37.393743050483174, 0.319628160320744 ], [ 37.394719613483169, 0.316637437320762 ], [ 37.393132699483196, 0.314073960320738 ], [ 37.393743050483174, 0.31083909732075 ], [ 37.394902718483188, 0.307665269320748 ], [ 37.394292367483153, 0.304247300320751 ], [ 37.395696175483174, 0.300035874320767 ], [ 37.393315804483159, 0.296434800320751 ], [ 37.394719613483169, 0.29185716332074 ], [ 37.391728890483186, 0.287645738320746 ], [ 37.388494027483198, 0.284655015320763 ], [ 37.387334359483184, 0.281420152320775 ], [ 37.38812781648317, 0.278673570320732 ], [ 37.385930550483174, 0.274645249320767 ], [ 37.381291879483165, 0.273668687320762 ], [ 37.377324593483188, 0.272447984320761 ], [ 37.374516976483157, 0.270433824320773 ], [ 37.374089730483199, 0.267259995320783 ], [ 37.373113168483194, 0.263475816320747 ], [ 37.370488656483182, 0.262072007320737 ], [ 37.367314828483181, 0.259630601320734 ], [ 37.365117562483185, 0.257616441320747 ], [ 37.363896859483184, 0.25505296432078 ], [ 37.36133338248316, 0.253649156320759 ], [ 37.361699593483188, 0.250048081320754 ], [ 37.365727914483152, 0.247850816320747 ], [ 37.365300668483194, 0.243822495320783 ], [ 37.36414100048318, 0.239061753320752 ], [ 37.361943734483184, 0.23662034732075 ], [ 37.357915414483152, 0.235033433320777 ], [ 37.358525765483186, 0.231066148320733 ], [ 37.3577323084832, 0.227648179320736 ], [ 37.355535043483194, 0.224230210320738 ], [ 37.35632850048318, 0.221422593320765 ], [ 37.355535043483194, 0.217821519320748 ], [ 37.353093636483202, 0.21403733932078 ], [ 37.34851600048318, 0.205431382320737 ], [ 37.349126351483157, 0.201830308320777 ], [ 37.349309457483166, 0.197863023320733 ], [ 37.348699105483199, 0.194017808320777 ], [ 37.343511117483153, 0.191454331320754 ], [ 37.338323129483165, 0.190843980320776 ], [ 37.340520394483171, 0.186266343320765 ], [ 37.341496957483166, 0.183031480320776 ], [ 37.339543832483166, 0.18083421432078 ], [ 37.336125863483169, 0.180468003320752 ], [ 37.333745492483153, 0.178636949320773 ], [ 37.323735726483157, 0.18083421432078 ], [ 37.319341195483155, 0.180223863320746 ], [ 37.314702523483156, 0.178453843320765 ], [ 37.308110726483157, 0.174425523320733 ], [ 37.304936898483156, 0.170458238320746 ], [ 37.301702035483167, 0.167467515320763 ], [ 37.297917855483199, 0.164843003320752 ], [ 37.294499886483202, 0.162035386320779 ], [ 37.291692269483171, 0.159471910320744 ], [ 37.287297738483169, 0.154833238320746 ], [ 37.284917367483153, 0.152025620320783 ], [ 37.283086312483185, 0.149462144320748 ], [ 37.283330453483181, 0.145250718320765 ], [ 37.282536996483195, 0.140673081320754 ], [ 37.281316293483194, 0.137072007320737 ], [ 37.281499398483156, 0.127428452320769 ], [ 37.26312781648317, 0.10966722232075 ], [ 37.260930550483174, 0.106676499320767 ], [ 37.2581229334832, 0.102037827320769 ], [ 37.252934945483155, 0.094652574320773 ], [ 37.250493539483152, 0.100023667320781 ], [ 37.248540414483152, 0.104845445320732 ], [ 37.245732796483189, 0.106066148320733 ], [ 37.241704476483157, 0.104235093320765 ], [ 37.236699593483188, 0.102648179320736 ], [ 37.234502328483181, 0.098070542320781 ], [ 37.232915414483152, 0.07927171432078 ], [ 37.230718148483156, 0.076647202320769 ], [ 37.223332894483171, 0.072618882320737 ], [ 37.219487679483159, 0.070848863320746 ], [ 37.214726937483185, 0.07042161732073 ], [ 37.21094275748316, 0.068834702320769 ], [ 37.208501351483157, 0.067064683320777 ], [ 37.204717171483189, 0.066027085320738 ], [ 37.202336800483174, 0.064073960320738 ], [ 37.201909554483159, 0.06065599232073 ], [ 37.19812537548318, 0.060228745320783 ], [ 37.195500863483169, 0.058458726320734 ], [ 37.192143929483159, 0.056627671320766 ], [ 37.188115609483184, 0.055223863320746 ], [ 37.180120004483165, 0.054430406320759 ], [ 37.176518929483159, 0.054247300320751 ], [ 37.172124398483156, 0.053636949320773 ], [ 37.168340218483188, 0.051439683320777 ], [ 37.16351844148317, 0.050218980320776 ], [ 37.159123910483167, 0.049425523320733 ], [ 37.156133187483185, 0.049059312320762 ], [ 37.152287972483172, 0.047655503320752 ], [ 37.1507010584832, 0.044847886320779 ], [ 37.148137582483166, 0.042223374320767 ], [ 37.1428885584832, 0.041674058320777 ], [ 37.140508187483185, 0.039232652320775 ], [ 37.136113656483182, 0.037828843320765 ], [ 37.131536019483171, 0.036669175320751 ], [ 37.128545296483189, 0.035631577320769 ], [ 37.1253104334832, 0.036241929320736 ], [ 37.121709359483184, 0.036058824320773 ], [ 37.109136117483153, 0.035875718320765 ], [ 37.095891488483169, 0.026476304320736 ], [ 37.093938363483169, 0.023668687320762 ], [ 37.09070350048318, 0.020433824320773 ], [ 37.093938363483169, 0.016222398320733 ], [ 37.096929086483151, 0.013231675320751 ], [ 37.099126351483157, 0.010424058320777 ], [ 37.101506722483172, 0.008837144320748 ], [ 37.102544320483155, 0.006029527320775 ], [ 37.104497445483155, 0.001818101320734 ], [ 37.107488168483194, -0.000928480679252 ], [ 37.110906136483202, -0.00965650767927 ], [ 37.11328650748316, -0.013745863679221 ], [ 37.116704476483157, -0.01643141067922 ], [ 37.119939339483203, -0.019849379679217 ], [ 37.116338265483186, -0.031446058679253 ], [ 37.112920296483189, -0.036756117679263 ], [ 37.110906136483202, -0.034558851679267 ], [ 37.108525765483186, -0.03236158667926 ], [ 37.10492469148317, -0.029859144679224 ], [ 37.100530160483167, -0.024854261679254 ], [ 37.098088754483165, -0.022962172679231 ], [ 37.094731820483155, -0.01923902767925 ], [ 37.092290414483152, -0.017163832679219 ], [ 37.089116586483151, -0.015760023679266 ], [ 37.086125863483169, -0.01283033667926 ], [ 37.081120980483199, -0.00556715267925 ], [ 37.078496468483188, -0.000379164679262 ], [ 37.07953406648317, 0.002855699320773 ], [ 37.07813025748316, 0.006456773320733 ], [ 37.078740609483184, 0.010424058320777 ], [ 37.073918832483166, 0.008043687320762 ], [ 37.072515023483156, 0.004259507320737 ], [ 37.070928109483184, 0.001024644320748 ], [ 37.068730843483188, -0.002332289679262 ], [ 37.061711800483174, -0.000745375679233 ], [ 37.054509652483198, -0.007459242679263 ], [ 37.052495492483153, -0.010938246679248 ], [ 37.051702035483167, -0.015149672679231 ], [ 37.048345101483157, -0.019666273679266 ], [ 37.027104867483153, -0.045850355679252 ], [ 37.026311410483167, -0.048963148679266 ], [ 37.0159354334832, -0.055249769679224 ], [ 36.997930062483185, -0.064954359679237 ], [ 36.992925179483159, -0.065747816679223 ], [ 36.98969031648317, -0.066663343679241 ], [ 36.986516488483169, -0.069043714679256 ], [ 36.982488168483194, -0.068982679679268 ], [ 36.978887093483188, -0.071363050679227 ], [ 36.979131234483184, -0.075757582679219 ], [ 36.979131234483184, -0.07923658667926 ], [ 36.982915414483152, -0.096082289679262 ], [ 36.983525765483186, -0.100965101679267 ], [ 36.984929574483196, -0.123059828679234 ], [ 36.985539925483174, -0.129163343679241 ], [ 36.98633338248316, -0.133679945679264 ], [ 36.994939339483203, -0.143140394679224 ], [ 36.997136605483199, -0.145276625679233 ], [ 37.000737679483159, -0.146070082679219 ], [ 37.004521859483184, -0.148450453679234 ], [ 37.007939828483181, -0.149182875679233 ], [ 37.009526742483153, -0.152173597679225 ], [ 37.010137093483188, -0.156629164679262 ], [ 37.01312781648317, -0.159558851679267 ], [ 37.015141976483157, -0.161939222679225 ], [ 37.016301644483171, -0.164563734679237 ], [ 37.017705453483181, -0.16877516067922 ], [ 37.017705453483181, -0.171643812679238 ], [ 37.019719613483169, -0.175366957679219 ], [ 37.01953650748316, -0.178235609679237 ], [ 37.018926156483182, -0.181165297679231 ], [ 37.0159354334832, -0.193738539679262 ], [ 37.012700570483155, -0.206250746679248 ], [ 37.009709847483172, -0.219068129679217 ], [ 37.009099496483195, -0.22346266067922 ], [ 37.012334359483184, -0.228772718679241 ], [ 37.01312781648317, -0.233777601679267 ], [ 37.011907113483169, -0.23817213267927 ], [ 37.010320199483196, -0.241956312679238 ], [ 37.007695687483185, -0.243177015679239 ], [ 37.004888070483155, -0.246045668679246 ], [ 37.002690804483159, -0.249280531679235 ], [ 36.999944222483172, -0.251782972679225 ], [ 36.99609900748316, -0.253858168679246 ], [ 36.991338265483186, -0.255872328679234 ], [ 36.99890662548318, -0.271436293679246 ], [ 36.99414588248316, -0.283032972679225 ], [ 36.988103402483198, -0.295484144679224 ], [ 36.981694711483151, -0.292737562679238 ], [ 36.974309457483166, -0.289258558679253 ], [ 36.962712777483198, -0.284375746679248 ], [ 36.958745492483153, -0.28236158667926 ], [ 36.905889046483189, -0.266675550679227 ], [ 36.888494027483198, -0.261243422679231 ], [ 36.879521859483184, -0.258130629679217 ], [ 36.87390662548318, -0.25306471167926 ], [ 36.872136605483199, -0.248181898679266 ], [ 36.868718636483202, -0.24915846167926 ], [ 36.857305062483185, -0.254956800679227 ], [ 36.85492469148317, -0.249036390679239 ], [ 36.845891488483169, -0.225049574679249 ], [ 36.841924203483181, -0.214063246679248 ], [ 36.845525277483198, -0.212476332679219 ], [ 36.842534554483159, -0.204846937679238 ], [ 36.840886605483199, -0.19837721167926 ], [ 36.846929086483151, -0.196729261679254 ], [ 36.852300179483159, -0.196729261679254 ], [ 36.855290902483198, -0.194043714679256 ], [ 36.857121957483166, -0.191541273679266 ], [ 36.860539925483174, -0.189282972679225 ], [ 36.8655448084832, -0.186841566679223 ], [ 36.866887582483166, -0.182080824679249 ], [ 36.869939339483203, -0.181165297679231 ], [ 36.871709359483184, -0.178235609679237 ], [ 36.871526254483165, -0.173963148679266 ], [ 36.870122445483155, -0.171277601679267 ], [ 36.867314828483181, -0.16877516067922 ], [ 36.8655448084832, -0.165479261679254 ], [ 36.865300668483194, -0.162244398679266 ], [ 36.863896859483184, -0.158582289679262 ], [ 36.861516488483169, -0.155164320679264 ], [ 36.859746468483188, -0.152967054679268 ], [ 36.860112679483159, -0.149854261679254 ], [ 36.861699593483188, -0.147168714679256 ], [ 36.861699593483188, -0.144055922679231 ], [ 36.855107796483189, -0.140271742679263 ], [ 36.851506722483172, -0.138867933679253 ], [ 36.848943246483195, -0.137342054679268 ], [ 36.844121468483188, -0.136365492679263 ], [ 36.83594275748316, -0.135144789679262 ], [ 36.832097543483194, -0.134778578679234 ], [ 36.831914437483185, -0.120435316679223 ], [ 36.831120980483199, -0.104077894679224 ], [ 36.793523324483196, -0.107556898679266 ], [ 36.788701546483189, -0.108655531679235 ], [ 36.7835135584832, -0.110059339679256 ], [ 36.77429725048318, -0.112866957679219 ], [ 36.769109261483202, -0.114148695679264 ], [ 36.766118539483152, -0.109143812679238 ], [ 36.760320199483196, -0.114270765679239 ], [ 36.752324593483188, -0.120557386679254 ], [ 36.74890662548318, -0.121167738679221 ], [ 36.730901254483165, -0.125379164679262 ], [ 36.717534554483159, -0.128858168679246 ], [ 36.71094275748316, -0.13587721167926 ], [ 36.705510629483165, -0.138135511679254 ], [ 36.6995291834832, -0.13947828567922 ], [ 36.676702035483167, -0.147046644679224 ], [ 36.660527718483188, -0.15223463267927 ], [ 36.656926644483171, -0.15315016067922 ], [ 36.647527230483199, -0.133252699679249 ], [ 36.642095101483157, -0.120740492679263 ], [ 36.635686410483167, -0.106641371679248 ], [ 36.624089730483199, -0.10535963267927 ], [ 36.593144906483182, -0.10236891067922 ], [ 36.573308480483199, -0.103650648679266 ], [ 36.566533578483181, -0.096753675679227 ], [ 36.56250525748316, -0.088941175679227 ], [ 36.555730355483199, -0.090344984679237 ], [ 36.561345589483203, -0.076245863679221 ], [ 36.551946175483174, -0.069531996679248 ], [ 36.556340707483166, -0.058179457679219 ], [ 36.556890023483156, -0.054883558679253 ], [ 36.560491097483172, -0.050855238679221 ], [ 36.561711800483174, -0.047254164679262 ], [ 36.562688363483169, -0.043042738679221 ], [ 36.565923226483157, -0.041761000679233 ], [ 36.574712289483152, -0.03504713267927 ], [ 36.577336800483174, -0.032666761679254 ], [ 36.578313363483169, -0.029859144679224 ], [ 36.58148719148317, -0.025647718679241 ], [ 36.58289100048318, -0.022168714679256 ], [ 36.586492074483196, -0.02033766067922 ], [ 36.589543832483166, -0.020276625679233 ], [ 36.651128304483159, -0.016065199679249 ], [ 36.637700570483155, 0.014452378320752 ], [ 36.611089242483153, 0.004259507320737 ], [ 36.605290902483198, 0.003038804320736 ], [ 36.594304574483196, 0.023424546320766 ], [ 36.5921073084832, 0.04185716332074 ], [ 36.578313363483169, 0.069872300320751 ], [ 36.524114144483171, 0.04802171432078 ], [ 36.521916879483165, 0.053453843320765 ], [ 36.521123421483189, 0.057665269320748 ], [ 36.517339242483153, 0.071031968320765 ], [ 36.512090218483188, 0.086656968320765 ], [ 36.491704476483157, 0.108019273320733 ], [ 36.485723031483182, 0.114672105320776 ], [ 36.483525765483186, 0.117418687320762 ], [ 36.476689828483181, 0.124864976320734 ], [ 36.466313851483157, 0.137438218320765 ], [ 36.463933480483199, 0.133043687320762 ], [ 36.459538949483196, 0.123461167320781 ], [ 36.45648719148317, 0.117235581320754 ], [ 36.454900277483198, 0.113024156320759 ], [ 36.446538461483151, 0.092821519320748 ], [ 36.443730843483188, 0.094835679320736 ], [ 36.443913949483196, 0.090624253320752 ], [ 36.434514535483167, 0.086473863320746 ], [ 36.423711312483185, 0.08287278832074 ], [ 36.403935921483189, 0.058458726320734 ], [ 36.402715218483188, 0.055468003320752 ], [ 36.406316293483194, 0.053636949320773 ], [ 36.425908578483181, 0.042833726320734 ], [ 36.422307504483165, 0.040270249320767 ], [ 36.419744027483198, 0.038866441320747 ], [ 36.405889046483189, 0.038622300320751 ], [ 36.401494515483186, 0.034471910320744 ], [ 36.402287972483172, 0.029650132320737 ], [ 36.398686898483156, 0.029039781320759 ], [ 36.394719613483169, 0.03044358932078 ], [ 36.391301644483171, 0.032030503320752 ], [ 36.390325082483166, 0.028429429320736 ], [ 36.387517464483203, 0.026476304320736 ], [ 36.365117562483185, 0.019274156320759 ], [ 36.352910531483182, 0.018053452320769 ], [ 36.34851600048318, 0.03044358932078 ], [ 36.344121468483188, 0.029467027320775 ], [ 36.333501351483157, 0.026049058320777 ], [ 36.329717171483189, 0.025072495320783 ], [ 36.32953406648317, 0.020861070320732 ], [ 36.321111214483203, 0.018236558320777 ], [ 36.311894906483182, 0.016832749320767 ], [ 36.304936898483156, 0.015062730320776 ], [ 36.303899300483174, 0.011034410320744 ], [ 36.30273963248316, 0.007860581320754 ], [ 36.302129281483182, 0.004442613320746 ], [ 36.295903695483155, 0.00224534732075 ], [ 36.292485726483157, 0.010668199320773 ], [ 36.289128793483194, 0.008470933320777 ], [ 36.281499398483156, 0.003038804320736 ], [ 36.276311410483167, 0.00084153832074 ], [ 36.273137582483166, -0.002149183679253 ], [ 36.2678885584832, -0.020459730679252 ], [ 36.262700570483155, -0.020948011679254 ], [ 36.257939828483181, -0.019849379679217 ], [ 36.258489144483171, -0.016248304679268 ], [ 36.260686410483167, -0.00556715267925 ], [ 36.262334359483184, -0.002149183679253 ], [ 36.266118539483152, 0.018846910320744 ], [ 36.269719613483169, 0.019457261320779 ], [ 36.26312781648317, 0.033434312320762 ], [ 36.259099496483195, 0.047045152320775 ], [ 36.257695687483185, 0.052416245320783 ], [ 36.257146371483195, 0.056017320320732 ], [ 36.26172400748316, 0.062242906320759 ], [ 36.268743050483174, 0.080065171320766 ], [ 36.27094031648317, 0.085436265320763 ], [ 36.27234412548318, 0.088426988320746 ], [ 36.285710824483196, 0.106066148320733 ], [ 36.289739144483171, 0.111071031320759 ], [ 36.287724984483184, 0.11943284732075 ], [ 36.286504281483182, 0.125475327320769 ], [ 36.278691781483182, 0.145616929320736 ], [ 36.276921761483202, 0.149218003320752 ], [ 36.265325082483166, 0.167833726320734 ], [ 36.260320199483196, 0.175646226320734 ], [ 36.257695687483185, 0.178453843320765 ], [ 36.256536019483171, 0.181627671320766 ], [ 36.261296761483202, 0.182848374320767 ], [ 36.265141976483157, 0.184618394320748 ], [ 36.267095101483157, 0.18864671432078 ], [ 36.270513070483155, 0.191027085320738 ], [ 36.273137582483166, 0.19365159732075 ], [ 36.276128304483159, 0.195055406320759 ], [ 36.27930213248316, 0.198046128320752 ], [ 36.283330453483181, 0.200243394320748 ], [ 36.286504281483182, 0.202867906320759 ], [ 36.288701546483189, 0.205248277320775 ], [ 36.290898812483185, 0.208422105320776 ], [ 36.292302621483195, 0.212023179320736 ], [ 36.292485726483157, 0.215258042320781 ], [ 36.293706429483159, 0.219469468320765 ], [ 36.295293343483188, 0.223253648320733 ], [ 36.296514046483189, 0.227037827320769 ], [ 36.296697152483198, 0.231066148320733 ], [ 36.297124398483156, 0.234850327320769 ], [ 36.296514046483189, 0.238451402320775 ], [ 36.294499886483202, 0.246630113320746 ], [ 36.292729867483153, 0.251024644320748 ], [ 36.279912484483184, 0.254869859320761 ], [ 36.281499398483156, 0.261644761320779 ], [ 36.282536996483195, 0.26481858932078 ], [ 36.281499398483156, 0.267626206320754 ], [ 36.280339730483199, 0.271654527320775 ], [ 36.275945199483196, 0.273058335320738 ], [ 36.269902718483188, 0.274645249320767 ], [ 36.2659354334832, 0.275865952320769 ], [ 36.264104379483165, 0.279833238320746 ], [ 36.261296761483202, 0.287035386320779 ], [ 36.259709847483172, 0.290026109320761 ], [ 36.256108773483156, 0.292467515320763 ], [ 36.252690804483159, 0.295275132320737 ], [ 36.250493539483152, 0.297472398320733 ], [ 36.240727914483152, 0.313036363320746 ], [ 36.231145394483171, 0.316820542320781 ], [ 36.226689828483181, 0.319872300320751 ], [ 36.227727425483174, 0.324633042320781 ], [ 36.231145394483171, 0.332445542320781 ], [ 36.248296273483156, 0.340624253320752 ], [ 36.246343148483156, 0.327257554320736 ], [ 36.2503104334832, 0.329454820320732 ], [ 36.252690804483159, 0.331652085320738 ], [ 36.255498421483189, 0.33482591332074 ], [ 36.258733285483167, 0.338060777320775 ], [ 36.261540902483198, 0.340258042320781 ], [ 36.261113656483182, 0.34404222232075 ], [ 36.261296761483202, 0.348863999320767 ], [ 36.260930550483174, 0.357469956320754 ], [ 36.260930550483174, 0.36162034732075 ], [ 36.260137093483188, 0.371019761320779 ], [ 36.258916390483186, 0.375048081320754 ], [ 36.255132211483151, 0.379076402320775 ], [ 36.245915902483198, 0.385240952320769 ], [ 36.240117562483185, 0.388658921320766 ], [ 36.234319222483172, 0.392443101320734 ], [ 36.230718148483156, 0.394457261320779 ], [ 36.228093636483202, 0.396227281320759 ], [ 36.22852088248316, 0.40123216332074 ], [ 36.229131234483184, 0.405870835320738 ], [ 36.22992469148317, 0.416429917320781 ], [ 36.230535043483194, 0.42003099232073 ], [ 36.232121957483166, 0.423265855320776 ], [ 36.233342660483167, 0.426439683320777 ], [ 36.240727914483152, 0.442858140320763 ], [ 36.243718636483202, 0.448839585320738 ], [ 36.245732796483189, 0.45341722232075 ], [ 36.247685921483189, 0.458422105320776 ], [ 36.249516976483157, 0.462023179320736 ], [ 36.256291879483165, 0.47685472232075 ], [ 36.257939828483181, 0.479418199320773 ], [ 36.258916390483186, 0.482469956320754 ], [ 36.264714730483199, 0.495043199320773 ], [ 36.266301644483171, 0.497850816320747 ], [ 36.270085824483196, 0.506822984320761 ], [ 36.275334847483172, 0.51787034732075 ], [ 36.276921761483202, 0.521837632320737 ], [ 36.28992225048318, 0.55107347232075 ], [ 36.291509164483152, 0.554857652320775 ], [ 36.294499886483202, 0.563036363320746 ], [ 36.294133675483174, 0.566454331320754 ], [ 36.291509164483152, 0.576036851320734 ], [ 36.289311898483156, 0.58482591332074 ], [ 36.288335336483151, 0.589647691320747 ], [ 36.284490121483195, 0.604845445320732 ], [ 36.280095589483203, 0.624071519320748 ], [ 36.279546273483156, 0.62706224232073 ], [ 36.279546273483156, 0.631822984320761 ], [ 36.282536996483195, 0.635668199320773 ], [ 36.289739144483171, 0.644274156320759 ], [ 36.306340707483166, 0.648851792320781 ], [ 36.344731820483155, 0.658617417320781 ], [ 36.348088754483165, 0.659655015320763 ], [ 36.351323617483153, 0.662462632320737 ], [ 36.356145394483171, 0.667223374320767 ], [ 36.362493050483174, 0.673876206320754 ], [ 36.378118050483174, 0.689440171320766 ], [ 36.388494027483198, 0.70006028832074 ], [ 36.399114144483171, 0.710253160320744 ], [ 36.405522836483151, 0.716661851320734 ], [ 36.410344613483169, 0.723863999320767 ], [ 36.425725472483172, 0.749254624320767 ], [ 36.428105843483188, 0.752672593320765 ], [ 36.439702523483156, 0.771654527320775 ], [ 36.444890511483202, 0.78044358932078 ], [ 36.450688851483157, 0.789415757320737 ], [ 36.457097543483194, 0.800035874320767 ], [ 36.466313851483157, 0.814623277320775 ], [ 36.470891488483169, 0.822618882320737 ], [ 36.473699105483199, 0.830431382320737 ], [ 36.476140511483202, 0.83622972232075 ], [ 36.481938851483157, 0.840441148320733 ], [ 36.486089242483153, 0.843065660320744 ], [ 36.490300668483194, 0.84404222232075 ], [ 36.488713754483165, 0.839220445320732 ], [ 36.487920296483189, 0.83482591332074 ], [ 36.486516488483169, 0.830675523320733 ], [ 36.485906136483202, 0.825426499320767 ], [ 36.484746468483188, 0.822069566320747 ], [ 36.484746468483188, 0.818834702320769 ], [ 36.483708871483195, 0.816027085320738 ], [ 36.484746468483188, 0.813036363320746 ], [ 36.488103402483198, 0.812426011320779 ], [ 36.495122445483155, 0.812853257320737 ], [ 36.511907113483169, 0.812853257320737 ], [ 36.516728890483186, 0.812670152320775 ], [ 36.526738656483182, 0.812853257320737 ], [ 36.531743539483152, 0.812670152320775 ], [ 36.619695199483196, 0.812670152320775 ], [ 36.623540414483152, 0.812426011320779 ], [ 36.653508675483174, 0.812426011320779 ], [ 36.6585135584832, 0.812670152320775 ], [ 36.66351844148317, 0.812426011320779 ], [ 36.668340218483188, 0.812426011320779 ], [ 36.671941293483194, 0.812670152320775 ], [ 36.675542367483153, 0.812670152320775 ], [ 36.676518929483159, 0.816271226320734 ], [ 36.679509652483198, 0.815843980320776 ], [ 36.682317269483171, 0.818224351320734 ], [ 36.686345589483203, 0.819017808320777 ], [ 36.690129769483171, 0.820055406320759 ], [ 36.698491586483151, 0.82042161732073 ], [ 36.70313025748316, 0.820848863320746 ], [ 36.714116586483151, 0.817430894320748 ], [ 36.732305062483185, 0.825426499320767 ], [ 36.735906136483202, 0.826830308320777 ], [ 36.738896859483184, 0.829027574320773 ], [ 36.745122445483155, 0.838426988320746 ], [ 36.751103890483186, 0.848436753320752 ], [ 36.757146371483195, 0.857225816320747 ], [ 36.760320199483196, 0.859056870320783 ], [ 36.763921273483156, 0.86021653832074 ], [ 36.779912484483184, 0.866259019320748 ], [ 36.7835135584832, 0.867418687320762 ], [ 36.793889535483167, 0.869066636320779 ], [ 36.8010916834832, 0.864855210320738 ], [ 36.811101449483196, 0.858629624320767 ], [ 36.817937386483202, 0.85466233932078 ], [ 36.819890511483202, 0.851427476320734 ], [ 36.819890511483202, 0.845873277320775 ], [ 36.820134652483198, 0.840441148320733 ], [ 36.826116097483172, 0.827867906320759 ], [ 36.830510629483165, 0.819872300320751 ] ] ] } } +, +{ "type": "Feature", "id": 30, "properties": { "OBJECTID": 31, "ID_": 2854, "COUNTY_NAM": "NAKURU", "CONST_CODE": 172, "CONSTITUEN": "SUBUKIA", "COUNTY_COD": 32, "Shape_Leng": 6.33797592365, "Shape_Area": 0.60725078911 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.259892953483181, 0.059618394320748 ], [ 36.257146371483195, 0.056017320320732 ], [ 36.257695687483185, 0.052416245320783 ], [ 36.259099496483195, 0.047045152320775 ], [ 36.26312781648317, 0.033434312320762 ], [ 36.269719613483169, 0.019457261320779 ], [ 36.266118539483152, 0.018846910320744 ], [ 36.262334359483184, -0.002149183679253 ], [ 36.260686410483167, -0.00556715267925 ], [ 36.259709847483172, -0.01087721167926 ], [ 36.258489144483171, -0.016248304679268 ], [ 36.257695687483185, -0.020459730679252 ], [ 36.257939828483181, -0.023450453679234 ], [ 36.256902230483199, -0.026441175679227 ], [ 36.253301156483182, -0.033948500679233 ], [ 36.255498421483189, -0.036328871679248 ], [ 36.253545296483189, -0.046155531679235 ], [ 36.249700082483166, -0.051038343679241 ], [ 36.247319711483151, -0.06025465267925 ], [ 36.251286996483195, -0.060132582679219 ], [ 36.252141488483169, -0.084363539679262 ], [ 36.249089730483199, -0.102979261679254 ], [ 36.247319711483151, -0.118177015679239 ], [ 36.228337777483198, -0.114881117679263 ], [ 36.229131234483184, -0.106946547679231 ], [ 36.221318734483184, -0.105664808679253 ], [ 36.220098031483182, -0.113355238679221 ], [ 36.214910043483194, -0.119641859679237 ], [ 36.212712777483198, -0.121656019679224 ], [ 36.201543343483188, -0.136548597679225 ], [ 36.207097543483194, -0.16517408667926 ], [ 36.20789100048318, -0.171277601679267 ], [ 36.209111703483181, -0.174756605679252 ], [ 36.21094275748316, -0.184339125679233 ], [ 36.212102425483174, -0.188550550679227 ], [ 36.212529671483189, -0.192029554679268 ], [ 36.212712777483198, -0.198560316679223 ], [ 36.213506234483184, -0.204053480679252 ], [ 36.219487679483159, -0.211865980679252 ], [ 36.224736703483181, -0.211255629679217 ], [ 36.229131234483184, -0.217053968679241 ], [ 36.234136117483153, -0.224683363679221 ], [ 36.23828650748316, -0.230664808679253 ], [ 36.244695199483196, -0.24793775767927 ], [ 36.245488656483182, -0.25556715267925 ], [ 36.219304574483196, -0.267346937679238 ], [ 36.213689339483203, -0.271253187679238 ], [ 36.21429969148317, -0.290357191679223 ], [ 36.214543832483166, -0.294141371679248 ], [ 36.217290414483152, -0.307630140679239 ], [ 36.218694222483172, -0.313550550679227 ], [ 36.224309457483166, -0.340283949679249 ], [ 36.226140511483202, -0.34736402767925 ], [ 36.230535043483194, -0.350965101679267 ], [ 36.231511605483199, -0.347241957679219 ], [ 36.233098519483171, -0.34455641067922 ], [ 36.235539925483174, -0.344251234679237 ], [ 36.237920296483189, -0.344434339679256 ], [ 36.242742074483196, -0.345655043679246 ], [ 36.24609900748316, -0.347058851679267 ], [ 36.24890662548318, -0.346265394679224 ], [ 36.253118050483174, -0.342664320679264 ], [ 36.263738168483194, -0.343274672679231 ], [ 36.267339242483153, -0.357740004679217 ], [ 36.276494515483186, -0.392835218679241 ], [ 36.293706429483159, -0.373731214679256 ], [ 36.311894906483182, -0.369153578679234 ], [ 36.315495980483199, -0.386243422679231 ], [ 36.323308480483199, -0.387342054679268 ], [ 36.3342948084832, -0.389539320679264 ], [ 36.343328011483202, -0.385633070679264 ], [ 36.361516488483169, -0.381360609679237 ], [ 36.36273719148317, -0.386548597679225 ], [ 36.363896859483184, -0.390271742679263 ], [ 36.365300668483194, -0.393567640679239 ], [ 36.367131722483172, -0.396741468679241 ], [ 36.37109900748316, -0.399854261679254 ], [ 36.378301156483182, -0.404676039679262 ], [ 36.380132211483151, -0.407971937679238 ], [ 36.380925668483194, -0.411450941679223 ], [ 36.38031531648317, -0.416883070679264 ], [ 36.380742562483185, -0.421338636679254 ], [ 36.382329476483157, -0.425427992679263 ], [ 36.386113656483182, -0.427259047679231 ], [ 36.38812781648317, -0.438245375679233 ], [ 36.389287484483184, -0.442884047679231 ], [ 36.389714730483199, -0.446363050679227 ], [ 36.389287484483184, -0.449231703679234 ], [ 36.389104379483165, -0.453565199679249 ], [ 36.387090218483188, -0.45783766067922 ], [ 36.387517464483203, -0.461560804679268 ], [ 36.389104379483165, -0.464673597679225 ], [ 36.391728890483186, -0.466565687679238 ], [ 36.392522347483172, -0.470471937679238 ], [ 36.394109261483202, -0.47346266067922 ], [ 36.394719613483169, -0.476331312679238 ], [ 36.395085824483196, -0.481763441679223 ], [ 36.396733773483156, -0.486463148679266 ], [ 36.398503793483194, -0.490369398679266 ], [ 36.397710336483151, -0.49775465267925 ], [ 36.398137582483166, -0.500867445679264 ], [ 36.401738656483182, -0.504773695679264 ], [ 36.403508675483174, -0.508374769679224 ], [ 36.403935921483189, -0.511365492679263 ], [ 36.402532113483169, -0.514356214679256 ], [ 36.403691781483182, -0.519177992679263 ], [ 36.405889046483189, -0.52314527767925 ], [ 36.40430213248316, -0.526746351679267 ], [ 36.402104867483153, -0.529065687679238 ], [ 36.401494515483186, -0.533765394679224 ], [ 36.402287972483172, -0.537183363679221 ], [ 36.40430213248316, -0.539624769679224 ], [ 36.404729379483165, -0.543164808679253 ], [ 36.403691781483182, -0.547071058679253 ], [ 36.40710975048318, -0.552930433679253 ], [ 36.40570594148317, -0.555554945679264 ], [ 36.40430213248316, -0.560376722679225 ], [ 36.405095589483203, -0.564038832679219 ], [ 36.404729379483165, -0.567639906679235 ], [ 36.403935921483189, -0.57215650767927 ], [ 36.406499398483156, -0.574475843679241 ], [ 36.422307504483165, -0.573560316679223 ], [ 36.435491097483172, -0.571668226679267 ], [ 36.44531775748316, -0.569654066679223 ], [ 36.452092660483167, -0.566052992679263 ], [ 36.453740609483184, -0.581067640679239 ], [ 36.454289925483174, -0.587842543679246 ], [ 36.456120980483199, -0.605847914679262 ], [ 36.45648719148317, -0.610974867679263 ], [ 36.463689339483203, -0.621045668679246 ], [ 36.468694222483172, -0.626966078679234 ], [ 36.490300668483194, -0.624829847679225 ], [ 36.500737679483159, -0.623975355679252 ], [ 36.507329476483157, -0.622266371679248 ], [ 36.511907113483169, -0.615552504679217 ], [ 36.513494027483198, -0.620862562679238 ], [ 36.514714730483199, -0.623975355679252 ], [ 36.517095101483157, -0.625440199679249 ], [ 36.520085824483196, -0.626233656679235 ], [ 36.517705453483181, -0.629529554679268 ], [ 36.5178885584832, -0.633130629679217 ], [ 36.523320687483185, -0.636975843679241 ], [ 36.525334847483172, -0.639173109679237 ], [ 36.525945199483196, -0.642652113679221 ], [ 36.527104867483153, -0.646131117679263 ], [ 36.521916879483165, -0.653333265679239 ], [ 36.531499398483156, -0.671948988679221 ], [ 36.539739144483171, -0.687329847679225 ], [ 36.544744027483198, -0.697034437679238 ], [ 36.529119027483198, -0.706555922679231 ], [ 36.52148963248316, -0.710950453679234 ], [ 36.528142464483203, -0.723035414679262 ], [ 36.529912484483184, -0.726758558679253 ], [ 36.531499398483156, -0.730847914679262 ], [ 36.536687386483202, -0.749951918679246 ], [ 36.537724984483184, -0.75275953567922 ], [ 36.5413260584832, -0.76643141067922 ], [ 36.543523324483196, -0.775830824679249 ], [ 36.546086800483174, -0.784436781679235 ], [ 36.547307504483165, -0.790540297679231 ], [ 36.549932015483186, -0.799756605679252 ], [ 36.550725472483172, -0.803662855679252 ], [ 36.557744515483186, -0.83173902767925 ], [ 36.560124886483202, -0.838941175679227 ], [ 36.561345589483203, -0.843579847679225 ], [ 36.553105843483188, -0.855054457679219 ], [ 36.553716195483155, -0.862683851679267 ], [ 36.554326546483189, -0.867383558679253 ], [ 36.555120004483165, -0.871778089679256 ], [ 36.552495492483153, -0.882337172679231 ], [ 36.54773475048318, -0.899732191679223 ], [ 36.54492713248316, -0.908338148679266 ], [ 36.554936898483156, -0.92103346167926 ], [ 36.554936898483156, -0.926648695679264 ], [ 36.560491097483172, -0.927075941679223 ], [ 36.563725961483151, -0.928174574679249 ], [ 36.567510140483186, -0.928479750679233 ], [ 36.570500863483169, -0.929761488679221 ], [ 36.573308480483199, -0.932141859679237 ], [ 36.570500863483169, -0.933667738679221 ], [ 36.566106332483166, -0.93635328567922 ], [ 36.562322152483198, -0.939038832679219 ], [ 36.565129769483171, -0.942029554679268 ], [ 36.569707406483182, -0.945752699679249 ], [ 36.574346078483181, -0.944531996679248 ], [ 36.579289925483174, -0.94715650767927 ], [ 36.581731332483166, -0.950940687679238 ], [ 36.58594275748316, -0.959363539679262 ], [ 36.587102425483174, -0.962659437679238 ], [ 36.588506234483184, -0.965344984679237 ], [ 36.587529671483189, -0.97645338267927 ], [ 36.590886605483199, -0.983777601679267 ], [ 36.593511117483153, -0.985364515679239 ], [ 36.59711219148317, -0.985669691679223 ], [ 36.598332894483171, -0.993482191679223 ], [ 36.597295296483189, -0.997632582679219 ], [ 36.596929086483151, -1.001966078679234 ], [ 36.59570838248316, -1.007947523679266 ], [ 36.59570838248316, -1.011975843679241 ], [ 36.594304574483196, -1.015332777679251 ], [ 36.589116586483151, -1.038770277679251 ], [ 36.588689339483203, -1.043958265679239 ], [ 36.590520394483171, -1.048535902679251 ], [ 36.591313851483157, -1.052747328679234 ], [ 36.591924203483181, -1.061231214679256 ], [ 36.591924203483181, -1.06434400767927 ], [ 36.587102425483174, -1.072644789679262 ], [ 36.578923714483203, -1.087964613679221 ], [ 36.574101937483185, -1.096265394679224 ], [ 36.572331918483194, -1.099744398679266 ], [ 36.569524300483174, -1.102063734679237 ], [ 36.566899789483152, -1.100659925679227 ], [ 36.558537972483172, -1.111646254679274 ], [ 36.545720589483203, -1.126355726679267 ], [ 36.542302621483195, -1.137281019679224 ], [ 36.538945687483185, -1.150464613679221 ], [ 36.537297738483169, -1.154981214679256 ], [ 36.533330453483181, -1.151563246679248 ], [ 36.523320687483185, -1.143933851679267 ], [ 36.506536019483171, -1.13075025767927 ], [ 36.493901742483153, -1.121533949679249 ], [ 36.467290414483152, -1.108167250679233 ], [ 36.452519906483182, -1.100965101679267 ], [ 36.439336312483185, -1.095349867679263 ], [ 36.425115121483195, -1.088941175679227 ], [ 36.355290902483198, -1.056165297679231 ], [ 36.336492074483196, -1.046277601679267 ], [ 36.333745492483153, -1.042249281679235 ], [ 36.326299203483181, -1.028272230679252 ], [ 36.313115609483184, -1.004651625679233 ], [ 36.308110726483157, -0.994763929679268 ], [ 36.305730355483199, -0.990430433679253 ], [ 36.303288949483196, -0.985242445679264 ], [ 36.298100961483151, -0.97627027767925 ], [ 36.294744027483198, -0.969678480679252 ], [ 36.292302621483195, -0.965467054679268 ], [ 36.289311898483156, -0.959668714679256 ], [ 36.286321175483174, -0.955030043679246 ], [ 36.278508675483174, -0.941052992679263 ], [ 36.274907601483157, -0.934033949679249 ], [ 36.270696175483174, -0.926465589679256 ], [ 36.266545785483167, -0.91785963267927 ], [ 36.264897836483151, -0.915235121679248 ], [ 36.259343636483202, -0.916333754679274 ], [ 36.254888070483155, -0.917432386679254 ], [ 36.250493539483152, -0.91908033667926 ], [ 36.235906136483202, -0.923963148679266 ], [ 36.218938363483169, -0.929944593679241 ], [ 36.206914437483185, -0.933850843679241 ], [ 36.20453406648317, -0.930738050679227 ], [ 36.202336800483174, -0.927381117679263 ], [ 36.197331918483194, -0.91877516067922 ], [ 36.194097054483159, -0.915357191679223 ], [ 36.187688363483169, -0.914563734679237 ], [ 36.188298714483203, -0.911756117679263 ], [ 36.189885629483165, -0.909375746679248 ], [ 36.189336312483185, -0.906446058679253 ], [ 36.185735238483169, -0.900159437679238 ], [ 36.184087289483152, -0.896741468679241 ], [ 36.181890023483156, -0.892957289679262 ], [ 36.17773963248316, -0.884961683679253 ], [ 36.171514046483189, -0.87415846167926 ], [ 36.16992713248316, -0.870557386679254 ], [ 36.168096078483181, -0.865369398679266 ], [ 36.165532601483157, -0.856336195679264 ], [ 36.163335336483151, -0.850232679679268 ], [ 36.160710824483196, -0.842237074679249 ], [ 36.159490121483195, -0.837659437679238 ], [ 36.161504281483182, -0.834058363679221 ], [ 36.186345589483203, -0.80744703567922 ], [ 36.189092171483189, -0.804029066679223 ], [ 36.191533578483181, -0.78596266067922 ], [ 36.187688363483169, -0.781629164679262 ], [ 36.185124886483202, -0.777967054679268 ], [ 36.18750525748316, -0.774976332679219 ], [ 36.189885629483165, -0.771558363679221 ], [ 36.192143929483159, -0.765637953679234 ], [ 36.186101449483196, -0.761853773679266 ], [ 36.183293832483166, -0.759046156679235 ], [ 36.17969275748316, -0.757154066679223 ], [ 36.176518929483159, -0.755261976679267 ], [ 36.17273475048318, -0.753858168679246 ], [ 36.170293343483188, -0.750073988679221 ], [ 36.168096078483181, -0.74775465267925 ], [ 36.163945687483185, -0.746167738679221 ], [ 36.161687386483202, -0.744153578679234 ], [ 36.160344613483169, -0.740735609679237 ], [ 36.160710824483196, -0.737744886679254 ], [ 36.159917367483153, -0.73426588267927 ], [ 36.1585135584832, -0.73127516067922 ], [ 36.156316293483194, -0.728650648679266 ], [ 36.154912484483184, -0.725354750679233 ], [ 36.154119027483198, -0.720044691679223 ], [ 36.154119027483198, -0.716138441679223 ], [ 36.150517953483181, -0.713269789679262 ], [ 36.14734412548318, -0.711560804679268 ], [ 36.143926156483182, -0.713147718679241 ], [ 36.139714730483199, -0.712232191679223 ], [ 36.10492469148317, -0.680860121679248 ], [ 36.101140511483202, -0.675977308679253 ], [ 36.0999198084832, -0.670240004679217 ], [ 36.099492562483185, -0.666638929679268 ], [ 36.09851600048318, -0.645459730679252 ], [ 36.098088754483165, -0.643079359679237 ], [ 36.097722543483194, -0.639661390679239 ], [ 36.094304574483196, -0.641675550679227 ], [ 36.089543832483166, -0.644177992679263 ], [ 36.085088265483186, -0.646070082679219 ], [ 36.077336800483174, -0.65028150767927 ], [ 36.071111214483203, -0.653272230679252 ], [ 36.059331429483159, -0.659436781679235 ], [ 36.05469275748316, -0.662244398679266 ], [ 36.045110238483169, -0.66877516067922 ], [ 36.035710824483196, -0.67493971167926 ], [ 36.029912484483184, -0.678479750679233 ], [ 36.0257010584832, -0.675244886679254 ], [ 36.02289344148317, -0.672559339679256 ], [ 36.016728890483186, -0.668164808679253 ], [ 36.013738168483194, -0.664929945679264 ], [ 35.997319711483151, -0.674573500679233 ], [ 35.971318734483184, -0.694654066679223 ], [ 35.965520394483171, -0.699781019679224 ], [ 35.962712777483198, -0.701673109679237 ], [ 35.950688851483157, -0.71064527767925 ], [ 35.94531775748316, -0.712964613679221 ], [ 35.934331429483159, -0.707349379679217 ], [ 35.931706918483194, -0.704175550679227 ], [ 35.931890023483156, -0.700147230679252 ], [ 35.93109656648317, -0.696851332679219 ], [ 35.928716195483155, -0.693372328679234 ], [ 35.9241385584832, -0.688062269679224 ], [ 35.921941293483194, -0.684766371679248 ], [ 35.912297738483169, -0.673169691679223 ], [ 35.893743050483174, -0.64954908667926 ], [ 35.87891150748316, -0.650830824679249 ], [ 35.877141488483169, -0.639051039679262 ], [ 35.88812781648317, -0.637647230679252 ], [ 35.916692269483171, -0.635938246679248 ], [ 35.928899300483174, -0.646436293679246 ], [ 35.935124886483202, -0.65205152767925 ], [ 35.945134652483198, -0.660535414679262 ], [ 35.951543343483188, -0.666272718679241 ], [ 35.9573416834832, -0.659680922679231 ], [ 35.966130746483195, -0.650342543679246 ], [ 35.981511605483199, -0.633252699679249 ], [ 35.982488168483194, -0.629224379679217 ], [ 35.97992469148317, -0.624646742679263 ], [ 35.969121468483188, -0.60236891067922 ], [ 35.962712777483198, -0.589673597679225 ], [ 35.961492074483196, -0.586865980679252 ], [ 35.957097543483194, -0.578443129679217 ], [ 35.955693734483184, -0.575452406679235 ], [ 35.952336800483174, -0.569043714679256 ], [ 35.948918832483166, -0.564527113679221 ], [ 35.947515023483156, -0.558362562679238 ], [ 35.943913949483196, -0.555432875679233 ], [ 35.940923226483157, -0.556165297679231 ], [ 35.938115609483184, -0.556653578679234 ], [ 35.934697640483186, -0.554944593679241 ], [ 35.93250037548318, -0.551282484679237 ], [ 35.925115121483195, -0.550244886679254 ], [ 35.916692269483171, -0.549451429679268 ], [ 35.912908089483203, -0.549451429679268 ], [ 35.905889046483189, -0.546643812679238 ], [ 35.903508675483174, -0.543958265679239 ], [ 35.896123421483189, -0.531873304679268 ], [ 35.891545785483167, -0.527173597679225 ], [ 35.88672400748316, -0.523755629679217 ], [ 35.881902230483199, -0.52137525767927 ], [ 35.864934457483166, -0.512464125679233 ], [ 35.854314339483203, -0.50556715267925 ], [ 35.851689828483181, -0.50306471167926 ], [ 35.848699105483199, -0.501538832679219 ], [ 35.83929969148317, -0.49775465267925 ], [ 35.836308968483188, -0.496778089679256 ], [ 35.83289100048318, -0.494763929679268 ], [ 35.833745492483153, -0.491651136679254 ], [ 35.839543832483166, -0.473828871679248 ], [ 35.837712777483198, -0.466138441679223 ], [ 35.8323416834832, -0.467969496679248 ], [ 35.827703011483202, -0.473340589679256 ], [ 35.823491586483151, -0.474683363679221 ], [ 35.819890511483202, -0.475354750679233 ], [ 35.815923226483157, -0.475171644679224 ], [ 35.8167166834832, -0.466138441679223 ], [ 35.81531287548318, -0.462232191679223 ], [ 35.813542855483199, -0.45887525767927 ], [ 35.80609656648317, -0.457044203679234 ], [ 35.803105843483188, -0.45673902767925 ], [ 35.798894418483194, -0.457532484679237 ], [ 35.797124398483156, -0.460767347679225 ], [ 35.795537484483184, -0.46845777767925 ], [ 35.795903695483155, -0.473279554679268 ], [ 35.789128793483194, -0.490979750679233 ], [ 35.786504281483182, -0.497144300679227 ], [ 35.784307015483186, -0.501782972679225 ], [ 35.778691781483182, -0.514966566679223 ], [ 35.77429725048318, -0.537732679679268 ], [ 35.766911996483195, -0.536328871679248 ], [ 35.750737679483159, -0.532849867679263 ], [ 35.747319711483151, -0.531873304679268 ], [ 35.742131722483172, -0.529859144679224 ], [ 35.737309945483155, -0.532971937679238 ], [ 35.732121957483166, -0.537732679679268 ], [ 35.729314339483203, -0.541333754679217 ], [ 35.727910531483182, -0.543836195679264 ], [ 35.726140511483202, -0.546338636679254 ], [ 35.723332894483171, -0.549146254679217 ], [ 35.719914925483174, -0.551160414679262 ], [ 35.715093148483156, -0.553174574679249 ], [ 35.711736214483203, -0.554334242679263 ], [ 35.710515511483202, -0.557569105679252 ], [ 35.711919320483155, -0.56043775767927 ], [ 35.712712777483198, -0.563428480679252 ], [ 35.713323129483165, -0.570752699679249 ], [ 35.71234656648317, -0.57606275767927 ], [ 35.710332406483182, -0.581861097679225 ], [ 35.707707894483171, -0.585950453679234 ], [ 35.705510629483165, -0.588452894679224 ], [ 35.703740609483184, -0.591748793679246 ], [ 35.699895394483171, -0.595349867679263 ], [ 35.69672156648317, -0.597669203679234 ], [ 35.693303597483172, -0.602979261679254 ], [ 35.692327035483167, -0.607251722679225 ], [ 35.690923226483157, -0.609754164679262 ], [ 35.689092171483189, -0.61634596167926 ], [ 35.686528695483155, -0.623059828679234 ], [ 35.686711800483174, -0.625440199679249 ], [ 35.685918343483188, -0.639661390679239 ], [ 35.6839041834832, -0.642041761679254 ], [ 35.68250037548318, -0.645581800679227 ], [ 35.681890023483156, -0.649976332679219 ], [ 35.67969275748316, -0.653577406679235 ], [ 35.677495492483153, -0.658765394679224 ], [ 35.67468787548318, -0.658460218679241 ], [ 35.670903695483155, -0.661328871679248 ], [ 35.669499886483202, -0.663343031679235 ], [ 35.667485726483157, -0.66712721167926 ], [ 35.664739144483171, -0.678052504679217 ], [ 35.66211463248316, -0.680982191679223 ], [ 35.658940804483159, -0.682141859679237 ], [ 35.655339730483199, -0.684461195679264 ], [ 35.653142464483203, -0.686475355679252 ], [ 35.651921761483202, -0.689466078679234 ], [ 35.650517953483181, -0.695569593679241 ], [ 35.64789344148317, -0.697583754679217 ], [ 35.646306527483198, -0.701367933679253 ], [ 35.642705453483181, -0.700757582679219 ], [ 35.636296761483202, -0.691663343679241 ], [ 35.633916390483186, -0.687146742679263 ], [ 35.626286996483195, -0.681958754679217 ], [ 35.618535531483182, -0.67744215267925 ], [ 35.611089242483153, -0.672864515679239 ], [ 35.609319222483172, -0.668164808679253 ], [ 35.602544320483155, -0.660657484679237 ], [ 35.600530160483167, -0.658155043679246 ], [ 35.598943246483195, -0.654065687679238 ], [ 35.5999198084832, -0.650342543679246 ], [ 35.59711219148317, -0.644055922679231 ], [ 35.59570838248316, -0.63557203567922 ], [ 35.594731820483155, -0.629041273679266 ], [ 35.594304574483196, -0.619275648679266 ], [ 35.590520394483171, -0.603833754679217 ], [ 35.58789588248316, -0.589673597679225 ], [ 35.586308968483188, -0.58674391067922 ], [ 35.576299203483181, -0.569837172679231 ], [ 35.575139535483167, -0.565442640679239 ], [ 35.570928109483184, -0.560865004679217 ], [ 35.569097054483159, -0.557569105679252 ], [ 35.561101449483196, -0.544446547679231 ], [ 35.554936898483156, -0.533948500679233 ], [ 35.549321664483152, -0.524182875679233 ], [ 35.54773475048318, -0.520581800679227 ], [ 35.543706429483159, -0.514661390679239 ], [ 35.537908089483203, -0.504956800679227 ], [ 35.52930213248316, -0.491468031679235 ], [ 35.512700570483155, -0.464368422679231 ], [ 35.510503304483159, -0.456372816679223 ], [ 35.507146371483195, -0.455335218679241 ], [ 35.49890662548318, -0.441846449679249 ], [ 35.4905448084832, -0.425366957679219 ], [ 35.484502328483181, -0.418164808679253 ], [ 35.479131234483184, -0.409070570679264 ], [ 35.475286019483171, -0.401380140679239 ], [ 35.472295296483189, -0.39814527767925 ], [ 35.463506234483184, -0.383863050679227 ], [ 35.460332406483182, -0.37684400767927 ], [ 35.456914437483185, -0.37293775767927 ], [ 35.45313025748316, -0.366529066679223 ], [ 35.447698129483165, -0.357984144679224 ], [ 35.444524300483174, -0.351636488679221 ], [ 35.440129769483171, -0.345349867679263 ], [ 35.43250037548318, -0.33283766067922 ], [ 35.430486214483203, -0.329846937679238 ], [ 35.416692269483171, -0.306775648679266 ], [ 35.414495004483165, -0.303357679679268 ], [ 35.422490609483184, -0.300550062679238 ], [ 35.428533089483203, -0.298230726679267 ], [ 35.433293832483166, -0.29676588267927 ], [ 35.44031287548318, -0.293958265679239 ], [ 35.450322640483186, -0.290357191679223 ], [ 35.453496468483188, -0.28895338267927 ], [ 35.458745492483153, -0.286328871679248 ], [ 35.471318734483184, -0.278638441679223 ], [ 35.477544320483155, -0.277967054679268 ], [ 35.483891976483157, -0.276441175679227 ], [ 35.48828650748316, -0.275769789679262 ], [ 35.494939339483203, -0.273450453679234 ], [ 35.498296273483156, -0.272656996679248 ], [ 35.502141488483169, -0.271131117679263 ], [ 35.506291879483165, -0.269971449679249 ], [ 35.510320199483196, -0.27137525767927 ], [ 35.525090707483166, -0.271131117679263 ], [ 35.527104867483153, -0.268262464679256 ], [ 35.529729379483165, -0.260938246679248 ], [ 35.559514535483167, -0.27424391067922 ], [ 35.572942269483171, -0.283643324679249 ], [ 35.572515023483156, -0.287854750679233 ], [ 35.569890511483202, -0.304761488679221 ], [ 35.581914437483185, -0.309766371679248 ], [ 35.582707894483171, -0.305066664679262 ], [ 35.585698617483153, -0.293164808679253 ], [ 35.587712777483198, -0.290967543679246 ], [ 35.592290414483152, -0.286573011679254 ], [ 35.593144906483182, -0.282178480679252 ], [ 35.594121468483188, -0.278272230679252 ], [ 35.596929086483151, -0.279431898679266 ], [ 35.599736703483181, -0.281873304679268 ], [ 35.602544320483155, -0.285230238679221 ], [ 35.603703988483169, -0.290052015679239 ], [ 35.605901254483165, -0.294446547679231 ], [ 35.611943734483184, -0.29017408667926 ], [ 35.618718636483202, -0.291333754679217 ], [ 35.620488656483182, -0.295240004679217 ], [ 35.631902230483199, -0.28895338267927 ], [ 35.631902230483199, -0.282971937679238 ], [ 35.632146371483195, -0.277356703679234 ], [ 35.635320199483196, -0.275159437679238 ], [ 35.63812781648317, -0.273755629679217 ], [ 35.641545785483167, -0.272534925679227 ], [ 35.646123421483189, -0.272351820679264 ], [ 35.6507010584832, -0.266980726679267 ], [ 35.652532113483169, -0.261365492679263 ], [ 35.654119027483198, -0.25556715267925 ], [ 35.654546273483156, -0.251966078679234 ], [ 35.656926644483171, -0.242566664679262 ], [ 35.658330453483181, -0.235364515679239 ], [ 35.657292855483199, -0.23035963267927 ], [ 35.656133187483185, -0.22236402767925 ], [ 35.658330453483181, -0.21864088267927 ], [ 35.656133187483185, -0.213574964679256 ], [ 35.657536996483195, -0.206677992679263 ], [ 35.662541879483165, -0.206067640679239 ], [ 35.66492225048318, -0.195264418679246 ], [ 35.675725472483172, -0.189466078679234 ], [ 35.666692269483171, -0.185681898679266 ], [ 35.670903695483155, -0.165479261679254 ], [ 35.667485726483157, -0.163465101679267 ], [ 35.664128793483194, -0.164380629679217 ], [ 35.660710824483196, -0.16395338267927 ], [ 35.657903207483166, -0.165235121679248 ], [ 35.654119027483198, -0.164563734679237 ], [ 35.652532113483169, -0.160535414679262 ], [ 35.651738656483182, -0.15595777767925 ], [ 35.648503793483194, -0.152967054679268 ], [ 35.643743050483174, -0.151258070679264 ], [ 35.638310921483189, -0.151563246679248 ], [ 35.634892953483181, -0.152783949679249 ], [ 35.632146371483195, -0.153272230679252 ], [ 35.628118050483174, -0.15205152767925 ], [ 35.624089730483199, -0.152173597679225 ], [ 35.62109900748316, -0.15315016067922 ], [ 35.617925179483159, -0.154676039679262 ], [ 35.615117562483185, -0.157544691679223 ], [ 35.611699593483188, -0.159070570679264 ], [ 35.604741586483151, -0.15205152767925 ], [ 35.603887093483188, -0.148450453679234 ], [ 35.601689828483181, -0.14533766067922 ], [ 35.602300179483159, -0.141858656679235 ], [ 35.601933968483188, -0.13783033667926 ], [ 35.600896371483195, -0.134168226679267 ], [ 35.598332894483171, -0.131177504679217 ], [ 35.59851600048318, -0.127271254679217 ], [ 35.599492562483185, -0.12293775767927 ], [ 35.604314339483203, -0.123548109679237 ], [ 35.611943734483184, -0.119641859679237 ], [ 35.612920296483189, -0.115979750679233 ], [ 35.613103402483198, -0.111463148679266 ], [ 35.616521371483195, -0.109143812679238 ], [ 35.62390662548318, -0.103650648679266 ], [ 35.622136605483199, -0.097730238679221 ], [ 35.61469031648317, -0.092053968679241 ], [ 35.6174979334832, -0.088880140679239 ], [ 35.616887582483166, -0.084058363679221 ], [ 35.620915902483198, -0.082044203679234 ], [ 35.624516976483157, -0.080762464679256 ], [ 35.626714242483153, -0.078748304679268 ], [ 35.628301156483182, -0.075452406679235 ], [ 35.630742562483185, -0.071729261679254 ], [ 35.636113656483182, -0.066480238679221 ], [ 35.63812781648317, -0.063367445679264 ], [ 35.640691293483194, -0.061536390679239 ], [ 35.648686898483156, -0.058972914679262 ], [ 35.652104867483153, -0.056165297679231 ], [ 35.656133187483185, -0.05384596167926 ], [ 35.6585135584832, -0.051953871679248 ], [ 35.660344613483169, -0.054761488679221 ], [ 35.667729867483153, -0.050183851679267 ], [ 35.66211463248316, -0.061231214679256 ], [ 35.65570594148317, -0.072949964679256 ], [ 35.654119027483198, -0.078443129679217 ], [ 35.661687386483202, -0.076551039679262 ], [ 35.666692269483171, -0.074964125679233 ], [ 35.689702523483156, -0.074842054679268 ], [ 35.691106332483166, -0.085156996679248 ], [ 35.689336312483185, -0.093335707679219 ], [ 35.694097054483159, -0.109448988679221 ], [ 35.698918832483166, -0.112866957679219 ], [ 35.704717171483189, -0.119336683679253 ], [ 35.706914437483185, -0.123670179679268 ], [ 35.71429969148317, -0.132642347679225 ], [ 35.730535043483194, -0.157666761679254 ], [ 35.72351600048318, -0.173780043679246 ], [ 35.723943246483195, -0.196729261679254 ], [ 35.723088754483165, -0.20106275767927 ], [ 35.724736703483181, -0.205274183679253 ], [ 35.749944222483172, -0.199475843679241 ], [ 35.772710336483151, -0.194654066679223 ], [ 35.779546273483156, -0.183179457679219 ], [ 35.785893929483159, -0.172132093679241 ], [ 35.791142953483181, -0.163465101679267 ], [ 35.791142953483181, -0.112561781679235 ], [ 35.796514046483189, -0.111463148679266 ], [ 35.799504769483171, -0.104383070679264 ], [ 35.804509652483198, -0.099866468679241 ], [ 35.807744515483186, -0.099744398679266 ], [ 35.810491097483172, -0.102735121679248 ], [ 35.815740121483195, -0.109876234679237 ], [ 35.817937386483202, -0.113233168679246 ], [ 35.820928109483184, -0.117383558679253 ], [ 35.830144418483194, -0.108350355679252 ], [ 35.837529671483189, -0.097974379679217 ], [ 35.847722543483194, -0.083448011679254 ], [ 35.858525765483186, -0.066480238679221 ], [ 35.86609412548318, -0.055066664679262 ], [ 35.877934945483155, -0.036145765679239 ], [ 35.879704964483203, -0.038343031679235 ], [ 35.881902230483199, -0.040662367679263 ], [ 35.884709847483172, -0.042737562679238 ], [ 35.886907113483169, -0.045178968679241 ], [ 35.895085824483196, -0.052259047679231 ], [ 35.9007010584832, -0.049268324679249 ], [ 35.903691781483182, -0.054273207679219 ], [ 35.905522836483151, -0.058240492679263 ], [ 35.911504281483182, -0.069959242679263 ], [ 35.915288461483151, -0.07783277767925 ], [ 35.919133675483174, -0.082044203679234 ], [ 35.922490609483184, -0.07996900767927 ], [ 35.926335824483196, -0.078382093679241 ], [ 35.92914344148317, -0.074536879679217 ], [ 35.92914344148317, -0.071240980679252 ], [ 35.931523812483185, -0.06916578567922 ], [ 35.934941781483182, -0.067884047679231 ], [ 35.937322152483198, -0.065137464679256 ], [ 35.939092171483189, -0.059583265679239 ], [ 35.943303597483172, -0.056958754679217 ], [ 35.947087777483198, -0.054944593679241 ], [ 35.9495291834832, -0.052869398679266 ], [ 35.954106820483155, -0.041761000679233 ], [ 35.95648719148317, -0.037549574679249 ], [ 35.960515511483202, -0.033032972679225 ], [ 35.961736214483203, -0.030164320679264 ], [ 35.961308968483188, -0.026868422679231 ], [ 35.963506234483184, -0.024732191679223 ], [ 35.966130746483195, -0.021070082679219 ], [ 35.97070838248316, -0.015576918679246 ], [ 35.971929086483151, -0.012769300679227 ], [ 35.973332894483171, -0.008435804679268 ], [ 35.974492562483185, -0.003247816679223 ], [ 35.9749198084832, 0.001024644320748 ], [ 35.976933968483188, 0.004625718320765 ], [ 35.978093636483202, 0.008043687320762 ], [ 35.978887093483188, 0.012072007320737 ], [ 35.97852088248316, 0.016039292320781 ], [ 35.977117074483196, 0.018846910320744 ], [ 35.9749198084832, 0.021837632320737 ], [ 35.972295296483189, 0.023241441320747 ], [ 35.96570350048318, 0.029650132320737 ], [ 35.960088265483186, 0.035631577320769 ], [ 35.94812537548318, 0.049425523320733 ], [ 35.939092171483189, 0.059252183320777 ], [ 35.93109656648317, 0.06865159732075 ], [ 35.936101449483196, 0.081835191320747 ], [ 35.941289437483185, 0.094652574320773 ], [ 35.950505746483195, 0.091234605320776 ], [ 35.958745492483153, 0.087816636320779 ], [ 35.961492074483196, 0.08622972232075 ], [ 35.96234656648317, 0.082445542320781 ], [ 35.965093148483156, 0.076219956320754 ], [ 35.964910043483194, 0.072435777320775 ], [ 35.965337289483152, 0.066454331320754 ], [ 35.964543832483166, 0.062242906320759 ], [ 35.965520394483171, 0.058641831320754 ], [ 35.974736703483181, 0.056627671320766 ], [ 35.9905448084832, 0.058031480320776 ], [ 35.999516976483157, 0.059069077320769 ], [ 36.001714242483153, 0.055468003320752 ], [ 36.004338754483165, 0.044847886320779 ], [ 36.005498421483189, 0.03825608932078 ], [ 36.006536019483171, 0.034471910320744 ], [ 36.0081229334832, 0.03044358932078 ], [ 36.013310921483189, 0.02763597232075 ], [ 36.023686898483156, 0.024218003320752 ], [ 36.030889046483189, 0.021654527320775 ], [ 36.037297738483169, 0.01982347232075 ], [ 36.043523324483196, 0.01841966332074 ], [ 36.045720589483203, 0.01481858932078 ], [ 36.04773475048318, 0.012255113320746 ], [ 36.050542367483153, 0.008043687320762 ], [ 36.053533089483203, 0.004625718320765 ], [ 36.056523812483185, 0.00206224232073 ], [ 36.063115609483184, -0.000135023679266 ], [ 36.072331918483194, -0.004529554679268 ], [ 36.081731332483166, -0.007642347679225 ], [ 36.088689339483203, -0.010266859679237 ], [ 36.094304574483196, -0.013074476679267 ], [ 36.099126351483157, -0.008679945679264 ], [ 36.104497445483155, -0.004529554679268 ], [ 36.109502328483181, 0.001024644320748 ], [ 36.114324105483199, 0.004442613320746 ], [ 36.11133338248316, 0.027819077320769 ], [ 36.109746468483188, 0.038439195320732 ], [ 36.106938851483157, 0.060045640320763 ], [ 36.12109900748316, 0.058641831320754 ], [ 36.12891150748316, 0.058031480320776 ], [ 36.129704964483203, 0.068224351320734 ], [ 36.13031531648317, 0.073473374320767 ], [ 36.133489144483171, 0.096422593320765 ], [ 36.13672400748316, 0.113451402320775 ], [ 36.137944711483151, 0.117845933320777 ], [ 36.140691293483194, 0.125475327320769 ], [ 36.141545785483167, 0.129869859320761 ], [ 36.143926156483182, 0.148058335320738 ], [ 36.144719613483169, 0.153063218320765 ], [ 36.146733773483156, 0.169054429320736 ], [ 36.147710336483151, 0.174425523320733 ], [ 36.148931039483152, 0.184252183320777 ], [ 36.165532601483157, 0.189073960320738 ], [ 36.195500863483169, 0.197435777320775 ], [ 36.199895394483171, 0.20146409732075 ], [ 36.1995291834832, 0.204637925320751 ], [ 36.1995291834832, 0.208422105320776 ], [ 36.198491586483151, 0.211840074320773 ], [ 36.198735726483157, 0.215258042320781 ], [ 36.19672156648317, 0.21763841332074 ], [ 36.192937386483202, 0.219469468320765 ], [ 36.188725961483151, 0.220262925320751 ], [ 36.182317269483171, 0.224230210320738 ], [ 36.180913461483151, 0.227220933320777 ], [ 36.184941781483182, 0.229235093320765 ], [ 36.202703011483202, 0.233629624320767 ], [ 36.20593787548318, 0.231432359320761 ], [ 36.211492074483196, 0.227220933320777 ], [ 36.216313851483157, 0.223863999320767 ], [ 36.23633338248316, 0.209032456320754 ], [ 36.239507211483151, 0.204637925320751 ], [ 36.243901742483153, 0.198046128320752 ], [ 36.252141488483169, 0.185228745320783 ], [ 36.256536019483171, 0.181627671320766 ], [ 36.257695687483185, 0.178636949320773 ], [ 36.260503304483159, 0.175646226320734 ], [ 36.276311410483167, 0.150438706320754 ], [ 36.278142464483203, 0.146837632320737 ], [ 36.28210975048318, 0.137072007320737 ], [ 36.286504281483182, 0.125475327320769 ], [ 36.287724984483184, 0.11943284732075 ], [ 36.289739144483171, 0.111071031320759 ], [ 36.285710824483196, 0.106066148320733 ], [ 36.27234412548318, 0.088426988320746 ], [ 36.27094031648317, 0.085436265320763 ], [ 36.268743050483174, 0.080065171320766 ], [ 36.26172400748316, 0.062059800320751 ], [ 36.259892953483181, 0.059618394320748 ] ] ] } } +, +{ "type": "Feature", "id": 31, "properties": { "OBJECTID": 32, "ID_": 5181, "COUNTY_NAM": "NAROK", "CONST_CODE": 181, "CONSTITUEN": "NAROK SOUTH", "COUNTY_COD": 33, "Shape_Leng": 6.68597072631, "Shape_Area": 1.45350676401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.350530160483167, -0.974439222679225 ], [ 35.352117074483196, -0.971753675679227 ], [ 35.355718148483156, -0.969129164679262 ], [ 35.360112679483159, -0.97236402767925 ], [ 35.36328650748316, -0.971265394679224 ], [ 35.366338265483186, -0.974561293679246 ], [ 35.369328988483169, -0.974073011679254 ], [ 35.372136605483199, -0.970838148679266 ], [ 35.375127328483181, -0.969373304679268 ], [ 35.376897347483172, -0.965772230679252 ], [ 35.37891150748316, -0.962537367679263 ], [ 35.382512582483166, -0.961072523679266 ], [ 35.386907113483169, -0.961682875679233 ], [ 35.388738168483194, -0.959363539679262 ], [ 35.394109261483202, -0.958081800679227 ], [ 35.399724496483195, -0.957471449679249 ], [ 35.402898324483196, -0.95393141067922 ], [ 35.404546273483156, -0.950940687679238 ], [ 35.408330453483181, -0.949475843679241 ], [ 35.421514046483189, -0.945264418679246 ], [ 35.423528207483166, -0.940442640679239 ], [ 35.424321664483152, -0.936841566679223 ], [ 35.4260916834832, -0.934461195679264 ], [ 35.425725472483172, -0.928968031679235 ], [ 35.424932015483186, -0.923963148679266 ], [ 35.424932015483186, -0.920667250679233 ], [ 35.427495492483153, -0.91908033667926 ], [ 35.427495492483153, -0.914929945679264 ], [ 35.4260916834832, -0.911756117679263 ], [ 35.425542367483153, -0.907483656679235 ], [ 35.428288949483196, -0.905774672679231 ], [ 35.430486214483203, -0.901441175679227 ], [ 35.431706918483194, -0.897168714679256 ], [ 35.435735238483169, -0.898267347679225 ], [ 35.439519418483194, -0.896070082679219 ], [ 35.441289437483185, -0.893262464679256 ], [ 35.44031287548318, -0.889661390679239 ], [ 35.443303597483172, -0.889356214679256 ], [ 35.44672156648317, -0.884351332679219 ], [ 35.450688851483157, -0.884351332679219 ], [ 35.453923714483203, -0.883863050679227 ], [ 35.45648719148317, -0.879773695679264 ], [ 35.458501351483157, -0.876172621679248 ], [ 35.461736214483203, -0.87385328567922 ], [ 35.46234656648317, -0.868726332679219 ], [ 35.46289588248316, -0.865552504679274 ], [ 35.467717660483167, -0.864270765679239 ], [ 35.469914925483174, -0.862073500679233 ], [ 35.472722543483194, -0.861157972679225 ], [ 35.472295296483189, -0.858045179679268 ], [ 35.476323617483153, -0.855847914679262 ], [ 35.478703988483169, -0.85267408667926 ], [ 35.479741586483151, -0.849744398679266 ], [ 35.47852088248316, -0.846082289679262 ], [ 35.480290902483198, -0.841931898679266 ], [ 35.482915414483152, -0.838452894679224 ], [ 35.491887582483166, -0.830640394679224 ], [ 35.495732796483189, -0.828137953679234 ], [ 35.498113168483194, -0.82533033667926 ], [ 35.502141488483169, -0.825635511679254 ], [ 35.509099496483195, -0.824353773679266 ], [ 35.512334359483184, -0.821546156679235 ], [ 35.515141976483157, -0.818555433679253 ], [ 35.518132699483196, -0.818433363679221 ], [ 35.52094031648317, -0.815869886679254 ], [ 35.521733773483156, -0.811536390679239 ], [ 35.528325570483155, -0.808545668679246 ], [ 35.531743539483152, -0.805738050679227 ], [ 35.534490121483195, -0.803235609679237 ], [ 35.536321175483174, -0.80067213267927 ], [ 35.538701546483189, -0.799146254679274 ], [ 35.542119515483186, -0.796155531679235 ], [ 35.545903695483155, -0.791944105679252 ], [ 35.548711312483185, -0.787549574679249 ], [ 35.545537484483184, -0.785474379679217 ], [ 35.542485726483157, -0.783155043679246 ], [ 35.538091195483155, -0.780164320679264 ], [ 35.534917367483153, -0.778333265679239 ], [ 35.53070594148317, -0.777661879679217 ], [ 35.526921761483202, -0.777539808679253 ], [ 35.52289344148317, -0.776746351679267 ], [ 35.51953650748316, -0.775464613679221 ], [ 35.512517464483203, -0.774854261679254 ], [ 35.509099496483195, -0.774365980679252 ], [ 35.503301156483182, -0.772351820679264 ], [ 35.499944222483172, -0.770032484679237 ], [ 35.492131722483172, -0.768079359679237 ], [ 35.488530648483156, -0.76673658667926 ], [ 35.479741586483151, -0.763074476679267 ], [ 35.47351600048318, -0.758252699679249 ], [ 35.469914925483174, -0.755139906679235 ], [ 35.466496957483166, -0.752637464679256 ], [ 35.444097054483159, -0.734937269679224 ], [ 35.44031287548318, -0.731763441679223 ], [ 35.436345589483203, -0.728772718679241 ], [ 35.430303109483184, -0.723828871679248 ], [ 35.426702035483167, -0.721143324679249 ], [ 35.424504769483171, -0.715772230679252 ], [ 35.423100961483151, -0.711438734679237 ], [ 35.412724984483184, -0.684339125679233 ], [ 35.409917367483153, -0.676648695679264 ], [ 35.408940804483159, -0.67353590267925 ], [ 35.40430213248316, -0.662549574679249 ], [ 35.401738656483182, -0.655042250679233 ], [ 35.398931039483152, -0.648877699679249 ], [ 35.398503793483194, -0.64564283667926 ], [ 35.404912484483184, -0.643262464679256 ], [ 35.424504769483171, -0.637647230679252 ], [ 35.435735238483169, -0.634229261679254 ], [ 35.493718636483202, -0.617566664679262 ], [ 35.49750281648317, -0.616162855679252 ], [ 35.50531531648317, -0.613660414679262 ], [ 35.563115609483184, -0.596936781679235 ], [ 35.5842948084832, -0.59065016067922 ], [ 35.58789588248316, -0.58973463267927 ], [ 35.590520394483171, -0.603833754679217 ], [ 35.591496957483166, -0.610852797679231 ], [ 35.594731820483155, -0.629041273679266 ], [ 35.59711219148317, -0.644055922679231 ], [ 35.599126351483157, -0.655530531679235 ], [ 35.600530160483167, -0.658155043679246 ], [ 35.602544320483155, -0.660657484679237 ], [ 35.611089242483153, -0.672864515679239 ], [ 35.618535531483182, -0.67744215267925 ], [ 35.626286996483195, -0.681958754679217 ], [ 35.629521859483184, -0.684156019679224 ], [ 35.636296761483202, -0.691663343679241 ], [ 35.642705453483181, -0.700757582679219 ], [ 35.646306527483198, -0.701367933679253 ], [ 35.64789344148317, -0.697583754679217 ], [ 35.650517953483181, -0.695569593679241 ], [ 35.651921761483202, -0.689466078679234 ], [ 35.653142464483203, -0.686475355679252 ], [ 35.655339730483199, -0.684461195679264 ], [ 35.658940804483159, -0.682141859679237 ], [ 35.66211463248316, -0.680982191679223 ], [ 35.664739144483171, -0.678174574679249 ], [ 35.665105355483199, -0.67463453567922 ], [ 35.666142953483181, -0.672864515679239 ], [ 35.666936410483167, -0.668164808679253 ], [ 35.669499886483202, -0.663343031679235 ], [ 35.67133094148317, -0.660779554679268 ], [ 35.674321664483152, -0.658582289679262 ], [ 35.677495492483153, -0.658765394679224 ], [ 35.67969275748316, -0.653577406679235 ], [ 35.681890023483156, -0.649976332679219 ], [ 35.68250037548318, -0.645581800679227 ], [ 35.684087289483152, -0.642041761679254 ], [ 35.685918343483188, -0.639661390679239 ], [ 35.686894906483182, -0.626538832679219 ], [ 35.686345589483203, -0.623670179679268 ], [ 35.687932504483165, -0.619824964679256 ], [ 35.690923226483157, -0.609754164679262 ], [ 35.692327035483167, -0.607251722679225 ], [ 35.693303597483172, -0.602979261679254 ], [ 35.69672156648317, -0.597730238679221 ], [ 35.699895394483171, -0.595349867679263 ], [ 35.703740609483184, -0.591748793679246 ], [ 35.705510629483165, -0.588452894679224 ], [ 35.707707894483171, -0.585950453679234 ], [ 35.710332406483182, -0.581861097679225 ], [ 35.71234656648317, -0.57606275767927 ], [ 35.713323129483165, -0.570752699679249 ], [ 35.712712777483198, -0.562757093679241 ], [ 35.711492074483196, -0.559583265679239 ], [ 35.711736214483203, -0.554334242679263 ], [ 35.715093148483156, -0.553174574679249 ], [ 35.719914925483174, -0.551160414679262 ], [ 35.723332894483171, -0.549146254679217 ], [ 35.726140511483202, -0.546338636679254 ], [ 35.727910531483182, -0.543836195679264 ], [ 35.729314339483203, -0.541333754679217 ], [ 35.731694711483151, -0.538281996679248 ], [ 35.736089242483153, -0.533582289679262 ], [ 35.739934457483166, -0.531446058679253 ], [ 35.747319711483151, -0.531873304679268 ], [ 35.750737679483159, -0.532849867679263 ], [ 35.756902230483199, -0.534253675679227 ], [ 35.77429725048318, -0.537732679679268 ], [ 35.778691781483182, -0.514966566679223 ], [ 35.784307015483186, -0.501782972679225 ], [ 35.786504281483182, -0.497144300679227 ], [ 35.789128793483194, -0.490979750679233 ], [ 35.795903695483155, -0.473279554679268 ], [ 35.795537484483184, -0.46845777767925 ], [ 35.797124398483156, -0.460767347679225 ], [ 35.798894418483194, -0.457532484679237 ], [ 35.803105843483188, -0.45673902767925 ], [ 35.80609656648317, -0.457044203679234 ], [ 35.813542855483199, -0.45887525767927 ], [ 35.81531287548318, -0.462232191679223 ], [ 35.8167166834832, -0.466138441679223 ], [ 35.815923226483157, -0.475171644679224 ], [ 35.819890511483202, -0.475354750679233 ], [ 35.823491586483151, -0.474683363679221 ], [ 35.827703011483202, -0.473340589679256 ], [ 35.83093787548318, -0.468335707679219 ], [ 35.837102425483174, -0.468335707679219 ], [ 35.839543832483166, -0.473828871679248 ], [ 35.833745492483153, -0.491651136679254 ], [ 35.83289100048318, -0.494763929679268 ], [ 35.836308968483188, -0.496778089679256 ], [ 35.83929969148317, -0.49775465267925 ], [ 35.848699105483199, -0.501538832679219 ], [ 35.850713265483186, -0.504651625679233 ], [ 35.854314339483203, -0.50556715267925 ], [ 35.864934457483166, -0.512464125679233 ], [ 35.878728402483198, -0.519666273679266 ], [ 35.882329476483157, -0.522779066679223 ], [ 35.887334359483184, -0.524060804679268 ], [ 35.890325082483166, -0.526136000679233 ], [ 35.892339242483153, -0.529065687679238 ], [ 35.896306527483198, -0.533582289679262 ], [ 35.901128304483159, -0.540235121679248 ], [ 35.903508675483174, -0.543958265679239 ], [ 35.905889046483189, -0.546643812679238 ], [ 35.912908089483203, -0.549451429679268 ], [ 35.916692269483171, -0.549451429679268 ], [ 35.925115121483195, -0.550244886679254 ], [ 35.93250037548318, -0.551282484679237 ], [ 35.934697640483186, -0.554944593679241 ], [ 35.937932504483165, -0.556775648679266 ], [ 35.943913949483196, -0.555432875679233 ], [ 35.947515023483156, -0.558362562679238 ], [ 35.948308480483199, -0.563977797679231 ], [ 35.952519906483182, -0.56916578567922 ], [ 35.957097543483194, -0.578443129679217 ], [ 35.961492074483196, -0.586865980679252 ], [ 35.962712777483198, -0.589673597679225 ], [ 35.97852088248316, -0.621533949679249 ], [ 35.978703988483169, -0.624768812679238 ], [ 35.982488168483194, -0.629163343679241 ], [ 35.981511605483199, -0.633252699679249 ], [ 35.966130746483195, -0.650342543679246 ], [ 35.9573416834832, -0.659680922679231 ], [ 35.951543343483188, -0.666272718679241 ], [ 35.945134652483198, -0.660535414679262 ], [ 35.935124886483202, -0.65205152767925 ], [ 35.928899300483174, -0.646436293679246 ], [ 35.916509164483152, -0.635938246679248 ], [ 35.88812781648317, -0.637647230679252 ], [ 35.876531136483202, -0.637158949679249 ], [ 35.87891150748316, -0.650830824679249 ], [ 35.886296761483202, -0.650159437679238 ], [ 35.889714730483199, -0.651746351679267 ], [ 35.893743050483174, -0.64954908667926 ], [ 35.912297738483169, -0.673169691679223 ], [ 35.921941293483194, -0.684766371679248 ], [ 35.9241385584832, -0.688062269679224 ], [ 35.93109656648317, -0.696851332679219 ], [ 35.931890023483156, -0.700147230679252 ], [ 35.931706918483194, -0.704175550679227 ], [ 35.934331429483159, -0.707349379679217 ], [ 35.94531775748316, -0.712964613679221 ], [ 35.950688851483157, -0.71064527767925 ], [ 35.953740609483184, -0.708264906679235 ], [ 35.95789100048318, -0.705457289679262 ], [ 35.962712777483198, -0.701673109679237 ], [ 35.965520394483171, -0.699781019679224 ], [ 35.971318734483184, -0.694654066679223 ], [ 35.997319711483151, -0.674573500679233 ], [ 36.013738168483194, -0.664929945679264 ], [ 36.016728890483186, -0.668164808679253 ], [ 36.02289344148317, -0.672559339679256 ], [ 36.029912484483184, -0.67854078567922 ], [ 36.035710824483196, -0.67493971167926 ], [ 36.045110238483169, -0.66877516067922 ], [ 36.05469275748316, -0.662244398679266 ], [ 36.059331429483159, -0.659436781679235 ], [ 36.071111214483203, -0.653272230679252 ], [ 36.077336800483174, -0.65028150767927 ], [ 36.085332406483182, -0.645948011679254 ], [ 36.090093148483156, -0.643872816679223 ], [ 36.097539437483185, -0.640149672679231 ], [ 36.09851600048318, -0.645154554679268 ], [ 36.099492562483185, -0.666638929679268 ], [ 36.0999198084832, -0.670240004679217 ], [ 36.100896371483195, -0.675733168679246 ], [ 36.10492469148317, -0.680860121679248 ], [ 36.139714730483199, -0.712232191679223 ], [ 36.143926156483182, -0.713147718679241 ], [ 36.14734412548318, -0.711560804679268 ], [ 36.150517953483181, -0.713269789679262 ], [ 36.154119027483198, -0.715772230679252 ], [ 36.154119027483198, -0.71955641067922 ], [ 36.154729379483165, -0.724073011679254 ], [ 36.156316293483194, -0.728650648679266 ], [ 36.1585135584832, -0.73127516067922 ], [ 36.159917367483153, -0.73426588267927 ], [ 36.160710824483196, -0.737744886679254 ], [ 36.160344613483169, -0.740735609679237 ], [ 36.161687386483202, -0.744153578679234 ], [ 36.163945687483185, -0.746167738679221 ], [ 36.168340218483188, -0.747876722679225 ], [ 36.170720589483203, -0.750867445679264 ], [ 36.17273475048318, -0.753858168679246 ], [ 36.176335824483196, -0.755139906679235 ], [ 36.17969275748316, -0.757154066679223 ], [ 36.183293832483166, -0.759046156679235 ], [ 36.185735238483169, -0.761365492679263 ], [ 36.192143929483159, -0.765637953679234 ], [ 36.189885629483165, -0.771558363679221 ], [ 36.18750525748316, -0.774976332679219 ], [ 36.185124886483202, -0.777967054679268 ], [ 36.191533578483181, -0.78596266067922 ], [ 36.189092171483189, -0.803968031679235 ], [ 36.186345589483203, -0.80744703567922 ], [ 36.161504281483182, -0.834058363679221 ], [ 36.159490121483195, -0.837537367679263 ], [ 36.160710824483196, -0.842237074679249 ], [ 36.163335336483151, -0.850232679679268 ], [ 36.165532601483157, -0.856336195679264 ], [ 36.168096078483181, -0.865369398679266 ], [ 36.16992713248316, -0.870557386679254 ], [ 36.171514046483189, -0.87415846167926 ], [ 36.1741385584832, -0.878430922679231 ], [ 36.174932015483186, -0.88056715267925 ], [ 36.17773963248316, -0.885327894679224 ], [ 36.181890023483156, -0.892957289679262 ], [ 36.184087289483152, -0.896436293679246 ], [ 36.185735238483169, -0.900159437679238 ], [ 36.189336312483185, -0.906446058679253 ], [ 36.189885629483165, -0.909375746679248 ], [ 36.188298714483203, -0.911756117679263 ], [ 36.187688363483169, -0.914563734679237 ], [ 36.194097054483159, -0.915357191679223 ], [ 36.197331918483194, -0.91877516067922 ], [ 36.202336800483174, -0.927381117679263 ], [ 36.20453406648317, -0.930738050679227 ], [ 36.206914437483185, -0.933850843679241 ], [ 36.218938363483169, -0.929944593679241 ], [ 36.250493539483152, -0.91908033667926 ], [ 36.254888070483155, -0.917432386679254 ], [ 36.259343636483202, -0.916333754679274 ], [ 36.264897836483151, -0.915479261679254 ], [ 36.266545785483167, -0.918164808679253 ], [ 36.26953650748316, -0.92353590267925 ], [ 36.270696175483174, -0.926465589679256 ], [ 36.274907601483157, -0.934033949679249 ], [ 36.278508675483174, -0.941052992679263 ], [ 36.286321175483174, -0.955030043679246 ], [ 36.289311898483156, -0.959668714679256 ], [ 36.298100961483151, -0.97627027767925 ], [ 36.303288949483196, -0.985242445679264 ], [ 36.305730355483199, -0.990430433679253 ], [ 36.308110726483157, -0.994763929679268 ], [ 36.313115609483184, -1.004651625679233 ], [ 36.326299203483181, -1.028272230679252 ], [ 36.333745492483153, -1.042249281679235 ], [ 36.33594275748316, -1.047071058679253 ], [ 36.337102425483174, -1.054944593679241 ], [ 36.337712777483198, -1.063062269679224 ], [ 36.338689339483203, -1.072339613679221 ], [ 36.340886605483199, -1.096753675679227 ], [ 36.342900765483186, -1.115552504679274 ], [ 36.344121468483188, -1.128858168679247 ], [ 36.344304574483196, -1.133069593679241 ], [ 36.345098031483182, -1.139173109679237 ], [ 36.346318734483184, -1.151136000679233 ], [ 36.347539437483185, -1.164563734679237 ], [ 36.348088754483165, -1.17493971167926 ], [ 36.33734656648317, -1.186963636679254 ], [ 36.291142953483181, -1.236646254679274 ], [ 36.288091195483155, -1.238660414679262 ], [ 36.280522836483151, -1.248242933679253 ], [ 36.26953650748316, -1.260266859679237 ], [ 36.258306039483152, -1.272229750679233 ], [ 36.248113168483194, -1.283643324679249 ], [ 36.231694711483151, -1.301038343679241 ], [ 36.228703987483179, -1.30384596267925 ], [ 36.218328011483202, -1.315137464679256 ], [ 36.199346078483181, -1.334851820679264 ], [ 36.196111214483203, -1.338452894679224 ], [ 36.189092171483189, -1.345532972679225 ], [ 36.165715707483166, -1.370557386679254 ], [ 36.162908089483203, -1.373242933679253 ], [ 36.155095589483203, -1.381360609679237 ], [ 36.144292367483153, -1.392957289679262 ], [ 36.142095101483157, -1.395032484679237 ], [ 36.136907113483169, -1.400464613679221 ], [ 36.132939828483181, -1.404981214679256 ], [ 36.126531136483202, -1.411573011679254 ], [ 36.121709359483184, -1.415845472679225 ], [ 36.118535531483182, -1.420178968679241 ], [ 36.075139535483167, -1.465772230679252 ], [ 36.070745004483165, -1.468762953679234 ], [ 36.068486703483181, -1.472852308679253 ], [ 36.057317269483171, -1.484448988679221 ], [ 36.053105843483188, -1.489148695679264 ], [ 36.04968787548318, -1.492383558679253 ], [ 36.058721078483181, -1.498242933679253 ], [ 36.060491097483172, -1.501660902679251 ], [ 36.061345589483203, -1.505872328679234 ], [ 36.062322152483198, -1.509473402679251 ], [ 36.064092171483189, -1.512464125679233 ], [ 36.065740121483195, -1.516065199679249 ], [ 36.067327035483167, -1.52137525767927 ], [ 36.070134652483198, -1.52815016067922 ], [ 36.072942269483171, -1.536573011679254 ], [ 36.074712289483152, -1.542676527679251 ], [ 36.076543343483188, -1.546155531679235 ], [ 36.079289925483174, -1.550550062679238 ], [ 36.081304086483151, -1.554761488679221 ], [ 36.083745492483153, -1.558240492679263 ], [ 36.085515511483202, -1.561841566679223 ], [ 36.085698617483153, -1.570752699679249 ], [ 36.086736214483203, -1.574170668679247 ], [ 36.085698617483153, -1.577466566679223 ], [ 36.083745492483153, -1.581677992679263 ], [ 36.08093787548318, -1.58387525767927 ], [ 36.079717171483189, -1.593762953679234 ], [ 36.076543343483188, -1.592664320679264 ], [ 36.073308480483199, -1.593946058679253 ], [ 36.071294320483155, -1.59754713267927 ], [ 36.069707406483182, -1.60267408667926 ], [ 36.068913949483196, -1.605847914679262 ], [ 36.066899789483152, -1.60926588267927 ], [ 36.06390906648317, -1.610059339679256 ], [ 36.065495980483199, -1.614331800679227 ], [ 36.063725961483151, -1.616834242679263 ], [ 36.060918343483188, -1.617871839679256 ], [ 36.057317269483171, -1.617871839679256 ], [ 36.054326546483189, -1.618848402679251 ], [ 36.0589041834832, -1.621472914679262 ], [ 36.059087289483152, -1.625073988679221 ], [ 36.057134164483152, -1.63166578567922 ], [ 36.05469275748316, -1.63557203567922 ], [ 36.051946175483174, -1.636975843679241 ], [ 36.050908578483181, -1.63978346167926 ], [ 36.053288949483196, -1.643262464679256 ], [ 36.053105843483188, -1.646741468679241 ], [ 36.050298226483157, -1.647962172679231 ], [ 36.048345101483157, -1.650647718679241 ], [ 36.052495492483153, -1.658582289679262 ], [ 36.054326546483189, -1.666333754679274 ], [ 36.05609656648317, -1.668958265679239 ], [ 36.058293832483166, -1.670972425679227 ], [ 36.058721078483181, -1.675061781679235 ], [ 36.055913461483151, -1.678174574679249 ], [ 36.058293832483166, -1.681775648679266 ], [ 36.058110726483157, -1.685681898679266 ], [ 36.060124886483202, -1.687879164679262 ], [ 36.063298714483203, -1.690442640679239 ], [ 36.064702523483156, -1.694531996679248 ], [ 36.065495980483199, -1.697583754679274 ], [ 36.062322152483198, -1.699353773679266 ], [ 36.0589041834832, -1.703137953679234 ], [ 36.057134164483152, -1.707959730679252 ], [ 36.053716195483155, -1.707349379679274 ], [ 36.050908578483181, -1.705274183679253 ], [ 36.047917855483199, -1.705274183679253 ], [ 36.045720589483203, -1.709241468679241 ], [ 36.043706429483159, -1.711438734679237 ], [ 36.044499886483202, -1.714673597679225 ], [ 36.04773475048318, -1.719251234679237 ], [ 36.048345101483157, -1.722058851679267 ], [ 36.048528207483166, -1.725659925679227 ], [ 36.049504769483171, -1.728467543679247 ], [ 36.049321664483152, -1.731336195679264 ], [ 36.04633094148317, -1.732862074679249 ], [ 36.043340218483188, -1.732251722679225 ], [ 36.041936410483167, -1.737561781679235 ], [ 36.039739144483171, -1.74104078567922 ], [ 36.036931527483198, -1.74207838267927 ], [ 36.035710824483196, -1.745679457679219 ], [ 36.035893929483159, -1.749463636679254 ], [ 36.033330453483181, -1.754651625679233 ], [ 36.035100472483172, -1.757764418679247 ], [ 36.035710824483196, -1.761548597679225 ], [ 36.03210975048318, -1.76283033667926 ], [ 36.031499398483156, -1.767652113679221 ], [ 36.029729379483165, -1.769849379679274 ], [ 36.024724496483195, -1.774732191679223 ], [ 36.021306527483198, -1.777173597679225 ], [ 36.023686898483156, -1.779248793679247 ], [ 36.028142464483203, -1.780957777679251 ], [ 36.028142464483203, -1.78596266067922 ], [ 36.025945199483196, -1.791150648679266 ], [ 36.023503793483194, -1.793531019679224 ], [ 36.025517953483181, -1.79676588267927 ], [ 36.021733773483156, -1.799329359679237 ], [ 36.018498910483167, -1.801831800679227 ], [ 36.015325082483166, -1.804944593679241 ], [ 36.017095101483157, -1.807935316679223 ], [ 36.020513070483155, -1.807569105679252 ], [ 36.023931039483152, -1.80744703567922 ], [ 36.027104867483153, -1.809644300679227 ], [ 36.029119027483198, -1.814771254679274 ], [ 36.029912484483184, -1.820447523679266 ], [ 36.029912484483184, -1.824536879679274 ], [ 36.034307015483186, -1.823743422679231 ], [ 36.037724984483184, -1.821668226679267 ], [ 36.039739144483171, -1.824170668679247 ], [ 36.040105355483199, -1.827649672679231 ], [ 36.043340218483188, -1.831433851679267 ], [ 36.042119515483186, -1.834973890679239 ], [ 36.043889535483167, -1.83778150767927 ], [ 36.04633094148317, -1.840283949679249 ], [ 36.0491385584832, -1.842176039679262 ], [ 36.048345101483157, -1.845349867679263 ], [ 36.048345101483157, -1.850049574679249 ], [ 36.050115121483195, -1.855481703679234 ], [ 36.050298226483157, -1.858838636679254 ], [ 36.0491385584832, -1.86213453567922 ], [ 36.048894418483194, -1.865857679679268 ], [ 36.050908578483181, -1.87025221167926 ], [ 36.050115121483195, -1.874036390679239 ], [ 36.047307504483165, -1.877881605679252 ], [ 36.044499886483202, -1.880261976679267 ], [ 36.041509164483152, -1.878858168679247 ], [ 36.038091195483155, -1.879346449679249 ], [ 36.03711463248316, -1.882947523679266 ], [ 36.037297738483169, -1.887036879679274 ], [ 36.034307015483186, -1.890271742679263 ], [ 36.030522836483151, -1.88856275767927 ], [ 36.027715218483188, -1.890576918679247 ], [ 36.029119027483198, -1.89533766067922 ], [ 36.031743539483152, -1.899365980679252 ], [ 36.032292855483199, -1.902844984679237 ], [ 36.036138070483155, -1.904859144679224 ], [ 36.03992225048318, -1.907178480679252 ], [ 36.043523324483196, -1.908032972679225 ], [ 36.041509164483152, -1.912366468679241 ], [ 36.033086312483185, -1.915662367679263 ], [ 36.034307015483186, -1.919629652679251 ], [ 36.037297738483169, -1.919263441679223 ], [ 36.037541879483165, -1.923169691679223 ], [ 36.036687386483202, -1.928052504679274 ], [ 36.039311898483156, -1.930432875679233 ], [ 36.0413260584832, -1.933362562679238 ], [ 36.042912972483172, -1.938672621679248 ], [ 36.042119515483186, -1.942884047679231 ], [ 36.040715707483166, -1.946546156679235 ], [ 36.037908089483203, -1.949781019679224 ], [ 36.039495004483165, -1.953137953679234 ], [ 36.0413260584832, -1.960462172679231 ], [ 36.039311898483156, -1.968762953679234 ], [ 36.037908089483203, -1.972974379679274 ], [ 36.040105355483199, -1.97767408667926 ], [ 36.038701546483189, -1.980542738679221 ], [ 36.035344613483169, -2.00044019967925 ], [ 36.033696664483152, -2.003125746679249 ], [ 36.036687386483202, -2.006665785679221 ], [ 36.034734261483202, -2.010266859679238 ], [ 36.030339730483199, -2.014051039679263 ], [ 36.028508675483174, -2.01716383267922 ], [ 36.028325570483155, -2.021253187679239 ], [ 36.027898324483196, -2.024732191679224 ], [ 36.024907601483157, -2.024854261679256 ], [ 36.02234412548318, -2.032666761679256 ], [ 36.023137582483166, -2.041272718679242 ], [ 36.026921761483202, -2.043164808679254 ], [ 36.027532113483169, -2.050855238679223 ], [ 36.027287972483172, -2.063855726679268 ], [ 36.027287972483172, -2.084546644679225 ], [ 36.001531136483202, -2.084241468679242 ], [ 36.000737679483159, -2.094556410679221 ], [ 36.000920785483167, -2.105176527679252 ], [ 35.79492713248316, -1.989636976679267 ], [ 35.750737679483159, -1.964429457679219 ], [ 35.726323617483153, -1.950940687679238 ], [ 35.708135140483186, -1.94056471167926 ], [ 35.703496468483188, -1.938184339679256 ], [ 35.691533578483181, -1.931348402679251 ], [ 35.680486214483203, -1.92463453567922 ], [ 35.667485726483157, -1.91785963267927 ], [ 35.631536019483171, -1.897534925679227 ], [ 35.555303109483184, -1.854261000679233 ], [ 35.484136117483153, -1.813550550679227 ], [ 35.4495291834832, -1.794263441679223 ], [ 35.428105843483188, -1.782666761679254 ], [ 35.398931039483152, -1.766553480679252 ], [ 35.375920785483167, -1.753247816679223 ], [ 35.364507211483151, -1.747083265679239 ], [ 35.266301644483171, -1.691175062679238 ], [ 35.247319711483151, -1.682141859679237 ], [ 35.180730355483199, -1.644544203679234 ], [ 35.177922738483169, -1.641553480679252 ], [ 35.171697152483198, -1.639356214679256 ], [ 35.162297738483169, -1.634168226679267 ], [ 35.141911996483195, -1.622266371679248 ], [ 35.113896859483184, -1.606458265679239 ], [ 35.084111703483181, -1.589063246679248 ], [ 35.046697152483198, -1.567884047679231 ], [ 35.023931039483152, -1.554639418679247 ], [ 35.017522347483172, -1.550183851679267 ], [ 34.934697640483186, -1.504346449679249 ], [ 34.931340707483166, -1.502637464679256 ], [ 34.903691781483182, -1.48713453567922 ], [ 34.8928885584832, -1.480542738679221 ], [ 34.876714242483153, -1.471753675679227 ], [ 34.846318734483184, -1.454663832679219 ], [ 34.827336800483174, -1.443677504679274 ], [ 34.814519418483194, -1.436536390679239 ], [ 34.731511605483199, -1.389356214679256 ], [ 34.711492074483196, -1.308667738679221 ], [ 34.696294320483155, -1.252637464679256 ], [ 34.688725961483151, -1.217542250679233 ], [ 34.685918343483188, -1.21278150767927 ], [ 34.680486214483203, -1.213941175679227 ], [ 34.677129281483182, -1.213147718679241 ], [ 34.673528207483166, -1.211377699679249 ], [ 34.672490609483184, -1.207776625679233 ], [ 34.672307504483165, -1.203443129679274 ], [ 34.67133094148317, -1.199842054679268 ], [ 34.668096078483181, -1.197583754679274 ], [ 34.665715707483166, -1.195569593679241 ], [ 34.663701546483189, -1.193433363679221 ], [ 34.661931527483198, -1.190869886679254 ], [ 34.658696664483152, -1.189771254679274 ], [ 34.655095589483203, -1.187940199679249 ], [ 34.65430213248316, -1.183179457679219 ], [ 34.65430213248316, -1.179334242679263 ], [ 34.652104867483153, -1.176648695679264 ], [ 34.649114144483171, -1.173780043679247 ], [ 34.647099984483184, -1.170972425679227 ], [ 34.643743050483174, -1.168836195679264 ], [ 34.641911996483195, -1.166455824679249 ], [ 34.638921273483156, -1.164746839679256 ], [ 34.633916390483186, -1.163465101679267 ], [ 34.627690804483159, -1.15736158667926 ], [ 34.626286996483195, -1.154737074679249 ], [ 34.629704964483203, -1.147656996679248 ], [ 34.630925668483194, -1.143933851679267 ], [ 34.6331229334832, -1.139051039679262 ], [ 34.633489144483171, -1.135266859679237 ], [ 34.631108773483156, -1.13166578567922 ], [ 34.63031531648317, -1.125440199679249 ], [ 34.627141488483169, -1.119763929679268 ], [ 34.622930062483185, -1.113965589679256 ], [ 34.622930062483185, -1.107984144679224 ], [ 34.620122445483155, -1.097241957679219 ], [ 34.615911019483171, -1.092359144679224 ], [ 34.614934457483166, -1.089429457679219 ], [ 34.615911019483171, -1.08283766067922 ], [ 34.618535531483182, -1.077466566679223 ], [ 34.601140511483202, -1.058545668679247 ], [ 34.593511117483153, -1.044141371679248 ], [ 34.595342171483189, -1.036939222679225 ], [ 34.592534554483159, -1.035230238679221 ], [ 34.59070350048318, -1.018933851679267 ], [ 34.603887093483188, -1.006177504679274 ], [ 34.61273719148317, -0.998365004679274 ], [ 34.622930062483185, -0.988355238679221 ], [ 34.643315804483159, -0.969373304679268 ], [ 34.646916879483165, -0.967481214679256 ], [ 34.651494515483186, -0.966931898679266 ], [ 34.656499398483156, -0.968946058679253 ], [ 34.660344613483169, -0.971082289679262 ], [ 34.663945687483185, -0.97254713267927 ], [ 34.666692269483171, -0.973157484679237 ], [ 34.671086800483174, -0.972852308679253 ], [ 34.674504769483171, -0.973035414679262 ], [ 34.677495492483153, -0.97346266067922 ], [ 34.697698129483165, -0.969251234679237 ], [ 34.7503104334832, -0.956433851679267 ], [ 34.760686410483167, -0.954663832679219 ], [ 34.777104867483153, -0.949658949679249 ], [ 34.780889046483189, -0.949170668679246 ], [ 34.797307504483165, -0.944531996679248 ], [ 34.83148719148317, -0.935865004679274 ], [ 34.844914925483174, -0.933850843679241 ], [ 34.850102914483152, -0.931165297679231 ], [ 34.889104379483165, -0.92158277767925 ], [ 34.892522347483172, -0.920545179679268 ], [ 34.918096078483181, -0.91395338267927 ], [ 34.929509652483198, -0.91126783667926 ], [ 34.943120492483153, -0.908460218679241 ], [ 34.954717171483189, -0.904676039679262 ], [ 34.958501351483157, -0.903760511679254 ], [ 34.975286019483171, -0.900342543679246 ], [ 34.982488168483194, -0.897962172679231 ], [ 34.987920296483189, -0.896863539679262 ], [ 35.001286996483195, -0.893567640679239 ], [ 35.013494027483198, -0.89033277767925 ], [ 35.023320687483185, -0.892774183679253 ], [ 35.025945199483196, -0.894177992679263 ], [ 35.0335135584832, -0.895154554679268 ], [ 35.062932504483165, -0.902173597679225 ], [ 35.066899789483152, -0.903333265679239 ], [ 35.07813025748316, -0.905652601679267 ], [ 35.083318246483195, -0.906934339679256 ], [ 35.0999198084832, -0.920667250679233 ], [ 35.105718148483156, -0.92567213267927 ], [ 35.109502328483181, -0.928662855679252 ], [ 35.116521371483195, -0.93543775767927 ], [ 35.11914588248316, -0.936841566679223 ], [ 35.145696175483174, -0.958264906679235 ], [ 35.163701546483189, -0.973645765679239 ], [ 35.182927621483195, -0.989453871679248 ], [ 35.192937386483202, -0.997449476679267 ], [ 35.197515023483156, -1.001477797679231 ], [ 35.208928597483172, -1.009961683679253 ], [ 35.222905648483156, -1.021436293679247 ], [ 35.238530648483156, -1.035169203679234 ], [ 35.242925179483159, -1.037183363679221 ], [ 35.245915902483198, -1.036878187679238 ], [ 35.24890662548318, -1.034253675679227 ], [ 35.252141488483169, -1.030225355679252 ], [ 35.25671912548318, -1.029981214679256 ], [ 35.259343636483202, -1.026868422679231 ], [ 35.262090218483188, -1.022656996679248 ], [ 35.266301644483171, -1.022229750679233 ], [ 35.270329964483203, -1.023877699679249 ], [ 35.272099984483184, -1.021436293679247 ], [ 35.277287972483172, -1.019239027679251 ], [ 35.280339730483199, -1.017530043679247 ], [ 35.282292855483199, -1.014051039679262 ], [ 35.286138070483155, -1.013745863679221 ], [ 35.289311898483156, -1.012342054679268 ], [ 35.2913260584832, -1.010266859679237 ], [ 35.294744027483198, -1.009473402679251 ], [ 35.297124398483156, -1.007642347679225 ], [ 35.300115121483195, -1.004346449679249 ], [ 35.304509652483198, -1.004956800679227 ], [ 35.308721078483181, -1.002332289679262 ], [ 35.313115609483184, -1.000867445679264 ], [ 35.312688363483169, -0.997632582679219 ], [ 35.31531287548318, -0.996045668679246 ], [ 35.315740121483195, -0.992444593679241 ], [ 35.318303597483172, -0.99104078567922 ], [ 35.321538461483151, -0.988843519679224 ], [ 35.325505746483195, -0.98713453567922 ], [ 35.32953406648317, -0.985852797679231 ], [ 35.332524789483152, -0.984571058679253 ], [ 35.331304086483151, -0.980969984679237 ], [ 35.335332406483182, -0.977979261679254 ], [ 35.339726937483185, -0.979444105679252 ], [ 35.339910043483194, -0.97627027767925 ], [ 35.343694222483172, -0.974256117679263 ], [ 35.347295296483189, -0.973157484679237 ], [ 35.350530160483167, -0.974439222679225 ] ], [ [ 35.350530160483167, -0.974439222679225 ], [ 35.348332894483171, -0.976575453679234 ], [ 35.351140511483202, -0.978772718679241 ], [ 35.350530160483167, -0.974439222679225 ] ], [ [ 35.017859155483158, -1.516891480679251 ], [ 35.0178885584832, -1.517041761679254 ], [ 35.02148963248316, -1.51478346167926 ], [ 35.017339242483153, -1.514234144679224 ], [ 35.017859155483158, -1.516891480679251 ] ] ] } } +, +{ "type": "Feature", "id": 32, "properties": { "OBJECTID": 33, "ID_": 6202, "COUNTY_NAM": "KAJIADO", "CONST_CODE": 184, "CONSTITUEN": "KAJIADO CENTRAL", "COUNTY_COD": 34, "Shape_Leng": 7.16441555269, "Shape_Area": 1.77912132642 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.669744027483198, -1.32606275767927 ], [ 36.675542367483153, -1.330274183679253 ], [ 36.67969275748316, -1.32893141067922 ], [ 36.686528695483155, -1.339978773679266 ], [ 36.687139046483189, -1.343335707679219 ], [ 36.689885629483165, -1.347669203679234 ], [ 36.691533578483181, -1.35267408667926 ], [ 36.694097054483159, -1.353833754679274 ], [ 36.69672156648317, -1.35267408667926 ], [ 36.702703011483202, -1.352246839679256 ], [ 36.706120980483199, -1.355054457679219 ], [ 36.709538949483196, -1.358167250679233 ], [ 36.713506234483184, -1.360547621679248 ], [ 36.716313851483157, -1.363233168679247 ], [ 36.718938363483169, -1.36634596167926 ], [ 36.722295296483189, -1.369275648679266 ], [ 36.728703988483169, -1.374463636679254 ], [ 36.731694711483151, -1.376233656679235 ], [ 36.734929574483196, -1.378430922679231 ], [ 36.73914100048318, -1.379834730679252 ], [ 36.743535531483182, -1.381543714679256 ], [ 36.750493539483152, -1.384534437679238 ], [ 36.754338754483165, -1.384534437679238 ], [ 36.757146371483195, -1.385144789679262 ], [ 36.760686410483167, -1.385083754679274 ], [ 36.765325082483166, -1.386365492679263 ], [ 36.767705453483181, -1.389173109679237 ], [ 36.771123421483189, -1.38856275767927 ], [ 36.774907601483157, -1.388379652679251 ], [ 36.77930213248316, -1.386853773679266 ], [ 36.782903207483166, -1.388867933679253 ], [ 36.786931527483198, -1.38783033667926 ], [ 36.790105355483199, -1.387952406679235 ], [ 36.793096078483181, -1.385755140679239 ], [ 36.79633094148317, -1.387158949679249 ], [ 36.800115121483195, -1.387769300679227 ], [ 36.803105843483188, -1.38856275767927 ], [ 36.80609656648317, -1.388074476679267 ], [ 36.809087289483152, -1.388135511679254 ], [ 36.811101449483196, -1.386060316679223 ], [ 36.816106332483166, -1.382276136679254 ], [ 36.819890511483202, -1.381543714679256 ], [ 36.82172156648317, -1.384229261679254 ], [ 36.829900277483198, -1.387647230679252 ], [ 36.8342948084832, -1.387952406679235 ], [ 36.844304574483196, -1.387647230679252 ], [ 36.846745980483199, -1.392346937679238 ], [ 36.849736703483181, -1.396070082679219 ], [ 36.852910531483182, -1.397840101679267 ], [ 36.859746468483188, -1.399976332679219 ], [ 36.86273719148317, -1.402478773679266 ], [ 36.865300668483194, -1.404065687679238 ], [ 36.869328988483169, -1.403882582679219 ], [ 36.87109900748316, -1.40705641067922 ], [ 36.875127328483181, -1.406568129679274 ], [ 36.87891150748316, -1.406873304679268 ], [ 36.882512582483166, -1.406262953679234 ], [ 36.885320199483196, -1.407178480679252 ], [ 36.88812781648317, -1.408582289679262 ], [ 36.891118539483152, -1.409680922679231 ], [ 36.894292367483153, -1.411145765679239 ], [ 36.890691293483194, -1.413770277679251 ], [ 36.884709847483172, -1.445935804679268 ], [ 36.882329476483157, -1.457959730679252 ], [ 36.87891150748316, -1.477979261679254 ], [ 36.886113656483182, -1.486829359679237 ], [ 36.889287484483184, -1.485730726679267 ], [ 36.8928885584832, -1.482068617679263 ], [ 36.89648963248316, -1.479749281679235 ], [ 36.89929725048318, -1.476758558679253 ], [ 36.906926644483171, -1.471936781679235 ], [ 36.911504281483182, -1.468335707679219 ], [ 36.91492225048318, -1.466748793679247 ], [ 36.917912972483172, -1.464978773679266 ], [ 36.921514046483189, -1.462171156679235 ], [ 36.923894418483194, -1.459180433679253 ], [ 36.92773963248316, -1.458264906679235 ], [ 36.93109656648317, -1.459058363679221 ], [ 36.933721078483181, -1.457166273679266 ], [ 36.937139046483189, -1.455640394679224 ], [ 36.941289437483185, -1.455152113679221 ], [ 36.944707406483182, -1.455274183679253 ], [ 36.949101937483185, -1.457044203679234 ], [ 36.94812537548318, -1.461682875679233 ], [ 36.960698617483153, -1.468335707679219 ], [ 36.977544320483155, -1.478833754679274 ], [ 36.973332894483171, -1.487683851679267 ], [ 36.971745980483199, -1.491834242679263 ], [ 36.97211219148317, -1.494763929679268 ], [ 36.974736703483181, -1.498670179679268 ], [ 36.974309457483166, -1.50184400767927 ], [ 36.971929086483151, -1.503675062679238 ], [ 36.969304574483196, -1.507764418679247 ], [ 36.966924203483181, -1.510083754679274 ], [ 36.964543832483166, -1.511975843679241 ], [ 36.963323129483165, -1.514539320679264 ], [ 36.963933480483199, -1.517957289679262 ], [ 36.964116586483151, -1.520948011679254 ], [ 36.963506234483184, -1.529065687679238 ], [ 36.96234656648317, -1.53205641067922 ], [ 36.958928597483172, -1.533155043679247 ], [ 36.9573416834832, -1.538343031679235 ], [ 36.957097543483194, -1.541883070679264 ], [ 36.95789100048318, -1.544751722679225 ], [ 36.960332406483182, -1.547559339679256 ], [ 36.963689339483203, -1.552930433679253 ], [ 36.967900765483186, -1.556165297679231 ], [ 36.973699105483199, -1.55744703567922 ], [ 36.976140511483202, -1.554639418679247 ], [ 36.978703988483169, -1.556043226679267 ], [ 36.984746468483188, -1.565930922679231 ], [ 36.993901742483153, -1.57893141067922 ], [ 36.996709359483184, -1.583448011679254 ], [ 36.993901742483153, -1.585279066679223 ], [ 36.991521371483195, -1.587354261679254 ], [ 36.994695199483196, -1.591565687679238 ], [ 37.000127328483181, -1.598279554679268 ], [ 37.007939828483181, -1.596082289679262 ], [ 37.012944711483151, -1.603040297679231 ], [ 37.018743050483174, -1.610364515679239 ], [ 37.039739144483171, -1.638928968679241 ], [ 37.04968787548318, -1.651868422679231 ], [ 37.053105843483188, -1.657483656679235 ], [ 37.056523812483185, -1.661145765679239 ], [ 37.076726449483196, -1.688184339679256 ], [ 37.08148719148317, -1.695630629679274 ], [ 37.085088265483186, -1.700940687679238 ], [ 37.08929969148317, -1.704663832679219 ], [ 37.093694222483172, -1.710950453679234 ], [ 37.105718148483156, -1.727063734679237 ], [ 37.109319222483172, -1.731763441679223 ], [ 37.113103402483198, -1.736157972679225 ], [ 37.117742074483196, -1.738965589679256 ], [ 37.120915902483198, -1.740064222679225 ], [ 37.124700082483166, -1.74207838267927 ], [ 37.129521859483184, -1.744336683679253 ], [ 37.132939828483181, -1.74494703567922 ], [ 37.134892953483181, -1.742383558679253 ], [ 37.142522347483172, -1.738050062679238 ], [ 37.14734412548318, -1.739331800679227 ], [ 37.149541390483186, -1.742871839679256 ], [ 37.14929725048318, -1.747571547679231 ], [ 37.148137582483166, -1.752454359679237 ], [ 37.148320687483185, -1.756848890679239 ], [ 37.149541390483186, -1.761182386679254 ], [ 37.151738656483182, -1.763135511679254 ], [ 37.155889046483189, -1.764173109679237 ], [ 37.158696664483152, -1.767163832679219 ], [ 37.156133187483185, -1.770764906679235 ], [ 37.152898324483196, -1.777539808679253 ], [ 37.155095589483203, -1.780164320679264 ], [ 37.158086312483185, -1.779370863679221 ], [ 37.160893929483159, -1.780957777679251 ], [ 37.158696664483152, -1.786145765679239 ], [ 37.156743539483152, -1.789258558679253 ], [ 37.154912484483184, -1.791455824679249 ], [ 37.152104867483153, -1.797559339679256 ], [ 37.153325570483155, -1.801465589679256 ], [ 37.151311410483167, -1.805066664679262 ], [ 37.147527230483199, -1.808667738679221 ], [ 37.142705453483181, -1.813855726679267 ], [ 37.144109261483202, -1.817884047679231 ], [ 37.146306527483198, -1.820752699679249 ], [ 37.14453650748316, -1.823682386679254 ], [ 37.144719613483169, -1.830579359679237 ], [ 37.148686898483156, -1.83283766067922 ], [ 37.146733773483156, -1.836255629679274 ], [ 37.142705453483181, -1.840039808679253 ], [ 37.145696175483174, -1.841931898679266 ], [ 37.149114144483171, -1.843030531679235 ], [ 37.152898324483196, -1.84486158667926 ], [ 37.155889046483189, -1.847058851679267 ], [ 37.157536996483195, -1.85267408667926 ], [ 37.163091195483155, -1.859876234679237 ], [ 37.163335336483151, -1.865064222679225 ], [ 37.163091195483155, -1.869763929679268 ], [ 37.164128793483194, -1.873365004679274 ], [ 37.161138070483155, -1.877576429679268 ], [ 37.161321175483174, -1.881482679679268 ], [ 37.161138070483155, -1.884534437679238 ], [ 37.159490121483195, -1.886975843679241 ], [ 37.154912484483184, -1.887158949679249 ], [ 37.155889046483189, -1.890149672679231 ], [ 37.158940804483159, -1.893567640679239 ], [ 37.159490121483195, -1.89924391067922 ], [ 37.163701546483189, -1.905530531679235 ], [ 37.168706429483159, -1.912183363679221 ], [ 37.170720589483203, -1.914563734679237 ], [ 37.170903695483155, -1.91785963267927 ], [ 37.174321664483152, -1.920667250679233 ], [ 37.177129281483182, -1.922559339679256 ], [ 37.183721078483181, -1.925855238679221 ], [ 37.183293832483166, -1.930677015679239 ], [ 37.186528695483155, -1.933972914679262 ], [ 37.191289437483185, -1.936658460679271 ], [ 37.195928109483184, -1.935865004679274 ], [ 37.200139535483167, -1.934339125679233 ], [ 37.205510629483165, -1.935559828679234 ], [ 37.209905160483167, -1.934644300679227 ], [ 37.213689339483203, -1.934339125679233 ], [ 37.2171073084832, -1.934766371679248 ], [ 37.224126351483157, -1.934583265679239 ], [ 37.226933968483188, -1.93543775767927 ], [ 37.231145394483171, -1.936231214679256 ], [ 37.236089242483153, -1.937451918679247 ], [ 37.23969031648317, -1.939954359679237 ], [ 37.2424979334832, -1.942273695679264 ], [ 37.245488656483182, -1.945569593679241 ], [ 37.247136605483199, -1.949231703679234 ], [ 37.249944222483172, -1.952649672679231 ], [ 37.253545296483189, -1.954358656679235 ], [ 37.25531531648317, -1.956677992679263 ], [ 37.257329476483157, -1.959729750679233 ], [ 37.261540902483198, -1.960645277679251 ], [ 37.265691293483194, -1.960767347679225 ], [ 37.270513070483155, -1.970655043679247 ], [ 37.274907601483157, -1.975171644679224 ], [ 37.276494515483186, -1.977979261679254 ], [ 37.277532113483169, -1.982251722679225 ], [ 37.278935921483189, -1.989331800679227 ], [ 37.279912484483184, -1.993177015679239 ], [ 37.281316293483194, -1.996472914679262 ], [ 37.284307015483186, -1.996961195679264 ], [ 37.29773475048318, -2.004529554679269 ], [ 37.300542367483153, -2.005567152679252 ], [ 37.30414344148317, -2.004041273679267 ], [ 37.309514535483167, -2.005078871679249 ], [ 37.313725961483151, -2.008679945679265 ], [ 37.322942269483171, -2.010266859679238 ], [ 37.359502328483181, -2.013745863679223 ], [ 37.36273719148317, -2.014966566679224 ], [ 37.364934457483166, -2.017346937679239 ], [ 37.365300668483194, -2.024243910679221 ], [ 37.370488656483182, -2.024671156679236 ], [ 37.382329476483157, -2.02497633267922 ], [ 37.386540902483198, -2.027478773679267 ], [ 37.42133094148317, -2.052930433679254 ], [ 37.436101449483196, -2.063550550679228 ], [ 37.4417166834832, -2.067334730679253 ], [ 37.451909554483159, -2.074781019679225 ], [ 37.455327523483156, -2.076856214679257 ], [ 37.459111703483181, -2.078443129679275 ], [ 37.464726937483185, -2.081250746679249 ], [ 37.463140023483156, -2.087781507679271 ], [ 37.476506722483172, -2.093274672679232 ], [ 37.478093636483202, -2.088941175679228 ], [ 37.479314339483203, -2.086255629679275 ], [ 37.49109412548318, -2.091077406679236 ], [ 37.501714242483153, -2.095044691679224 ], [ 37.51453162548318, -2.100354750679234 ], [ 37.527104867483153, -2.105237562679239 ], [ 37.532536996483195, -2.107556898679267 ], [ 37.535893929483159, -2.109754164679263 ], [ 37.538091195483155, -2.113355238679223 ], [ 37.541692269483171, -2.114759047679232 ], [ 37.543889535483167, -2.116956312679239 ], [ 37.54492713248316, -2.119763929679269 ], [ 37.544133675483174, -2.123670179679269 ], [ 37.545537484483184, -2.127271254679275 ], [ 37.548711312483185, -2.128858168679248 ], [ 37.552312386483202, -2.129529554679269 ], [ 37.563725961483151, -2.128736097679226 ], [ 37.5667166834832, -2.130750257679271 ], [ 37.574895394483171, -2.140943129679275 ], [ 37.586125863483169, -2.150037367679264 ], [ 37.591741097483172, -2.154248793679248 ], [ 37.595525277483198, -2.156140882679271 ], [ 37.617314828483181, -2.162732679679269 ], [ 37.621526254483165, -2.163343031679236 ], [ 37.625493539483152, -2.163037855679253 ], [ 37.653508675483174, -2.159131605679253 ], [ 37.662541879483165, -2.158032972679226 ], [ 37.665532601483157, -2.157849867679264 ], [ 37.672124398483156, -2.159864027679252 ], [ 37.680913461483151, -2.163159925679228 ], [ 37.69031287548318, -2.166272718679242 ], [ 37.694097054483159, -2.167066175679228 ], [ 37.69812537548318, -2.166638929679269 ], [ 37.701909554483159, -2.168531019679225 ], [ 37.704900277483198, -2.172681410679221 ], [ 37.706914437483185, -2.176831800679228 ], [ 37.70789100048318, -2.183545668679248 ], [ 37.710332406483182, -2.185254652679252 ], [ 37.719121468483188, -2.188367445679265 ], [ 37.724736703483181, -2.192151625679234 ], [ 37.72070838248316, -2.193067152679252 ], [ 37.716924203483181, -2.192639906679236 ], [ 37.712712777483198, -2.193860609679238 ], [ 37.709111703483181, -2.195447523679267 ], [ 37.706304086483151, -2.197461683679254 ], [ 37.704106820483155, -2.199842054679269 ], [ 37.700322640483186, -2.205762464679257 ], [ 37.697515023483156, -2.208753187679239 ], [ 37.694890511483202, -2.212781507679271 ], [ 37.689702523483156, -2.217847425679228 ], [ 37.686894906483182, -2.222730238679223 ], [ 37.684087289483152, -2.226331312679239 ], [ 37.680303109483184, -2.228833754679275 ], [ 37.6760916834832, -2.230969984679238 ], [ 37.676518929483159, -2.234754164679263 ], [ 37.676946175483174, -2.24177320767922 ], [ 37.678716195483155, -2.246167738679223 ], [ 37.678533089483203, -2.25153883267922 ], [ 37.678899300483174, -2.255750257679271 ], [ 37.677312386483202, -2.26215894967925 ], [ 37.678716195483155, -2.266980726679268 ], [ 37.675115121483195, -2.269849379679275 ], [ 37.673711312483185, -2.273572523679267 ], [ 37.672490609483184, -2.28083570767922 ], [ 37.668706429483159, -2.284436781679236 ], [ 37.670720589483203, -2.288281996679249 ], [ 37.668523324483196, -2.291150648679267 ], [ 37.664495004483165, -2.292066175679228 ], [ 37.660710824483196, -2.290967543679248 ], [ 37.658330453483181, -2.289441664679263 ], [ 37.654912484483184, -2.290845472679226 ], [ 37.650334847483172, -2.293347914679263 ], [ 37.647527230483199, -2.297559339679257 ], [ 37.646306527483198, -2.301160414679263 ], [ 37.642522347483172, -2.299878675679228 ], [ 37.638310921483189, -2.299878675679228 ], [ 37.633733285483167, -2.29926832467925 ], [ 37.630742562483185, -2.303662855679253 ], [ 37.626531136483202, -2.304029066679224 ], [ 37.623540414483152, -2.306165297679232 ], [ 37.618718636483202, -2.300183851679268 ], [ 37.613530648483156, -2.300977308679254 ], [ 37.610723031483182, -2.304456312679239 ], [ 37.608098519483171, -2.30708082467925 ], [ 37.607121957483166, -2.311170179679269 ], [ 37.604497445483155, -2.313184339679257 ], [ 37.600896371483195, -2.312268812679239 ], [ 37.597295296483189, -2.313855726679268 ], [ 37.601140511483202, -2.319043714679257 ], [ 37.609929574483196, -2.329358656679236 ], [ 37.621709359483184, -2.342664320679265 ], [ 37.627934945483155, -2.35004957467925 ], [ 37.642095101483157, -2.366162855679253 ], [ 37.647099984483184, -2.372144300679228 ], [ 37.650517953483181, -2.375745375679234 ], [ 37.67273475048318, -2.401258070679265 ], [ 37.724309457483166, -2.459851820679265 ], [ 37.728703988483169, -2.465161879679275 ], [ 37.735539925483174, -2.472852308679254 ], [ 37.749333871483195, -2.489575941679224 ], [ 37.761296761483202, -2.503736097679226 ], [ 37.792302621483195, -2.539258558679254 ], [ 37.794316781483182, -2.541883070679265 ], [ 37.796941293483194, -2.544629652679252 ], [ 37.802495492483153, -2.551282484679238 ], [ 37.810918343483188, -2.560865004679275 ], [ 37.823491586483151, -2.575635511679256 ], [ 37.831914437483185, -2.585340101679268 ], [ 37.834722054483159, -2.588269789679263 ], [ 37.840520394483171, -2.595349867679264 ], [ 37.849492562483185, -2.605481703679235 ], [ 37.853703988483169, -2.611646254679275 ], [ 37.857305062483185, -2.618482191679224 ], [ 37.861699593483188, -2.625684339679257 ], [ 37.865117562483185, -2.632947523679267 ], [ 37.8674979334832, -2.639051039679263 ], [ 37.869512093483188, -2.64497144967925 ], [ 37.87250281648317, -2.650769789679263 ], [ 37.876897347483172, -2.658460218679242 ], [ 37.880498421483189, -2.664136488679223 ], [ 37.885137093483188, -2.668164808679254 ], [ 37.892705453483181, -2.676465589679257 ], [ 37.894292367483153, -2.680066664679263 ], [ 37.895085824483196, -2.682935316679224 ], [ 37.901494515483186, -2.702649672679232 ], [ 37.906743539483152, -2.705640394679225 ], [ 37.911138070483155, -2.706250746679249 ], [ 37.921941293483194, -2.707044203679235 ], [ 37.9241385584832, -2.709729750679234 ], [ 37.9260916834832, -2.713636000679234 ], [ 37.92914344148317, -2.720349867679264 ], [ 37.930730355483199, -2.725476820679265 ], [ 37.92969275748316, -2.739759047679232 ], [ 37.926946175483174, -2.743360121679249 ], [ 37.926946175483174, -2.75044019967925 ], [ 37.927495492483153, -2.753980238679223 ], [ 37.92969275748316, -2.762036879679275 ], [ 37.93109656648317, -2.765943129679275 ], [ 37.937932504483165, -2.773267347679226 ], [ 37.935735238483169, -2.785962660679221 ], [ 37.933293832483166, -2.798352797679232 ], [ 37.931523812483185, -2.806165297679232 ], [ 37.930913461483151, -2.809949476679268 ], [ 37.92969275748316, -2.81544264067924 ], [ 37.928716195483155, -2.820935804679269 ], [ 37.926518929483159, -2.830762464679257 ], [ 37.925298226483157, -2.837781507679271 ], [ 37.922490609483184, -2.851941664679263 ], [ 37.921514046483189, -2.856275160679221 ], [ 37.919744027483198, -2.86286695767922 ], [ 37.919316781483182, -2.867444593679242 ], [ 37.918523324483196, -2.870862562679239 ], [ 37.895085824483196, -2.888135511679256 ], [ 37.894109261483202, -2.897168714679257 ], [ 37.882146371483195, -2.995557386679256 ], [ 37.880925668483194, -3.002637464679257 ], [ 37.875493539483152, -3.043347914679263 ], [ 37.874700082483166, -3.052259047679232 ], [ 37.872319711483151, -3.071363050679228 ], [ 37.871526254483165, -3.07966383267922 ], [ 37.86609412548318, -3.081739027679252 ], [ 37.857305062483185, -3.081739027679252 ], [ 37.855901254483165, -3.085462172679232 ], [ 37.854741586483151, -3.089368422679232 ], [ 37.854741586483151, -3.117383558679254 ], [ 37.854497445483155, -3.124158461679262 ], [ 37.854741586483151, -3.131665785679221 ], [ 37.854741586483151, -3.138379652679252 ], [ 37.854497445483155, -3.145154554679269 ], [ 37.854497445483155, -3.170484144679225 ], [ 37.854131234483184, -3.173474867679264 ], [ 37.854131234483184, -3.177136976679268 ], [ 37.853337777483198, -3.181043226679268 ], [ 37.850102913483163, -3.184339125679234 ], [ 37.844121468483188, -3.187146742679264 ], [ 37.839910043483194, -3.188855726679268 ], [ 37.8342948084832, -3.189160902679252 ], [ 37.831731332483166, -3.186841566679224 ], [ 37.829900277483198, -3.183545668679248 ], [ 37.826543343483188, -3.180371839679257 ], [ 37.823308480483199, -3.177930433679254 ], [ 37.819524300483174, -3.17677076567924 ], [ 37.816533578483181, -3.173657972679226 ], [ 37.81250525748316, -3.171155531679236 ], [ 37.809514535483167, -3.171155531679236 ], [ 37.805486214483203, -3.170667250679234 ], [ 37.8010916834832, -3.171765882679271 ], [ 37.798711312483185, -3.173230726679268 ], [ 37.796086800483174, -3.17536695767922 ], [ 37.792302621483195, -3.173535902679252 ], [ 37.785893929483159, -3.173841078679235 ], [ 37.767705453483181, -3.175183851679268 ], [ 37.76172400748316, -3.17536695767922 ], [ 37.751103890483186, -3.176038343679242 ], [ 37.692693246483195, -3.177564222679226 ], [ 37.690923226483157, -3.173963148679267 ], [ 37.689885629483165, -3.167432386679256 ], [ 37.688298714483203, -3.159131605679253 ], [ 37.687139046483189, -3.150769789679263 ], [ 37.681340707483166, -3.115247328679235 ], [ 37.680730355483199, -3.110730726679268 ], [ 37.678899300483174, -3.10114820767922 ], [ 37.676702035483167, -3.08637769967925 ], [ 37.674504769483171, -3.074170668679248 ], [ 37.673894418483194, -3.070081312679239 ], [ 37.673528207483166, -3.066175062679239 ], [ 37.672490609483184, -3.061231214679257 ], [ 37.666936410483167, -3.057263929679269 ], [ 37.661504281483182, -3.053052504679275 ], [ 37.653508675483174, -3.048352797679232 ], [ 37.646306527483198, -3.043164808679254 ], [ 37.640141976483157, -3.038953382679271 ], [ 37.627324593483188, -3.030469496679249 ], [ 37.580510629483165, -2.998853285679221 ], [ 37.572698129483165, -2.994031507679271 ], [ 37.534123910483167, -2.968640882679271 ], [ 37.523931039483152, -2.962354261679256 ], [ 37.512090218483188, -2.95466383267922 ], [ 37.495305550483174, -2.94575269967925 ], [ 37.481145394483171, -2.936353285679221 ], [ 37.462712777483198, -2.927381117679264 ], [ 37.45593787548318, -2.923841078679235 ], [ 37.451543343483188, -2.920178968679242 ], [ 37.444097054483159, -2.917066175679228 ], [ 37.434941781483182, -2.912244398679267 ], [ 37.408330453483181, -2.89747389067924 ], [ 37.40430213248316, -2.894666273679267 ], [ 37.396123421483189, -2.890637953679235 ], [ 37.379338754483165, -2.881177504679275 ], [ 37.358525765483186, -2.869763929679269 ], [ 37.336919320483155, -2.857434828679235 ], [ 37.298711312483185, -2.836072523679267 ], [ 37.282292855483199, -2.827039320679265 ], [ 37.260930550483174, -2.814954359679238 ], [ 37.245915902483198, -2.806165297679232 ], [ 37.221318734483184, -2.792432386679256 ], [ 37.202519906483182, -2.781629164679263 ], [ 37.13953162548318, -2.74653394967925 ], [ 37.073735726483157, -2.709241468679242 ], [ 37.065923226483157, -2.70466383267922 ], [ 37.036504281483182, -2.688245375679234 ], [ 37.002324593483188, -2.668836195679265 ], [ 36.997685921483189, -2.666883070679265 ], [ 36.931706918483194, -2.629529554679269 ], [ 36.880742562483185, -2.600965101679268 ], [ 36.842717660483167, -2.579358656679236 ], [ 36.814092171483189, -2.563550550679228 ], [ 36.78210975048318, -2.545240004679275 ], [ 36.773137582483166, -2.540357191679224 ], [ 36.750920785483167, -2.527539808679254 ], [ 36.702703011483202, -2.503552992679264 ], [ 36.652898324483196, -2.475476820679265 ], [ 36.631291879483165, -2.462964613679223 ], [ 36.613103402483198, -2.452771742679264 ], [ 36.541142953483181, -2.411756117679264 ], [ 36.536687386483202, -2.407849867679264 ], [ 36.527898324483196, -2.404248793679248 ], [ 36.490300668483194, -2.382642347679226 ], [ 36.469304574483196, -2.370740492679264 ], [ 36.463689339483203, -2.367749769679225 ], [ 36.443730843483188, -2.356275160679221 ], [ 36.436345589483203, -2.352429945679265 ], [ 36.421514046483189, -2.344129164679263 ], [ 36.367925179483159, -2.313733656679236 ], [ 36.210332406483182, -2.224866468679242 ], [ 36.183293832483166, -2.210156996679249 ], [ 36.17914344148317, -2.207044203679235 ], [ 36.171514046483189, -2.20356519967925 ], [ 36.158940804483159, -2.196546156679236 ], [ 36.145696175483174, -2.18903883267922 ], [ 36.132329476483157, -2.181165297679232 ], [ 36.119512093483188, -2.174146254679275 ], [ 36.055303109483184, -2.137769300679228 ], [ 36.052922738483169, -2.135266859679238 ], [ 36.042729867483153, -2.130567152679252 ], [ 36.031316293483194, -2.124280531679236 ], [ 36.010503304483159, -2.112439711679262 ], [ 36.000920785483167, -2.105481703679235 ], [ 36.000737679483159, -2.094556410679221 ], [ 36.001531136483202, -2.084241468679242 ], [ 36.027287972483172, -2.084546644679225 ], [ 36.027287972483172, -2.063855726679268 ], [ 36.027532113483169, -2.050855238679223 ], [ 36.026921761483202, -2.043164808679254 ], [ 36.023137582483166, -2.041272718679242 ], [ 36.022099984483184, -2.037976820679265 ], [ 36.023137582483166, -2.035230238679223 ], [ 36.022099984483184, -2.032178480679253 ], [ 36.023686898483156, -2.02888258267922 ], [ 36.024907601483157, -2.024854261679256 ], [ 36.027715218483188, -2.025464613679223 ], [ 36.028325570483155, -2.021375257679271 ], [ 36.028508675483174, -2.01716383267922 ], [ 36.03070594148317, -2.014356214679257 ], [ 36.034490121483195, -2.01075514067924 ], [ 36.036687386483202, -2.006665785679221 ], [ 36.033330453483181, -2.002881605679253 ], [ 36.036321175483174, -2.000257093679241 ], [ 36.036321175483174, -1.994580824679249 ], [ 36.037908089483203, -1.984754164679262 ], [ 36.038701546483189, -1.980542738679221 ], [ 36.040105355483199, -1.97767408667926 ], [ 36.037908089483203, -1.972974379679274 ], [ 36.0413260584832, -1.960462172679231 ], [ 36.03992225048318, -1.954175550679227 ], [ 36.037908089483203, -1.949781019679224 ], [ 36.040715707483166, -1.946546156679235 ], [ 36.042119515483186, -1.942884047679231 ], [ 36.042912972483172, -1.938672621679248 ], [ 36.0413260584832, -1.933362562679238 ], [ 36.039311898483156, -1.930432875679233 ], [ 36.036687386483202, -1.928479750679233 ], [ 36.037541879483165, -1.924329359679237 ], [ 36.037297738483169, -1.919263441679223 ], [ 36.034307015483186, -1.919629652679251 ], [ 36.032903207483166, -1.915662367679263 ], [ 36.041509164483152, -1.912366468679241 ], [ 36.043523324483196, -1.907849867679263 ], [ 36.03992225048318, -1.907178480679252 ], [ 36.032292855483199, -1.902844984679237 ], [ 36.031743539483152, -1.899182875679233 ], [ 36.028508675483174, -1.894544203679234 ], [ 36.027715218483188, -1.890637953679234 ], [ 36.030339730483199, -1.88856275767927 ], [ 36.034734261483202, -1.890576918679247 ], [ 36.037297738483169, -1.887036879679274 ], [ 36.03711463248316, -1.882947523679266 ], [ 36.038091195483155, -1.879346449679249 ], [ 36.041509164483152, -1.878858168679247 ], [ 36.044499886483202, -1.880261976679267 ], [ 36.047307504483165, -1.877881605679252 ], [ 36.050115121483195, -1.874036390679239 ], [ 36.050908578483181, -1.870374281679235 ], [ 36.048894418483194, -1.865857679679268 ], [ 36.0491385584832, -1.86213453567922 ], [ 36.050298226483157, -1.858838636679254 ], [ 36.049932015483186, -1.855237562679238 ], [ 36.048345101483157, -1.850049574679249 ], [ 36.048345101483157, -1.845349867679263 ], [ 36.0491385584832, -1.842176039679262 ], [ 36.04633094148317, -1.840283949679249 ], [ 36.043889535483167, -1.83778150767927 ], [ 36.042119515483186, -1.834973890679239 ], [ 36.043340218483188, -1.831433851679267 ], [ 36.03992225048318, -1.827649672679231 ], [ 36.039739144483171, -1.824170668679247 ], [ 36.037724984483184, -1.821668226679267 ], [ 36.034307015483186, -1.823743422679231 ], [ 36.029912484483184, -1.824536879679274 ], [ 36.029912484483184, -1.820447523679266 ], [ 36.029119027483198, -1.814771254679274 ], [ 36.027104867483153, -1.809644300679227 ], [ 36.023931039483152, -1.80744703567922 ], [ 36.020513070483155, -1.807569105679252 ], [ 36.017339242483153, -1.80653150767927 ], [ 36.018315804483159, -1.801953871679248 ], [ 36.025517953483181, -1.79676588267927 ], [ 36.023503793483194, -1.793531019679224 ], [ 36.025945199483196, -1.791150648679266 ], [ 36.028142464483203, -1.78596266067922 ], [ 36.029119027483198, -1.781751234679237 ], [ 36.026738656483182, -1.780164320679264 ], [ 36.023686898483156, -1.779248793679247 ], [ 36.021306527483198, -1.777173597679225 ], [ 36.024724496483195, -1.774732191679223 ], [ 36.029729379483165, -1.769849379679274 ], [ 36.031499398483156, -1.767652113679221 ], [ 36.03210975048318, -1.76283033667926 ], [ 36.036321175483174, -1.761365492679263 ], [ 36.034917367483153, -1.757764418679247 ], [ 36.033330453483181, -1.754651625679233 ], [ 36.035893929483159, -1.749768812679238 ], [ 36.035710824483196, -1.745679457679219 ], [ 36.036931527483198, -1.74207838267927 ], [ 36.039739144483171, -1.74104078567922 ], [ 36.041936410483167, -1.737561781679235 ], [ 36.042729867483153, -1.733350355679252 ], [ 36.043706429483159, -1.730664808679253 ], [ 36.04633094148317, -1.732862074679249 ], [ 36.049321664483152, -1.731336195679264 ], [ 36.049504769483171, -1.728467543679247 ], [ 36.048528207483166, -1.725659925679227 ], [ 36.048345101483157, -1.722058851679267 ], [ 36.04773475048318, -1.719251234679237 ], [ 36.044744027483198, -1.715833265679239 ], [ 36.043889535483167, -1.710950453679234 ], [ 36.046086800483174, -1.708936293679247 ], [ 36.047917855483199, -1.705274183679253 ], [ 36.050908578483181, -1.705274183679253 ], [ 36.053716195483155, -1.707349379679274 ], [ 36.056523812483185, -1.708753187679238 ], [ 36.058293832483166, -1.705762464679256 ], [ 36.059087289483152, -1.702344496679248 ], [ 36.062322152483198, -1.699353773679266 ], [ 36.065495980483199, -1.697583754679274 ], [ 36.064702523483156, -1.694531996679248 ], [ 36.063298714483203, -1.690442640679239 ], [ 36.060124886483202, -1.687879164679262 ], [ 36.058110726483157, -1.685681898679266 ], [ 36.058293832483166, -1.681775648679266 ], [ 36.055913461483151, -1.678174574679249 ], [ 36.058721078483181, -1.675183851679267 ], [ 36.058293832483166, -1.670972425679227 ], [ 36.05609656648317, -1.668958265679239 ], [ 36.054326546483189, -1.666333754679274 ], [ 36.052495492483153, -1.658643324679249 ], [ 36.050115121483195, -1.654553968679241 ], [ 36.048345101483157, -1.650647718679241 ], [ 36.050298226483157, -1.647962172679231 ], [ 36.053105843483188, -1.646741468679241 ], [ 36.053288949483196, -1.643262464679256 ], [ 36.050908578483181, -1.63978346167926 ], [ 36.051946175483174, -1.636975843679241 ], [ 36.05469275748316, -1.63557203567922 ], [ 36.057134164483152, -1.63166578567922 ], [ 36.059087289483152, -1.625073988679221 ], [ 36.059087289483152, -1.621533949679249 ], [ 36.054326546483189, -1.618848402679251 ], [ 36.057317269483171, -1.617871839679256 ], [ 36.060918343483188, -1.617871839679256 ], [ 36.063725961483151, -1.616834242679263 ], [ 36.065495980483199, -1.614331800679227 ], [ 36.06390906648317, -1.610059339679256 ], [ 36.066899789483152, -1.60926588267927 ], [ 36.068913949483196, -1.605847914679262 ], [ 36.070500863483169, -1.599378187679238 ], [ 36.07172156648317, -1.596570570679264 ], [ 36.073308480483199, -1.593946058679253 ], [ 36.076543343483188, -1.592664320679264 ], [ 36.079717171483189, -1.593762953679234 ], [ 36.08093787548318, -1.58387525767927 ], [ 36.083745492483153, -1.581677992679263 ], [ 36.085698617483153, -1.577466566679223 ], [ 36.086736214483203, -1.574170668679247 ], [ 36.085698617483153, -1.570752699679249 ], [ 36.085515511483202, -1.561963636679254 ], [ 36.083745492483153, -1.558240492679263 ], [ 36.081304086483151, -1.554639418679247 ], [ 36.079289925483174, -1.550550062679238 ], [ 36.076543343483188, -1.546155531679235 ], [ 36.074712289483152, -1.542676527679251 ], [ 36.072942269483171, -1.536573011679254 ], [ 36.069890511483202, -1.527844984679237 ], [ 36.067327035483167, -1.52137525767927 ], [ 36.065740121483195, -1.516065199679249 ], [ 36.064092171483189, -1.512464125679233 ], [ 36.062322152483198, -1.509473402679251 ], [ 36.061101449483196, -1.505567152679251 ], [ 36.060491097483172, -1.501660902679251 ], [ 36.058721078483181, -1.498242933679253 ], [ 36.04968787548318, -1.492383558679253 ], [ 36.053105843483188, -1.489148695679264 ], [ 36.057317269483171, -1.484448988679221 ], [ 36.118535531483182, -1.420178968679241 ], [ 36.122930062483185, -1.415235121679248 ], [ 36.132939828483181, -1.404981214679256 ], [ 36.136907113483169, -1.400464613679221 ], [ 36.142095101483157, -1.395032484679237 ], [ 36.144292367483153, -1.392957289679262 ], [ 36.155095589483203, -1.381360609679237 ], [ 36.162908089483203, -1.373242933679253 ], [ 36.165715707483166, -1.370557386679254 ], [ 36.189092171483189, -1.345532972679225 ], [ 36.196111214483203, -1.338452894679224 ], [ 36.199346078483181, -1.334851820679264 ], [ 36.218328011483202, -1.315137464679256 ], [ 36.2249198084832, -1.308057386679254 ], [ 36.229314339483203, -1.304456312679238 ], [ 36.232305062483185, -1.300366957679219 ], [ 36.248113168483194, -1.283643324679249 ], [ 36.262334359483184, -1.267835218679241 ], [ 36.26953650748316, -1.260266859679237 ], [ 36.291142953483181, -1.236646254679274 ], [ 36.336308968483188, -1.187940199679249 ], [ 36.338506234483184, -1.186170179679268 ], [ 36.343694222483172, -1.179944593679241 ], [ 36.348088754483165, -1.175366957679219 ], [ 36.347539437483185, -1.164563734679237 ], [ 36.346318734483184, -1.151136000679233 ], [ 36.345098031483182, -1.139173109679237 ], [ 36.344304574483196, -1.133069593679241 ], [ 36.344121468483188, -1.128858168679247 ], [ 36.342900765483186, -1.115552504679274 ], [ 36.341496957483166, -1.103040297679231 ], [ 36.337712777483198, -1.063062269679224 ], [ 36.337102425483174, -1.055066664679262 ], [ 36.336308968483188, -1.04768141067922 ], [ 36.355290902483198, -1.056165297679231 ], [ 36.425115121483195, -1.088941175679227 ], [ 36.439336312483185, -1.095349867679263 ], [ 36.452519906483182, -1.100965101679267 ], [ 36.467290414483152, -1.108167250679233 ], [ 36.493901742483153, -1.121533949679249 ], [ 36.506536019483171, -1.13075025767927 ], [ 36.523320687483185, -1.143933851679267 ], [ 36.533330453483181, -1.151563246679248 ], [ 36.53711463248316, -1.154859144679224 ], [ 36.535527718483188, -1.163831312679238 ], [ 36.527104867483153, -1.194043714679256 ], [ 36.522527230483199, -1.209180433679253 ], [ 36.513310921483189, -1.241956312679238 ], [ 36.503118050483174, -1.255872328679234 ], [ 36.492314828483181, -1.269483168679247 ], [ 36.5003104334832, -1.272229750679233 ], [ 36.52094031648317, -1.276074964679256 ], [ 36.564336312483185, -1.284741957679219 ], [ 36.573918832483166, -1.286450941679223 ], [ 36.58594275748316, -1.28895338267927 ], [ 36.605718148483156, -1.292676527679251 ], [ 36.609746468483188, -1.294263441679223 ], [ 36.623113168483194, -1.29603346167926 ], [ 36.649114144483171, -1.300855238679221 ], [ 36.660893929483159, -1.303479750679233 ], [ 36.662908089483203, -1.305554945679264 ], [ 36.663945687483185, -1.31043775767927 ], [ 36.6663260584832, -1.314160902679251 ], [ 36.664128793483194, -1.319654066679223 ], [ 36.673528207483166, -1.324353773679266 ], [ 36.669744027483198, -1.32606275767927 ] ] ] } } +, +{ "type": "Feature", "id": 33, "properties": { "OBJECTID": 34, "ID_": 6213, "COUNTY_NAM": "MAKUENI", "CONST_CODE": 87, "CONSTITUEN": "KIBWEZI WEST", "COUNTY_COD": 17, "Shape_Leng": 5.74677892114, "Shape_Area": 0.66459009423 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.487309945483155, -1.517957289679262 ], [ 37.49109412548318, -1.519971449679249 ], [ 37.49414588248316, -1.522046644679224 ], [ 37.498113168483194, -1.525647718679241 ], [ 37.501531136483202, -1.526868422679231 ], [ 37.505132211483151, -1.529431898679266 ], [ 37.509343636483202, -1.529431898679266 ], [ 37.514897836483151, -1.527783949679249 ], [ 37.518315804483159, -1.530042250679233 ], [ 37.518926156483182, -1.533582289679262 ], [ 37.521306527483198, -1.535474379679274 ], [ 37.521123421483189, -1.538648207679219 ], [ 37.523503793483194, -1.54017408667926 ], [ 37.527104867483153, -1.539746839679256 ], [ 37.531316293483194, -1.540540297679231 ], [ 37.534734261483202, -1.542066175679227 ], [ 37.538335336483151, -1.542554457679219 ], [ 37.543706429483159, -1.542737562679238 ], [ 37.545720589483203, -1.540357191679223 ], [ 37.548528207483166, -1.539136488679221 ], [ 37.551946175483174, -1.54017408667926 ], [ 37.554936898483156, -1.543836195679264 ], [ 37.551335824483196, -1.547254164679262 ], [ 37.552312386483202, -1.550855238679221 ], [ 37.559514535483167, -1.552564222679225 ], [ 37.562932504483165, -1.553662855679252 ], [ 37.561528695483155, -1.556470472679225 ], [ 37.557927621483195, -1.557141859679237 ], [ 37.556706918483194, -1.560254652679251 ], [ 37.560307992483153, -1.560254652679251 ], [ 37.564336312483185, -1.561780531679235 ], [ 37.569097054483159, -1.560071547679231 ], [ 37.572515023483156, -1.560132582679219 ], [ 37.576543343483188, -1.560742933679253 ], [ 37.575322640483186, -1.567151625679233 ], [ 37.579289925483174, -1.569348890679239 ], [ 37.580693734483184, -1.566480238679221 ], [ 37.582707894483171, -1.563977797679231 ], [ 37.585332406483182, -1.561963636679254 ], [ 37.58929969148317, -1.560559828679234 ], [ 37.593328011483202, -1.558240492679263 ], [ 37.595525277483198, -1.556043226679267 ], [ 37.598332894483171, -1.554334242679263 ], [ 37.599126351483157, -1.557630140679239 ], [ 37.600713265483186, -1.561841566679223 ], [ 37.60352088248316, -1.563855726679267 ], [ 37.6077323084832, -1.56434400767927 ], [ 37.609929574483196, -1.568067152679251 ], [ 37.614934457483166, -1.566663343679241 ], [ 37.619328988483169, -1.56916578567922 ], [ 37.620122445483155, -1.572644789679262 ], [ 37.620305550483174, -1.57606275767927 ], [ 37.622319711483151, -1.580030043679247 ], [ 37.624089730483199, -1.582959730679252 ], [ 37.629704964483203, -1.589429457679219 ], [ 37.632512582483166, -1.591748793679247 ], [ 37.635503304483159, -1.591870863679221 ], [ 37.638310921483189, -1.59065016067922 ], [ 37.641301644483171, -1.589063246679248 ], [ 37.641301644483171, -1.592542250679233 ], [ 37.643498910483167, -1.594678480679252 ], [ 37.6428885584832, -1.597669203679234 ], [ 37.643498910483167, -1.600537855679252 ], [ 37.643743050483174, -1.603467543679247 ], [ 37.643498910483167, -1.606946547679231 ], [ 37.643743050483174, -1.611035902679251 ], [ 37.645085824483196, -1.615979750679233 ], [ 37.647099984483184, -1.620862562679238 ], [ 37.650334847483172, -1.625073988679221 ], [ 37.650090707483166, -1.629834730679252 ], [ 37.652104867483153, -1.63197096167926 ], [ 37.655889046483189, -1.633252699679249 ], [ 37.65710975048318, -1.63856275767927 ], [ 37.659490121483195, -1.643140394679224 ], [ 37.66211463248316, -1.646680433679253 ], [ 37.665898812483185, -1.645764906679235 ], [ 37.668523324483196, -1.643933851679267 ], [ 37.671086800483174, -1.63978346167926 ], [ 37.672917856483188, -1.635449964679256 ], [ 37.675542367483153, -1.632642347679225 ], [ 37.678105843483188, -1.631238539679262 ], [ 37.680913461483151, -1.629163343679241 ], [ 37.683110726483157, -1.625562269679224 ], [ 37.684087289483152, -1.622449476679267 ], [ 37.687139046483189, -1.621350843679241 ], [ 37.68890906648317, -1.618970472679225 ], [ 37.688298714483203, -1.61604078567922 ], [ 37.687688363483169, -1.611280043679247 ], [ 37.68890906648317, -1.60627516067922 ], [ 37.690495980483199, -1.602429945679264 ], [ 37.689885629483165, -1.599378187679238 ], [ 37.688725961483151, -1.596753675679227 ], [ 37.686345589483203, -1.592542250679233 ], [ 37.685491097483172, -1.587964613679221 ], [ 37.689702523483156, -1.589551527679251 ], [ 37.695500863483169, -1.588330824679249 ], [ 37.698918832483166, -1.587842543679247 ], [ 37.701543343483188, -1.586438734679237 ], [ 37.703740609483184, -1.588880140679239 ], [ 37.706914437483185, -1.596875746679248 ], [ 37.709111703483181, -1.600232679679268 ], [ 37.713323129483165, -1.607373793679247 ], [ 37.717900765483186, -1.610059339679256 ], [ 37.72211219148317, -1.609448988679221 ], [ 37.725102914483152, -1.606763441679223 ], [ 37.729497445483155, -1.604566175679227 ], [ 37.728887093483188, -1.599378187679238 ], [ 37.731145394483171, -1.59754713267927 ], [ 37.734319222483172, -1.596265394679224 ], [ 37.735906136483202, -1.592664320679264 ], [ 37.736699593483188, -1.587842543679247 ], [ 37.733525765483186, -1.583753187679238 ], [ 37.735539925483174, -1.581372816679223 ], [ 37.737126839483203, -1.577466566679223 ], [ 37.74414588248316, -1.572949964679256 ], [ 37.747319711483151, -1.571240980679252 ], [ 37.750737679483159, -1.570752699679249 ], [ 37.75391150748316, -1.56916578567922 ], [ 37.757329476483157, -1.571179945679264 ], [ 37.758916390483186, -1.574048597679225 ], [ 37.760320199483196, -1.577344496679248 ], [ 37.762090218483188, -1.579846937679238 ], [ 37.764104379483165, -1.581983168679247 ], [ 37.766728890483186, -1.58387525767927 ], [ 37.773320687483185, -1.586865980679252 ], [ 37.775334847483172, -1.592053968679241 ], [ 37.776738656483182, -1.59486158667926 ], [ 37.777715218483188, -1.59846266067922 ], [ 37.779912484483184, -1.602246839679256 ], [ 37.783330453483181, -1.606641371679248 ], [ 37.785344613483169, -1.613965589679256 ], [ 37.788091195483155, -1.615857679679268 ], [ 37.78992225048318, -1.619580824679249 ], [ 37.792912972483172, -1.623731214679256 ], [ 37.793340218483188, -1.628736097679225 ], [ 37.797124398483156, -1.630567152679251 ], [ 37.79968787548318, -1.634961683679253 ], [ 37.801946175483174, -1.638074476679267 ], [ 37.802922738483169, -1.640882093679241 ], [ 37.80414344148317, -1.643567640679239 ], [ 37.80414344148317, -1.646558363679221 ], [ 37.803288949483196, -1.650037367679263 ], [ 37.806523812483185, -1.651441175679227 ], [ 37.805486214483203, -1.654676039679262 ], [ 37.807927621483195, -1.65614088267927 ], [ 37.810124886483202, -1.658155043679247 ], [ 37.811101449483196, -1.661145765679239 ], [ 37.814336312483185, -1.663281996679248 ], [ 37.818486703483181, -1.665540297679231 ], [ 37.82172156648317, -1.667737562679238 ], [ 37.82312537548318, -1.672071058679253 ], [ 37.820745004483165, -1.67884596167926 ], [ 37.821904671483189, -1.683179457679219 ], [ 37.825688851483157, -1.684644300679227 ], [ 37.83093787548318, -1.684949476679267 ], [ 37.8323416834832, -1.689282972679225 ], [ 37.834722054483159, -1.691846449679249 ], [ 37.83789588248316, -1.692945082679219 ], [ 37.83734656648317, -1.697583754679274 ], [ 37.838506234483184, -1.701367933679253 ], [ 37.83594275748316, -1.711072523679266 ], [ 37.839910043483194, -1.712537367679263 ], [ 37.845342171483189, -1.713941175679227 ], [ 37.846318734483184, -1.718030531679235 ], [ 37.845891488483169, -1.722364027679251 ], [ 37.846318734483184, -1.726331312679238 ], [ 37.8499198084832, -1.729871351679267 ], [ 37.851323617483153, -1.732556898679266 ], [ 37.851506722483172, -1.736463148679266 ], [ 37.85352088248316, -1.741162855679252 ], [ 37.853887093483188, -1.744763929679268 ], [ 37.85492469148317, -1.747754652679251 ], [ 37.854741586483151, -1.751538832679219 ], [ 37.856145394483171, -1.755872328679234 ], [ 37.85492469148317, -1.759839613679221 ], [ 37.854741586483151, -1.764234144679224 ], [ 37.853093636483202, -1.768140394679224 ], [ 37.850286019483171, -1.770948011679254 ], [ 37.846929086483151, -1.769177992679263 ], [ 37.843144906483182, -1.769544203679234 ], [ 37.840337289483152, -1.774365980679252 ], [ 37.840886605483199, -1.778943617679263 ], [ 37.838689339483203, -1.781934339679256 ], [ 37.841924203483181, -1.784741957679219 ], [ 37.843511117483153, -1.788281996679248 ], [ 37.844914925483174, -1.792066175679227 ], [ 37.849126351483157, -1.79993971167926 ], [ 37.851933968483188, -1.801953871679248 ], [ 37.854497445483155, -1.804456312679238 ], [ 37.856511605483199, -1.806775648679266 ], [ 37.858525765483186, -1.809949476679267 ], [ 37.869328988483169, -1.819654066679223 ], [ 37.871526254483165, -1.823133070679264 ], [ 37.874700082483166, -1.826245863679221 ], [ 37.879521859483184, -1.831739027679251 ], [ 37.882512582483166, -1.834546644679224 ], [ 37.887334359483184, -1.835584242679263 ], [ 37.8909354334832, -1.838147718679241 ], [ 37.893743050483174, -1.842359144679224 ], [ 37.891545785483167, -1.845166761679254 ], [ 37.888310921483189, -1.846265394679224 ], [ 37.886907113483169, -1.849439222679225 ], [ 37.885686410483167, -1.852979261679254 ], [ 37.887090218483188, -1.856763441679223 ], [ 37.889714730483199, -1.861157972679225 ], [ 37.893743050483174, -1.861035902679251 ], [ 37.900334847483172, -1.863477308679253 ], [ 37.901738656483182, -1.866956312679238 ], [ 37.899907601483157, -1.870740492679263 ], [ 37.901494515483186, -1.874646742679263 ], [ 37.902715218483188, -1.878736097679225 ], [ 37.903508675483174, -1.883069593679241 ], [ 37.907903207483166, -1.896253187679238 ], [ 37.906499398483156, -1.903333265679239 ], [ 37.909490121483195, -1.905835707679219 ], [ 37.914128793483194, -1.904553968679241 ], [ 37.919133675483174, -1.906079847679225 ], [ 37.918706429483159, -1.91126783667926 ], [ 37.915105355483199, -1.914563734679237 ], [ 37.913701546483189, -1.918531019679224 ], [ 37.91211463248316, -1.92176588267927 ], [ 37.911687386483202, -1.92493971167926 ], [ 37.912724984483184, -1.927930433679253 ], [ 37.911321175483174, -1.931775648679266 ], [ 37.910710824483196, -1.936475355679252 ], [ 37.913335336483151, -1.939954359679237 ], [ 37.915532601483157, -1.943372328679234 ], [ 37.916509164483152, -1.947461683679253 ], [ 37.917119515483186, -1.951367933679253 ], [ 37.915105355483199, -1.955945570679264 ], [ 37.918340218483188, -1.965467054679268 ], [ 37.921941293483194, -1.975354750679233 ], [ 37.923894418483194, -1.981946547679231 ], [ 37.925725472483172, -1.986829359679237 ], [ 37.92773963248316, -1.99104078567922 ], [ 37.930303109483184, -1.99403150767927 ], [ 37.930303109483184, -1.998670179679268 ], [ 37.934087289483152, -2.001782972679226 ], [ 37.938115609483184, -2.004773695679265 ], [ 37.937322152483198, -2.008130629679275 ], [ 37.935491097483172, -2.010449964679257 ], [ 37.939336312483185, -2.011731703679235 ], [ 37.9417166834832, -2.013745863679223 ], [ 37.941106332483166, -2.016980726679268 ], [ 37.939885629483165, -2.019849379679275 ], [ 37.9417166834832, -2.022840101679268 ], [ 37.944524300483174, -2.025464613679223 ], [ 37.942143929483159, -2.032849867679264 ], [ 37.940923226483157, -2.03614576567924 ], [ 37.946111214483203, -2.039380629679275 ], [ 37.951116097483172, -2.038953382679271 ], [ 37.952886117483153, -2.043164808679254 ], [ 37.954289925483174, -2.048047621679249 ], [ 37.956120980483199, -2.051282484679238 ], [ 37.955510629483165, -2.054883558679254 ], [ 37.955144418483194, -2.058972914679263 ], [ 37.957097543483194, -2.063672621679249 ], [ 37.959722055483205, -2.067761980679226 ], [ 37.960698617483153, -2.072766859679238 ], [ 37.96094275748316, -2.07716139067924 ], [ 37.960515511483202, -2.082959730679253 ], [ 37.958745492483153, -2.096265394679225 ], [ 37.958928597483172, -2.099256117679264 ], [ 37.959905160483167, -2.102063734679238 ], [ 37.9592948084832, -2.105664808679254 ], [ 37.957524789483152, -2.11036451567924 ], [ 37.95789100048318, -2.114453871679249 ], [ 37.956120980483199, -2.12067945767922 ], [ 37.955510629483165, -2.124158461679262 ], [ 37.955327523483156, -2.128064711679262 ], [ 37.954717171483189, -2.131665785679221 ], [ 37.95453406648317, -2.134839613679223 ], [ 37.956731332483166, -2.13825758267922 ], [ 37.960698617483153, -2.142346937679239 ], [ 37.96429969148317, -2.148572523679267 ], [ 37.964543832483166, -2.153577406679236 ], [ 37.965337289483152, -2.157056410679221 ], [ 37.96570350048318, -2.160047132679271 ], [ 37.965337289483152, -2.163831312679239 ], [ 37.965886605483199, -2.167859632679271 ], [ 37.969731820483155, -2.169446547679232 ], [ 37.973332894483171, -2.167066175679228 ], [ 37.977727425483174, -2.164868910679221 ], [ 37.9827323084832, -2.163770277679252 ], [ 37.98773719148317, -2.160962660679221 ], [ 37.991704476483157, -2.159375746679249 ], [ 37.997685921483189, -2.157483656679236 ], [ 38.010503304483159, -2.153943617679264 ], [ 38.013494027483198, -2.15278394967925 ], [ 38.019719613483169, -2.149365980679253 ], [ 38.022527230483199, -2.14997633267922 ], [ 38.023686898483156, -2.152661879679275 ], [ 38.0257010584832, -2.160230238679223 ], [ 38.029546273483156, -2.164563734679238 ], [ 38.038701546483189, -2.169080336679262 ], [ 38.044133675483174, -2.168836195679265 ], [ 38.048894418483194, -2.170972425679228 ], [ 38.0510916834832, -2.175244886679256 ], [ 38.050298226483157, -2.178662855679253 ], [ 38.0491385584832, -2.181958754679275 ], [ 38.051946175483174, -2.186231214679257 ], [ 38.05469275748316, -2.188245375679234 ], [ 38.055486214483203, -2.191175062679239 ], [ 38.055913461483208, -2.195081312679239 ], [ 38.056523812483185, -2.198072035679221 ], [ 38.057927621483195, -2.201428968679242 ], [ 38.0589041834832, -2.204541761679256 ], [ 38.060307992483153, -2.207959730679253 ], [ 38.062322152483198, -2.21137769967925 ], [ 38.066106332483166, -2.214063246679249 ], [ 38.070500863483169, -2.216565687679239 ], [ 38.068120492483153, -2.219251234679238 ], [ 38.064885629483165, -2.221265394679225 ], [ 38.064885629483165, -2.224744398679267 ], [ 38.068913949483196, -2.226453382679271 ], [ 38.070134652483198, -2.229383070679265 ], [ 38.070928109483184, -2.232678968679242 ], [ 38.072331918483194, -2.240979750679234 ], [ 38.072698129483165, -2.24458082467925 ], [ 38.072698129483165, -2.251233656679236 ], [ 38.073918832483166, -2.254468519679225 ], [ 38.076726449483196, -2.258435804679269 ], [ 38.076726449483196, -2.263562757679271 ], [ 38.080510629483165, -2.26325758267922 ], [ 38.0842948084832, -2.264478285679221 ], [ 38.086308968483188, -2.268140394679225 ], [ 38.087529671483189, -2.273267347679226 ], [ 38.089726937483185, -2.275464613679223 ], [ 38.092717660483167, -2.275952894679225 ], [ 38.095891488483169, -2.275342543679248 ], [ 38.098943246483195, -2.276258070679265 ], [ 38.0999198084832, -2.280347425679228 ], [ 38.102117074483196, -2.283948500679234 ], [ 38.105290902483198, -2.285962660679221 ], [ 38.108891976483157, -2.286939222679226 ], [ 38.112126839483203, -2.289868910679221 ], [ 38.111089242483153, -2.293836195679265 ], [ 38.111516488483169, -2.297742445679265 ], [ 38.110112679483159, -2.302075941679224 ], [ 38.11273719148317, -2.304151136679256 ], [ 38.115727914483152, -2.305066664679263 ], [ 38.116887582483166, -2.308362562679239 ], [ 38.116887582483166, -2.31153639067924 ], [ 38.117131722483172, -2.314954359679238 ], [ 38.120122445483155, -2.318250257679271 ], [ 38.124089730483199, -2.320935804679269 ], [ 38.127690804483159, -2.324170668679248 ], [ 38.131536019483171, -2.323865492679264 ], [ 38.134892953483181, -2.323865492679264 ], [ 38.138921273483156, -2.322766859679238 ], [ 38.145329964483203, -2.323072035679221 ], [ 38.148931039483152, -2.324231703679235 ], [ 38.151494515483186, -2.328137953679235 ], [ 38.153935921483189, -2.330640394679225 ], [ 38.156926644483171, -2.331372816679224 ], [ 38.164495004483165, -2.335767347679226 ], [ 38.168096078483181, -2.336865980679253 ], [ 38.171941293483194, -2.338574964679257 ], [ 38.1760916834832, -2.340650160679221 ], [ 38.184087289483152, -2.34028394967925 ], [ 38.187139046483189, -2.34138258267922 ], [ 38.190129769483171, -2.34333570767922 ], [ 38.192327035483167, -2.346631605679253 ], [ 38.194524300483174, -2.348828871679249 ], [ 38.196904671483189, -2.352063734679238 ], [ 38.198735726483157, -2.355542738679223 ], [ 38.205693737483152, -2.35645826567924 ], [ 38.21094275748316, -2.357678968679242 ], [ 38.212529671483189, -2.361280043679248 ], [ 38.213140023483156, -2.364636976679268 ], [ 38.216741097483172, -2.376844007679271 ], [ 38.217717661483157, -2.38075025967925 ], [ 38.219121468483188, -2.384046156679236 ], [ 38.219487679483159, -2.388074476679268 ], [ 38.222539437483185, -2.399854261679256 ], [ 38.225286019483171, -2.402478773679267 ], [ 38.230290902483198, -2.403272230679253 ], [ 38.233525765483186, -2.405652601679268 ], [ 38.235906136483202, -2.410352308679254 ], [ 38.239507211483208, -2.412183363679223 ], [ 38.243901742483153, -2.413831312679239 ], [ 38.250920785483167, -2.42146070767922 ], [ 38.254338754483165, -2.423169691679224 ], [ 38.2581229334832, -2.422742445679265 ], [ 38.26172400748316, -2.42286451567924 ], [ 38.264104379483165, -2.424329359679238 ], [ 38.27094031648317, -2.424573500679234 ], [ 38.273931039483152, -2.425855238679223 ], [ 38.275517953483181, -2.428662855679253 ], [ 38.278508675483174, -2.44044264067924 ], [ 38.279729379483165, -2.443555433679254 ], [ 38.280522836483208, -2.447766859679238 ], [ 38.281743539483152, -2.451428968679242 ], [ 38.2835135584832, -2.454969007679271 ], [ 38.283940804483159, -2.45942457467925 ], [ 38.284917367483153, -2.46333082467925 ], [ 38.285527718483188, -2.466870863679223 ], [ 38.285893929483159, -2.470166761679256 ], [ 38.28711463248316, -2.473950941679224 ], [ 38.288091195483155, -2.478162367679264 ], [ 38.28851844148317, -2.483045179679269 ], [ 38.28992225048318, -2.486463148679267 ], [ 38.294316781483182, -2.488050062679239 ], [ 38.297917855483199, -2.490552504679275 ], [ 38.2991385584832, -2.494824964679257 ], [ 38.300908578483181, -2.498548109679238 ], [ 38.30414344148317, -2.501172621679249 ], [ 38.311345589483203, -2.503552992679264 ], [ 38.313725961483208, -2.506665785679221 ], [ 38.313115609483184, -2.509778578679235 ], [ 38.312932504483165, -2.513135511679256 ], [ 38.314885629483165, -2.515760023679267 ], [ 38.317327035483167, -2.517652113679223 ], [ 38.318303597483172, -2.520642836679262 ], [ 38.318120492483153, -2.52497633267922 ], [ 38.321904671483189, -2.531629164679263 ], [ 38.321294320483155, -2.534864027679252 ], [ 38.32031775748316, -2.538281996679249 ], [ 38.322515023483156, -2.542066175679228 ], [ 38.323735726483157, -2.546155531679236 ], [ 38.322942269483171, -2.549329359679238 ], [ 38.325505746483195, -2.551465589679257 ], [ 38.32953406648317, -2.552136976679268 ], [ 38.3323416834832, -2.552869398679267 ], [ 38.33594275748316, -2.555554945679265 ], [ 38.338506234483184, -2.558667738679223 ], [ 38.335698617483153, -2.562451918679248 ], [ 38.332707894483171, -2.56403883267922 ], [ 38.333501351483157, -2.567761976679268 ], [ 38.335515511483202, -2.571363050679228 ], [ 38.336125863483169, -2.574842054679269 ], [ 38.338933480483199, -2.584180433679254 ], [ 38.34070350048318, -2.588574964679257 ], [ 38.345525277483198, -2.590039808679254 ], [ 38.348332894483171, -2.593579847679226 ], [ 38.348943246483195, -2.59724195767922 ], [ 38.3499198084832, -2.600965101679268 ], [ 38.351689828483181, -2.60505445767922 ], [ 38.354131234483184, -2.609326918679248 ], [ 38.355535043483194, -2.613843519679225 ], [ 38.358525765483186, -2.622144300679228 ], [ 38.360112679483159, -2.625867445679265 ], [ 38.361699593483188, -2.630139906679236 ], [ 38.362920296483189, -2.634778578679235 ], [ 38.362920296483189, -2.639173109679238 ], [ 38.365117562483185, -2.642041761679256 ], [ 38.367925179483159, -2.644055922679232 ], [ 38.3674979334832, -2.651563246679249 ], [ 38.369939339483203, -2.654370863679223 ], [ 38.373540414483152, -2.65723951567924 ], [ 38.375737679483159, -2.659558851679268 ], [ 38.378545296483189, -2.661267836679262 ], [ 38.38171912548318, -2.664136488679223 ], [ 38.3831229334832, -2.66755445767922 ], [ 38.382329476483157, -2.670667250679234 ], [ 38.383733285483167, -2.674634535679221 ], [ 38.386113656483182, -2.679151136679256 ], [ 38.387700570483155, -2.683850843679242 ], [ 38.389287484483184, -2.68794019967925 ], [ 38.390691293483194, -2.694776136679256 ], [ 38.394109261483202, -2.702954847679226 ], [ 38.396733773483156, -2.70747144967925 ], [ 38.39789344148317, -2.711438734679238 ], [ 38.400517953483181, -2.717969496679249 ], [ 38.402104867483153, -2.722730238679223 ], [ 38.40710975048318, -2.733167250679234 ], [ 38.409917367483153, -2.737134535679221 ], [ 38.412541879483165, -2.744763929679269 ], [ 38.414128793483194, -2.751844007679271 ], [ 38.415898812483185, -2.754773695679265 ], [ 38.418523324483196, -2.758069593679242 ], [ 38.421514046483189, -2.762830336679262 ], [ 38.42273475048318, -2.766858656679236 ], [ 38.426335824483196, -2.774243910679221 ], [ 38.426946175483174, -2.777967054679269 ], [ 38.428288949483196, -2.782056410679221 ], [ 38.430303109483184, -2.785657484679238 ], [ 38.432317269483171, -2.788770277679252 ], [ 38.432744515483186, -2.792066175679228 ], [ 38.429509652483198, -2.795056898679267 ], [ 38.426335824483196, -2.796155531679236 ], [ 38.423528207483166, -2.79926832467925 ], [ 38.42273475048318, -2.803479750679234 ], [ 38.422490609483184, -2.807569105679253 ], [ 38.419133675483174, -2.813672621679249 ], [ 38.420293343483188, -2.817029554679269 ], [ 38.423528207483166, -2.818372328679235 ], [ 38.4260916834832, -2.819776136679256 ], [ 38.427495492483153, -2.822461683679254 ], [ 38.42773963248316, -2.826428968679242 ], [ 38.42773963248316, -2.830579359679238 ], [ 38.428716195483155, -2.83357008267922 ], [ 38.430486214483203, -2.836743910679221 ], [ 38.431706918483194, -2.840467054679269 ], [ 38.431890023483156, -2.844556410679221 ], [ 38.428899300483174, -2.850659925679228 ], [ 38.430303109483184, -2.854749281679236 ], [ 38.433721078483181, -2.857678968679242 ], [ 38.43750525748316, -2.857984144679225 ], [ 38.439885629483165, -2.859571058679254 ], [ 38.439092171483189, -2.86286695767922 ], [ 38.43890906648317, -2.866162855679253 ], [ 38.441533578483181, -2.868360121679249 ], [ 38.445745004483165, -2.870557386679256 ], [ 38.446294320483155, -2.873975355679253 ], [ 38.44531775748316, -2.876660902679252 ], [ 38.443913949483196, -2.879163343679242 ], [ 38.444890511483202, -2.88184889067924 ], [ 38.448491586483208, -2.88184889067924 ], [ 38.452336800483174, -2.881543714679257 ], [ 38.455327523483156, -2.884473402679252 ], [ 38.454289925483174, -2.888562757679271 ], [ 38.451909554483159, -2.891858656679236 ], [ 38.452519906483182, -2.896253187679239 ], [ 38.45593787548318, -2.897046644679225 ], [ 38.458928597483172, -2.897351820679265 ], [ 38.461736214483203, -2.899060804679269 ], [ 38.461736214483203, -2.902234632679271 ], [ 38.462102425483174, -2.90583570767922 ], [ 38.465093148483156, -2.909375746679249 ], [ 38.467900765483186, -2.913159925679228 ], [ 38.469731820483155, -2.918164808679254 ], [ 38.474736703483181, -2.928052504679275 ], [ 38.475530160483167, -2.931653578679235 ], [ 38.475713265483186, -2.935559828679235 ], [ 38.477117074483196, -2.938855726679268 ], [ 38.47992469148317, -2.939466078679235 ], [ 38.482915414483152, -2.938977797679232 ], [ 38.486089242483153, -2.938245375679234 ], [ 38.488530648483156, -2.939832289679263 ], [ 38.48914100048318, -2.942884047679232 ], [ 38.489324105483199, -2.946179945679265 ], [ 38.492925179483159, -2.950635511679256 ], [ 38.493718636483202, -2.954236586679262 ], [ 38.492742074483196, -2.95747144967925 ], [ 38.499333871483195, -2.958875257679271 ], [ 38.504094613483169, -2.96583326567924 ], [ 38.507695687483185, -2.967359144679225 ], [ 38.511540902483198, -2.968274672679232 ], [ 38.513494027483198, -2.970532972679226 ], [ 38.515508187483185, -2.974256117679264 ], [ 38.518743050483174, -2.977368910679221 ], [ 38.515141976483157, -2.982678968679242 ], [ 38.514714730483199, -2.985547621679249 ], [ 38.506108773483156, -2.985059339679257 ], [ 38.495915902483198, -2.985974867679264 ], [ 38.492314828483181, -2.985242445679265 ], [ 38.48969031648317, -2.981336195679265 ], [ 38.484929574483196, -2.983350355679253 ], [ 38.481145394483171, -2.985547621679249 ], [ 38.477727425483174, -2.98786695767922 ], [ 38.474309457483166, -2.98786695767922 ], [ 38.471318734483184, -2.987378675679228 ], [ 38.465520394483171, -2.990552504679275 ], [ 38.462529671483189, -2.991529066679224 ], [ 38.460515511483202, -2.993848402679252 ], [ 38.45789100048318, -2.992139418679248 ], [ 38.45453406648317, -2.985852797679232 ], [ 38.451543343483188, -2.979138929679269 ], [ 38.4495291834832, -2.975171644679225 ], [ 38.447087777483198, -2.972364027679252 ], [ 38.437322152483198, -2.963269789679263 ], [ 38.433293832483166, -2.960645277679252 ], [ 38.430730355483199, -2.958081800679228 ], [ 38.42133094148317, -2.946668226679268 ], [ 38.416692269483171, -2.939344007679271 ], [ 38.41351844148317, -2.934766371679249 ], [ 38.409490121483195, -2.929761488679223 ], [ 38.405095589483203, -2.92817457467925 ], [ 38.400334847483172, -2.92927320767922 ], [ 38.397099984483184, -2.929456312679239 ], [ 38.394109261483202, -2.928540785679221 ], [ 38.389287484483184, -2.92536695767922 ], [ 38.386113656483182, -2.923047621679249 ], [ 38.371343148483156, -2.908765394679225 ], [ 38.36469031648317, -2.90278394967925 ], [ 38.358525765483186, -2.895154554679269 ], [ 38.339543832483166, -2.868360121679249 ], [ 38.33093787548318, -2.854444105679253 ], [ 38.321904671483189, -2.838941175679228 ], [ 38.318730843483188, -2.834241468679242 ], [ 38.3167166834832, -2.831555922679232 ], [ 38.314092171483189, -2.828931410679221 ], [ 38.304509652483198, -2.820081312679239 ], [ 38.300908578483181, -2.815930922679232 ], [ 38.293340218483188, -2.805066664679263 ], [ 38.281499398483156, -2.787366468679242 ], [ 38.279119027483198, -2.784070570679265 ], [ 38.260930550483174, -2.762830336679262 ], [ 38.2581229334832, -2.759778578679235 ], [ 38.250920785483167, -2.753430922679232 ], [ 38.248296273483156, -2.750745375679234 ], [ 38.241704476483157, -2.745862562679239 ], [ 38.235295785483167, -2.741529066679224 ], [ 38.225530160483167, -2.734448988679223 ], [ 38.221929086483208, -2.731641371679249 ], [ 38.215886605483199, -2.72755201567924 ], [ 38.20789100048318, -2.721631605679253 ], [ 38.191533578483181, -2.70997389067924 ], [ 38.184941781483182, -2.705030043679248 ], [ 38.182134164483152, -2.703931410679221 ], [ 38.173894418483194, -2.699842054679269 ], [ 38.170903695483155, -2.69825514067924 ], [ 38.168523324483196, -2.696363050679228 ], [ 38.163091195483155, -2.695447523679267 ], [ 38.160710824483196, -2.684766371679249 ], [ 38.159123910483167, -2.68903883267922 ], [ 38.158086312483185, -2.69294508267922 ], [ 38.157903207483166, -2.696546156679236 ], [ 38.154729379483165, -2.698865492679264 ], [ 38.151311410483167, -2.701062757679271 ], [ 38.14734412548318, -2.701245863679223 ], [ 38.14453650748316, -2.700574476679268 ], [ 38.137944711483208, -2.700574476679268 ], [ 38.131108773483156, -2.700269300679228 ], [ 38.127934945483155, -2.701428968679242 ], [ 38.124700082483166, -2.704236586679262 ], [ 38.12250281648317, -2.706433851679268 ], [ 38.118718636483202, -2.708142836679262 ], [ 38.1174979334832, -2.712354261679256 ], [ 38.115117562483185, -2.715039808679254 ], [ 38.109929574483196, -2.718030531679236 ], [ 38.106511605483199, -2.719434339679257 ], [ 38.102727425483174, -2.720655043679248 ], [ 38.100102914483152, -2.723035414679263 ], [ 38.074346078483181, -2.736829359679238 ], [ 38.043706429483159, -2.752637464679257 ], [ 37.975102914483152, -2.789868910679221 ], [ 37.95789100048318, -2.782178480679253 ], [ 37.949101937483185, -2.777967054679269 ], [ 37.937932504483165, -2.773084242679264 ], [ 37.93109656648317, -2.765943129679275 ], [ 37.92969275748316, -2.761853773679267 ], [ 37.927312386483202, -2.752759535679221 ], [ 37.926702035483167, -2.749280531679236 ], [ 37.926946175483174, -2.743360121679249 ], [ 37.92969275748316, -2.739759047679232 ], [ 37.930730355483199, -2.725537855679253 ], [ 37.92914344148317, -2.720349867679264 ], [ 37.9260916834832, -2.713636000679234 ], [ 37.9241385584832, -2.709729750679234 ], [ 37.921941293483194, -2.707044203679235 ], [ 37.911138070483155, -2.706250746679249 ], [ 37.906743539483152, -2.705640394679225 ], [ 37.901494515483186, -2.702649672679232 ], [ 37.895085824483196, -2.682935316679224 ], [ 37.894292367483153, -2.680066664679263 ], [ 37.892522347483172, -2.676282484679238 ], [ 37.885137093483188, -2.668164808679254 ], [ 37.880498421483189, -2.664136488679223 ], [ 37.876897347483172, -2.658460218679242 ], [ 37.87250281648317, -2.650769789679263 ], [ 37.869512093483188, -2.64497144967925 ], [ 37.8674979334832, -2.639051039679263 ], [ 37.865117562483185, -2.632947523679267 ], [ 37.861943734483184, -2.626355726679268 ], [ 37.853703988483169, -2.611646254679275 ], [ 37.849492562483185, -2.605481703679235 ], [ 37.840520394483171, -2.595349867679264 ], [ 37.834722054483159, -2.588269789679263 ], [ 37.831914437483185, -2.585340101679268 ], [ 37.810918343483188, -2.560865004679275 ], [ 37.800115121483195, -2.548535902679252 ], [ 37.797490609483184, -2.545178968679242 ], [ 37.794316781483182, -2.541883070679265 ], [ 37.792302621483195, -2.539258558679254 ], [ 37.761296761483202, -2.503736097679226 ], [ 37.749333871483195, -2.489575941679224 ], [ 37.735539925483174, -2.472852308679254 ], [ 37.728703988483169, -2.465161879679275 ], [ 37.724309457483166, -2.459851820679265 ], [ 37.67273475048318, -2.401258070679265 ], [ 37.646916879483165, -2.371472914679263 ], [ 37.627934945483155, -2.35004957467925 ], [ 37.621709359483184, -2.342664320679265 ], [ 37.609929574483196, -2.329358656679236 ], [ 37.601140511483202, -2.319043714679257 ], [ 37.597295296483189, -2.313855726679268 ], [ 37.600896371483195, -2.312268812679239 ], [ 37.60492469148317, -2.312879164679263 ], [ 37.6077323084832, -2.310742933679254 ], [ 37.608098519483171, -2.30708082467925 ], [ 37.610723031483182, -2.304456312679239 ], [ 37.613530648483156, -2.300977308679254 ], [ 37.618291390483186, -2.299878675679228 ], [ 37.620915902483198, -2.302564222679226 ], [ 37.623540414483152, -2.306165297679232 ], [ 37.626531136483202, -2.304029066679224 ], [ 37.630742562483185, -2.303662855679253 ], [ 37.632695687483185, -2.300244886679256 ], [ 37.633306039483152, -2.297376234679238 ], [ 37.637700570483155, -2.299634535679221 ], [ 37.642522347483172, -2.299878675679228 ], [ 37.646306527483198, -2.301160414679263 ], [ 37.647527230483199, -2.297559339679257 ], [ 37.650334847483172, -2.293347914679263 ], [ 37.654912484483184, -2.290845472679226 ], [ 37.658330453483181, -2.289441664679263 ], [ 37.660710824483196, -2.290967543679248 ], [ 37.664495004483165, -2.292066175679228 ], [ 37.668523324483196, -2.291150648679267 ], [ 37.670720589483203, -2.288281996679249 ], [ 37.668706429483159, -2.284436781679236 ], [ 37.672490609483184, -2.28083570767922 ], [ 37.673711312483185, -2.273572523679267 ], [ 37.675115121483195, -2.269849379679275 ], [ 37.678716195483155, -2.266980726679268 ], [ 37.677312386483202, -2.26215894967925 ], [ 37.678899300483174, -2.255750257679271 ], [ 37.678533089483203, -2.25153883267922 ], [ 37.678716195483155, -2.246167738679223 ], [ 37.676946175483174, -2.24177320767922 ], [ 37.676518929483159, -2.234754164679263 ], [ 37.6760916834832, -2.230969984679238 ], [ 37.680303109483184, -2.228833754679275 ], [ 37.684087289483152, -2.226331312679239 ], [ 37.686894906483182, -2.222730238679223 ], [ 37.689702523483156, -2.217847425679228 ], [ 37.694890511483202, -2.212842543679248 ], [ 37.697515023483156, -2.208753187679239 ], [ 37.700322640483186, -2.205762464679257 ], [ 37.704106820483155, -2.199842054679269 ], [ 37.706304086483151, -2.197461683679254 ], [ 37.709111703483181, -2.195447523679267 ], [ 37.712712777483198, -2.193860609679238 ], [ 37.716924203483181, -2.192639906679236 ], [ 37.72070838248316, -2.193067152679252 ], [ 37.725102914483152, -2.192456800679228 ], [ 37.719121468483188, -2.188367445679265 ], [ 37.710332406483182, -2.185254652679252 ], [ 37.70789100048318, -2.183545668679248 ], [ 37.706914437483185, -2.176831800679228 ], [ 37.704900277483198, -2.172681410679221 ], [ 37.701909554483159, -2.168531019679225 ], [ 37.69812537548318, -2.166638929679269 ], [ 37.694097054483159, -2.167066175679228 ], [ 37.69031287548318, -2.166272718679242 ], [ 37.680913461483151, -2.163159925679228 ], [ 37.672124398483156, -2.159864027679252 ], [ 37.665532601483157, -2.157849867679264 ], [ 37.662541879483165, -2.158032972679226 ], [ 37.653508675483174, -2.159131605679253 ], [ 37.625493539483152, -2.163037855679253 ], [ 37.621526254483165, -2.163343031679236 ], [ 37.616887582483166, -2.162671644679225 ], [ 37.604497445483155, -2.158948500679234 ], [ 37.595525277483198, -2.156140882679271 ], [ 37.591496957483166, -2.154248793679248 ], [ 37.574895394483171, -2.140943129679275 ], [ 37.5667166834832, -2.130750257679271 ], [ 37.563725961483151, -2.128736097679226 ], [ 37.552312386483202, -2.129529554679269 ], [ 37.54773475048318, -2.128369887679245 ], [ 37.545110238483169, -2.125867445679265 ], [ 37.543889535483167, -2.116956312679239 ], [ 37.541692269483171, -2.114759047679232 ], [ 37.538091195483155, -2.113355238679223 ], [ 37.535893929483159, -2.109754164679263 ], [ 37.532536996483195, -2.107556898679267 ], [ 37.527104867483153, -2.105237562679239 ], [ 37.51453162548318, -2.100354750679234 ], [ 37.501714242483153, -2.095044691679224 ], [ 37.49109412548318, -2.091077406679236 ], [ 37.479314339483203, -2.086255629679275 ], [ 37.478093636483202, -2.088941175679228 ], [ 37.476506722483172, -2.093274672679232 ], [ 37.470342171483189, -2.090772230679253 ], [ 37.463323129483165, -2.087537367679264 ], [ 37.464726937483185, -2.08106764067924 ], [ 37.459111703483181, -2.078382093679242 ], [ 37.455327523483156, -2.076856214679257 ], [ 37.451909554483159, -2.074781019679225 ], [ 37.4417166834832, -2.067334730679253 ], [ 37.436101449483196, -2.063550550679228 ], [ 37.42133094148317, -2.052930433679254 ], [ 37.386540902483198, -2.027478773679267 ], [ 37.382329476483157, -2.02497633267922 ], [ 37.370488656483182, -2.024671156679236 ], [ 37.365300668483194, -2.024243910679221 ], [ 37.365300668483194, -2.017346937679239 ], [ 37.36273719148317, -2.014966566679224 ], [ 37.359502328483181, -2.013745863679223 ], [ 37.322942269483171, -2.010266859679238 ], [ 37.313725961483151, -2.008679945679265 ], [ 37.309514535483167, -2.005078871679249 ], [ 37.30414344148317, -2.004041273679267 ], [ 37.300542367483153, -2.005567152679252 ], [ 37.29773475048318, -2.004529554679269 ], [ 37.283940804483159, -1.996839125679233 ], [ 37.279912484483184, -1.993177015679239 ], [ 37.278935921483189, -1.989331800679227 ], [ 37.276494515483186, -1.977979261679254 ], [ 37.274907601483157, -1.975171644679224 ], [ 37.271123421483189, -1.970166761679254 ], [ 37.268132699483196, -1.965833265679239 ], [ 37.265691293483194, -1.960767347679225 ], [ 37.261540902483198, -1.960645277679251 ], [ 37.257329476483157, -1.959729750679233 ], [ 37.25531531648317, -1.956677992679263 ], [ 37.253545296483189, -1.954358656679235 ], [ 37.249944222483172, -1.952649672679231 ], [ 37.247136605483199, -1.949231703679234 ], [ 37.245488656483182, -1.945569593679241 ], [ 37.2424979334832, -1.942273695679264 ], [ 37.23969031648317, -1.939954359679237 ], [ 37.236089242483153, -1.937451918679247 ], [ 37.231145394483171, -1.936231214679256 ], [ 37.226933968483188, -1.93543775767927 ], [ 37.224126351483157, -1.934583265679239 ], [ 37.217534554483159, -1.934766371679248 ], [ 37.21429969148317, -1.934583265679239 ], [ 37.209905160483167, -1.934644300679227 ], [ 37.205510629483165, -1.935559828679234 ], [ 37.200139535483167, -1.934339125679233 ], [ 37.195928109483184, -1.935865004679274 ], [ 37.191289437483185, -1.936658460679271 ], [ 37.186528695483155, -1.933972914679262 ], [ 37.183293832483166, -1.930677015679239 ], [ 37.183293832483166, -1.925366957679219 ], [ 37.177129281483182, -1.922559339679256 ], [ 37.174321664483152, -1.920667250679233 ], [ 37.170903695483155, -1.91785963267927 ], [ 37.170720589483203, -1.914563734679237 ], [ 37.168706429483159, -1.912183363679221 ], [ 37.163701546483189, -1.905530531679235 ], [ 37.159490121483195, -1.89924391067922 ], [ 37.158940804483159, -1.893567640679239 ], [ 37.155889046483189, -1.890149672679231 ], [ 37.154912484483184, -1.887158949679249 ], [ 37.159490121483195, -1.886975843679241 ], [ 37.161138070483155, -1.884534437679238 ], [ 37.161321175483174, -1.881482679679268 ], [ 37.161138070483155, -1.877576429679268 ], [ 37.163945687483185, -1.872083265679239 ], [ 37.162908089483203, -1.868177015679239 ], [ 37.163335336483151, -1.863965589679256 ], [ 37.163091195483155, -1.859876234679237 ], [ 37.157536996483195, -1.85267408667926 ], [ 37.155889046483189, -1.847058851679267 ], [ 37.152898324483196, -1.84486158667926 ], [ 37.149907601483157, -1.843946058679253 ], [ 37.147710336483151, -1.841931898679266 ], [ 37.143926156483182, -1.841748793679247 ], [ 37.142522347483172, -1.839246351679267 ], [ 37.146733773483156, -1.836255629679274 ], [ 37.148686898483156, -1.83283766067922 ], [ 37.144719613483169, -1.830579359679237 ], [ 37.14453650748316, -1.823682386679254 ], [ 37.146306527483198, -1.820752699679249 ], [ 37.144109261483202, -1.817884047679231 ], [ 37.142705453483181, -1.813855726679267 ], [ 37.147527230483199, -1.808667738679221 ], [ 37.151311410483167, -1.805066664679262 ], [ 37.153325570483155, -1.801465589679256 ], [ 37.152104867483153, -1.797559339679256 ], [ 37.15430213248316, -1.792676527679251 ], [ 37.156743539483152, -1.789258558679253 ], [ 37.158696664483152, -1.786145765679239 ], [ 37.161138070483155, -1.780530531679235 ], [ 37.158086312483185, -1.779065687679238 ], [ 37.159490121483195, -1.774060804679268 ], [ 37.163335336483151, -1.768262464679256 ], [ 37.1663260584832, -1.763379652679251 ], [ 37.177129281483182, -1.756055433679253 ], [ 37.178899300483174, -1.752332289679262 ], [ 37.183721078483181, -1.743543226679267 ], [ 37.186894906483182, -1.737378675679227 ], [ 37.191289437483185, -1.729566175679227 ], [ 37.194890511483202, -1.724073011679254 ], [ 37.197331918483194, -1.722364027679251 ], [ 37.196294320483155, -1.700574476679267 ], [ 37.195134652483198, -1.684339125679233 ], [ 37.193913949483196, -1.669629652679251 ], [ 37.192510140483186, -1.655164320679264 ], [ 37.190740121483195, -1.65028150767927 ], [ 37.175725472483172, -1.619336683679253 ], [ 37.21094275748316, -1.602735121679248 ], [ 37.229741586483151, -1.594373304679268 ], [ 37.232488168483194, -1.591382582679219 ], [ 37.236516488483169, -1.592176039679262 ], [ 37.245122445483155, -1.594373304679268 ], [ 37.248296273483156, -1.594251234679237 ], [ 37.251897347483172, -1.594373304679268 ], [ 37.252690804483159, -1.607678968679241 ], [ 37.252690804483159, -1.619336683679253 ], [ 37.253118050483174, -1.628430922679231 ], [ 37.253118050483174, -1.637342054679268 ], [ 37.254521859483184, -1.640576918679247 ], [ 37.257939828483181, -1.647046644679224 ], [ 37.262944711483151, -1.654248793679247 ], [ 37.272710336483151, -1.670545179679268 ], [ 37.265691293483194, -1.682630140679239 ], [ 37.279546273483156, -1.689832289679262 ], [ 37.28992225048318, -1.700879652679251 ], [ 37.288701546483189, -1.715283949679249 ], [ 37.303105843483188, -1.707959730679252 ], [ 37.314885629483165, -1.704541761679254 ], [ 37.321294320483155, -1.703382093679241 ], [ 37.329717171483189, -1.70228346167926 ], [ 37.332524789483152, -1.701428968679241 ], [ 37.335698617483153, -1.703565199679249 ], [ 37.338689339483203, -1.703565199679249 ], [ 37.342290414483152, -1.703137953679234 ], [ 37.345098031483182, -1.704175550679227 ], [ 37.34851600048318, -1.706555922679231 ], [ 37.355718148483156, -1.707654554679268 ], [ 37.359136117483153, -1.708936293679247 ], [ 37.362493050483174, -1.707349379679274 ], [ 37.365727914483152, -1.706433851679267 ], [ 37.372136605483199, -1.707349379679274 ], [ 37.375493539483152, -1.706983168679247 ], [ 37.379704964483203, -1.70496900767927 ], [ 37.383916390483186, -1.703870375679233 ], [ 37.38812781648317, -1.700879652679251 ], [ 37.391728890483186, -1.699658949679249 ], [ 37.395513070483155, -1.697644789679262 ], [ 37.400945199483196, -1.695630629679274 ], [ 37.405339730483199, -1.693067152679251 ], [ 37.408696664483152, -1.692273695679264 ], [ 37.412908089483203, -1.689832289679262 ], [ 37.408940804483159, -1.685865004679274 ], [ 37.406133187483185, -1.678662855679252 ], [ 37.402532113483169, -1.672864515679239 ], [ 37.401494515483186, -1.669629652679251 ], [ 37.401128304483159, -1.665540297679231 ], [ 37.396916879483165, -1.662549574679249 ], [ 37.393743050483174, -1.655042250679233 ], [ 37.390141976483157, -1.64924391067922 ], [ 37.387334359483184, -1.647656996679248 ], [ 37.386540902483198, -1.644361097679225 ], [ 37.385503304483159, -1.641553480679252 ], [ 37.383489144483171, -1.638379652679251 ], [ 37.3831229334832, -1.633435804679268 ], [ 37.380742562483185, -1.628675062679238 ], [ 37.378545296483189, -1.626172621679248 ], [ 37.376531136483202, -1.621350843679241 ], [ 37.374944222483172, -1.615552504679274 ], [ 37.37250281648317, -1.61018141067922 ], [ 37.370915902483198, -1.605054457679219 ], [ 37.368901742483153, -1.602979261679254 ], [ 37.366887582483166, -1.599561293679247 ], [ 37.365117562483185, -1.595166761679254 ], [ 37.363103402483198, -1.591138441679223 ], [ 37.35632850048318, -1.586072523679266 ], [ 37.354131234483184, -1.583081800679227 ], [ 37.350713265483186, -1.580945570679264 ], [ 37.348332894483171, -1.578565199679249 ], [ 37.345342171483189, -1.576245863679221 ], [ 37.342900765483186, -1.574048597679225 ], [ 37.341741097483172, -1.570569593679241 ], [ 37.338506234483184, -1.566846449679249 ], [ 37.336736214483203, -1.561231214679256 ], [ 37.34070350048318, -1.557080824679249 ], [ 37.343328011483202, -1.555432875679233 ], [ 37.347295296483189, -1.553662855679252 ], [ 37.351140511483202, -1.551160414679262 ], [ 37.354497445483155, -1.548657972679225 ], [ 37.355901254483165, -1.544446547679231 ], [ 37.358891976483157, -1.543469984679237 ], [ 37.360295785483167, -1.539136488679221 ], [ 37.361943734483184, -1.535474379679274 ], [ 37.364934457483166, -1.537183363679221 ], [ 37.366338265483186, -1.534375746679248 ], [ 37.370122445483155, -1.532239515679239 ], [ 37.377690804483159, -1.523877699679249 ], [ 37.381291879483165, -1.521558363679221 ], [ 37.384343636483202, -1.521253187679238 ], [ 37.388310921483189, -1.522351820679264 ], [ 37.392522347483172, -1.523267347679225 ], [ 37.395513070483155, -1.523572523679266 ], [ 37.400334847483172, -1.522962172679231 ], [ 37.412908089483203, -1.52845533667926 ], [ 37.415532601483157, -1.530469496679248 ], [ 37.4241385584832, -1.532849867679263 ], [ 37.42914344148317, -1.533277113679221 ], [ 37.432744515483186, -1.533155043679247 ], [ 37.436345589483203, -1.533765394679224 ], [ 37.439519418483194, -1.530957777679251 ], [ 37.4417166834832, -1.533032972679225 ], [ 37.445745004483165, -1.532666761679254 ], [ 37.449101937483185, -1.53114088267927 ], [ 37.451299203483181, -1.528882582679219 ], [ 37.453496468483188, -1.525952894679224 ], [ 37.455693734483184, -1.524060804679268 ], [ 37.464726937483185, -1.520276625679233 ], [ 37.468694222483172, -1.520154554679268 ], [ 37.472722543483194, -1.520764906679235 ], [ 37.4749198084832, -1.523267347679225 ], [ 37.476506722483172, -1.519239027679251 ], [ 37.47992469148317, -1.518750746679248 ], [ 37.483098519483171, -1.519544203679234 ], [ 37.487309945483155, -1.517957289679262 ] ] ] } } +, +{ "type": "Feature", "id": 34, "properties": { "OBJECTID": 35, "ID_": 3434, "COUNTY_NAM": "KERICHO", "CONST_CODE": 192, "CONSTITUEN": "BELGUT", "COUNTY_COD": 35, "Shape_Leng": 3.4293911554, "Shape_Area": 0.20964797953 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.458501351483157, 0.010851304320736 ], [ 35.46429969148317, 0.009630601320734 ], [ 35.479741586483151, 0.013231675320751 ], [ 35.485906136483202, 0.013231675320751 ], [ 35.489934457483166, 0.013048570320732 ], [ 35.495305550483174, 0.012438218320765 ], [ 35.49890662548318, 0.009264390320763 ], [ 35.506536019483171, 0.006639878320752 ], [ 35.509526742483153, 0.006639878320752 ], [ 35.515141976483157, 0.007616441320747 ], [ 35.516911996483195, 0.012255113320746 ], [ 35.522099984483184, 0.013475816320747 ], [ 35.527532113483169, 0.00865403832074 ], [ 35.536931527483198, -0.000379164679262 ], [ 35.539311898483156, -0.003247816679223 ], [ 35.542119515483186, -0.006238539679262 ], [ 35.544499886483202, -0.008435804679268 ], [ 35.552312386483202, -0.008557875679233 ], [ 35.562688363483169, -0.008252699679249 ], [ 35.565923226483157, -0.008863050679227 ], [ 35.569890511483202, -0.007947523679266 ], [ 35.573491586483151, -0.009229261679254 ], [ 35.577519906483182, -0.008557875679233 ], [ 35.58093787548318, -0.008679945679264 ], [ 35.585332406483182, -0.008435804679268 ], [ 35.61133338248316, -0.03205641067922 ], [ 35.6155448084832, -0.033338148679266 ], [ 35.623723519483171, -0.034070570679264 ], [ 35.628118050483174, -0.034680922679231 ], [ 35.630925668483194, -0.035230238679221 ], [ 35.633916390483186, -0.036328871679248 ], [ 35.636296761483202, -0.040662367679263 ], [ 35.638494027483198, -0.045667250679233 ], [ 35.640141976483157, -0.050366957679219 ], [ 35.637517464483203, -0.05457838267927 ], [ 35.640691293483194, -0.061536390679239 ], [ 35.63812781648317, -0.063367445679264 ], [ 35.636113656483182, -0.066480238679221 ], [ 35.630742562483185, -0.071729261679254 ], [ 35.628301156483182, -0.075452406679235 ], [ 35.626714242483153, -0.078748304679268 ], [ 35.623296273483156, -0.081067640679239 ], [ 35.61914588248316, -0.08283766067922 ], [ 35.61609412548318, -0.084363539679262 ], [ 35.6174979334832, -0.088880140679239 ], [ 35.61469031648317, -0.092053968679241 ], [ 35.622136605483199, -0.097730238679221 ], [ 35.62390662548318, -0.103650648679266 ], [ 35.616521371483195, -0.109143812679238 ], [ 35.613103402483198, -0.111463148679266 ], [ 35.612920296483189, -0.115979750679233 ], [ 35.611943734483184, -0.119641859679237 ], [ 35.604314339483203, -0.123548109679237 ], [ 35.599492562483185, -0.12293775767927 ], [ 35.59851600048318, -0.127271254679217 ], [ 35.598332894483171, -0.131177504679217 ], [ 35.600896371483195, -0.134168226679267 ], [ 35.601933968483188, -0.13783033667926 ], [ 35.602117074483196, -0.141980726679267 ], [ 35.601689828483181, -0.14533766067922 ], [ 35.603887093483188, -0.148450453679234 ], [ 35.604741586483151, -0.15205152767925 ], [ 35.606938851483157, -0.155042250679233 ], [ 35.609746468483188, -0.156873304679268 ], [ 35.611699593483188, -0.159070570679264 ], [ 35.615117562483185, -0.157544691679223 ], [ 35.617925179483159, -0.154676039679262 ], [ 35.62109900748316, -0.15315016067922 ], [ 35.624089730483199, -0.152173597679225 ], [ 35.628118050483174, -0.15205152767925 ], [ 35.632146371483195, -0.153272230679252 ], [ 35.634892953483181, -0.152783949679249 ], [ 35.638310921483189, -0.151563246679248 ], [ 35.643315804483159, -0.151136000679233 ], [ 35.648320687483185, -0.152967054679268 ], [ 35.651738656483182, -0.15595777767925 ], [ 35.652532113483169, -0.160535414679262 ], [ 35.654119027483198, -0.164563734679237 ], [ 35.657903207483166, -0.165235121679248 ], [ 35.660710824483196, -0.16395338267927 ], [ 35.664128793483194, -0.164380629679217 ], [ 35.667485726483157, -0.163465101679267 ], [ 35.670110238483169, -0.16517408667926 ], [ 35.669499886483202, -0.172559339679256 ], [ 35.666692269483171, -0.185681898679266 ], [ 35.675725472483172, -0.189466078679234 ], [ 35.66492225048318, -0.195264418679246 ], [ 35.662541879483165, -0.206067640679239 ], [ 35.657536996483195, -0.206677992679263 ], [ 35.656133187483185, -0.213574964679256 ], [ 35.658330453483181, -0.21864088267927 ], [ 35.656133187483185, -0.22236402767925 ], [ 35.657292855483199, -0.23035963267927 ], [ 35.658330453483181, -0.235364515679239 ], [ 35.656926644483171, -0.242566664679262 ], [ 35.655522836483151, -0.248670179679268 ], [ 35.654546273483156, -0.251966078679234 ], [ 35.654119027483198, -0.25556715267925 ], [ 35.652532113483169, -0.261365492679263 ], [ 35.6507010584832, -0.266980726679267 ], [ 35.646123421483189, -0.272351820679264 ], [ 35.641545785483167, -0.272534925679227 ], [ 35.63812781648317, -0.273755629679217 ], [ 35.635320199483196, -0.275159437679238 ], [ 35.632146371483195, -0.277356703679234 ], [ 35.631902230483199, -0.282971937679238 ], [ 35.631902230483199, -0.28895338267927 ], [ 35.620488656483182, -0.295240004679217 ], [ 35.618718636483202, -0.291333754679217 ], [ 35.611943734483184, -0.29017408667926 ], [ 35.608342660483167, -0.292737562679238 ], [ 35.605107796483189, -0.293958265679239 ], [ 35.603887093483188, -0.290967543679246 ], [ 35.602544320483155, -0.285230238679221 ], [ 35.599736703483181, -0.281873304679268 ], [ 35.596929086483151, -0.279431898679266 ], [ 35.594121468483188, -0.278272230679252 ], [ 35.593144906483182, -0.282178480679252 ], [ 35.592290414483152, -0.286573011679254 ], [ 35.587712777483198, -0.290967543679246 ], [ 35.585698617483153, -0.293164808679253 ], [ 35.583501351483157, -0.301770765679239 ], [ 35.581731332483166, -0.309583265679239 ], [ 35.569890511483202, -0.304761488679221 ], [ 35.572515023483156, -0.287854750679233 ], [ 35.572942269483171, -0.283643324679249 ], [ 35.559514535483167, -0.27424391067922 ], [ 35.534123910483167, -0.262952406679235 ], [ 35.529729379483165, -0.260144789679262 ], [ 35.528691781483182, -0.263928968679241 ], [ 35.527104867483153, -0.268262464679256 ], [ 35.525090707483166, -0.271131117679263 ], [ 35.510320199483196, -0.27137525767927 ], [ 35.506291879483165, -0.269971449679249 ], [ 35.502141488483169, -0.271131117679263 ], [ 35.498296273483156, -0.272656996679248 ], [ 35.494939339483203, -0.273450453679234 ], [ 35.48828650748316, -0.275769789679262 ], [ 35.483342660483167, -0.275952894679224 ], [ 35.477544320483155, -0.277967054679268 ], [ 35.471318734483184, -0.278638441679223 ], [ 35.458745492483153, -0.286328871679248 ], [ 35.450322640483186, -0.290357191679223 ], [ 35.44031287548318, -0.293958265679239 ], [ 35.433293832483166, -0.29676588267927 ], [ 35.428533089483203, -0.298230726679267 ], [ 35.422490609483184, -0.300550062679238 ], [ 35.414495004483165, -0.303357679679268 ], [ 35.416692269483171, -0.306775648679266 ], [ 35.423711312483185, -0.318555433679253 ], [ 35.426518929483159, -0.32533033667926 ], [ 35.430486214483203, -0.329846937679238 ], [ 35.43250037548318, -0.33283766067922 ], [ 35.440129769483171, -0.345349867679263 ], [ 35.443730843483188, -0.352124769679224 ], [ 35.447698129483165, -0.357984144679224 ], [ 35.45313025748316, -0.366529066679223 ], [ 35.467290414483152, -0.390149672679231 ], [ 35.472295296483189, -0.39814527767925 ], [ 35.472905648483156, -0.402478773679266 ], [ 35.469487679483159, -0.405347425679227 ], [ 35.466130746483195, -0.406262953679234 ], [ 35.463933480483199, -0.408155043679246 ], [ 35.462529671483189, -0.41096266067922 ], [ 35.4592948084832, -0.414563734679237 ], [ 35.455144418483194, -0.42176588267927 ], [ 35.453496468483188, -0.42493971167926 ], [ 35.450688851483157, -0.427259047679231 ], [ 35.447942269483171, -0.429151136679254 ], [ 35.443486703483181, -0.430432875679233 ], [ 35.440740121483195, -0.434156019679224 ], [ 35.439336312483185, -0.438062269679224 ], [ 35.436345589483203, -0.43934400767927 ], [ 35.435307992483153, -0.443372328679234 ], [ 35.433110726483157, -0.447034437679238 ], [ 35.43250037548318, -0.45033033667926 ], [ 35.43109656648317, -0.453382093679241 ], [ 35.428533089483203, -0.456250746679248 ], [ 35.425298226483157, -0.457349379679217 ], [ 35.421514046483189, -0.457044203679234 ], [ 35.418706429483159, -0.456067640679239 ], [ 35.411931527483198, -0.45814283667926 ], [ 35.409917367483153, -0.460950453679234 ], [ 35.40570594148317, -0.462537367679263 ], [ 35.396306527483198, -0.46204908667926 ], [ 35.394719613483169, -0.464673597679225 ], [ 35.3928885584832, -0.466931898679266 ], [ 35.385503304483159, -0.475171644679224 ], [ 35.381291879483165, -0.474866468679241 ], [ 35.379521859483184, -0.478162367679263 ], [ 35.376897347483172, -0.481458265679239 ], [ 35.370305550483174, -0.484937269679224 ], [ 35.367131722483172, -0.484571058679253 ], [ 35.36328650748316, -0.484876234679237 ], [ 35.359319222483172, -0.486646254679217 ], [ 35.356145394483171, -0.488965589679256 ], [ 35.350713265483186, -0.490430433679253 ], [ 35.312322152483198, -0.510938246679248 ], [ 35.311711800483174, -0.505261976679267 ], [ 35.309697640483186, -0.502454359679237 ], [ 35.305303109483184, -0.498059828679234 ], [ 35.29968787548318, -0.495374281679235 ], [ 35.297307504483165, -0.492871839679256 ], [ 35.293523324483196, -0.489759047679231 ], [ 35.289739144483171, -0.490979750679233 ], [ 35.285527718483188, -0.491834242679263 ], [ 35.305303109483184, -0.444531996679248 ], [ 35.314092171483189, -0.422864515679239 ], [ 35.310735238483169, -0.42463453567922 ], [ 35.307927621483195, -0.425855238679221 ], [ 35.304509652483198, -0.426465589679256 ], [ 35.300908578483181, -0.426465589679256 ], [ 35.292912972483172, -0.424756605679252 ], [ 35.290105355483199, -0.422559339679256 ], [ 35.287908089483203, -0.420178968679241 ], [ 35.284917367483153, -0.41962965267925 ], [ 35.281133187483185, -0.420240004679217 ], [ 35.277104867483153, -0.41877516067922 ], [ 35.27234412548318, -0.420362074679249 ], [ 35.268132699483196, -0.422254164679262 ], [ 35.264714730483199, -0.424146254679217 ], [ 35.261296761483202, -0.424878675679227 ], [ 35.256902230483199, -0.424451429679268 ], [ 35.251531136483202, -0.421460707679219 ], [ 35.247930062483185, -0.423352797679231 ], [ 35.243718636483202, -0.424451429679268 ], [ 35.23969031648317, -0.424573500679233 ], [ 35.235112679483159, -0.423963148679266 ], [ 35.231145394483171, -0.426160414679262 ], [ 35.229314339483203, -0.435071547679231 ], [ 35.227117074483196, -0.43934400767927 ], [ 35.224309457483166, -0.443738539679262 ], [ 35.222905648483156, -0.446363050679227 ], [ 35.218694222483172, -0.452466566679223 ], [ 35.218938363483169, -0.455457289679262 ], [ 35.2171073084832, -0.458448011679254 ], [ 35.215093148483156, -0.462232191679223 ], [ 35.211736214483203, -0.464429457679219 ], [ 35.210088265483186, -0.468335707679219 ], [ 35.213933480483199, -0.470532972679225 ], [ 35.219304574483196, -0.47236402767925 ], [ 35.22211219148317, -0.47376783667926 ], [ 35.220525277483198, -0.476575453679234 ], [ 35.216924203483181, -0.479444105679252 ], [ 35.211308968483188, -0.481336195679264 ], [ 35.206304086483151, -0.482251722679225 ], [ 35.202519906483182, -0.483960707679219 ], [ 35.198918832483166, -0.484754164679262 ], [ 35.19531775748316, -0.483777601679267 ], [ 35.19031287548318, -0.485364515679239 ], [ 35.185307992483153, -0.486463148679266 ], [ 35.181890023483156, -0.483045179679268 ], [ 35.181340707483166, -0.487866957679219 ], [ 35.180486214483203, -0.491773207679219 ], [ 35.178533089483203, -0.495862562679238 ], [ 35.178899300483174, -0.501172621679248 ], [ 35.18109656648317, -0.503980238679221 ], [ 35.184331429483159, -0.504468519679224 ], [ 35.188542855483199, -0.50556715267925 ], [ 35.192693246483195, -0.509534437679238 ], [ 35.193120492483153, -0.51356275767927 ], [ 35.191106332483166, -0.516553480679252 ], [ 35.190923226483157, -0.521680433679253 ], [ 35.193913949483196, -0.525342543679246 ], [ 35.196904671483189, -0.526746351679267 ], [ 35.199895394483171, -0.529248793679246 ], [ 35.200139535483167, -0.533460218679241 ], [ 35.198308480483199, -0.536450941679223 ], [ 35.198918832483166, -0.540357191679223 ], [ 35.201543343483188, -0.543836195679264 ], [ 35.20453406648317, -0.54676588267927 ], [ 35.20648719148317, -0.549756605679252 ], [ 35.205327523483156, -0.553357679679268 ], [ 35.202092660483167, -0.555371839679256 ], [ 35.199895394483171, -0.558057386679254 ], [ 35.199895394483171, -0.562940199679249 ], [ 35.203740609483184, -0.566052992679263 ], [ 35.213140023483156, -0.574170668679246 ], [ 35.215093148483156, -0.576551039679262 ], [ 35.218511117483153, -0.582471449679249 ], [ 35.22211219148317, -0.584729750679233 ], [ 35.226323617483153, -0.586865980679252 ], [ 35.229131234483184, -0.588880140679239 ], [ 35.231511605483199, -0.591260511679254 ], [ 35.234746468483188, -0.592542250679233 ], [ 35.237309945483155, -0.593762953679234 ], [ 35.234136117483153, -0.597058851679267 ], [ 35.229314339483203, -0.599744398679266 ], [ 35.227117074483196, -0.603162367679263 ], [ 35.228887093483188, -0.608472425679227 ], [ 35.229131234483184, -0.612744886679254 ], [ 35.228887093483188, -0.615857679679268 ], [ 35.226140511483202, -0.618665297679231 ], [ 35.222722543483194, -0.621045668679246 ], [ 35.219731820483155, -0.623548109679237 ], [ 35.216496957483166, -0.625562269679224 ], [ 35.213323129483165, -0.627149183679253 ], [ 35.210332406483182, -0.629651625679233 ], [ 35.207524789483152, -0.632947523679266 ], [ 35.205327523483156, -0.634778578679234 ], [ 35.202336800483174, -0.636548597679225 ], [ 35.199101937483185, -0.639356214679256 ], [ 35.197942269483171, -0.642835218679241 ], [ 35.196294320483155, -0.646070082679219 ], [ 35.192937386483202, -0.647840101679267 ], [ 35.187932504483165, -0.649854261679254 ], [ 35.179509652483198, -0.654431898679266 ], [ 35.177495492483153, -0.657361585679271 ], [ 35.171941293483194, -0.657178480679252 ], [ 35.164128793483194, -0.657666761679254 ], [ 35.150517953483181, -0.660474379679217 ], [ 35.146306527483198, -0.66004713267927 ], [ 35.141911996483195, -0.66096266067922 ], [ 35.134526742483153, -0.660474379679217 ], [ 35.131108773483156, -0.661939222679225 ], [ 35.127690804483159, -0.662854750679233 ], [ 35.124089730483199, -0.664136488679221 ], [ 35.121343148483156, -0.661450941679223 ], [ 35.119695199483196, -0.658155043679246 ], [ 35.11609412548318, -0.655347425679227 ], [ 35.11273719148317, -0.656262953679234 ], [ 35.109502328483181, -0.657849867679263 ], [ 35.10632850048318, -0.657971937679238 ], [ 35.101506722483172, -0.657544691679223 ], [ 35.097722543483194, -0.658032972679225 ], [ 35.094304574483196, -0.659375746679248 ], [ 35.090337289483152, -0.657971937679238 ], [ 35.086492074483196, -0.656079847679225 ], [ 35.0823416834832, -0.65315016067922 ], [ 35.08148719148317, -0.648938734679237 ], [ 35.0823416834832, -0.645764906679235 ], [ 35.0842948084832, -0.642957289679262 ], [ 35.0823416834832, -0.639844496679248 ], [ 35.083318246483195, -0.634839613679221 ], [ 35.085698617483153, -0.631482679679268 ], [ 35.08929969148317, -0.630261976679267 ], [ 35.08789588248316, -0.626233656679235 ], [ 35.085332406483182, -0.623181898679266 ], [ 35.084905160483167, -0.617261488679221 ], [ 35.086308968483188, -0.613233168679246 ], [ 35.086492074483196, -0.60926588267927 ], [ 35.083135140483186, -0.607740004679217 ], [ 35.082097543483194, -0.604871351679267 ], [ 35.081731332483166, -0.600781996679248 ], [ 35.073491586483151, -0.599866468679241 ], [ 35.070500863483169, -0.601331312679238 ], [ 35.068730843483188, -0.604566175679227 ], [ 35.067510140483186, -0.608350355679252 ], [ 35.067143929483159, -0.612073500679233 ], [ 35.065495980483199, -0.616468031679235 ], [ 35.06250525748316, -0.623059828679234 ], [ 35.059087289483152, -0.622266371679248 ], [ 35.057744515483186, -0.619763929679268 ], [ 35.0589041834832, -0.615674574679249 ], [ 35.061894906483182, -0.611951429679268 ], [ 35.063115609483184, -0.608655531679235 ], [ 35.062688363483169, -0.604932386679254 ], [ 35.060307992483153, -0.601575453679234 ], [ 35.058110726483157, -0.598950941679223 ], [ 35.056706918483194, -0.596448500679233 ], [ 35.05609656648317, -0.593335707679219 ], [ 35.05414344148317, -0.58955152767925 ], [ 35.051946175483174, -0.585950453679234 ], [ 35.050908578483181, -0.581983168679246 ], [ 35.050542367483153, -0.577649672679231 ], [ 35.049504769483171, -0.572766859679237 ], [ 35.04968787548318, -0.569776136679254 ], [ 35.051335824483196, -0.566236097679225 ], [ 35.050908578483181, -0.562329847679225 ], [ 35.050725472483172, -0.558362562679238 ], [ 35.052312386483202, -0.555371839679256 ], [ 35.0510916834832, -0.552564222679225 ], [ 35.050542367483153, -0.549451429679268 ], [ 35.052495492483153, -0.545972425679227 ], [ 35.051702035483167, -0.54267652767925 ], [ 35.050115121483195, -0.538648207679219 ], [ 35.053105843483188, -0.535535414679262 ], [ 35.052312386483202, -0.531079847679225 ], [ 35.0510916834832, -0.527844984679237 ], [ 35.048711312483185, -0.524060804679268 ], [ 35.051335824483196, -0.520276625679233 ], [ 35.053105843483188, -0.516675550679227 ], [ 35.054509652483198, -0.512647230679252 ], [ 35.057744515483186, -0.509168226679267 ], [ 35.055913461483151, -0.506055433679253 ], [ 35.053288949483196, -0.500745375679233 ], [ 35.049321664483152, -0.49915846167926 ], [ 35.046941293483194, -0.500684339679256 ], [ 35.043096078483181, -0.500562269679224 ], [ 35.038945687483185, -0.49915846167926 ], [ 35.034490121483195, -0.499280531679235 ], [ 35.033940804483159, -0.496350843679241 ], [ 35.034917367483153, -0.491956312679238 ], [ 35.034490121483195, -0.487744886679254 ], [ 35.035893929483159, -0.485059339679256 ], [ 35.039739144483171, -0.484876234679237 ], [ 35.041142953483181, -0.481336195679264 ], [ 35.0413260584832, -0.478040297679231 ], [ 35.042912972483172, -0.469739515679239 ], [ 35.043340218483188, -0.463636000679233 ], [ 35.042729867483153, -0.459546644679224 ], [ 35.045903695483155, -0.455640394679224 ], [ 35.045110238483169, -0.451428968679241 ], [ 35.045903695483155, -0.447766859679237 ], [ 35.044133675483174, -0.44416578567922 ], [ 35.040105355483199, -0.438855726679267 ], [ 35.039495004483165, -0.435376722679225 ], [ 35.039311898483156, -0.431775648679266 ], [ 35.037908089483203, -0.428662855679252 ], [ 35.036138070483155, -0.425366957679219 ], [ 35.034123910483167, -0.422132093679241 ], [ 35.031743539483152, -0.420362074679249 ], [ 35.029546273483156, -0.417432386679254 ], [ 35.026128304483159, -0.414746839679256 ], [ 35.021306527483198, -0.414380629679217 ], [ 35.021123421483189, -0.410230238679221 ], [ 35.021916879483165, -0.40614088267927 ], [ 35.019719613483169, -0.404248793679246 ], [ 35.018315804483159, -0.401074964679256 ], [ 35.0178885584832, -0.397473890679239 ], [ 35.011113656483182, -0.390943129679217 ], [ 35.010320199483196, -0.386548597679225 ], [ 35.007146371483195, -0.37293775767927 ], [ 35.00671912548318, -0.366773207679219 ], [ 35.00671912548318, -0.363050062679238 ], [ 35.005742562483185, -0.358655531679235 ], [ 35.006108773483156, -0.354566175679227 ], [ 35.005498421483189, -0.350843031679235 ], [ 35.00671912548318, -0.346265394679224 ], [ 35.006108773483156, -0.342359144679224 ], [ 35.006536019483171, -0.338269789679262 ], [ 35.010503304483159, -0.331433851679267 ], [ 35.013310921483189, -0.330579359679237 ], [ 35.016118539483152, -0.329358656679235 ], [ 35.022527230483199, -0.325757582679219 ], [ 35.025517953483181, -0.323255140679239 ], [ 35.028935921483189, -0.319348890679239 ], [ 35.033086312483185, -0.316480238679221 ], [ 35.036504281483182, -0.312635023679266 ], [ 35.042302621483195, -0.30775221167926 ], [ 35.046941293483194, -0.30354078567922 ], [ 35.049504769483171, -0.300244886679254 ], [ 35.051335824483196, -0.295545179679268 ], [ 35.051946175483174, -0.291455824679249 ], [ 35.052312386483202, -0.287244398679266 ], [ 35.053105843483188, -0.282544691679223 ], [ 35.052922738483169, -0.278577406679235 ], [ 35.053899300483174, -0.274976332679219 ], [ 35.055913461483151, -0.268872816679223 ], [ 35.055730355483199, -0.26356275767927 ], [ 35.056890023483156, -0.257764418679246 ], [ 35.057134164483152, -0.254773695679264 ], [ 35.056890023483156, -0.251538832679219 ], [ 35.057134164483152, -0.247266371679248 ], [ 35.057927621483195, -0.238843519679224 ], [ 35.0589041834832, -0.234632093679241 ], [ 35.061894906483182, -0.224439222679225 ], [ 35.063298714483203, -0.220044691679223 ], [ 35.064702523483156, -0.217237074679249 ], [ 35.067143929483159, -0.214856703679234 ], [ 35.071294320483155, -0.21278150767927 ], [ 35.073918832483166, -0.209363539679262 ], [ 35.08734656648317, -0.205945570679264 ], [ 35.095098031483182, -0.204846937679238 ], [ 35.100713265483186, -0.203382093679241 ], [ 35.103887093483188, -0.201856214679256 ], [ 35.105535043483194, -0.199353773679266 ], [ 35.107488168483194, -0.195874769679224 ], [ 35.118108285483167, -0.176343519679224 ], [ 35.12109900748316, -0.171643812679238 ], [ 35.122930062483185, -0.168347914679262 ], [ 35.126286996483195, -0.160535414679262 ], [ 35.130132211483151, -0.156446058679253 ], [ 35.134099496483195, -0.156262953679234 ], [ 35.136540902483198, -0.159253675679227 ], [ 35.138310921483189, -0.162976820679264 ], [ 35.141911996483195, -0.162732679679268 ], [ 35.14594031648317, -0.162732679679268 ], [ 35.14929725048318, -0.163343031679235 ], [ 35.153508675483174, -0.164746839679256 ], [ 35.157536996483195, -0.166333754679217 ], [ 35.160344613483169, -0.165662367679263 ], [ 35.163701546483189, -0.16377027767925 ], [ 35.167729867483153, -0.164563734679237 ], [ 35.170720589483203, -0.16395338267927 ], [ 35.175542367483153, -0.163648207679219 ], [ 35.178716195483155, -0.165052015679239 ], [ 35.183110726483157, -0.165479261679254 ], [ 35.186345589483203, -0.162061293679246 ], [ 35.189885629483165, -0.162366468679241 ], [ 35.194707406483182, -0.163465101679267 ], [ 35.199712289483152, -0.16395338267927 ], [ 35.202336800483174, -0.166577894679224 ], [ 35.204900277483198, -0.168164808679253 ], [ 35.20789100048318, -0.171155531679235 ], [ 35.212102425483174, -0.173352797679231 ], [ 35.215520394483171, -0.175366957679219 ], [ 35.216313851483157, -0.178357679679268 ], [ 35.218694222483172, -0.184949476679267 ], [ 35.219304574483196, -0.188733656679235 ], [ 35.220891488483169, -0.194226820679264 ], [ 35.224492562483185, -0.196363050679227 ], [ 35.227727425483174, -0.19697340267925 ], [ 35.230901254483165, -0.195935804679268 ], [ 35.234319222483172, -0.196179945679264 ], [ 35.237493050483174, -0.199964125679233 ], [ 35.241338265483186, -0.201245863679221 ], [ 35.245305550483174, -0.204053480679252 ], [ 35.248296273483156, -0.20673902767925 ], [ 35.249089730483199, -0.210767347679225 ], [ 35.250127328483181, -0.213636000679233 ], [ 35.252690804483159, -0.215772230679252 ], [ 35.254338754483165, -0.218946058679253 ], [ 35.257939828483181, -0.221875746679248 ], [ 35.260686410483167, -0.223279554679268 ], [ 35.262944711483151, -0.225232679679268 ], [ 35.261907113483169, -0.229749281679235 ], [ 35.262944711483151, -0.232434828679234 ], [ 35.265508187483185, -0.234632093679241 ], [ 35.269109261483202, -0.236768324679249 ], [ 35.273137582483166, -0.238355238679221 ], [ 35.2835135584832, -0.238050062679238 ], [ 35.287297738483169, -0.23743971167926 ], [ 35.291936410483167, -0.237378675679227 ], [ 35.295537484483184, -0.238477308679253 ], [ 35.29968787548318, -0.239270765679239 ], [ 35.302922738483169, -0.241162855679252 ], [ 35.305913461483151, -0.240430433679253 ], [ 35.308293832483166, -0.242444593679241 ], [ 35.310491097483172, -0.245557386679254 ], [ 35.31250525748316, -0.249341566679223 ], [ 35.316533578483181, -0.249646742679263 ], [ 35.321111214483203, -0.24885328567922 ], [ 35.325932992483153, -0.246167738679221 ], [ 35.33148719148317, -0.243970472679225 ], [ 35.336125863483169, -0.242749769679224 ], [ 35.342717660483167, -0.239881117679263 ], [ 35.344304574483196, -0.236768324679249 ], [ 35.342534554483159, -0.232556898679266 ], [ 35.338506234483184, -0.215161879679217 ], [ 35.339543832483166, -0.21174391067922 ], [ 35.336492074483196, -0.207166273679266 ], [ 35.334538949483196, -0.202466566679223 ], [ 35.33289100048318, -0.197278578679234 ], [ 35.331731332483166, -0.192029554679268 ], [ 35.33148719148317, -0.188672621679248 ], [ 35.331304086483151, -0.177136976679267 ], [ 35.327519906483182, -0.176648695679264 ], [ 35.325322640483186, -0.174329359679237 ], [ 35.319890511483202, -0.176465589679256 ], [ 35.296697152483198, -0.176465589679256 ], [ 35.287297738483169, -0.16004713267927 ], [ 35.287724984483184, -0.156873304679268 ], [ 35.284917367483153, -0.15595777767925 ], [ 35.283330453483181, -0.151563246679248 ], [ 35.281133187483185, -0.14954908667926 ], [ 35.27930213248316, -0.147046644679224 ], [ 35.275945199483196, -0.147351820679264 ], [ 35.274907601483157, -0.150464613679221 ], [ 35.27234412548318, -0.151868422679231 ], [ 35.269109261483202, -0.148572523679266 ], [ 35.262334359483184, -0.13557203567922 ], [ 35.260503304483159, -0.132459242679263 ], [ 35.254338754483165, -0.120740492679263 ], [ 35.24609900748316, -0.120740492679263 ], [ 35.235539925483174, -0.120374281679235 ], [ 35.233525765483186, -0.117566664679262 ], [ 35.229131234483184, -0.112256605679252 ], [ 35.227117074483196, -0.108045179679268 ], [ 35.23132850048318, -0.105664808679253 ], [ 35.236089242483153, -0.105237562679238 ], [ 35.257939828483181, -0.102063734679237 ], [ 35.261540902483198, -0.101758558679253 ], [ 35.266301644483171, -0.100965101679267 ], [ 35.276128304483159, -0.099683363679221 ], [ 35.280339730483199, -0.099866468679241 ], [ 35.285100472483172, -0.096570570679264 ], [ 35.308293832483166, -0.085950453679234 ], [ 35.3167166834832, -0.092542250679233 ], [ 35.320134652483198, -0.095471937679238 ], [ 35.325139535483167, -0.099439222679225 ], [ 35.334538949483196, -0.10658033667926 ], [ 35.340093148483156, -0.108045179679268 ], [ 35.343938363483169, -0.109632093679241 ], [ 35.35352088248316, -0.108960707679219 ], [ 35.37250281648317, -0.109754164679262 ], [ 35.375493539483152, -0.107862074679249 ], [ 35.379094613483169, -0.105969984679237 ], [ 35.381902230483199, -0.103467543679246 ], [ 35.390508187483185, -0.097669203679234 ], [ 35.398931039483152, -0.089856703679234 ], [ 35.401738656483182, -0.087476332679219 ], [ 35.40430213248316, -0.086255629679217 ], [ 35.408940804483159, -0.084668714679256 ], [ 35.420110238483169, -0.080335218679241 ], [ 35.424504769483171, -0.07783277767925 ], [ 35.4163260584832, -0.055371839679256 ], [ 35.412541879483165, -0.044446547679231 ], [ 35.411321175483174, -0.041455824679249 ], [ 35.405095589483203, -0.023633558679253 ], [ 35.407292855483199, -0.017346937679238 ], [ 35.4085135584832, -0.014356214679256 ], [ 35.413945687483185, 0.001634995320783 ], [ 35.425542367483153, 0.008470933320777 ], [ 35.429326546483189, 0.01182786732073 ], [ 35.43890906648317, 0.017626206320754 ], [ 35.435918343483188, 0.024828355320776 ], [ 35.445500863483169, 0.024828355320776 ], [ 35.449101937483185, 0.025072495320783 ], [ 35.465886605483199, 0.025438706320754 ], [ 35.468938363483169, 0.022447984320761 ], [ 35.471501839483203, 0.018053452320769 ], [ 35.466313851483157, 0.015245835320738 ], [ 35.461919320483155, 0.013231675320751 ], [ 35.458501351483157, 0.010851304320736 ] ] ] } } +, +{ "type": "Feature", "id": 35, "properties": { "OBJECTID": 36, "ID_": 1819, "COUNTY_NAM": "KAKAMEGA", "CONST_CODE": 209, "CONSTITUEN": "SHINYALU", "COUNTY_COD": 37, "Shape_Leng": 3.81209259444, "Shape_Area": 0.24446094982 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.05496981748319, 0.899640164320769 ], [ 35.05609656648317, 0.898241441320747 ], [ 35.064336312483185, 0.896044175320751 ], [ 35.068730843483188, 0.896227281320759 ], [ 35.07312537548318, 0.89763108932078 ], [ 35.076726449483196, 0.897020738320746 ], [ 35.080144418483194, 0.89464036732073 ], [ 35.0823416834832, 0.892015855320776 ], [ 35.081914437483185, 0.888842027320775 ], [ 35.082707894483171, 0.886034410320744 ], [ 35.086125863483169, 0.882250230320776 ], [ 35.090337289483152, 0.88005296432078 ], [ 35.094487679483159, 0.878832261320779 ], [ 35.097905648483156, 0.876818101320734 ], [ 35.100530160483167, 0.874254624320767 ], [ 35.103887093483188, 0.873644273320733 ], [ 35.106694711483151, 0.875231187320762 ], [ 35.11328650748316, 0.880419175320751 ], [ 35.116704476483157, 0.850634019320748 ], [ 35.1174979334832, 0.847460191320747 ], [ 35.125907384483178, 0.823521494320741 ], [ 35.126915984483155, 0.826681775320762 ], [ 35.129168525483173, 0.82772399632074 ], [ 35.132328806483194, 0.828833456320749 ], [ 35.136113656483182, 0.82841722232075 ], [ 35.143926156483182, 0.826830308320777 ], [ 35.144902718483188, 0.746874253320752 ], [ 35.146733773483156, 0.738817613320746 ], [ 35.151494515483186, 0.738817613320746 ], [ 35.155095589483203, 0.73942796432078 ], [ 35.155889046483189, 0.682665269320748 ], [ 35.154729379483165, 0.671862046320766 ], [ 35.152715218483188, 0.667650620320783 ], [ 35.154119027483198, 0.663866441320747 ], [ 35.155522836483151, 0.661241929320736 ], [ 35.153142464483203, 0.65904466332074 ], [ 35.14929725048318, 0.658068101320734 ], [ 35.146123421483189, 0.658251206320754 ], [ 35.142095101483157, 0.659227769320748 ], [ 35.139287484483184, 0.657823960320738 ], [ 35.1331229334832, 0.653673570320732 ], [ 35.128728402483198, 0.653063218320765 ], [ 35.124516976483157, 0.652269761320779 ], [ 35.122136605483199, 0.649645249320767 ], [ 35.118291390483186, 0.646837632320737 ], [ 35.117131722483172, 0.641222398320733 ], [ 35.11328650748316, 0.640673081320754 ], [ 35.110112679483159, 0.642015855320776 ], [ 35.106694711483151, 0.64464036732073 ], [ 35.10352088248316, 0.64464036732073 ], [ 35.101323617483153, 0.642015855320776 ], [ 35.099736703483181, 0.639635484320761 ], [ 35.097295296483189, 0.637072007320737 ], [ 35.09570838248316, 0.634447495320783 ], [ 35.091924203483181, 0.632616441320747 ], [ 35.08929969148317, 0.629625718320765 ], [ 35.08594275748316, 0.628649156320759 ], [ 35.078740609483184, 0.628649156320759 ], [ 35.074346078483181, 0.628466050320751 ], [ 35.069890511483202, 0.629076402320775 ], [ 35.065740121483195, 0.631456773320733 ], [ 35.061894906483182, 0.631273667320781 ], [ 35.056890023483156, 0.630236070320732 ], [ 35.053288949483196, 0.634447495320783 ], [ 35.047917855483199, 0.635424058320777 ], [ 35.044133675483174, 0.636461656320759 ], [ 35.041509164483152, 0.639269273320733 ], [ 35.040898812483185, 0.631456773320733 ], [ 35.03711463248316, 0.62706224232073 ], [ 35.035344613483169, 0.622423570320732 ], [ 35.033086312483185, 0.618639390320763 ], [ 35.031499398483156, 0.615221421320766 ], [ 35.026738656483182, 0.61162034732075 ], [ 35.0003104334832, 0.636217515320763 ], [ 34.998540414483152, 0.634020249320767 ], [ 34.996892464483203, 0.631456773320733 ], [ 34.99414588248316, 0.628649156320759 ], [ 34.990300668483194, 0.628466050320751 ], [ 34.98773719148317, 0.62706224232073 ], [ 34.984319222483172, 0.626268785320744 ], [ 34.980107796483189, 0.624620835320738 ], [ 34.977300179483159, 0.62224046432078 ], [ 34.975102914483152, 0.620043199320773 ], [ 34.97351600048318, 0.616625230320776 ], [ 34.971501839483203, 0.613634507320737 ], [ 34.969121468483188, 0.612047593320765 ], [ 34.9671073084832, 0.60966722232075 ], [ 34.963689339483203, 0.60826341332074 ], [ 34.959722054483159, 0.609056870320783 ], [ 34.95648719148317, 0.608629624320767 ], [ 34.95313025748316, 0.606676499320767 ], [ 34.9495291834832, 0.606859605320776 ], [ 34.945134652483198, 0.606676499320767 ], [ 34.938542855483199, 0.60362474232073 ], [ 34.935491097483172, 0.60185472232075 ], [ 34.924932015483186, 0.593248765320763 ], [ 34.920110238483169, 0.589830796320766 ], [ 34.91211463248316, 0.592272202320769 ], [ 34.908086312483185, 0.594469468320765 ], [ 34.901128304483159, 0.602648179320736 ], [ 34.898320687483185, 0.604235093320765 ], [ 34.891301644483171, 0.605638902320775 ], [ 34.89648963248316, 0.600634019320748 ], [ 34.897710336483151, 0.598070542320781 ], [ 34.860112679483159, 0.553820054320736 ], [ 34.856694711483151, 0.550035874320767 ], [ 34.853093636483202, 0.546434800320751 ], [ 34.857305062483185, 0.54185716332074 ], [ 34.86469031648317, 0.536669175320751 ], [ 34.871343148483156, 0.531664292320781 ], [ 34.875493539483152, 0.527269761320779 ], [ 34.880742562483185, 0.523058335320738 ], [ 34.884343636483202, 0.522020738320746 ], [ 34.888921273483156, 0.51964036732073 ], [ 34.904546273483156, 0.506456773320733 ], [ 34.907720101483157, 0.502672593320765 ], [ 34.908696664483152, 0.493639390320763 ], [ 34.910100472483172, 0.488451402320775 ], [ 34.924504769483171, 0.474840562320762 ], [ 34.930486214483203, 0.465258042320781 ], [ 34.938542855483199, 0.450426499320767 ], [ 34.942510140483186, 0.44346849232073 ], [ 34.944097054483159, 0.440233628320752 ], [ 34.946904671483189, 0.435228745320783 ], [ 34.949895394483171, 0.429247300320751 ], [ 34.951726449483196, 0.425035874320767 ], [ 34.95453406648317, 0.419664781320759 ], [ 34.956731332483166, 0.414843003320752 ], [ 34.957097543483194, 0.408617417320781 ], [ 34.956914437483185, 0.399645249320767 ], [ 34.95648719148317, 0.390428941320747 ], [ 34.956120980483199, 0.375231187320762 ], [ 34.955510629483165, 0.368456285320744 ], [ 34.951299203483181, 0.357469956320754 ], [ 34.948308480483199, 0.356066148320733 ], [ 34.949346078483181, 0.35185472232075 ], [ 34.944097054483159, 0.354845445320732 ], [ 34.937139046483189, 0.360643785320744 ], [ 34.937932504483165, 0.355638902320775 ], [ 34.938298714483203, 0.350023667320781 ], [ 34.939519418483194, 0.345018785320744 ], [ 34.941289437483185, 0.333422105320776 ], [ 34.942327035483167, 0.324816148320733 ], [ 34.943913949483196, 0.319872300320751 ], [ 34.95313025748316, 0.297838609320761 ], [ 34.953740609483184, 0.294237535320744 ], [ 34.957097543483194, 0.289843003320752 ], [ 34.961125863483169, 0.282030503320752 ], [ 34.963323129483165, 0.27745286732073 ], [ 34.966130746483195, 0.270616929320736 ], [ 34.969914925483174, 0.264025132320737 ], [ 34.973699105483199, 0.25505296432078 ], [ 34.978337777483198, 0.245470445320732 ], [ 34.978887093483188, 0.240648667320781 ], [ 34.974126351483157, 0.23942796432078 ], [ 34.969304574483196, 0.239061753320752 ], [ 34.96234656648317, 0.238634507320737 ], [ 34.958318246483195, 0.239244859320761 ], [ 34.955327523483156, 0.23521653832074 ], [ 34.95313025748316, 0.229418199320773 ], [ 34.949712289483152, 0.223070542320781 ], [ 34.948735726483157, 0.218676011320779 ], [ 34.944524300483174, 0.208238999320767 ], [ 34.940495980483199, 0.206835191320747 ], [ 34.92969275748316, 0.207262437320762 ], [ 34.927495492483153, 0.200853745320783 ], [ 34.925115121483195, 0.198229234320761 ], [ 34.920720589483203, 0.198656480320776 ], [ 34.917119515483186, 0.198046128320752 ], [ 34.913701546483189, 0.196825425320751 ], [ 34.910527718483188, 0.194017808320777 ], [ 34.906743539483152, 0.194872300320751 ], [ 34.902898324483196, 0.196825425320751 ], [ 34.901128304483159, 0.200670640320763 ], [ 34.897527230483199, 0.203844468320765 ], [ 34.894292367483153, 0.205858628320752 ], [ 34.891301644483171, 0.203844468320765 ], [ 34.887944711483151, 0.202867906320759 ], [ 34.88672400748316, 0.198656480320776 ], [ 34.883916390483186, 0.196825425320751 ], [ 34.880132211483151, 0.197069566320747 ], [ 34.876897347483172, 0.198473374320767 ], [ 34.87390662548318, 0.198839585320738 ], [ 34.871892464483203, 0.195665757320737 ], [ 34.868108285483167, 0.194445054320736 ], [ 34.862309945483155, 0.196276109320761 ], [ 34.859136117483153, 0.191820542320781 ], [ 34.854741586483151, 0.189623277320775 ], [ 34.852727425483174, 0.186815660320744 ], [ 34.852544320483155, 0.183824937320762 ], [ 34.844914925483174, 0.181444566320747 ], [ 34.842534554483159, 0.183031480320776 ], [ 34.839116586483151, 0.183275620320783 ], [ 34.834905160483167, 0.182848374320767 ], [ 34.829900277483198, 0.183641831320754 ], [ 34.826116097483172, 0.185045640320763 ], [ 34.820928109483184, 0.184862535320744 ], [ 34.816899789483152, 0.184069077320769 ], [ 34.813725961483151, 0.181444566320747 ], [ 34.815740121483195, 0.17607347232075 ], [ 34.816106332483166, 0.170824449320773 ], [ 34.815923226483157, 0.167223374320767 ], [ 34.816106332483166, 0.163866441320747 ], [ 34.817327035483167, 0.158861558320777 ], [ 34.817693246483195, 0.154039781320759 ], [ 34.815129769483171, 0.15123216332074 ], [ 34.811528695483155, 0.151049058320777 ], [ 34.808110726483157, 0.154039781320759 ], [ 34.807134164483152, 0.158068101320734 ], [ 34.804936898483156, 0.159838120320783 ], [ 34.801946175483174, 0.160021226320734 ], [ 34.797917855483199, 0.160631577320769 ], [ 34.794744027483198, 0.157274644320748 ], [ 34.7913260584832, 0.155870835320738 ], [ 34.788335336483151, 0.156847398320733 ], [ 34.785344613483169, 0.157030503320752 ], [ 34.782536996483195, 0.155260484320761 ], [ 34.781743539483152, 0.152269761320779 ], [ 34.780095589483203, 0.149828355320776 ], [ 34.777104867483153, 0.14763108932078 ], [ 34.772527230483199, 0.149828355320776 ], [ 34.768132699483196, 0.149034898320733 ], [ 34.767095101483157, 0.145250718320765 ], [ 34.765691293483194, 0.141649644320748 ], [ 34.762517464483203, 0.137621324320773 ], [ 34.757329476483157, 0.137621324320773 ], [ 34.752934945483155, 0.137255113320746 ], [ 34.74890662548318, 0.137438218320765 ], [ 34.744695199483196, 0.13786546432078 ], [ 34.74109412548318, 0.140062730320776 ], [ 34.738103402483198, 0.143053452320769 ], [ 34.737309945483155, 0.147020738320746 ], [ 34.730107797483178, 0.143236559320767 ], [ 34.726140511483202, 0.141832749320767 ], [ 34.722539437483185, 0.139452378320752 ], [ 34.719304574483196, 0.141039292320781 ], [ 34.715886605483199, 0.140062730320776 ], [ 34.712102425483174, 0.138048570320732 ], [ 34.702703011483202, 0.13786546432078 ], [ 34.705144418483194, 0.13505784732075 ], [ 34.705144418483194, 0.130846421320766 ], [ 34.701299203483181, 0.130663316320747 ], [ 34.696904671483189, 0.131456773320733 ], [ 34.694097054483159, 0.130663316320747 ], [ 34.692327035483167, 0.128466050320751 ], [ 34.69031287548318, 0.125475327320769 ], [ 34.68750525748316, 0.122850816320747 ], [ 34.683721078483181, 0.12224046432078 ], [ 34.680303109483184, 0.125231187320762 ], [ 34.677922738483169, 0.128038804320736 ], [ 34.672917855483199, 0.126634995320783 ], [ 34.667912972483172, 0.126024644320748 ], [ 34.665105355483199, 0.125048081320754 ], [ 34.661504281483182, 0.124437730320776 ], [ 34.656926644483171, 0.125048081320754 ], [ 34.652898324483196, 0.125231187320762 ], [ 34.649541390483186, 0.126024644320748 ], [ 34.644902718483188, 0.126024644320748 ], [ 34.641118539483152, 0.125658433320777 ], [ 34.637944711483151, 0.126451890320763 ], [ 34.633916390483186, 0.126451890320763 ], [ 34.629521859483184, 0.125658433320777 ], [ 34.624089730483199, 0.124437730320776 ], [ 34.620915902483198, 0.124071519320748 ], [ 34.612309945483155, 0.121263902320775 ], [ 34.608098519483171, 0.120470445320732 ], [ 34.603093636483202, 0.119066636320779 ], [ 34.596318734483184, 0.115465562320762 ], [ 34.592290414483152, 0.114061753320752 ], [ 34.58734656648317, 0.112841050320751 ], [ 34.586125863483169, 0.108873765320763 ], [ 34.58594275748316, 0.10362474232073 ], [ 34.5823416834832, 0.101244370320783 ], [ 34.578740609483184, 0.100023667320781 ], [ 34.575688851483157, 0.096422593320765 ], [ 34.570928109483184, 0.095018785320744 ], [ 34.566289437483185, 0.095629136320779 ], [ 34.562932504483165, 0.094469468320765 ], [ 34.560491097483172, 0.091661851320734 ], [ 34.557744515483186, 0.089220445320732 ], [ 34.556890023483156, 0.093248765320763 ], [ 34.555730355483199, 0.096666734320761 ], [ 34.556706918483194, 0.10045091332074 ], [ 34.558293832483166, 0.105028550320751 ], [ 34.55469275748316, 0.106676499320767 ], [ 34.552495492483153, 0.110033433320777 ], [ 34.547917855483199, 0.113634507320737 ], [ 34.551946175483174, 0.116442124320767 ], [ 34.55273963248316, 0.120226304320736 ], [ 34.554936898483156, 0.124071519320748 ], [ 34.555730355483199, 0.127428452320769 ], [ 34.552312386483202, 0.128038804320736 ], [ 34.5491385584832, 0.130663316320747 ], [ 34.547490609483184, 0.134020249320767 ], [ 34.545537484483184, 0.136461656320759 ], [ 34.541509164483152, 0.136217515320763 ], [ 34.536931527483198, 0.13487474232073 ], [ 34.533330453483181, 0.132433335320738 ], [ 34.531926644483171, 0.129076402320775 ], [ 34.529912484483184, 0.125231187320762 ], [ 34.526738656483182, 0.123033921320766 ], [ 34.521916879483165, 0.123033921320766 ], [ 34.513921273483156, 0.125658433320777 ], [ 34.512334359483184, 0.118822495320783 ], [ 34.509892953483181, 0.116259019320748 ], [ 34.506108773483156, 0.117235581320754 ], [ 34.504521859483184, 0.121447007320737 ], [ 34.500920785483167, 0.122850816320747 ], [ 34.499089730483199, 0.119066636320779 ], [ 34.501897347483172, 0.115648667320781 ], [ 34.503301156483182, 0.11247483932078 ], [ 34.500127328483181, 0.110033433320777 ], [ 34.496892464483203, 0.107836167320781 ], [ 34.496526254483165, 0.103258531320759 ], [ 34.493291390483186, 0.100267808320777 ], [ 34.488713754483165, 0.102220933320777 ], [ 34.478887093483188, 0.102831285320744 ], [ 34.475102914483152, 0.102465074320773 ], [ 34.4749198084832, 0.106859605320776 ], [ 34.475102914483152, 0.11021653832074 ], [ 34.479131234483184, 0.112230699320773 ], [ 34.476933968483188, 0.115831773320733 ], [ 34.468511117483153, 0.118639390320763 ], [ 34.46429969148317, 0.120470445320732 ], [ 34.459538949483196, 0.120836656320759 ], [ 34.457707894483171, 0.124254624320767 ], [ 34.458501351483157, 0.128038804320736 ], [ 34.465093148483156, 0.127855699320773 ], [ 34.468694222483172, 0.128038804320736 ], [ 34.472722543483194, 0.129076402320775 ], [ 34.477544320483155, 0.132616441320747 ], [ 34.480718148483156, 0.135240952320769 ], [ 34.483525765483186, 0.136217515320763 ], [ 34.484929574483196, 0.138842027320775 ], [ 34.483525765483186, 0.142259995320783 ], [ 34.4827323084832, 0.145616929320736 ], [ 34.483891976483157, 0.149462144320748 ], [ 34.477300179483159, 0.153246324320773 ], [ 34.474309457483166, 0.154467027320775 ], [ 34.469731820483155, 0.155016343320765 ], [ 34.465520394483171, 0.154039781320759 ], [ 34.46289588248316, 0.15245286732073 ], [ 34.456304086483151, 0.151659410320744 ], [ 34.452519906483182, 0.150865952320769 ], [ 34.4495291834832, 0.148851792320781 ], [ 34.446538461483151, 0.14763108932078 ], [ 34.443120492483153, 0.145616929320736 ], [ 34.439519418483194, 0.144457261320779 ], [ 34.435124886483202, 0.143846910320744 ], [ 34.430303109483184, 0.145861070320732 ], [ 34.426702035483167, 0.149034898320733 ], [ 34.429326546483189, 0.150865952320769 ], [ 34.432134164483152, 0.152269761320779 ], [ 34.434941781483182, 0.154222886320779 ], [ 34.437932504483165, 0.157457749320767 ], [ 34.441899789483152, 0.163622300320751 ], [ 34.439885629483165, 0.167223374320767 ], [ 34.437139046483189, 0.170824449320773 ], [ 34.430303109483184, 0.176866929320736 ], [ 34.429936898483156, 0.180040757320737 ], [ 34.427129281483182, 0.182848374320767 ], [ 34.428716195483155, 0.186266343320765 ], [ 34.430730355483199, 0.188463609320761 ], [ 34.431890023483156, 0.19224778832074 ], [ 34.434331429483159, 0.196642320320732 ], [ 34.437139046483189, 0.199449937320762 ], [ 34.430913461483151, 0.21104661732073 ], [ 34.426702035483167, 0.208238999320767 ], [ 34.424504769483171, 0.206041734320761 ], [ 34.421941293483194, 0.202440660320744 ], [ 34.418096078483181, 0.200670640320763 ], [ 34.414739144483171, 0.198839585320738 ], [ 34.411931527483198, 0.19645921432078 ], [ 34.4085135584832, 0.189073960320738 ], [ 34.403935921483189, 0.184862535320744 ], [ 34.39648963248316, 0.181017320320732 ], [ 34.392705453483181, 0.179674546320766 ], [ 34.389897836483151, 0.17802659732075 ], [ 34.385503304483159, 0.177050035320744 ], [ 34.386296761483202, 0.181017320320732 ], [ 34.387944711483151, 0.18443528832074 ], [ 34.389287484483184, 0.188036363320746 ], [ 34.391118539483152, 0.191271226320734 ], [ 34.391301644483171, 0.194261949320773 ], [ 34.3909354334832, 0.198229234320761 ], [ 34.392522347483172, 0.203661363320746 ], [ 34.391911996483195, 0.20787278832074 ], [ 34.391118539483152, 0.21104661732073 ], [ 34.391118539483152, 0.214464585320738 ], [ 34.388310921483189, 0.219225327320769 ], [ 34.386296761483202, 0.223070542320781 ], [ 34.384892953483181, 0.226427476320734 ], [ 34.388494027483198, 0.228441636320779 ], [ 34.393132699483196, 0.230455796320766 ], [ 34.39789344148317, 0.231249253320752 ], [ 34.39929725048318, 0.234850327320769 ], [ 34.399907601483157, 0.238451402320775 ], [ 34.398320687483185, 0.241259019320748 ], [ 34.398503793483194, 0.247850816320747 ], [ 34.398931039483152, 0.251024644320748 ], [ 34.399724496483195, 0.254442613320746 ], [ 34.401128304483159, 0.258043687320762 ], [ 34.399724496483195, 0.261217515320763 ], [ 34.39648963248316, 0.263842027320775 ], [ 34.390508187483185, 0.269274156320759 ], [ 34.38953162548318, 0.272875230320776 ], [ 34.392705453483181, 0.275621812320762 ], [ 34.393926156483182, 0.278429429320736 ], [ 34.39789344148317, 0.280260484320761 ], [ 34.395513070483155, 0.283434312320762 ], [ 34.395085824483196, 0.286425035320744 ], [ 34.389287484483184, 0.292223374320767 ], [ 34.383489144483171, 0.297472398320733 ], [ 34.381291879483165, 0.30162278832074 ], [ 34.379094613483169, 0.304064195320732 ], [ 34.374516976483157, 0.306017320320732 ], [ 34.376286996483195, 0.309069077320769 ], [ 34.379338754483165, 0.311022202320769 ], [ 34.381291879483165, 0.313219468320765 ], [ 34.382939828483181, 0.316271226320734 ], [ 34.383733285483167, 0.319017808320777 ], [ 34.384099496483195, 0.322252671320766 ], [ 34.384343636483202, 0.327440660320744 ], [ 34.384709847483172, 0.330431382320737 ], [ 34.385503304483159, 0.333238999320767 ], [ 34.385137093483188, 0.337816636320779 ], [ 34.385137093483188, 0.345873277320775 ], [ 34.385686410483167, 0.35045091332074 ], [ 34.388310921483189, 0.353075425320751 ], [ 34.391728890483186, 0.35466233932078 ], [ 34.400945199483196, 0.360643785320744 ], [ 34.403935921483189, 0.360643785320744 ], [ 34.41492225048318, 0.364855210320738 ], [ 34.417485726483157, 0.36607591332074 ], [ 34.421514046483189, 0.369066636320779 ], [ 34.420720589483203, 0.37224046432078 ], [ 34.418340218483188, 0.374437730320776 ], [ 34.415532601483157, 0.376024644320748 ], [ 34.412724984483184, 0.378832261320779 ], [ 34.409123910483167, 0.382860581320754 ], [ 34.40570594148317, 0.385668199320773 ], [ 34.398931039483152, 0.389025132320737 ], [ 34.392339242483153, 0.394030015320763 ], [ 34.389287484483184, 0.395067613320746 ], [ 34.386113656483182, 0.395616929320736 ], [ 34.383733285483167, 0.39763108932078 ], [ 34.381536019483171, 0.400865952320769 ], [ 34.37891150748316, 0.403063218320765 ], [ 34.375127328483181, 0.402269761320779 ], [ 34.37109900748316, 0.40245286732073 ], [ 34.367925179483159, 0.401842515320763 ], [ 34.363530648483156, 0.40245286732073 ], [ 34.359746468483188, 0.40544358932078 ], [ 34.357305062483185, 0.408251206320754 ], [ 34.355107796483189, 0.411241929320736 ], [ 34.351933968483188, 0.415026109320761 ], [ 34.348332894483171, 0.418871324320773 ], [ 34.345525277483198, 0.422472398320733 ], [ 34.347722543483194, 0.426256577320769 ], [ 34.351933968483188, 0.428636949320773 ], [ 34.354497445483155, 0.432054917320781 ], [ 34.358891976483157, 0.43565599232073 ], [ 34.362920296483189, 0.437242906320759 ], [ 34.365300668483194, 0.439257066320747 ], [ 34.366521371483195, 0.447069566320747 ], [ 34.367742074483196, 0.451647202320769 ], [ 34.369336717483172, 0.455693344320762 ], [ 34.376705549483169, 0.45841451532078 ], [ 34.379888070483155, 0.457262437320762 ], [ 34.384099496483195, 0.457628648320733 ], [ 34.389287484483184, 0.45982591332074 ], [ 34.392886740483156, 0.466410190320741 ], [ 34.39594031648317, 0.467821519320748 ], [ 34.399114144483171, 0.469835679320736 ], [ 34.403000455483202, 0.471536763320782 ], [ 34.407076760483157, 0.473832444320746 ], [ 34.411138070483155, 0.474047105320776 ], [ 34.416971347483177, 0.473852039320773 ], [ 34.420715060483182, 0.472632314320774 ], [ 34.424313854483152, 0.469069748320746 ], [ 34.427308824483184, 0.46702882132075 ], [ 34.429882745483205, 0.464702304320779 ], [ 34.432434413483172, 0.463365066320759 ], [ 34.436711800483174, 0.461473863320746 ], [ 34.439885629483165, 0.461840074320773 ], [ 34.442693246483195, 0.463060777320775 ], [ 34.445116688483203, 0.46462042332075 ], [ 34.448957371483168, 0.466426846320755 ], [ 34.454116254483203, 0.467256824320768 ], [ 34.457078136483169, 0.466817424320763 ], [ 34.460690982483179, 0.467045261320775 ], [ 34.463994620483156, 0.469209714320752 ], [ 34.465337289483152, 0.470873277320775 ], [ 34.468694222483172, 0.474230210320738 ], [ 34.471317956483169, 0.477460672320772 ], [ 34.474344935483195, 0.47985296232076 ], [ 34.47755092848319, 0.480276088320747 ], [ 34.481033581483182, 0.481545466320765 ], [ 34.484337219483159, 0.482456814320753 ], [ 34.487493050483174, 0.47966233932078 ], [ 34.489324105483199, 0.475634019320748 ], [ 34.494929738483158, 0.466054242320749 ], [ 34.495247668483152, 0.46148967632075 ], [ 34.495732796483189, 0.457628648320733 ], [ 34.498723519483171, 0.45622483932078 ], [ 34.501897347483172, 0.456041734320761 ], [ 34.50531531648317, 0.45622483932078 ], [ 34.509526742483153, 0.455431382320737 ], [ 34.513494027483198, 0.45146409732075 ], [ 34.517705453483181, 0.448229234320761 ], [ 34.523503793483194, 0.447069566320747 ], [ 34.527715218483188, 0.44542161732073 ], [ 34.531316293483194, 0.44365159732075 ], [ 34.534490121483195, 0.446642320320732 ], [ 34.536931527483198, 0.450243394320748 ], [ 34.537541879483165, 0.454454820320732 ], [ 34.537097751483195, 0.458658398320776 ], [ 34.539495004483165, 0.460863511320779 ], [ 34.543238681483153, 0.463131123320747 ], [ 34.547372929483167, 0.46663677232078 ], [ 34.550540101483186, 0.467458786320774 ], [ 34.564702523483156, 0.456468980320776 ], [ 34.568120492483153, 0.456652085320738 ], [ 34.57172156648317, 0.456468980320776 ], [ 34.578313363483169, 0.455065171320766 ], [ 34.58093787548318, 0.452257554320736 ], [ 34.581120980483199, 0.44346849232073 ], [ 34.58093787548318, 0.439440171320766 ], [ 34.581731332483166, 0.436266343320765 ], [ 34.58148719148317, 0.433275620320783 ], [ 34.581914437483185, 0.430040757320737 ], [ 34.584538949483196, 0.427416245320783 ], [ 34.58734656648317, 0.425035874320767 ], [ 34.590520394483171, 0.423632066320747 ], [ 34.593144906483182, 0.428270738320746 ], [ 34.592717660483167, 0.432421128320752 ], [ 34.590886605483199, 0.436632554320736 ], [ 34.592290414483152, 0.440660874320767 ], [ 34.593144906483182, 0.443834702320769 ], [ 34.596318734483184, 0.443224351320734 ], [ 34.599492562483185, 0.444628160320744 ], [ 34.602117074483196, 0.447435777320775 ], [ 34.605718148483156, 0.449022691320747 ], [ 34.609136117483153, 0.44645921432078 ], [ 34.611516488483169, 0.444261949320773 ], [ 34.615727914483152, 0.442064683320777 ], [ 34.616521371483195, 0.449266831320754 ], [ 34.6174979334832, 0.452867906320759 ], [ 34.619695199483196, 0.45622483932078 ], [ 34.62390662548318, 0.458238999320767 ], [ 34.627690804483159, 0.460619370320783 ], [ 34.631291879483165, 0.459459702320769 ], [ 34.631291879483165, 0.45427171432078 ], [ 34.633916390483186, 0.451219956320754 ], [ 34.638310921483189, 0.450670640320763 ], [ 34.641545785483167, 0.449449937320762 ], [ 34.645329964483203, 0.449266831320754 ], [ 34.64929725048318, 0.452623765320763 ], [ 34.652104867483153, 0.453844468320765 ], [ 34.655095589483203, 0.452257554320736 ], [ 34.657903207483166, 0.453661363320746 ], [ 34.661138070483155, 0.45927659732075 ], [ 34.664495004483165, 0.458666245320783 ], [ 34.668889535483167, 0.459642808320777 ], [ 34.66992713248316, 0.463243882320737 ], [ 34.672124398483156, 0.465868394320748 ], [ 34.67468787548318, 0.469469468320765 ], [ 34.678899300483174, 0.471666734320761 ], [ 34.67914344148317, 0.474840562320762 ], [ 34.678288949483196, 0.478441636320779 ], [ 34.676946175483174, 0.482225816320747 ], [ 34.68109656648317, 0.483446519320748 ], [ 34.684331429483159, 0.483446519320748 ], [ 34.687322152483198, 0.48466722232075 ], [ 34.69031287548318, 0.482469956320754 ], [ 34.689885629483165, 0.485826890320763 ], [ 34.690129769483171, 0.489061753320752 ], [ 34.693486703483181, 0.492845933320777 ], [ 34.69531775748316, 0.497850816320747 ], [ 34.69812537548318, 0.502428452320769 ], [ 34.701543343483188, 0.505663316320747 ], [ 34.704717171483189, 0.505663316320747 ], [ 34.706914437483185, 0.503649156320759 ], [ 34.710332406483182, 0.503466050320751 ], [ 34.713140023483156, 0.506273667320781 ], [ 34.7171073084832, 0.509020249320767 ], [ 34.721318734483184, 0.507250230320776 ], [ 34.725713265483186, 0.509264390320763 ], [ 34.72852088248316, 0.51182786732073 ], [ 34.730290902483198, 0.515428941320747 ], [ 34.733342660483167, 0.516649644320748 ], [ 34.735906136483202, 0.520067613320746 ], [ 34.73633338248316, 0.524828355320776 ], [ 34.73773719148317, 0.529467027320775 ], [ 34.739324105483199, 0.531847398320733 ], [ 34.742314828483181, 0.534471910320744 ], [ 34.745915902483198, 0.536058824320773 ], [ 34.748540414483152, 0.534838120320783 ], [ 34.750493539483152, 0.537645738320746 ], [ 34.753118050483174, 0.539415757320737 ], [ 34.755132211483151, 0.541674058320777 ], [ 34.756902230483199, 0.544420640320763 ], [ 34.759892953483181, 0.546434800320751 ], [ 34.760686410483167, 0.550646226320734 ], [ 34.76312781648317, 0.55284349232073 ], [ 34.7659354334832, 0.555040757320737 ], [ 34.76453162548318, 0.55943528832074 ], [ 34.766545785483167, 0.562853257320737 ], [ 34.77148963248316, 0.563829820320732 ], [ 34.774114144483171, 0.567064683320777 ], [ 34.776921761483202, 0.570055406320759 ], [ 34.780522836483151, 0.573046128320752 ], [ 34.783940804483159, 0.575243394320748 ], [ 34.78711463248316, 0.57506028832074 ], [ 34.790715707483166, 0.577440660320744 ], [ 34.797307504483165, 0.582628648320733 ], [ 34.802495492483153, 0.585436265320763 ], [ 34.807744515483186, 0.585863511320779 ], [ 34.810735238483169, 0.587023179320736 ], [ 34.806890023483156, 0.590868394320748 ], [ 34.803899300483174, 0.593248765320763 ], [ 34.801335824483196, 0.59684983932078 ], [ 34.803716195483155, 0.60362474232073 ], [ 34.807744515483186, 0.605455796320766 ], [ 34.812139046483189, 0.608873765320763 ], [ 34.814885629483165, 0.613634507320737 ], [ 34.817693246483195, 0.615831773320733 ], [ 34.820745004483165, 0.617235581320754 ], [ 34.823735726483157, 0.617052476320734 ], [ 34.826726449483196, 0.618456285320744 ], [ 34.828313363483169, 0.620836656320759 ], [ 34.831304086483151, 0.623033921320766 ], [ 34.833318246483195, 0.62584153832074 ], [ 34.833501351483157, 0.629442613320746 ], [ 34.833928597483172, 0.632616441320747 ], [ 34.836125863483169, 0.635424058320777 ], [ 34.835698617483153, 0.638842027320775 ], [ 34.8342948084832, 0.641832749320767 ], [ 34.834722054483159, 0.645433824320773 ], [ 34.83789588248316, 0.648058335320738 ], [ 34.839116586483151, 0.651842515320763 ], [ 34.838323129483165, 0.656053941320747 ], [ 34.840886605483199, 0.657274644320748 ], [ 34.8421073084832, 0.660631577320769 ], [ 34.843694222483172, 0.664049546320766 ], [ 34.84570838248316, 0.66685716332074 ], [ 34.8499198084832, 0.668871324320773 ], [ 34.853887093483188, 0.67003099232073 ], [ 34.8577323084832, 0.672472398320733 ], [ 34.858708871483195, 0.677416245320783 ], [ 34.861089242483153, 0.680651109320761 ], [ 34.863896859483184, 0.683031480320776 ], [ 34.867131722483172, 0.681261460320738 ], [ 34.870122445483155, 0.682238023320733 ], [ 34.874944222483172, 0.683031480320776 ], [ 34.879521859483184, 0.681871812320762 ], [ 34.882695687483185, 0.682238023320733 ], [ 34.886540902483198, 0.684862535320744 ], [ 34.892705453483181, 0.688463609320761 ], [ 34.896123421483189, 0.686815660320744 ], [ 34.89929725048318, 0.684862535320744 ], [ 34.902715218483188, 0.684618394320748 ], [ 34.905522836483151, 0.684069077320769 ], [ 34.909307015483186, 0.684618394320748 ], [ 34.912297738483169, 0.687853257320737 ], [ 34.916142953483181, 0.691271226320734 ], [ 34.919316781483182, 0.695055406320759 ], [ 34.921514046483189, 0.698473374320767 ], [ 34.924504769483171, 0.698656480320776 ], [ 34.927922738483169, 0.701647202320769 ], [ 34.929326546483189, 0.705675523320733 ], [ 34.92969275748316, 0.709032456320754 ], [ 34.927922738483169, 0.712267320320732 ], [ 34.926335824483196, 0.716417710320738 ], [ 34.922917855483199, 0.721056382320737 ], [ 34.922917855483199, 0.724230210320738 ], [ 34.923711312483185, 0.727465074320773 ], [ 34.92773963248316, 0.735033433320777 ], [ 34.928899300483174, 0.737657945320732 ], [ 34.931523812483185, 0.739244859320761 ], [ 34.934697640483186, 0.738268296320766 ], [ 34.937932504483165, 0.740648667320781 ], [ 34.940740121483195, 0.739061753320752 ], [ 34.942937386483202, 0.742662827320769 ], [ 34.94672156648317, 0.747057359320761 ], [ 34.949101937483185, 0.750231187320762 ], [ 34.95313025748316, 0.750048081320754 ], [ 34.956304086483151, 0.75084153832074 ], [ 34.957097543483194, 0.747850816320747 ], [ 34.959722054483159, 0.749254624320767 ], [ 34.962529671483189, 0.751451890320763 ], [ 34.966313851483157, 0.751024644320748 ], [ 34.970891488483169, 0.751818101320734 ], [ 34.974492562483185, 0.753649156320759 ], [ 34.97852088248316, 0.754442613320746 ], [ 34.982488168483194, 0.75224534732075 ], [ 34.986516488483169, 0.752855699320773 ], [ 34.989324105483199, 0.751451890320763 ], [ 34.991338265483186, 0.748217027320775 ], [ 34.994328988483169, 0.744615952320769 ], [ 34.997136605483199, 0.74302903832074 ], [ 35.000493539483152, 0.742418687320762 ], [ 35.003301156483182, 0.74424974232073 ], [ 35.006291879483165, 0.744860093320765 ], [ 35.008489144483171, 0.746874253320752 ], [ 35.012517464483203, 0.751818101320734 ], [ 35.018926156483182, 0.748644273320733 ], [ 35.019292367483153, 0.745470445320732 ], [ 35.021123421483189, 0.742845933320777 ], [ 35.02429725048318, 0.742235581320754 ], [ 35.027898324483196, 0.743456285320744 ], [ 35.028508675483174, 0.747423570320732 ], [ 35.03210975048318, 0.749620835320738 ], [ 35.03711463248316, 0.747423570320732 ], [ 35.040105355483199, 0.746630113320746 ], [ 35.041142953483181, 0.749437730320776 ], [ 35.039495004483165, 0.752855699320773 ], [ 35.041509164483152, 0.755846421320766 ], [ 35.04492713248316, 0.759020249320767 ], [ 35.054326546483189, 0.76182786732073 ], [ 35.058293832483166, 0.76182786732073 ], [ 35.062688363483169, 0.759447495320783 ], [ 35.066106332483166, 0.763231675320751 ], [ 35.065923226483157, 0.767015855320776 ], [ 35.066533578483181, 0.771227281320759 ], [ 35.065923226483157, 0.775438706320754 ], [ 35.067693246483195, 0.780260484320761 ], [ 35.065923226483157, 0.783617417320781 ], [ 35.064885629483165, 0.788072984320761 ], [ 35.064885629483165, 0.792223374320767 ], [ 35.062932504483165, 0.795641343320765 ], [ 35.059087289483152, 0.798876206320754 ], [ 35.055486214483203, 0.799852769320748 ], [ 35.051946175483174, 0.80107347232075 ], [ 35.050115121483195, 0.804674546320766 ], [ 35.047490609483184, 0.809069077320769 ], [ 35.044744027483198, 0.812426011320779 ], [ 35.042912972483172, 0.816820542320781 ], [ 35.03992225048318, 0.819017808320777 ], [ 35.036138070483155, 0.820055406320759 ], [ 35.033086312483185, 0.819872300320751 ], [ 35.030339730483199, 0.822618882320737 ], [ 35.026494515483186, 0.828661363320746 ], [ 35.025334847483172, 0.831835191320747 ], [ 35.025945199483196, 0.834642808320777 ], [ 35.027715218483188, 0.839830796320766 ], [ 35.026494515483186, 0.844652574320773 ], [ 35.025945199483196, 0.849230210320738 ], [ 35.020329964483203, 0.855638902320775 ], [ 35.016728890483186, 0.857469956320754 ], [ 35.014104379483165, 0.860826890320763 ], [ 35.015508187483185, 0.864855210320738 ], [ 35.016911996483195, 0.872423570320732 ], [ 35.01953650748316, 0.880419175320751 ], [ 35.019719613483169, 0.88505784732075 ], [ 35.020513070483155, 0.889269273320733 ], [ 35.022710336483151, 0.892443101320734 ], [ 35.026738656483182, 0.89482347232075 ], [ 35.031743539483152, 0.89341966332074 ], [ 35.039311898483156, 0.896471421320766 ], [ 35.041692269483171, 0.899462144320748 ], [ 35.04492713248316, 0.900255601320734 ], [ 35.048100961483151, 0.899034898320733 ], [ 35.0510916834832, 0.900072495320783 ], [ 35.054326546483189, 0.900438706320754 ], [ 35.05496981748319, 0.899640164320769 ] ] ] } } +, +{ "type": "Feature", "id": 36, "properties": { "OBJECTID": 37, "ID_": 2515, "COUNTY_NAM": "VIHIGA", "CONST_CODE": 213, "CONSTITUEN": "HAMISI", "COUNTY_COD": 38, "Shape_Leng": 1.24925510587, "Shape_Area": 0.04549045865 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.902898324483196, 0.197252671320766 ], [ 34.906743539483152, 0.194872300320751 ], [ 34.910527718483188, 0.194017808320777 ], [ 34.913701546483189, 0.196276109320761 ], [ 34.917302621483195, 0.198046128320752 ], [ 34.920720589483203, 0.198656480320776 ], [ 34.92468787548318, 0.198229234320761 ], [ 34.925542367483153, 0.19365159732075 ], [ 34.923894418483194, 0.189073960320738 ], [ 34.920903695483155, 0.179857652320775 ], [ 34.917302621483195, 0.170458238320746 ], [ 34.91992713248316, 0.168016831320754 ], [ 34.919133675483174, 0.164049546320766 ], [ 34.917729867483153, 0.160631577320769 ], [ 34.916692269483171, 0.157030503320752 ], [ 34.914495004483165, 0.154039781320759 ], [ 34.910527718483188, 0.152819077320769 ], [ 34.904729379483165, 0.151842515320763 ], [ 34.901128304483159, 0.151049058320777 ], [ 34.89789344148317, 0.148851792320781 ], [ 34.893498910483167, 0.147020738320746 ], [ 34.888738168483194, 0.14464036732073 ], [ 34.883306039483152, 0.138842027320775 ], [ 34.877934945483155, 0.134020249320767 ], [ 34.874089730483199, 0.131822984320761 ], [ 34.871709359483184, 0.129625718320765 ], [ 34.869939339483203, 0.12706224232073 ], [ 34.8674979334832, 0.124071519320748 ], [ 34.86414100048318, 0.121263902320775 ], [ 34.861516488483169, 0.119860093320765 ], [ 34.858891976483157, 0.11442796432078 ], [ 34.857915414483152, 0.109850327320769 ], [ 34.857915414483152, 0.105638902320775 ], [ 34.859746468483188, 0.102831285320744 ], [ 34.859746468483188, 0.099657456320754 ], [ 34.858891976483157, 0.096056382320737 ], [ 34.858342660483167, 0.092028062320762 ], [ 34.860112679483159, 0.081468980320776 ], [ 34.857488168483194, 0.07841722232075 ], [ 34.854314339483203, 0.073473374320767 ], [ 34.849126351483157, 0.066271226320734 ], [ 34.84851600048318, 0.063463609320761 ], [ 34.849492562483185, 0.059618394320748 ], [ 34.847905648483156, 0.055468003320752 ], [ 34.84070350048318, 0.045275132320737 ], [ 34.839116586483151, 0.036241929320736 ], [ 34.836919320483155, 0.03044358932078 ], [ 34.834538949483196, 0.028673570320732 ], [ 34.830327523483156, 0.029039781320759 ], [ 34.825505746483195, 0.031053941320747 ], [ 34.820134652483198, 0.032457749320767 ], [ 34.811711800483174, 0.028429429320736 ], [ 34.809514535483167, 0.026476304320736 ], [ 34.810307992483153, 0.023424546320766 ], [ 34.807927621483195, 0.020861070320732 ], [ 34.804936898483156, 0.020250718320765 ], [ 34.801946175483174, 0.021837632320737 ], [ 34.798894418483194, 0.022447984320761 ], [ 34.794133675483174, 0.01982347232075 ], [ 34.790288461483151, 0.016222398320733 ], [ 34.788335336483151, 0.013658921320766 ], [ 34.784307015483186, 0.011644761320779 ], [ 34.781316293483194, 0.008837144320748 ], [ 34.779119027483198, 0.005419175320751 ], [ 34.774907601483157, 0.003221910320744 ], [ 34.77094031648317, 0.000658433320777 ], [ 34.767705453483181, -0.000562269679224 ], [ 34.76453162548318, -0.001538832679219 ], [ 34.761113656483182, 0.001818101320734 ], [ 34.760686410483167, 0.005419175320751 ], [ 34.758306039483152, 0.008043687320762 ], [ 34.754888070483155, 0.008226792320781 ], [ 34.749700082483166, 0.004869859320761 ], [ 34.746709359483184, 0.003221910320744 ], [ 34.741704476483157, 0.003221910320744 ], [ 34.740300668483194, -0.001172621679248 ], [ 34.741521371483195, -0.005384047679231 ], [ 34.743901742483153, -0.009534437679238 ], [ 34.745122445483155, -0.012342054679268 ], [ 34.745305550483174, -0.016980726679267 ], [ 34.748296273483156, -0.018262464679256 ], [ 34.750127328483181, -0.020948011679254 ], [ 34.746343148483156, -0.023633558679253 ], [ 34.739507211483151, -0.024182875679233 ], [ 34.736089242483153, -0.018750746679248 ], [ 34.732915414483152, -0.013257582679219 ], [ 34.72992469148317, -0.009168226679267 ], [ 34.726140511483202, -0.007459242679263 ], [ 34.717900765483186, -0.009229261679254 ], [ 34.715337289483152, -0.011853773679266 ], [ 34.713689339483203, -0.015637953679234 ], [ 34.710088265483186, -0.020459730679252 ], [ 34.704900277483198, -0.02137525767927 ], [ 34.696294320483155, -0.02064283667926 ], [ 34.689092171483189, -0.011548597679225 ], [ 34.686101449483196, -0.012281019679224 ], [ 34.681340707483166, -0.01478346167926 ], [ 34.672307504483165, -0.015943129679217 ], [ 34.652898324483196, -0.007337172679231 ], [ 34.649114144483171, -0.006848890679239 ], [ 34.641301644483171, -0.003369886679254 ], [ 34.634709847483172, 0.00084153832074 ], [ 34.631108773483156, 0.001634995320783 ], [ 34.628301156483182, 0.00206224232073 ], [ 34.624944222483172, 0.001451890320763 ], [ 34.620915902483198, 0.000475327320769 ], [ 34.616704476483157, -0.000135023679266 ], [ 34.613530648483156, -0.000379164679262 ], [ 34.612920296483189, 0.002855699320773 ], [ 34.609136117483153, 0.002855699320773 ], [ 34.607121957483166, 0.008226792320781 ], [ 34.603887093483188, 0.01005784732075 ], [ 34.599309457483166, 0.008043687320762 ], [ 34.595098031483182, 0.004625718320765 ], [ 34.592290414483152, 0.003038804320736 ], [ 34.589726937483185, 0.000048081320754 ], [ 34.592290414483152, -0.007459242679263 ], [ 34.589910043483194, -0.009778578679234 ], [ 34.589543832483166, -0.01356275767927 ], [ 34.587529671483189, -0.019483168679246 ], [ 34.586736214483203, -0.022656996679248 ], [ 34.583745492483153, -0.02723463267927 ], [ 34.583745492483153, -0.033155043679246 ], [ 34.577336800483174, -0.038037855679252 ], [ 34.573735726483157, -0.039258558679253 ], [ 34.568730843483188, -0.040052015679239 ], [ 34.562688363483169, -0.037976820679264 ], [ 34.562139046483189, -0.034253675679227 ], [ 34.562139046483189, -0.03095777767925 ], [ 34.564519418483194, -0.025952894679224 ], [ 34.563115609483184, -0.021436293679246 ], [ 34.559087289483152, -0.02064283667926 ], [ 34.553899300483174, -0.021741468679241 ], [ 34.5491385584832, -0.023877699679249 ], [ 34.544133675483174, -0.021070082679219 ], [ 34.536138070483155, -0.018079359679237 ], [ 34.536321175483174, -0.013257582679219 ], [ 34.542485726483157, -0.005384047679231 ], [ 34.53711463248316, -0.000562269679224 ], [ 34.536321175483174, 0.003466050320751 ], [ 34.53992225048318, 0.00505296432078 ], [ 34.543706429483159, 0.007250230320776 ], [ 34.546086800483174, 0.014635484320761 ], [ 34.548894418483194, 0.017626206320754 ], [ 34.550542367483153, 0.023668687320762 ], [ 34.550115121483195, 0.02763597232075 ], [ 34.550115121483195, 0.030870835320738 ], [ 34.553533089483203, 0.036852281320759 ], [ 34.553716195483155, 0.040636460320738 ], [ 34.556523812483185, 0.045641343320765 ], [ 34.559514535483167, 0.046617906320759 ], [ 34.559331429483159, 0.049852769320748 ], [ 34.557744515483186, 0.053636949320773 ], [ 34.557927621483195, 0.056627671320766 ], [ 34.558721078483181, 0.059618394320748 ], [ 34.559331429483159, 0.067675035320744 ], [ 34.559331429483159, 0.071276109320761 ], [ 34.558293832483166, 0.075426499320767 ], [ 34.557744515483186, 0.080431382320737 ], [ 34.555913461483151, 0.085619370320783 ], [ 34.560307992483153, 0.091234605320776 ], [ 34.564092171483189, 0.095018785320744 ], [ 34.567327035483167, 0.096056382320737 ], [ 34.571904671483189, 0.095629136320779 ], [ 34.575322640483186, 0.095873277320775 ], [ 34.577886117483153, 0.099047105320776 ], [ 34.58148719148317, 0.101061265320763 ], [ 34.585698617483153, 0.104235093320765 ], [ 34.586125863483169, 0.108873765320763 ], [ 34.588689339483203, 0.113268296320766 ], [ 34.596318734483184, 0.115038316320747 ], [ 34.5999198084832, 0.117662827320769 ], [ 34.603703988483169, 0.118822495320783 ], [ 34.607305062483185, 0.119615952320769 ], [ 34.618108285483167, 0.123217027320775 ], [ 34.621892464483203, 0.124254624320767 ], [ 34.633916390483186, 0.126451890320763 ], [ 34.641118539483152, 0.125475327320769 ], [ 34.645085824483196, 0.126024644320748 ], [ 34.652898324483196, 0.125231187320762 ], [ 34.656926644483171, 0.125048081320754 ], [ 34.661138070483155, 0.124437730320776 ], [ 34.664495004483165, 0.124254624320767 ], [ 34.667912972483172, 0.126024644320748 ], [ 34.671697152483198, 0.126268785320744 ], [ 34.676702035483167, 0.127672593320765 ], [ 34.680303109483184, 0.124437730320776 ], [ 34.682927621483195, 0.122423570320732 ], [ 34.686711800483174, 0.122850816320747 ], [ 34.690923226483157, 0.126451890320763 ], [ 34.692937386483202, 0.129076402320775 ], [ 34.696538461483151, 0.131273667320781 ], [ 34.703923714483203, 0.130846421320766 ], [ 34.705327523483156, 0.134264390320763 ], [ 34.705144418483194, 0.137438218320765 ], [ 34.708501351483157, 0.137438218320765 ], [ 34.711919320483155, 0.138231675320751 ], [ 34.715093148483156, 0.139635484320761 ], [ 34.719487679483159, 0.140856187320762 ], [ 34.7249198084832, 0.140856187320762 ], [ 34.727727425483174, 0.142443101320734 ], [ 34.73633338248316, 0.146471421320766 ], [ 34.738896859483184, 0.142015855320776 ], [ 34.742314828483181, 0.139269273320733 ], [ 34.74890662548318, 0.137621324320773 ], [ 34.762334359483184, 0.137621324320773 ], [ 34.765691293483194, 0.142015855320776 ], [ 34.767095101483157, 0.145433824320773 ], [ 34.769109261483202, 0.149034898320733 ], [ 34.773686898483156, 0.149218003320752 ], [ 34.777287972483172, 0.14763108932078 ], [ 34.780339730483199, 0.150255601320734 ], [ 34.781743539483152, 0.153063218320765 ], [ 34.785527718483188, 0.155626695320732 ], [ 34.788701546483189, 0.156847398320733 ], [ 34.791936410483167, 0.156053941320747 ], [ 34.795537484483184, 0.158251206320754 ], [ 34.797490609483184, 0.16044847232075 ], [ 34.8010916834832, 0.160021226320734 ], [ 34.804936898483156, 0.159838120320783 ], [ 34.807134164483152, 0.158068101320734 ], [ 34.808110726483157, 0.154039781320759 ], [ 34.812322152483198, 0.15123216332074 ], [ 34.816289437483185, 0.15245286732073 ], [ 34.817937386483202, 0.15544358932078 ], [ 34.816106332483166, 0.165270249320767 ], [ 34.816106332483166, 0.17106858932078 ], [ 34.815923226483157, 0.175646226320734 ], [ 34.81390906648317, 0.179857652320775 ], [ 34.816533578483181, 0.183641831320754 ], [ 34.821111214483203, 0.184862535320744 ], [ 34.826116097483172, 0.185045640320763 ], [ 34.829289925483174, 0.183031480320776 ], [ 34.833928597483172, 0.183031480320776 ], [ 34.840520394483171, 0.183275620320783 ], [ 34.844914925483174, 0.181444566320747 ], [ 34.84851600048318, 0.182665269320748 ], [ 34.852910531483182, 0.18565599232073 ], [ 34.854741586483151, 0.189623277320775 ], [ 34.8577323084832, 0.191271226320734 ], [ 34.863896859483184, 0.196276109320761 ], [ 34.867131722483172, 0.195055406320759 ], [ 34.871892464483203, 0.195665757320737 ], [ 34.87390662548318, 0.198839585320738 ], [ 34.876897347483172, 0.198473374320767 ], [ 34.880132211483151, 0.197069566320747 ], [ 34.883916390483186, 0.196825425320751 ], [ 34.88672400748316, 0.198656480320776 ], [ 34.887944711483151, 0.202867906320759 ], [ 34.891301644483171, 0.203844468320765 ], [ 34.89789344148317, 0.203051011320779 ], [ 34.902898324483196, 0.197252671320766 ] ] ] } } +, +{ "type": "Feature", "id": 37, "properties": { "OBJECTID": 38, "ID_": 1294, "COUNTY_NAM": "BUNGOMA", "CONST_CODE": 220, "CONSTITUEN": "KANDUYI", "COUNTY_COD": 39, "Shape_Leng": 2.90276116927, "Shape_Area": 0.24504475541 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.620305550483174, 1.100267808320777 ], [ 34.624089730483199, 1.097643296320766 ], [ 34.629521859483184, 1.093431870320783 ], [ 34.632939828483181, 1.091051499320767 ], [ 34.636540902483198, 1.089830796320766 ], [ 34.639714730483199, 1.088243882320737 ], [ 34.642705453483181, 1.08763353132076 ], [ 34.646306527483198, 1.085863511320779 ], [ 34.650945199483196, 1.083055894320748 ], [ 34.661138070483155, 1.08122483932078 ], [ 34.660893929483159, 1.077257554320736 ], [ 34.658940804483159, 1.071825425320751 ], [ 34.654912484483184, 1.061815660320744 ], [ 34.652898324483196, 1.057421128320752 ], [ 34.652287972483172, 1.054064195320732 ], [ 34.656316293483194, 1.050829331320754 ], [ 34.661687386483202, 1.043871324320773 ], [ 34.670537484483184, 1.031420152320775 ], [ 34.673528207483166, 1.02745286732073 ], [ 34.689519418483194, 1.004625718320765 ], [ 34.702703011483202, 0.988268296320766 ], [ 34.719487679483159, 0.965258042320781 ], [ 34.725896371483195, 0.95622483932078 ], [ 34.737920296483189, 0.940050523320733 ], [ 34.740117562483185, 0.937426011320779 ], [ 34.743901742483153, 0.93443528832074 ], [ 34.747930062483185, 0.932054917320781 ], [ 34.76453162548318, 0.922838609320761 ], [ 34.768132699483196, 0.92106858932078 ], [ 34.771123421483189, 0.921434800320751 ], [ 34.778508675483174, 0.923632066320747 ], [ 34.7835135584832, 0.923632066320747 ], [ 34.791936410483167, 0.919054429320736 ], [ 34.794499886483202, 0.916063706320754 ], [ 34.797490609483184, 0.913622300320751 ], [ 34.79968787548318, 0.91044847232075 ], [ 34.801335824483196, 0.90544358932078 ], [ 34.79968787548318, 0.902025620320783 ], [ 34.796086800483174, 0.900072495320783 ], [ 34.793096078483181, 0.896227281320759 ], [ 34.790288461483151, 0.893053452320769 ], [ 34.787927795483192, 0.89004687732074 ], [ 34.7891002674832, 0.886229949320748 ], [ 34.790688646483197, 0.88332242932074 ], [ 34.791358357483197, 0.879058145320753 ], [ 34.793096078483181, 0.874620835320738 ], [ 34.793889535483167, 0.871019761320779 ], [ 34.795720589483203, 0.868822495320783 ], [ 34.796697152483198, 0.865831773320733 ], [ 34.796086800483174, 0.862657945320732 ], [ 34.795903695483155, 0.858446519320748 ], [ 34.798528207483166, 0.851061265320763 ], [ 34.800298226483157, 0.847643296320766 ], [ 34.803533089483203, 0.845018785320744 ], [ 34.805913461483151, 0.840624253320752 ], [ 34.80609656648317, 0.836840074320773 ], [ 34.807927621483195, 0.833055894320748 ], [ 34.810491097483172, 0.82506028832074 ], [ 34.812139046483189, 0.818224351320734 ], [ 34.811345589483203, 0.810472886320779 ], [ 34.809941781483182, 0.806871812320762 ], [ 34.822698129483165, 0.808824937320762 ], [ 34.87109900748316, 0.823839585320738 ], [ 34.878545296483189, 0.827440660320744 ], [ 34.887700570483155, 0.832445542320781 ], [ 34.901921761483202, 0.83903733932078 ], [ 34.920720589483203, 0.848253648320733 ], [ 34.926927046483165, 0.852833834320731 ], [ 34.934655775483172, 0.853430560320757 ], [ 34.936894906483182, 0.855638902320775 ], [ 34.938298714483203, 0.85966722232075 ], [ 34.943120492483153, 0.868822495320783 ], [ 34.950688851483157, 0.868639390320763 ], [ 34.955327523483156, 0.869860093320765 ], [ 34.967290414483152, 0.872423570320732 ], [ 34.966313851483157, 0.877428452320769 ], [ 34.971501839483203, 0.878832261320779 ], [ 34.98828650748316, 0.884264390320763 ], [ 34.985906136483202, 0.878466050320751 ], [ 34.98914100048318, 0.879625718320765 ], [ 34.999333871483195, 0.881639878320752 ], [ 35.019719613483169, 0.886034410320744 ], [ 35.01953650748316, 0.880419175320751 ], [ 35.018498910483167, 0.876818101320734 ], [ 35.016911996483195, 0.872667710320738 ], [ 35.015508187483185, 0.864855210320738 ], [ 35.014104379483165, 0.860826890320763 ], [ 35.016728890483186, 0.857469956320754 ], [ 35.020085824483196, 0.855822007320737 ], [ 35.02289344148317, 0.853441636320779 ], [ 35.025517953483181, 0.850634019320748 ], [ 35.026311410483167, 0.847032945320732 ], [ 35.026494515483186, 0.843676011320779 ], [ 35.027532113483169, 0.839647691320747 ], [ 35.026128304483159, 0.835253160320744 ], [ 35.025517953483181, 0.830675523320733 ], [ 35.030339730483199, 0.822618882320737 ], [ 35.033086312483185, 0.819872300320751 ], [ 35.036138070483155, 0.820055406320759 ], [ 35.039311898483156, 0.819261949320773 ], [ 35.042729867483153, 0.817064683320777 ], [ 35.044744027483198, 0.812670152320775 ], [ 35.047490609483184, 0.809069077320769 ], [ 35.04968787548318, 0.805468003320752 ], [ 35.051946175483174, 0.801256577320769 ], [ 35.055586915483154, 0.799805079320774 ], [ 35.059137462483186, 0.798810926320752 ], [ 35.062932504483165, 0.795641343320765 ], [ 35.064885629483165, 0.792223374320767 ], [ 35.064885629483165, 0.788072984320761 ], [ 35.065923226483157, 0.783617417320781 ], [ 35.067848139483196, 0.780300739320748 ], [ 35.065923226483157, 0.775438706320754 ], [ 35.066533578483181, 0.771227281320759 ], [ 35.06595451448316, 0.766950680320744 ], [ 35.066143876483174, 0.763352792320743 ], [ 35.06264066948318, 0.75947086032073 ], [ 35.058237990483171, 0.761885232320762 ], [ 35.054261377483151, 0.761885232320762 ], [ 35.047775710483158, 0.759991607320783 ], [ 35.044935272483194, 0.758950113320734 ], [ 35.041509164483152, 0.755663316320747 ], [ 35.039538440483163, 0.752937852320767 ], [ 35.041148022483178, 0.74952932732077 ], [ 35.040106528483186, 0.746641548320779 ], [ 35.03711463248316, 0.747423570320732 ], [ 35.03210975048318, 0.749620835320738 ], [ 35.028508675483174, 0.747423570320732 ], [ 35.027898324483196, 0.743456285320744 ], [ 35.02429725048318, 0.742235581320754 ], [ 35.021123421483189, 0.742845933320777 ], [ 35.019292367483153, 0.745470445320732 ], [ 35.018926156483182, 0.748644273320733 ], [ 35.012517464483203, 0.751818101320734 ], [ 35.008489144483171, 0.746630113320746 ], [ 35.006291879483165, 0.744860093320765 ], [ 35.003301156483182, 0.74424974232073 ], [ 35.000493539483152, 0.742418687320762 ], [ 34.997136605483199, 0.74302903832074 ], [ 34.994328988483169, 0.744615952320769 ], [ 34.991732984483171, 0.747700712320748 ], [ 34.989507211483151, 0.751268785320744 ], [ 34.98642095548319, 0.752878825320747 ], [ 34.982224898483189, 0.752298519320729 ], [ 34.978519869483186, 0.754530465320781 ], [ 34.974725562483165, 0.753682325320765 ], [ 34.97070838248316, 0.751634995320783 ], [ 34.966313851483157, 0.751024644320748 ], [ 34.962712777483198, 0.751451890320763 ], [ 34.958928597483172, 0.748827378320752 ], [ 34.957093195483189, 0.747834629320775 ], [ 34.956245056483162, 0.750780797320769 ], [ 34.953343527483177, 0.750066574320781 ], [ 34.949102832483156, 0.750200491320752 ], [ 34.94672156648317, 0.747057359320761 ], [ 34.942937386483202, 0.742662827320769 ], [ 34.940799996483172, 0.739085404320744 ], [ 34.937898467483187, 0.740603127320751 ], [ 34.934639827483174, 0.738281904320727 ], [ 34.931515104483189, 0.739219321320772 ], [ 34.928836770483194, 0.737523042320729 ], [ 34.928105843483188, 0.735643785320744 ], [ 34.923711312483185, 0.727465074320773 ], [ 34.922981850483204, 0.724432760320778 ], [ 34.923031549483191, 0.721401091320727 ], [ 34.926335824483196, 0.716417710320738 ], [ 34.927922738483169, 0.712267320320732 ], [ 34.92969275748316, 0.709032456320754 ], [ 34.929509652483198, 0.706041734320761 ], [ 34.928105843483188, 0.702074449320773 ], [ 34.926510514483191, 0.700378205320758 ], [ 34.9245722344832, 0.69868842232074 ], [ 34.921490865483172, 0.698290826320769 ], [ 34.919133675483174, 0.694628160320744 ], [ 34.916918512483157, 0.692128089320758 ], [ 34.912297738483169, 0.687853257320737 ], [ 34.909307015483186, 0.684618394320748 ], [ 34.905522836483151, 0.684069077320769 ], [ 34.902715218483188, 0.684618394320748 ], [ 34.89929725048318, 0.684862535320744 ], [ 34.896123421483189, 0.686815660320744 ], [ 34.892863956483204, 0.688549726320727 ], [ 34.888921273483156, 0.686449449320773 ], [ 34.882695687483185, 0.682238023320733 ], [ 34.879521859483184, 0.681871812320762 ], [ 34.874944222483172, 0.683031480320776 ], [ 34.870122445483155, 0.682238023320733 ], [ 34.867131722483172, 0.681261460320738 ], [ 34.863839452483198, 0.683033082320774 ], [ 34.861155679483197, 0.680697206320756 ], [ 34.858720404483158, 0.677367340320754 ], [ 34.8577323084832, 0.672472398320733 ], [ 34.853887093483188, 0.67003099232073 ], [ 34.8499198084832, 0.668871324320773 ], [ 34.84570838248316, 0.66685716332074 ], [ 34.843760856483179, 0.664196974320757 ], [ 34.8421073084832, 0.660631577320769 ], [ 34.840886605483199, 0.657274644320748 ], [ 34.8384430114832, 0.65579775932076 ], [ 34.839138803483188, 0.651871499320746 ], [ 34.83789588248316, 0.648058335320738 ], [ 34.834722054483159, 0.645433824320773 ], [ 34.8342948084832, 0.641832749320767 ], [ 34.835698617483153, 0.638842027320775 ], [ 34.83615683448317, 0.635371267320747 ], [ 34.834019756483194, 0.63273719432078 ], [ 34.833473061483168, 0.625729565320737 ], [ 34.83073958948318, 0.622548798320733 ], [ 34.828254614483164, 0.620859015320773 ], [ 34.826763629483189, 0.618473439320778 ], [ 34.823881059483192, 0.617081853320767 ], [ 34.820948789483161, 0.617230952320765 ], [ 34.817668622483204, 0.615839366320754 ], [ 34.814885629483165, 0.613634507320737 ], [ 34.812139046483189, 0.608873765320763 ], [ 34.807629324483166, 0.605352773320758 ], [ 34.803703064483152, 0.603712689320728 ], [ 34.80126778948317, 0.596705061320731 ], [ 34.804150360483156, 0.593226096320732 ], [ 34.806890023483156, 0.590868394320748 ], [ 34.810810092483159, 0.586963960320756 ], [ 34.8076790244832, 0.585870571320752 ], [ 34.802495492483153, 0.585436265320763 ], [ 34.797307504483165, 0.582628648320733 ], [ 34.790715707483166, 0.577440660320744 ], [ 34.78711463248316, 0.57506028832074 ], [ 34.783940804483159, 0.575243394320748 ], [ 34.780522836483151, 0.573046128320752 ], [ 34.77686916948317, 0.569989163320767 ], [ 34.773686898483156, 0.566637437320762 ], [ 34.77148963248316, 0.563829820320732 ], [ 34.766545785483167, 0.562853257320737 ], [ 34.764562551483202, 0.559544147320762 ], [ 34.765909906483152, 0.554963143320774 ], [ 34.76353856248317, 0.553184635320745 ], [ 34.760789959483184, 0.550759397320744 ], [ 34.759912692483162, 0.546418843320734 ], [ 34.756891554483154, 0.544431969320781 ], [ 34.755067984483155, 0.541574135320727 ], [ 34.753118050483174, 0.539415757320737 ], [ 34.750549886483206, 0.537709256320736 ], [ 34.748540414483152, 0.534838120320783 ], [ 34.745915902483198, 0.536058824320773 ], [ 34.742250363483201, 0.534537251320782 ], [ 34.739393972483178, 0.531788648320739 ], [ 34.737920296483189, 0.530016343320765 ], [ 34.736943734483184, 0.526659410320744 ], [ 34.73610642848319, 0.522303273320742 ], [ 34.735944745483202, 0.520147506320766 ], [ 34.733357825483203, 0.516644385320771 ], [ 34.730285857483175, 0.515243136320746 ], [ 34.72852088248316, 0.51182786732073 ], [ 34.725713265483186, 0.509020249320767 ], [ 34.721318734483184, 0.507250230320776 ], [ 34.7171073084832, 0.509020249320767 ], [ 34.713140023483156, 0.506273667320781 ], [ 34.710332406483182, 0.503466050320751 ], [ 34.706914437483185, 0.503649156320759 ], [ 34.704717171483189, 0.505663316320747 ], [ 34.701543343483188, 0.505663316320747 ], [ 34.69812537548318, 0.502428452320769 ], [ 34.695362432483186, 0.497781424320747 ], [ 34.693583924483157, 0.492877054320727 ], [ 34.690350274483187, 0.489266145320753 ], [ 34.689865226483157, 0.485816918320777 ], [ 34.690296380483169, 0.482475479320781 ], [ 34.687297585483172, 0.484693164320729 ], [ 34.684331429483159, 0.483446519320748 ], [ 34.68109656648317, 0.483446519320748 ], [ 34.676946175483174, 0.482225816320747 ], [ 34.678288949483196, 0.478441636320779 ], [ 34.67914344148317, 0.474840562320762 ], [ 34.678870815483201, 0.471696644320727 ], [ 34.674774858483197, 0.469540877320751 ], [ 34.672124398483156, 0.465868394320748 ], [ 34.66992713248316, 0.463243882320737 ], [ 34.668846499483202, 0.45957045532077 ], [ 34.664495004483165, 0.458666245320783 ], [ 34.661138070483155, 0.45927659732075 ], [ 34.657903207483166, 0.453661363320746 ], [ 34.655095589483203, 0.452257554320736 ], [ 34.652104867483153, 0.453844468320765 ], [ 34.64929725048318, 0.452623765320763 ], [ 34.645327968483166, 0.449280234320779 ], [ 34.641555783483163, 0.449463899320731 ], [ 34.638263951483161, 0.45067891032073 ], [ 34.633916390483186, 0.451219956320754 ], [ 34.631291879483165, 0.45427171432078 ], [ 34.631308900483184, 0.459461564320745 ], [ 34.627669012483175, 0.46062210932075 ], [ 34.62390662548318, 0.458238999320767 ], [ 34.619695199483196, 0.45622483932078 ], [ 34.6174979334832, 0.452867906320759 ], [ 34.616704476483157, 0.45006028832074 ], [ 34.615694305483196, 0.442053400320728 ], [ 34.611516488483169, 0.444261949320773 ], [ 34.609136117483153, 0.44645921432078 ], [ 34.605901254483165, 0.449022691320747 ], [ 34.602117074483196, 0.447435777320775 ], [ 34.599492562483185, 0.444628160320744 ], [ 34.596318734483184, 0.443224351320734 ], [ 34.593144906483182, 0.443834702320769 ], [ 34.592290414483152, 0.440660874320767 ], [ 34.590886605483199, 0.438036363320746 ], [ 34.591496957483166, 0.43443528832074 ], [ 34.593511117483153, 0.430651109320761 ], [ 34.592900765483186, 0.427416245320783 ], [ 34.590886605483199, 0.424852769320748 ], [ 34.589726937483185, 0.421251695320732 ], [ 34.587102425483174, 0.425218980320776 ], [ 34.583928597483172, 0.42784349232073 ], [ 34.581914437483185, 0.430040757320737 ], [ 34.58148719148317, 0.433275620320783 ], [ 34.581731332483166, 0.436266343320765 ], [ 34.58093787548318, 0.439440171320766 ], [ 34.581120980483199, 0.44346849232073 ], [ 34.58093787548318, 0.447618882320737 ], [ 34.58093787548318, 0.453051011320779 ], [ 34.577336800483174, 0.455248277320775 ], [ 34.57172156648317, 0.456468980320776 ], [ 34.568120492483153, 0.456652085320738 ], [ 34.564702523483156, 0.456468980320776 ], [ 34.550542367483153, 0.467455308320777 ], [ 34.547393790483163, 0.466631920320763 ], [ 34.543172942483174, 0.463091097320782 ], [ 34.539495004483165, 0.460863511320779 ], [ 34.53711463248316, 0.458666245320783 ], [ 34.537534340483198, 0.454435743320741 ], [ 34.536961421483163, 0.450285946320773 ], [ 34.534514899483206, 0.446662616320734 ], [ 34.531278677483151, 0.443658659320758 ], [ 34.527715218483188, 0.44542161732073 ], [ 34.523503793483194, 0.447069566320747 ], [ 34.517705453483181, 0.448229234320761 ], [ 34.513738168483194, 0.45146409732075 ], [ 34.509526742483153, 0.455431382320737 ], [ 34.50531531648317, 0.45622483932078 ], [ 34.501897347483172, 0.456041734320761 ], [ 34.498723519483171, 0.45622483932078 ], [ 34.495732796483189, 0.457628648320733 ], [ 34.495305550483174, 0.46104661732073 ], [ 34.494939339483203, 0.466051499320767 ], [ 34.489324105483199, 0.475634019320748 ], [ 34.487493050483174, 0.47966233932078 ], [ 34.484319222483172, 0.482469956320754 ], [ 34.480718148483156, 0.481432359320761 ], [ 34.477544320483155, 0.480272691320747 ], [ 34.474309457483166, 0.479845445320732 ], [ 34.471318734483184, 0.477465074320773 ], [ 34.468694222483172, 0.474230210320738 ], [ 34.463933480483199, 0.469225327320769 ], [ 34.460698617483153, 0.467028062320762 ], [ 34.457097543483194, 0.466844956320754 ], [ 34.454106820483155, 0.467272202320769 ], [ 34.448918832483166, 0.466417710320738 ], [ 34.445134652483198, 0.464647691320747 ], [ 34.442693246483195, 0.463060777320775 ], [ 34.439885629483165, 0.461840074320773 ], [ 34.436711800483174, 0.461473863320746 ], [ 34.429936898483156, 0.464647691320747 ], [ 34.427312386483202, 0.467028062320762 ], [ 34.424321664483152, 0.46904222232075 ], [ 34.420720589483203, 0.472643296320766 ], [ 34.416936410483167, 0.473863999320767 ], [ 34.412541879483165, 0.474047105320776 ], [ 34.40710975048318, 0.473863999320767 ], [ 34.402715218483188, 0.471422593320765 ], [ 34.399114144483171, 0.469835679320736 ], [ 34.395945064483151, 0.46782252332076 ], [ 34.392886740483156, 0.466420575320737 ], [ 34.389525219483168, 0.469863434320755 ], [ 34.388411281483165, 0.475730175320732 ], [ 34.385503304483159, 0.486254136320779 ], [ 34.385930550483174, 0.490038316320747 ], [ 34.386851768483204, 0.493070477320768 ], [ 34.388738168483194, 0.495226304320736 ], [ 34.38945095748317, 0.496263766320735 ], [ 34.395085824483196, 0.497423570320732 ], [ 34.400090707483166, 0.497667710320738 ], [ 34.404729379483165, 0.498827378320752 ], [ 34.408940804483159, 0.503038804320736 ], [ 34.408330453483181, 0.507616441320747 ], [ 34.40570594148317, 0.51182786732073 ], [ 34.401921761483202, 0.515062730320776 ], [ 34.39789344148317, 0.522875230320776 ], [ 34.393498910483167, 0.532457749320767 ], [ 34.3909354334832, 0.536669175320751 ], [ 34.388310921483189, 0.540270249320767 ], [ 34.385503304483159, 0.539415757320737 ], [ 34.382695687483185, 0.54185716332074 ], [ 34.380742562483185, 0.545458238320746 ], [ 34.377690804483159, 0.549242417320781 ], [ 34.374700082483166, 0.552050035320744 ], [ 34.368901742483153, 0.559252183320777 ], [ 34.370305550483174, 0.562242906320759 ], [ 34.372319711483151, 0.565233628320752 ], [ 34.374089730483199, 0.568834702320769 ], [ 34.375737679483159, 0.573229234320761 ], [ 34.377141488483169, 0.576219956320754 ], [ 34.375920785483167, 0.579821031320759 ], [ 34.374089730483199, 0.582018296320766 ], [ 34.371892464483203, 0.585253160320744 ], [ 34.371343148483156, 0.588060777320775 ], [ 34.37109900748316, 0.591661851320734 ], [ 34.371343148483156, 0.596056382320737 ], [ 34.370732796483189, 0.599840562320762 ], [ 34.37109900748316, 0.604051988320746 ], [ 34.375920785483167, 0.605028550320751 ], [ 34.377690804483159, 0.607836167320781 ], [ 34.379338754483165, 0.61247483932078 ], [ 34.379094613483169, 0.616442124320767 ], [ 34.379338754483165, 0.621019761320779 ], [ 34.38031531648317, 0.624254624320767 ], [ 34.382512582483166, 0.628038804320736 ], [ 34.384343636483202, 0.632067124320767 ], [ 34.384343636483202, 0.640245835320738 ], [ 34.386540902483198, 0.642015855320776 ], [ 34.388921273483156, 0.643663804320736 ], [ 34.392095101483157, 0.644274156320759 ], [ 34.39453650748316, 0.647264878320752 ], [ 34.398320687483185, 0.648424546320766 ], [ 34.401494515483186, 0.650255601320734 ], [ 34.404729379483165, 0.651842515320763 ], [ 34.414739144483171, 0.655870835320738 ], [ 34.41992713248316, 0.659227769320748 ], [ 34.414495004483165, 0.666063706320754 ], [ 34.413091195483155, 0.669847886320779 ], [ 34.411687386483202, 0.675463120320783 ], [ 34.409734261483202, 0.679674546320766 ], [ 34.415898812483185, 0.687426011320779 ], [ 34.414128793483194, 0.694445054320736 ], [ 34.414311898483156, 0.698229234320761 ], [ 34.411687386483202, 0.70146409732075 ], [ 34.409123910483167, 0.712267320320732 ], [ 34.407292855483199, 0.716051499320767 ], [ 34.40570594148317, 0.719835679320736 ], [ 34.405522836483151, 0.723619859320761 ], [ 34.4085135584832, 0.724474351320734 ], [ 34.411931527483198, 0.722460191320747 ], [ 34.41492225048318, 0.722643296320766 ], [ 34.418340218483188, 0.722216050320751 ], [ 34.422917855483199, 0.723619859320761 ], [ 34.426946175483174, 0.726244370320783 ], [ 34.431523812483185, 0.725267808320777 ], [ 34.433537972483172, 0.728075425320751 ], [ 34.434514535483167, 0.732836167320781 ], [ 34.434697640483186, 0.73747483932078 ], [ 34.434331429483159, 0.742052476320734 ], [ 34.42969275748316, 0.750048081320754 ], [ 34.427312386483202, 0.753221910320744 ], [ 34.42468787548318, 0.755419175320751 ], [ 34.421086800483174, 0.757067124320767 ], [ 34.412908089483203, 0.76005784732075 ], [ 34.409490121483195, 0.758043687320762 ], [ 34.406743539483152, 0.75505296432078 ], [ 34.403325570483155, 0.753649156320759 ], [ 34.397710336483151, 0.754869859320761 ], [ 34.394292367483153, 0.757433335320738 ], [ 34.391911996483195, 0.760851304320736 ], [ 34.388494027483198, 0.764269273320733 ], [ 34.385503305483205, 0.768236557320731 ], [ 34.382329476483157, 0.771654527320775 ], [ 34.377507699483196, 0.771044175320751 ], [ 34.369939339483203, 0.770616929320736 ], [ 34.365300668483194, 0.773058335320738 ], [ 34.362920296483189, 0.775865952320769 ], [ 34.36609412548318, 0.779222886320779 ], [ 34.370732796483189, 0.782030503320752 ], [ 34.373113168483194, 0.784838120320783 ], [ 34.373723519483171, 0.788866441320747 ], [ 34.376897347483172, 0.793016831320754 ], [ 34.379338754483165, 0.794847886320779 ], [ 34.382146371483195, 0.791429917320781 ], [ 34.384343636483202, 0.79326097232075 ], [ 34.384526742483153, 0.79966966332074 ], [ 34.386540902483198, 0.801866929320736 ], [ 34.390691293483194, 0.80284349232073 ], [ 34.395085824483196, 0.80162278832074 ], [ 34.397527230483199, 0.800035874320767 ], [ 34.400090707483166, 0.802416245320783 ], [ 34.403325570483155, 0.804430406320759 ], [ 34.406133187483185, 0.80583421432078 ], [ 34.409917367483153, 0.806627671320766 ], [ 34.415898812483185, 0.809862535320744 ], [ 34.412724984483184, 0.812059800320751 ], [ 34.411504281483182, 0.814623277320775 ], [ 34.41351844148317, 0.818224351320734 ], [ 34.410710824483196, 0.820848863320746 ], [ 34.408940804483159, 0.823229234320761 ], [ 34.408330453483181, 0.82646409732075 ], [ 34.410344613483169, 0.830675523320733 ], [ 34.414495004483165, 0.833666245320783 ], [ 34.41492225048318, 0.838243882320737 ], [ 34.420903695483155, 0.846666734320761 ], [ 34.424504769483171, 0.85045091332074 ], [ 34.428533089483203, 0.852465074320773 ], [ 34.432927621483195, 0.853441636320779 ], [ 34.436345589483203, 0.854418199320773 ], [ 34.439092171483189, 0.855638902320775 ], [ 34.442143929483159, 0.855638902320775 ], [ 34.446294320483155, 0.86143724232073 ], [ 34.447515023483156, 0.865038316320747 ], [ 34.447698129483165, 0.86924974232073 ], [ 34.447087777483198, 0.872667710320738 ], [ 34.447087777483198, 0.875658433320777 ], [ 34.448308480483199, 0.879442613320746 ], [ 34.451299203483181, 0.885668199320773 ], [ 34.452336800483174, 0.889025132320737 ], [ 34.452092660483167, 0.893663804320736 ], [ 34.450932992483153, 0.89763108932078 ], [ 34.453496468483188, 0.900438706320754 ], [ 34.456914437483185, 0.901659410320744 ], [ 34.458501351483157, 0.904467027320775 ], [ 34.46094275748316, 0.907640855320776 ], [ 34.46429969148317, 0.909471910320744 ], [ 34.466496957483166, 0.91325608932078 ], [ 34.469487679483159, 0.917467515320763 ], [ 34.471501839483203, 0.92106858932078 ], [ 34.472539437483185, 0.924242417320781 ], [ 34.476140511483202, 0.930223863320746 ], [ 34.477300179483159, 0.933031480320776 ], [ 34.479314339483203, 0.936022202320769 ], [ 34.480107796483189, 0.939440171320766 ], [ 34.480107796483189, 0.94346849232073 ], [ 34.480901254483165, 0.947863023320733 ], [ 34.481511605483199, 0.951036851320734 ], [ 34.4827323084832, 0.953844468320765 ], [ 34.482915414483152, 0.958238999320767 ], [ 34.483891976483157, 0.961656968320765 ], [ 34.486516488483169, 0.968431870320783 ], [ 34.489324105483199, 0.979845445320732 ], [ 34.48914100048318, 0.983019273320733 ], [ 34.48828650748316, 0.98662034732075 ], [ 34.488103402483198, 0.989855210320738 ], [ 34.48828650748316, 1.004625718320765 ], [ 34.488713754483165, 1.008043687320762 ], [ 34.489507211483151, 1.011644761320779 ], [ 34.490117562483185, 1.016222398320733 ], [ 34.490911019483171, 1.01982347232075 ], [ 34.490911019483171, 1.022875230320776 ], [ 34.491704476483157, 1.026049058320777 ], [ 34.491887582483166, 1.030260484320761 ], [ 34.492925179483159, 1.033251206320754 ], [ 34.493108285483167, 1.036669175320751 ], [ 34.495488656483182, 1.04503099232073 ], [ 34.496892464483203, 1.047838609320761 ], [ 34.497930062483185, 1.051866929320736 ], [ 34.499944222483172, 1.054857652320775 ], [ 34.499944222483172, 1.059069077320769 ], [ 34.502141488483169, 1.063463609320761 ], [ 34.503301156483182, 1.067675035320744 ], [ 34.505498421483189, 1.070665757320737 ], [ 34.509526742483153, 1.075670640320763 ], [ 34.512090218483188, 1.077074449320773 ], [ 34.514104379483165, 1.07927171432078 ], [ 34.518315804483159, 1.087023179320736 ], [ 34.519292367483153, 1.091661851320734 ], [ 34.520513070483155, 1.095629136320779 ], [ 34.522527230483199, 1.098863999320767 ], [ 34.526128304483159, 1.102037827320769 ], [ 34.530889046483189, 1.103441636320779 ], [ 34.545293343483188, 1.102037827320769 ], [ 34.555303109483184, 1.100267808320777 ], [ 34.559514535483167, 1.10045091332074 ], [ 34.564519418483194, 1.098436753320752 ], [ 34.575139535483167, 1.099047105320776 ], [ 34.577703011483202, 1.102831285320744 ], [ 34.578496468483188, 1.135240952320769 ], [ 34.579717171483189, 1.147875230320776 ], [ 34.586736214483203, 1.139269273320733 ], [ 34.601506722483172, 1.120043199320773 ], [ 34.603887093483188, 1.116625230320776 ], [ 34.605718148483156, 1.11442796432078 ], [ 34.611516488483169, 1.108019273320733 ], [ 34.620305550483174, 1.100267808320777 ] ] ] } } +, +{ "type": "Feature", "id": 38, "properties": { "OBJECTID": 39, "ID_": 1295, "COUNTY_NAM": "BUSIA", "CONST_CODE": 225, "CONSTITUEN": "TESO NORTH", "COUNTY_COD": 40, "Shape_Leng": 2.57838796438, "Shape_Area": 0.14764386658 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.36914588248316, 0.770616929320736 ], [ 34.372930062483185, 0.76982347232075 ], [ 34.377507699483196, 0.771044175320751 ], [ 34.382329476483157, 0.771654527320775 ], [ 34.384892953483181, 0.769457261320779 ], [ 34.386113656483182, 0.766832749320767 ], [ 34.388494027483198, 0.764269273320733 ], [ 34.391118539483152, 0.76182786732073 ], [ 34.3928885584832, 0.758837144320748 ], [ 34.39594031648317, 0.756639878320752 ], [ 34.39789344148317, 0.753832261320779 ], [ 34.401128304483159, 0.753466050320751 ], [ 34.405889046483189, 0.754076402320775 ], [ 34.409490121483195, 0.758043687320762 ], [ 34.412297738483169, 0.76005784732075 ], [ 34.421086800483174, 0.757067124320767 ], [ 34.42468787548318, 0.755419175320751 ], [ 34.427312386483202, 0.753221910320744 ], [ 34.429936898483156, 0.749864976320734 ], [ 34.431523812483185, 0.746630113320746 ], [ 34.434087289483152, 0.742662827320769 ], [ 34.434697640483186, 0.737657945320732 ], [ 34.434941781483182, 0.734056870320783 ], [ 34.434087289483152, 0.730272691320747 ], [ 34.431523812483185, 0.726061265320763 ], [ 34.426518929483159, 0.726244370320783 ], [ 34.423711312483185, 0.723436753320752 ], [ 34.419744027483198, 0.722643296320766 ], [ 34.416142953483181, 0.723070542320781 ], [ 34.412908089483203, 0.722216050320751 ], [ 34.4085135584832, 0.724474351320734 ], [ 34.405339730483199, 0.723619859320761 ], [ 34.40570594148317, 0.719835679320736 ], [ 34.407292855483199, 0.715868394320748 ], [ 34.409123910483167, 0.712267320320732 ], [ 34.411687386483202, 0.70146409732075 ], [ 34.414311898483156, 0.698229234320761 ], [ 34.414128793483194, 0.694445054320736 ], [ 34.415898812483185, 0.687426011320779 ], [ 34.409734261483202, 0.679430406320759 ], [ 34.411687386483202, 0.675829331320754 ], [ 34.413091195483155, 0.669847886320779 ], [ 34.414495004483165, 0.666063706320754 ], [ 34.41992713248316, 0.659227769320748 ], [ 34.414739144483171, 0.655870835320738 ], [ 34.404318305483166, 0.651645970320769 ], [ 34.398308157483193, 0.648421867320733 ], [ 34.394505818483189, 0.647247873320734 ], [ 34.392095101483157, 0.644274156320759 ], [ 34.388921273483156, 0.643663804320736 ], [ 34.384526742483153, 0.640428941320747 ], [ 34.384343636483202, 0.632067124320767 ], [ 34.382512582483166, 0.628038804320736 ], [ 34.379888070483155, 0.623033921320766 ], [ 34.379094613483169, 0.618639390320763 ], [ 34.379338754483165, 0.612657945320732 ], [ 34.377287456483195, 0.607022236320742 ], [ 34.375992287483193, 0.605007529320742 ], [ 34.371195366483157, 0.604144084320749 ], [ 34.370715674483158, 0.600786239320766 ], [ 34.371343148483156, 0.596056382320737 ], [ 34.37109900748316, 0.591661851320734 ], [ 34.371343148483156, 0.588060777320775 ], [ 34.371892464483203, 0.585253160320744 ], [ 34.374089730483199, 0.582018296320766 ], [ 34.375920785483167, 0.579821031320759 ], [ 34.377141488483169, 0.576219956320754 ], [ 34.372136605483199, 0.564867417320781 ], [ 34.36914588248316, 0.560472886320779 ], [ 34.371343148483156, 0.556261460320738 ], [ 34.374700082483166, 0.552050035320744 ], [ 34.377690804483159, 0.549242417320781 ], [ 34.380742562483185, 0.545458238320746 ], [ 34.382714989483183, 0.541839872320734 ], [ 34.385556804483194, 0.539376966320728 ], [ 34.388272316483203, 0.540197935320746 ], [ 34.390672071483202, 0.536977211320729 ], [ 34.393498910483167, 0.532457749320767 ], [ 34.39789344148317, 0.522875230320776 ], [ 34.401921761483202, 0.515062730320776 ], [ 34.40570594148317, 0.51182786732073 ], [ 34.408330453483181, 0.507616441320747 ], [ 34.409123910483167, 0.503038804320736 ], [ 34.40710975048318, 0.500658433320777 ], [ 34.404546273483156, 0.498644273320733 ], [ 34.400090707483166, 0.497667710320738 ], [ 34.395085824483196, 0.497423570320732 ], [ 34.38953162548318, 0.496263902320775 ], [ 34.386907113483169, 0.49302903832074 ], [ 34.385930550483174, 0.490038316320747 ], [ 34.385503304483159, 0.486254136320779 ], [ 34.388738168483194, 0.474657456320754 ], [ 34.38953162548318, 0.469835679320736 ], [ 34.3928885584832, 0.466417710320738 ], [ 34.389286908483193, 0.459820785320742 ], [ 34.384099496483195, 0.457445542320781 ], [ 34.379521859483184, 0.457262437320762 ], [ 34.376714242483153, 0.458422105320776 ], [ 34.369328988483169, 0.455675523320733 ], [ 34.367742074483196, 0.451647202320769 ], [ 34.366521371483195, 0.447069566320747 ], [ 34.365300668483194, 0.439440171320766 ], [ 34.362920296483189, 0.437242906320759 ], [ 34.358891976483157, 0.43565599232073 ], [ 34.354497445483155, 0.432054917320781 ], [ 34.351933968483188, 0.428636949320773 ], [ 34.348699105483199, 0.426866929320736 ], [ 34.346318734483184, 0.421617906320759 ], [ 34.348943248483174, 0.41826097132076 ], [ 34.351933968483188, 0.415026109320761 ], [ 34.355107796483189, 0.411241929320736 ], [ 34.357305062483185, 0.408251206320754 ], [ 34.359746468483188, 0.40544358932078 ], [ 34.363530648483156, 0.40245286732073 ], [ 34.367925179483159, 0.401842515320763 ], [ 34.370732796483189, 0.40245286732073 ], [ 34.373723519483171, 0.402269761320779 ], [ 34.37891150748316, 0.403063218320765 ], [ 34.381536019483171, 0.401049058320777 ], [ 34.383916390483186, 0.39763108932078 ], [ 34.386296761483202, 0.395616929320736 ], [ 34.389287484483184, 0.395067613320746 ], [ 34.392522348483162, 0.393846909320755 ], [ 34.398931039483152, 0.389269273320733 ], [ 34.401921761483202, 0.387438218320765 ], [ 34.405522836483151, 0.385668199320773 ], [ 34.409123910483167, 0.382860581320754 ], [ 34.415288461483151, 0.376268785320744 ], [ 34.418523324483196, 0.374437730320776 ], [ 34.42133094148317, 0.371630113320746 ], [ 34.421086800483174, 0.368273179320736 ], [ 34.417485726483157, 0.36607591332074 ], [ 34.41492225048318, 0.364855210320738 ], [ 34.408086312483185, 0.362230699320773 ], [ 34.39648963248316, 0.358629624320767 ], [ 34.391911996483195, 0.35466233932078 ], [ 34.387944711483151, 0.352831285320744 ], [ 34.385320199483196, 0.349840562320762 ], [ 34.385137093483188, 0.345629136320779 ], [ 34.385137093483188, 0.337816636320779 ], [ 34.385503304483159, 0.333422105320776 ], [ 34.384709847483172, 0.330431382320737 ], [ 34.384343636483202, 0.327440660320744 ], [ 34.384343636483202, 0.322435777320775 ], [ 34.383733285483167, 0.319017808320777 ], [ 34.382939828483181, 0.316271226320734 ], [ 34.381108773483156, 0.313219468320765 ], [ 34.379094613483169, 0.311022202320769 ], [ 34.376286996483195, 0.309252183320777 ], [ 34.372319711483151, 0.306017320320732 ], [ 34.365911019483171, 0.302050035320744 ], [ 34.362309945483155, 0.30302659732075 ], [ 34.357305062483185, 0.303820054320736 ], [ 34.350896371483195, 0.304430406320759 ], [ 34.345891488483169, 0.305468003320752 ], [ 34.340337289483152, 0.307238023320733 ], [ 34.335088265483186, 0.308458726320734 ], [ 34.331120980483199, 0.308458726320734 ], [ 34.327336800483174, 0.307848374320767 ], [ 34.32172156648317, 0.307665269320748 ], [ 34.317510140483186, 0.306627671320766 ], [ 34.313298714483203, 0.306627671320766 ], [ 34.310124886483202, 0.307238023320733 ], [ 34.293889535483167, 0.307238023320733 ], [ 34.289311898483156, 0.305651109320761 ], [ 34.285344613483169, 0.306444566320747 ], [ 34.282720101483157, 0.307665269320748 ], [ 34.279912484483184, 0.308275620320783 ], [ 34.276128304483159, 0.308275620320783 ], [ 34.273320687483185, 0.307054917320781 ], [ 34.265691293483194, 0.30583421432078 ], [ 34.261296761483202, 0.307665269320748 ], [ 34.257146371483195, 0.310228745320783 ], [ 34.252324593483188, 0.311022202320769 ], [ 34.247319711483151, 0.308641831320754 ], [ 34.2405448084832, 0.294420640320763 ], [ 34.23828650748316, 0.291429917320781 ], [ 34.235723031483182, 0.289659898320733 ], [ 34.228887093483188, 0.28825608932078 ], [ 34.218694222483172, 0.286852281320759 ], [ 34.209538949483196, 0.284471910320744 ], [ 34.205693734483184, 0.282823960320738 ], [ 34.206120980483199, 0.279039781320759 ], [ 34.206304086483151, 0.274462144320748 ], [ 34.205327523483156, 0.269030015320763 ], [ 34.205327523483156, 0.264025132320737 ], [ 34.204106820483155, 0.261034410320744 ], [ 34.202092660483167, 0.265673081320754 ], [ 34.199346078483181, 0.267443101320734 ], [ 34.192693246483195, 0.26982347232075 ], [ 34.190129769483171, 0.271471421320766 ], [ 34.187322152483198, 0.273668687320762 ], [ 34.185491097483172, 0.275865952320769 ], [ 34.184697640483186, 0.280260484320761 ], [ 34.182744515483186, 0.284471910320744 ], [ 34.17969275748316, 0.286669175320751 ], [ 34.175115121483195, 0.29326097232075 ], [ 34.167912972483172, 0.29606858932078 ], [ 34.160100472483172, 0.298448960320738 ], [ 34.160344613483169, 0.295458238320746 ], [ 34.159917367483153, 0.29185716332074 ], [ 34.159123910483167, 0.288439195320732 ], [ 34.151921761483202, 0.276049058320777 ], [ 34.150090707483166, 0.273241441320747 ], [ 34.148686898483156, 0.269274156320759 ], [ 34.145696175483174, 0.265428941320747 ], [ 34.143926156483182, 0.262072007320737 ], [ 34.139104379483165, 0.25505296432078 ], [ 34.135320199483196, 0.251024644320748 ], [ 34.132939828483181, 0.249071519320748 ], [ 34.12891150748316, 0.247057359320761 ], [ 34.117742074483196, 0.240831773320733 ], [ 34.116887582483166, 0.23466722232075 ], [ 34.117314828483181, 0.227037827320769 ], [ 34.117131722483172, 0.223070542320781 ], [ 34.117314828483181, 0.219652574320773 ], [ 34.116704476483157, 0.216051499320767 ], [ 34.11609412548318, 0.213243882320737 ], [ 34.114507211483151, 0.209032456320754 ], [ 34.112126839483203, 0.205431382320737 ], [ 34.110112679483159, 0.20323411732073 ], [ 34.110723031483182, 0.199266831320754 ], [ 34.106511605483199, 0.187242906320759 ], [ 34.10632850048318, 0.183458726320734 ], [ 34.1077323084832, 0.180651109320761 ], [ 34.110112679483159, 0.17784349232073 ], [ 34.112493050483174, 0.17302171432078 ], [ 34.111516488483169, 0.161669175320751 ], [ 34.112920296483189, 0.150255601320734 ], [ 34.114507211483151, 0.147447984320761 ], [ 34.114507211483151, 0.142626206320754 ], [ 34.112309945483155, 0.134264390320763 ], [ 34.110723031483182, 0.131029527320775 ], [ 34.108342660483167, 0.127855699320773 ], [ 34.103703988483169, 0.124071519320748 ], [ 34.103703988483169, 0.129625718320765 ], [ 34.105535043483194, 0.133226792320781 ], [ 34.101933968483188, 0.134020249320767 ], [ 34.098332894483171, 0.132616441320747 ], [ 34.093511117483153, 0.128038804320736 ], [ 34.091130746483195, 0.124437730320776 ], [ 34.08734656648317, 0.124254624320767 ], [ 34.083745492483153, 0.121019761320779 ], [ 34.078923714483203, 0.119860093320765 ], [ 34.072942269483171, 0.116625230320776 ], [ 34.074101937483185, 0.111254136320779 ], [ 34.074346078483181, 0.106432359320761 ], [ 34.074346078483181, 0.102465074320773 ], [ 34.073308480483199, 0.099474351320734 ], [ 34.069524300483174, 0.093431870320783 ], [ 34.066289437483185, 0.087023179320736 ], [ 34.062688363483169, 0.07042161732073 ], [ 34.042729867483153, -0.002149183679253 ], [ 34.032903207483166, -0.016553480679252 ], [ 34.028691781483182, -0.02137525767927 ], [ 34.019109261483202, -0.028272230679252 ], [ 34.016301644483171, -0.030042250679233 ], [ 34.013494027483198, -0.029065687679238 ], [ 34.007939828483181, -0.028638441679223 ], [ 33.949895394483171, -0.028943617679263 ], [ 33.929936898483156, 0.040026109320761 ], [ 33.923894418483194, 0.060228745320783 ], [ 33.912297738483169, 0.097643296320766 ], [ 33.910893929483159, 0.10045091332074 ], [ 33.911321175483174, 0.10466233932078 ], [ 33.913091195483155, 0.10826341332074 ], [ 33.922490609483184, 0.120470445320732 ], [ 33.954900277483198, 0.164232652320775 ], [ 33.986943734483184, 0.207018296320766 ], [ 34.010686410483167, 0.239244859320761 ], [ 34.01312781648317, 0.243639390320763 ], [ 34.014897836483151, 0.247423570320732 ], [ 34.018315804483159, 0.251024644320748 ], [ 34.022099984483184, 0.254625718320765 ], [ 34.02148963248316, 0.259264390320763 ], [ 34.023320687483185, 0.261644761320779 ], [ 34.025090707483166, 0.267259995320783 ], [ 34.028935921483189, 0.268053452320769 ], [ 34.034123910483167, 0.269457261320779 ], [ 34.037908089483203, 0.271471421320766 ], [ 34.040105355483199, 0.273851792320781 ], [ 34.0413260584832, 0.277269761320779 ], [ 34.03992225048318, 0.280016343320765 ], [ 34.0413260584832, 0.287645738320746 ], [ 34.042485726483157, 0.291063706320754 ], [ 34.047490609483184, 0.292223374320767 ], [ 34.04968787548318, 0.294847886320779 ], [ 34.049504769483171, 0.299242417320781 ], [ 34.050908578483181, 0.303270738320746 ], [ 34.053105843483188, 0.306627671320766 ], [ 34.057134164483152, 0.308641831320754 ], [ 34.059941781483182, 0.31065599232073 ], [ 34.059331429483159, 0.313829820320732 ], [ 34.058293832483166, 0.317064683320777 ], [ 34.058537972483172, 0.32145921432078 ], [ 34.062139046483189, 0.322863023320733 ], [ 34.065495980483199, 0.323473374320767 ], [ 34.071538461483151, 0.323046128320752 ], [ 34.0745291834832, 0.326036851320734 ], [ 34.081304086483151, 0.330675523320733 ], [ 34.08148719148317, 0.333849351320734 ], [ 34.084538949483196, 0.335619370320783 ], [ 34.08789588248316, 0.338243882320737 ], [ 34.090886605483199, 0.341661851320734 ], [ 34.095525277483198, 0.345018785320744 ], [ 34.098943246483195, 0.348436753320752 ], [ 34.098088754483165, 0.352220933320777 ], [ 34.099309457483166, 0.354845445320732 ], [ 34.101933968483188, 0.358019273320733 ], [ 34.104314339483203, 0.36021653832074 ], [ 34.106938851483157, 0.364855210320738 ], [ 34.108525765483186, 0.369615952320769 ], [ 34.108708871483195, 0.373461167320781 ], [ 34.108342660483167, 0.37724534732075 ], [ 34.106511605483199, 0.38505784732075 ], [ 34.105901254483165, 0.388475816320747 ], [ 34.105535043483194, 0.391832749320767 ], [ 34.104741586483151, 0.395616929320736 ], [ 34.102727425483174, 0.399034898320733 ], [ 34.100896371483195, 0.402819077320769 ], [ 34.100713265483186, 0.406847398320733 ], [ 34.0999198084832, 0.411852281320759 ], [ 34.09711219148317, 0.415636460320738 ], [ 34.093938363483169, 0.418016831320754 ], [ 34.091130746483195, 0.421251695320732 ], [ 34.089726937483185, 0.42466966332074 ], [ 34.089543832483166, 0.429430406320759 ], [ 34.089726937483185, 0.432665269320748 ], [ 34.089543832483166, 0.43583909732075 ], [ 34.090520394483171, 0.43864671432078 ], [ 34.091313851483157, 0.441637437320762 ], [ 34.09070350048318, 0.445055406320759 ], [ 34.090093148483156, 0.45006028832074 ], [ 34.089910043483194, 0.455431382320737 ], [ 34.092717660483167, 0.458849351320734 ], [ 34.09570838248316, 0.46104661732073 ], [ 34.097722543483194, 0.464464585320738 ], [ 34.101323617483153, 0.465074937320762 ], [ 34.102910531483182, 0.467821519320748 ], [ 34.105901254483165, 0.470446031320759 ], [ 34.11133338248316, 0.475817124320767 ], [ 34.11414100048318, 0.478075425320751 ], [ 34.116887582483166, 0.47966233932078 ], [ 34.120122445483155, 0.480272691320747 ], [ 34.118901742483153, 0.484056870320783 ], [ 34.118108285483167, 0.490648667320781 ], [ 34.118718636483202, 0.494066636320779 ], [ 34.118901742483153, 0.498461167320781 ], [ 34.118291390483186, 0.503466050320751 ], [ 34.118108285483167, 0.507250230320776 ], [ 34.119695199483196, 0.511461656320759 ], [ 34.12390662548318, 0.513658921320766 ], [ 34.12250281648317, 0.517443101320734 ], [ 34.118718636483202, 0.520067613320746 ], [ 34.128545296483189, 0.536852281320759 ], [ 34.127324593483188, 0.547228257320737 ], [ 34.127934945483155, 0.556017320320732 ], [ 34.139287484483184, 0.583055894320748 ], [ 34.143132699483196, 0.581835191320747 ], [ 34.147710336483151, 0.584459702320769 ], [ 34.152532113483169, 0.58622972232075 ], [ 34.155522836483151, 0.589464585320738 ], [ 34.159917367483153, 0.593676011320779 ], [ 34.166142953483181, 0.598863999320767 ], [ 34.170110238483169, 0.60045091332074 ], [ 34.173711312483185, 0.602465074320773 ], [ 34.177495492483153, 0.606432359320761 ], [ 34.182317269483171, 0.605638902320775 ], [ 34.186894906483182, 0.606432359320761 ], [ 34.185918343483188, 0.61021653832074 ], [ 34.188725961483151, 0.611864488320746 ], [ 34.1917166834832, 0.615038316320747 ], [ 34.193303597483172, 0.61924974232073 ], [ 34.196538461483151, 0.621447007320737 ], [ 34.198308480483199, 0.624620835320738 ], [ 34.201116097483172, 0.625658433320777 ], [ 34.204717171483189, 0.622850816320747 ], [ 34.208745492483153, 0.625231187320762 ], [ 34.212712777483198, 0.623827378320752 ], [ 34.217534554483159, 0.624620835320738 ], [ 34.220342171483189, 0.629442613320746 ], [ 34.223332894483171, 0.629625718320765 ], [ 34.226506722483172, 0.628649156320759 ], [ 34.230535043483194, 0.626634995320783 ], [ 34.233342660483167, 0.628038804320736 ], [ 34.237126839483203, 0.627428452320769 ], [ 34.240300668483194, 0.629625718320765 ], [ 34.242314828483181, 0.632433335320738 ], [ 34.247136605483199, 0.630663316320747 ], [ 34.251286996483195, 0.629625718320765 ], [ 34.254521859483184, 0.631639878320752 ], [ 34.2581229334832, 0.634447495320783 ], [ 34.262700570483155, 0.637255113320746 ], [ 34.267339242483153, 0.637621324320773 ], [ 34.270513070483155, 0.639269273320733 ], [ 34.273137582483166, 0.640428941320747 ], [ 34.276128304483159, 0.640673081320754 ], [ 34.277898324483196, 0.643236558320777 ], [ 34.27930213248316, 0.646227281320759 ], [ 34.278935921483189, 0.649828355320776 ], [ 34.278935921483189, 0.653063218320765 ], [ 34.278508675483174, 0.656847398320733 ], [ 34.279119027483198, 0.661425035320744 ], [ 34.28070594148317, 0.664415757320737 ], [ 34.279912484483184, 0.668444077320769 ], [ 34.278142464483203, 0.673265855320776 ], [ 34.277715218483188, 0.677416245320783 ], [ 34.279912484483184, 0.680223863320746 ], [ 34.283330453483181, 0.681871812320762 ], [ 34.285893929483159, 0.680651109320761 ], [ 34.292119515483186, 0.684069077320769 ], [ 34.298528207483166, 0.690233628320752 ], [ 34.30273963248316, 0.691271226320734 ], [ 34.306890023483156, 0.694445054320736 ], [ 34.311894906483182, 0.695055406320759 ], [ 34.313115609483184, 0.699633042320781 ], [ 34.309331429483159, 0.70787278832074 ], [ 34.309514535483167, 0.712450425320751 ], [ 34.307927621483195, 0.717028062320762 ], [ 34.308293832483166, 0.722460191320747 ], [ 34.309087289483152, 0.726244370320783 ], [ 34.308110726483157, 0.730272691320747 ], [ 34.309087289483152, 0.734850327320769 ], [ 34.310918343483188, 0.73747483932078 ], [ 34.309697640483186, 0.740038316320747 ], [ 34.311101449483196, 0.746874253320752 ], [ 34.311711800483174, 0.751634995320783 ], [ 34.313298714483203, 0.754259507320737 ], [ 34.314092171483189, 0.758043687320762 ], [ 34.31531287548318, 0.76182786732073 ], [ 34.318730843483188, 0.764025132320737 ], [ 34.325505746483195, 0.766039292320781 ], [ 34.329900277483198, 0.76646653832074 ], [ 34.333745492483153, 0.766649644320748 ], [ 34.336919320483155, 0.768053452320769 ], [ 34.339726937483185, 0.76964036732073 ], [ 34.343511117483153, 0.770250718320765 ], [ 34.346135629483165, 0.772020738320746 ], [ 34.353703988483169, 0.772875230320776 ], [ 34.358525765483186, 0.775438706320754 ], [ 34.361699593483188, 0.774462144320748 ], [ 34.365300668483194, 0.773058335320738 ], [ 34.36914588248316, 0.770616929320736 ] ] ] } } +, +{ "type": "Feature", "id": 39, "properties": { "OBJECTID": 40, "ID_": 2082, "COUNTY_NAM": "SIAYA", "CONST_CODE": 232, "CONSTITUEN": "UGENYA", "COUNTY_COD": 41, "Shape_Leng": 2.80244601296, "Shape_Area": 0.28583735592 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.265867715483175, 0.305860945320771 ], [ 34.273320687483185, 0.307054917320781 ], [ 34.276128304483159, 0.308275620320783 ], [ 34.279912484483184, 0.308275620320783 ], [ 34.282720101483157, 0.307665269320748 ], [ 34.285344613483169, 0.306444566320747 ], [ 34.289495004483165, 0.305651109320761 ], [ 34.293706429483159, 0.306871812320762 ], [ 34.300542367483153, 0.307238023320733 ], [ 34.310124886483202, 0.307238023320733 ], [ 34.313298714483203, 0.306627671320766 ], [ 34.317510140483186, 0.306627671320766 ], [ 34.327336800483174, 0.307848374320767 ], [ 34.331120980483199, 0.308458726320734 ], [ 34.335332406483182, 0.308458726320734 ], [ 34.340337289483152, 0.307238023320733 ], [ 34.345525277483198, 0.305223863320746 ], [ 34.351140511483202, 0.304430406320759 ], [ 34.357915414483152, 0.303820054320736 ], [ 34.362309945483155, 0.30302659732075 ], [ 34.366338265483186, 0.30162278832074 ], [ 34.371892464483203, 0.305651109320761 ], [ 34.374944222483172, 0.305651109320761 ], [ 34.378118050483174, 0.304430406320759 ], [ 34.380498421483189, 0.302660386320779 ], [ 34.383489144483171, 0.297472398320733 ], [ 34.389287484483184, 0.292223374320767 ], [ 34.395085824483196, 0.286425035320744 ], [ 34.395513070483155, 0.283434312320762 ], [ 34.396306527483198, 0.280626695320732 ], [ 34.393743050483174, 0.278063218320765 ], [ 34.388310921483189, 0.273668687320762 ], [ 34.390508187483185, 0.269274156320759 ], [ 34.399724496483195, 0.261217515320763 ], [ 34.401128304483159, 0.258043687320762 ], [ 34.399724496483195, 0.254442613320746 ], [ 34.398931039483152, 0.251024644320748 ], [ 34.398503793483194, 0.247850816320747 ], [ 34.398320687483185, 0.241259019320748 ], [ 34.399907601483157, 0.238451402320775 ], [ 34.39929725048318, 0.234850327320769 ], [ 34.396733773483156, 0.231249253320752 ], [ 34.391911996483195, 0.230028550320751 ], [ 34.384892953483181, 0.226427476320734 ], [ 34.386296761483202, 0.223070542320781 ], [ 34.391118539483152, 0.214464585320738 ], [ 34.391118539483152, 0.21104661732073 ], [ 34.391911996483195, 0.20787278832074 ], [ 34.392339242483153, 0.20323411732073 ], [ 34.391118539483152, 0.199022691320747 ], [ 34.391118539483152, 0.191271226320734 ], [ 34.389287484483184, 0.188036363320746 ], [ 34.386296761483202, 0.180468003320752 ], [ 34.385320199483196, 0.177233140320763 ], [ 34.390691293483194, 0.178453843320765 ], [ 34.399907601483157, 0.182848374320767 ], [ 34.403691781483182, 0.185228745320783 ], [ 34.407536996483195, 0.188219468320765 ], [ 34.410100472483172, 0.192430894320748 ], [ 34.411931527483198, 0.19645921432078 ], [ 34.414739144483171, 0.198839585320738 ], [ 34.421697152483198, 0.202440660320744 ], [ 34.425115121483195, 0.206652085320738 ], [ 34.42969275748316, 0.210619370320783 ], [ 34.437322152483198, 0.199633043320771 ], [ 34.434697640483186, 0.197069566320747 ], [ 34.431523812483185, 0.191454331320754 ], [ 34.430303109483184, 0.188036363320746 ], [ 34.427495492483153, 0.183824937320762 ], [ 34.430120004483165, 0.180040757320737 ], [ 34.430303109483184, 0.176866929320736 ], [ 34.436894906483182, 0.17106858932078 ], [ 34.439519418483194, 0.167650620320783 ], [ 34.4417166834832, 0.163866441320747 ], [ 34.440129769483171, 0.160875718320765 ], [ 34.438115609483184, 0.157640855320776 ], [ 34.434941781483182, 0.154222886320779 ], [ 34.432134164483152, 0.152025620320783 ], [ 34.428716195483155, 0.150438706320754 ], [ 34.430303109483184, 0.145861070320732 ], [ 34.435735238483169, 0.143846910320744 ], [ 34.43890906648317, 0.143663804320736 ], [ 34.443120492483153, 0.145616929320736 ], [ 34.446538461483151, 0.14763108932078 ], [ 34.4495291834832, 0.148851792320781 ], [ 34.452519906483182, 0.150865952320769 ], [ 34.457524789483152, 0.151842515320763 ], [ 34.462529671483189, 0.15245286732073 ], [ 34.465093148483156, 0.153673570320732 ], [ 34.469914925483174, 0.155016343320765 ], [ 34.474309457483166, 0.154467027320775 ], [ 34.477300179483159, 0.153246324320773 ], [ 34.47992469148317, 0.151659410320744 ], [ 34.482121957483166, 0.149218003320752 ], [ 34.483891976483157, 0.142259995320783 ], [ 34.484929574483196, 0.138842027320775 ], [ 34.483525765483186, 0.136217515320763 ], [ 34.480718148483156, 0.135240952320769 ], [ 34.472722543483194, 0.129076402320775 ], [ 34.468694222483172, 0.128038804320736 ], [ 34.465093148483156, 0.127855699320773 ], [ 34.46094275748316, 0.128221910320744 ], [ 34.45789100048318, 0.128038804320736 ], [ 34.457707894483171, 0.124254624320767 ], [ 34.459111703483181, 0.120653550320751 ], [ 34.46429969148317, 0.120470445320732 ], [ 34.468511117483153, 0.118639390320763 ], [ 34.472905648483156, 0.117418687320762 ], [ 34.476933968483188, 0.115831773320733 ], [ 34.479131234483184, 0.112230699320773 ], [ 34.475102914483152, 0.11021653832074 ], [ 34.4749198084832, 0.106859605320776 ], [ 34.475102914483152, 0.102465074320773 ], [ 34.47852088248316, 0.102648179320736 ], [ 34.485723031483182, 0.102465074320773 ], [ 34.4905448084832, 0.101427476320734 ], [ 34.495488656483182, 0.102037827320769 ], [ 34.496892464483203, 0.105455796320766 ], [ 34.496892464483203, 0.108446519320748 ], [ 34.500127328483181, 0.110033433320777 ], [ 34.503301156483182, 0.11247483932078 ], [ 34.501897347483172, 0.115648667320781 ], [ 34.499516976483157, 0.119615952320769 ], [ 34.500920785483167, 0.122850816320747 ], [ 34.503545296483189, 0.120836656320759 ], [ 34.508306039483152, 0.114061753320752 ], [ 34.510320199483196, 0.116625230320776 ], [ 34.512700570483155, 0.120043199320773 ], [ 34.513494027483198, 0.123827378320752 ], [ 34.517522347483172, 0.124437730320776 ], [ 34.521916879483165, 0.123033921320766 ], [ 34.526494515483186, 0.123033921320766 ], [ 34.529912484483184, 0.125231187320762 ], [ 34.531926644483171, 0.129076402320775 ], [ 34.533330453483181, 0.132433335320738 ], [ 34.537297738483169, 0.13487474232073 ], [ 34.541509164483152, 0.136217515320763 ], [ 34.545537484483184, 0.136461656320759 ], [ 34.547490609483184, 0.134020249320767 ], [ 34.5491385584832, 0.130663316320747 ], [ 34.552129281483182, 0.128038804320736 ], [ 34.554936898483156, 0.124620835320738 ], [ 34.55273963248316, 0.120226304320736 ], [ 34.551335824483196, 0.116259019320748 ], [ 34.547490609483184, 0.114244859320761 ], [ 34.545293343483188, 0.112047593320765 ], [ 34.548894418483194, 0.111254136320779 ], [ 34.552495492483153, 0.110033433320777 ], [ 34.55469275748316, 0.106676499320767 ], [ 34.558293832483166, 0.105028550320751 ], [ 34.556706918483194, 0.10045091332074 ], [ 34.555730355483199, 0.096666734320761 ], [ 34.556890023483156, 0.093248765320763 ], [ 34.557134164483152, 0.089464585320738 ], [ 34.555120004483165, 0.085436265320763 ], [ 34.557317269483171, 0.080858628320752 ], [ 34.558293832483166, 0.075426499320767 ], [ 34.559331429483159, 0.071276109320761 ], [ 34.559331429483159, 0.067675035320744 ], [ 34.558721078483181, 0.059618394320748 ], [ 34.557927621483195, 0.056627671320766 ], [ 34.557744515483186, 0.053636949320773 ], [ 34.559331429483159, 0.049852769320748 ], [ 34.559941781483182, 0.046434800320751 ], [ 34.556890023483156, 0.04606858932078 ], [ 34.554326546483189, 0.044054429320736 ], [ 34.553533089483203, 0.040270249320767 ], [ 34.551702035483167, 0.033617417320781 ], [ 34.550115121483195, 0.030870835320738 ], [ 34.550115121483195, 0.02763597232075 ], [ 34.550542367483153, 0.023668687320762 ], [ 34.548894418483194, 0.018053452320769 ], [ 34.546086800483174, 0.014635484320761 ], [ 34.542912972483172, 0.01286546432078 ], [ 34.543706429483159, 0.007250230320776 ], [ 34.53992225048318, 0.00505296432078 ], [ 34.536138070483155, 0.003466050320751 ], [ 34.53711463248316, -0.000562269679224 ], [ 34.540532601483157, -0.002332289679262 ], [ 34.542302621483195, -0.004834730679252 ], [ 34.539739144483171, -0.008740980679252 ], [ 34.536931527483198, -0.011975843679241 ], [ 34.535527718483188, -0.014661390679239 ], [ 34.531499398483156, -0.019055922679231 ], [ 34.5257010584832, -0.022229750679233 ], [ 34.52289344148317, -0.02314527767925 ], [ 34.518498910483167, -0.024182875679233 ], [ 34.511540902483198, -0.027356703679234 ], [ 34.506902230483199, -0.028882582679219 ], [ 34.5003104334832, -0.030164320679264 ], [ 34.491887582483166, -0.030469496679248 ], [ 34.484929574483196, -0.033643324679249 ], [ 34.475896371483195, -0.03986891067922 ], [ 34.47211219148317, -0.041944105679252 ], [ 34.467534554483159, -0.043347914679262 ], [ 34.461308968483188, -0.043958265679239 ], [ 34.458501351483157, -0.047864515679239 ], [ 34.455510629483165, -0.048352797679231 ], [ 34.452886117483153, -0.051160414679262 ], [ 34.444707406483182, -0.05744703567922 ], [ 34.441533578483181, -0.059461195679264 ], [ 34.431523812483185, -0.064038832679219 ], [ 34.429509652483198, -0.067029554679268 ], [ 34.425298226483157, -0.070264418679246 ], [ 34.418706429483159, -0.079541761679254 ], [ 34.416936410483167, -0.087476332679219 ], [ 34.417119515483186, -0.091382582679219 ], [ 34.422124398483156, -0.10926588267927 ], [ 34.425115121483195, -0.117566664679262 ], [ 34.425725472483172, -0.120740492679263 ], [ 34.427495492483153, -0.124524672679231 ], [ 34.428716195483155, -0.12806471167926 ], [ 34.428899300483174, -0.129651625679233 ], [ 34.42914344148317, -0.138440687679238 ], [ 34.432317269483171, -0.146558363679221 ], [ 34.433721078483181, -0.151136000679233 ], [ 34.437688363483169, -0.162549574679249 ], [ 34.43890906648317, -0.166577894679224 ], [ 34.442937386483202, -0.178052504679217 ], [ 34.462529671483189, -0.236341078679234 ], [ 34.467717660483167, -0.252942640679239 ], [ 34.480901254483165, -0.293164808679253 ], [ 34.483708871483195, -0.301160414679262 ], [ 34.422490609483184, -0.337232191679223 ], [ 34.333501351483157, -0.411939222679225 ], [ 34.317937386483202, -0.42463453567922 ], [ 34.31390906648317, -0.427075941679223 ], [ 34.309697640483186, -0.428662855679252 ], [ 34.305913461483151, -0.429883558679253 ], [ 34.302312386483202, -0.430554945679264 ], [ 34.297917855483199, -0.430860121679248 ], [ 34.290898812483185, -0.429944593679241 ], [ 34.28711463248316, -0.42884596167926 ], [ 34.281499398483156, -0.426831800679227 ], [ 34.278935921483189, -0.425244886679254 ], [ 34.276311410483167, -0.423169691679223 ], [ 34.271306527483198, -0.417737562679238 ], [ 34.268498910483167, -0.412366468679241 ], [ 34.25671912548318, -0.381177504679217 ], [ 34.248540414483152, -0.359876234679237 ], [ 34.246892464483203, -0.355969984679237 ], [ 34.241704476483157, -0.341931898679266 ], [ 34.221318734483184, -0.340467054679268 ], [ 33.948491586483151, -0.340467054679268 ], [ 33.983708871483195, -0.131238539679262 ], [ 33.949895394483171, -0.028943617679263 ], [ 34.007939828483181, -0.028638441679223 ], [ 34.013494027483198, -0.029065687679238 ], [ 34.016301644483171, -0.030042250679233 ], [ 34.019109261483202, -0.028272230679252 ], [ 34.028508675483174, -0.021558363679221 ], [ 34.032903207483166, -0.016553480679252 ], [ 34.042729867483153, -0.002149183679253 ], [ 34.062688363483169, 0.07042161732073 ], [ 34.066899789483152, 0.087633531320759 ], [ 34.069097054483159, 0.092455308320777 ], [ 34.073308480483199, 0.099474351320734 ], [ 34.074346078483181, 0.102465074320773 ], [ 34.074346078483181, 0.106432359320761 ], [ 34.074101937483185, 0.111254136320779 ], [ 34.072942269483171, 0.116625230320776 ], [ 34.079106820483155, 0.119860093320765 ], [ 34.083501351483157, 0.120836656320759 ], [ 34.085698617483153, 0.122667710320738 ], [ 34.088140023483156, 0.124254624320767 ], [ 34.091130746483195, 0.124071519320748 ], [ 34.093511117483153, 0.128038804320736 ], [ 34.098332894483171, 0.132616441320747 ], [ 34.102117074483196, 0.134020249320767 ], [ 34.105535043483194, 0.133226792320781 ], [ 34.103703988483169, 0.129625718320765 ], [ 34.103703988483169, 0.123827378320752 ], [ 34.108342660483167, 0.127855699320773 ], [ 34.110723031483182, 0.131029527320775 ], [ 34.112309945483155, 0.134264390320763 ], [ 34.11469031648317, 0.14341966332074 ], [ 34.114934457483166, 0.14763108932078 ], [ 34.112920296483189, 0.150255601320734 ], [ 34.111516488483169, 0.161669175320751 ], [ 34.111943734483184, 0.166246812320762 ], [ 34.11273719148317, 0.169664781320759 ], [ 34.112493050483174, 0.173265855320776 ], [ 34.109929574483196, 0.17784349232073 ], [ 34.1077323084832, 0.180651109320761 ], [ 34.10632850048318, 0.183458726320734 ], [ 34.106511605483199, 0.187059800320751 ], [ 34.109319222483172, 0.195238511320779 ], [ 34.110906136483202, 0.199022691320747 ], [ 34.111516488483169, 0.204637925320751 ], [ 34.114507211483151, 0.209032456320754 ], [ 34.11609412548318, 0.213243882320737 ], [ 34.116704476483157, 0.216051499320767 ], [ 34.117314828483181, 0.219652574320773 ], [ 34.117131722483172, 0.223070542320781 ], [ 34.117314828483181, 0.227037827320769 ], [ 34.116887582483166, 0.234850327320769 ], [ 34.117742074483196, 0.240831773320733 ], [ 34.12891150748316, 0.247057359320761 ], [ 34.132939828483181, 0.249071519320748 ], [ 34.135320199483196, 0.251024644320748 ], [ 34.139104379483165, 0.25505296432078 ], [ 34.141545785483167, 0.258470933320777 ], [ 34.144719613483169, 0.259630601320734 ], [ 34.144902718483188, 0.263475816320747 ], [ 34.146733773483156, 0.266039292320781 ], [ 34.151311410483167, 0.273241441320747 ], [ 34.151921761483202, 0.276049058320777 ], [ 34.159123910483167, 0.288439195320732 ], [ 34.159917367483153, 0.29185716332074 ], [ 34.160710824483196, 0.297228257320737 ], [ 34.167912972483172, 0.29606858932078 ], [ 34.174321664483152, 0.293871324320773 ], [ 34.176702035483167, 0.291063706320754 ], [ 34.179509652483198, 0.287035386320779 ], [ 34.182927621483195, 0.284471910320744 ], [ 34.184514535483167, 0.281053941320747 ], [ 34.185735238483169, 0.275621812320762 ], [ 34.187688363483169, 0.273424546320766 ], [ 34.190129769483171, 0.271471421320766 ], [ 34.202092660483167, 0.265673081320754 ], [ 34.20453406648317, 0.263475816320747 ], [ 34.206304086483151, 0.274462144320748 ], [ 34.206120980483199, 0.279039781320759 ], [ 34.205693734483184, 0.282823960320738 ], [ 34.209722054483159, 0.284655015320763 ], [ 34.213933480483199, 0.28526536732073 ], [ 34.220342171483189, 0.287035386320779 ], [ 34.229131234483184, 0.287828843320765 ], [ 34.232915414483152, 0.289049546320766 ], [ 34.235723031483182, 0.289659898320733 ], [ 34.23828650748316, 0.291429917320781 ], [ 34.2405448084832, 0.294420640320763 ], [ 34.245732796483189, 0.304857652320775 ], [ 34.246892464483203, 0.307848374320767 ], [ 34.252324593483188, 0.311022202320769 ], [ 34.257146371483195, 0.310228745320783 ], [ 34.261296761483202, 0.307665269320748 ], [ 34.265867715483175, 0.305860945320771 ] ] ] } } +, +{ "type": "Feature", "id": 40, "properties": { "OBJECTID": 41, "ID_": 3888, "COUNTY_NAM": "HOMA BAY", "CONST_CODE": 248, "CONSTITUEN": "RANGWE", "COUNTY_COD": 43, "Shape_Leng": 3.30089166438, "Shape_Area": 0.38431715409 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.761540902483198, -0.312146742679263 ], [ 34.766301644483171, -0.312940199679249 ], [ 34.770329964483203, -0.312940199679249 ], [ 34.777532113483169, -0.31806715267925 ], [ 34.780889046483189, -0.320142347679225 ], [ 34.784917367483153, -0.323255140679239 ], [ 34.787908089483203, -0.326673109679237 ], [ 34.78851844148317, -0.33173902767925 ], [ 34.784917367483153, -0.336377699679249 ], [ 34.786138070483155, -0.33955152767925 ], [ 34.789311898483156, -0.343274672679231 ], [ 34.792912972483172, -0.343762953679234 ], [ 34.792302621483195, -0.346875746679248 ], [ 34.794133675483174, -0.350171644679224 ], [ 34.797124398483156, -0.351575453679234 ], [ 34.798894418483194, -0.353833754679217 ], [ 34.801518929483159, -0.35517652767925 ], [ 34.804509652483198, -0.354566175679227 ], [ 34.809941781483182, -0.354138929679268 ], [ 34.813115609483184, -0.358472425679227 ], [ 34.816289437483185, -0.362378675679227 ], [ 34.819341195483155, -0.366834242679263 ], [ 34.817327035483167, -0.370557386679254 ], [ 34.820745004483165, -0.370435316679223 ], [ 34.823308480483199, -0.373975355679252 ], [ 34.822942269483171, -0.378552992679263 ], [ 34.825139535483167, -0.38197096167926 ], [ 34.824895394483171, -0.386060316679223 ], [ 34.828496468483188, -0.38856275767927 ], [ 34.832097543483194, -0.388745863679221 ], [ 34.836125863483169, -0.39033277767925 ], [ 34.840337289483152, -0.392346937679238 ], [ 34.84851600048318, -0.392774183679253 ], [ 34.855535043483194, -0.392652113679221 ], [ 34.859929574483196, -0.394971449679249 ], [ 34.86273719148317, -0.398755629679217 ], [ 34.865117562483185, -0.397046644679224 ], [ 34.868108285483167, -0.39533766067922 ], [ 34.872685921483189, -0.395764906679235 ], [ 34.875493539483152, -0.396863539679262 ], [ 34.879094613483169, -0.397473890679239 ], [ 34.882512582483166, -0.396741468679241 ], [ 34.886907113483169, -0.397473890679239 ], [ 34.888921273483156, -0.400830824679249 ], [ 34.891728890483186, -0.402356703679234 ], [ 34.891911996483195, -0.397840101679267 ], [ 34.894109261483202, -0.395581800679227 ], [ 34.897527230483199, -0.394666273679266 ], [ 34.900517953483181, -0.392774183679253 ], [ 34.909490121483195, -0.389173109679237 ], [ 34.912908089483203, -0.387281019679224 ], [ 34.915898812483185, -0.386670668679246 ], [ 34.916936410483167, -0.390271742679263 ], [ 34.915532601483157, -0.392835218679241 ], [ 34.91492225048318, -0.397962172679231 ], [ 34.91492225048318, -0.402967054679268 ], [ 34.918889535483167, -0.404065687679238 ], [ 34.922917855483199, -0.403943617679263 ], [ 34.926702035483167, -0.403272230679252 ], [ 34.92969275748316, -0.404859144679224 ], [ 34.930913461483151, -0.411878187679238 ], [ 34.938115609483184, -0.412366468679241 ], [ 34.940495980483199, -0.414075453679234 ], [ 34.945134652483198, -0.414380629679217 ], [ 34.948308480483199, -0.416150648679266 ], [ 34.951726449483196, -0.416577894679224 ], [ 34.954717171483189, -0.415967543679246 ], [ 34.96234656648317, -0.415845472679225 ], [ 34.964910043483194, -0.413831312679238 ], [ 34.971135629483165, -0.412976820679264 ], [ 34.97351600048318, -0.411450941679223 ], [ 34.976933968483188, -0.41096266067922 ], [ 34.980718148483156, -0.413831312679238 ], [ 34.985295785483167, -0.414258558679253 ], [ 34.988896859483184, -0.410474379679217 ], [ 34.993291390483186, -0.408277113679221 ], [ 34.998723519483171, -0.40595777767925 ], [ 35.002934945483155, -0.405835707679219 ], [ 35.005132211483151, -0.402356703679234 ], [ 35.007146371483195, -0.399732191679223 ], [ 35.010137093483188, -0.393567640679239 ], [ 35.015508187483185, -0.395276625679233 ], [ 35.0178885584832, -0.397473890679239 ], [ 35.018315804483159, -0.401074964679256 ], [ 35.019719613483169, -0.404248793679246 ], [ 35.021916879483165, -0.40614088267927 ], [ 35.021123421483189, -0.410230238679221 ], [ 35.014104379483165, -0.418042738679221 ], [ 35.004704964483203, -0.425855238679221 ], [ 35.001714242483153, -0.42854078567922 ], [ 34.999089730483199, -0.430249769679224 ], [ 34.989507211483151, -0.434033949679249 ], [ 34.986089242483153, -0.433850843679241 ], [ 34.978337777483198, -0.438367445679264 ], [ 34.973088754483165, -0.440747816679223 ], [ 34.967534554483159, -0.442945082679219 ], [ 34.958745492483153, -0.45087965267925 ], [ 34.9495291834832, -0.458570082679219 ], [ 34.943486703483181, -0.462354261679254 ], [ 34.940923226483157, -0.465467054679268 ], [ 34.936345589483203, -0.467664320679264 ], [ 34.929936898483156, -0.46986158667926 ], [ 34.927922738483169, -0.471936781679235 ], [ 34.918340218483188, -0.476758558679253 ], [ 34.912297738483169, -0.479566175679227 ], [ 34.907536996483195, -0.482068617679263 ], [ 34.902104867483153, -0.483777601679267 ], [ 34.884892953483181, -0.488050062679238 ], [ 34.881108773483156, -0.488843519679224 ], [ 34.875920785483167, -0.491773207679219 ], [ 34.858708871483195, -0.505261976679267 ], [ 34.855901254483165, -0.506848890679239 ], [ 34.853887093483188, -0.50947340267925 ], [ 34.851506722483172, -0.511670668679246 ], [ 34.847722543483194, -0.513135511679254 ], [ 34.841924203483181, -0.514051039679262 ], [ 34.833928597483172, -0.516553480679252 ], [ 34.822087777483198, -0.518872816679223 ], [ 34.818486703483181, -0.520032484679237 ], [ 34.811101449483196, -0.523877699679249 ], [ 34.808110726483157, -0.524365980679252 ], [ 34.804326546483189, -0.526258070679264 ], [ 34.800908578483181, -0.527661879679217 ], [ 34.795293343483188, -0.528577406679235 ], [ 34.792729867483153, -0.529737074679249 ], [ 34.789128793483194, -0.533582289679262 ], [ 34.784917367483153, -0.534741957679219 ], [ 34.779546273483156, -0.535230238679221 ], [ 34.778325570483155, -0.532666761679254 ], [ 34.776128304483159, -0.53486402767925 ], [ 34.772527230483199, -0.534741957679219 ], [ 34.769292367483153, -0.53486402767925 ], [ 34.767339242483153, -0.537366468679241 ], [ 34.764897836483151, -0.541638929679268 ], [ 34.761907113483169, -0.545178968679241 ], [ 34.761296761483202, -0.549268324679249 ], [ 34.753301156483182, -0.557630140679239 ], [ 34.748723519483171, -0.559766371679248 ], [ 34.744512093483188, -0.560132582679219 ], [ 34.740117562483185, -0.56025465267925 ], [ 34.737126839483203, -0.559949476679267 ], [ 34.7327323084832, -0.558240492679263 ], [ 34.727727425483174, -0.559278089679256 ], [ 34.725102914483152, -0.560742933679253 ], [ 34.720098031483182, -0.561048109679237 ], [ 34.716130746483195, -0.560071547679231 ], [ 34.712712777483198, -0.560071547679231 ], [ 34.711736214483203, -0.56416090267925 ], [ 34.711492074483196, -0.567578871679248 ], [ 34.7092948084832, -0.571057875679233 ], [ 34.705327523483156, -0.573743422679231 ], [ 34.702703011483202, -0.576428968679241 ], [ 34.701116097483172, -0.579480726679267 ], [ 34.698491586483151, -0.588269789679262 ], [ 34.695928109483184, -0.592664320679264 ], [ 34.6917166834832, -0.595838148679266 ], [ 34.689519418483194, -0.598035414679262 ], [ 34.685918343483188, -0.603162367679263 ], [ 34.660100472483172, -0.604566175679227 ], [ 34.656316293483194, -0.611463148679266 ], [ 34.653935921483189, -0.613843519679224 ], [ 34.651921761483202, -0.617566664679262 ], [ 34.651738656483182, -0.62293775767927 ], [ 34.650090707483166, -0.626966078679234 ], [ 34.647527230483199, -0.629163343679241 ], [ 34.644109261483202, -0.633374769679224 ], [ 34.637517464483203, -0.661634047679231 ], [ 34.633733285483167, -0.662366468679241 ], [ 34.630742562483185, -0.660779554679268 ], [ 34.627507699483196, -0.657666761679254 ], [ 34.624944222483172, -0.656446058679253 ], [ 34.621343148483156, -0.65614088267927 ], [ 34.6174979334832, -0.654370863679221 ], [ 34.61469031648317, -0.653272230679252 ], [ 34.610539925483174, -0.652478773679266 ], [ 34.606938851483157, -0.65315016067922 ], [ 34.593694222483172, -0.651563246679248 ], [ 34.588506234483184, -0.65223463267927 ], [ 34.583928597483172, -0.653943617679263 ], [ 34.582707894483171, -0.657666761679254 ], [ 34.57953406648317, -0.66126783667926 ], [ 34.5745291834832, -0.662854750679233 ], [ 34.569524300483174, -0.663831312679238 ], [ 34.565740121483195, -0.665479261679254 ], [ 34.562139046483189, -0.665845472679225 ], [ 34.558110726483157, -0.667737562679238 ], [ 34.558721078483181, -0.671277601679267 ], [ 34.559941781483182, -0.674268324679249 ], [ 34.556523812483185, -0.676282484679237 ], [ 34.553533089483203, -0.677747328679234 ], [ 34.553288949483196, -0.680677015679239 ], [ 34.552129281483182, -0.683545668679246 ], [ 34.549504769483171, -0.686780531679235 ], [ 34.54633094148317, -0.689038832679219 ], [ 34.540532601483157, -0.694531996679248 ], [ 34.538091195483155, -0.699231703679234 ], [ 34.53711463248316, -0.703137953679234 ], [ 34.534917367483153, -0.705335218679241 ], [ 34.534307015483186, -0.709180433679253 ], [ 34.535527718483188, -0.713758070679264 ], [ 34.534917367483153, -0.717542250679233 ], [ 34.534734261483202, -0.720960218679241 ], [ 34.534917367483153, -0.723950941679223 ], [ 34.532536996483195, -0.727429945679264 ], [ 34.535893929483159, -0.731031019679224 ], [ 34.535344613483169, -0.73518141067922 ], [ 34.534307015483186, -0.739453871679248 ], [ 34.532536996483195, -0.743054945679264 ], [ 34.526494515483186, -0.74775465267925 ], [ 34.519902718483188, -0.757642347679225 ], [ 34.509343636483202, -0.76643141067922 ], [ 34.506108773483156, -0.769544203679234 ], [ 34.502324593483188, -0.773633558679253 ], [ 34.497136605483199, -0.778760511679254 ], [ 34.494939339483203, -0.78114088267927 ], [ 34.488713754483165, -0.78596266067922 ], [ 34.48633338248316, -0.78895338267927 ], [ 34.484746468483188, -0.795972425679227 ], [ 34.483342660483167, -0.800244886679254 ], [ 34.480901254483165, -0.805677015679239 ], [ 34.476140511483202, -0.813367445679264 ], [ 34.474126351483157, -0.817761976679267 ], [ 34.472722543483194, -0.821363050679227 ], [ 34.471745980483199, -0.824781019679224 ], [ 34.469731820483155, -0.827954847679225 ], [ 34.465093148483156, -0.838269789679262 ], [ 34.464726937483185, -0.842359144679224 ], [ 34.464543832483166, -0.847180922679231 ], [ 34.464543832483166, -0.852429945679264 ], [ 34.464910043483194, -0.85627516067922 ], [ 34.465093148483156, -0.860730726679267 ], [ 34.46429969148317, -0.864453871679248 ], [ 34.459538949483196, -0.860059339679256 ], [ 34.455144418483194, -0.857068617679263 ], [ 34.452092660483167, -0.854383070679264 ], [ 34.445500863483169, -0.849073011679254 ], [ 34.442510140483186, -0.848279554679268 ], [ 34.435491097483172, -0.842053968679241 ], [ 34.431706918483194, -0.839673597679225 ], [ 34.428899300483174, -0.837232191679223 ], [ 34.420720589483203, -0.833264906679235 ], [ 34.416142953483181, -0.831250746679248 ], [ 34.411504281483182, -0.82783277767925 ], [ 34.403325570483155, -0.823865492679263 ], [ 34.397710336483151, -0.820752699679249 ], [ 34.39453650748316, -0.820142347679225 ], [ 34.391118539483152, -0.818738539679262 ], [ 34.38812781648317, -0.818860609679237 ], [ 34.388738168483194, -0.822583754679274 ], [ 34.391728890483186, -0.82728346167926 ], [ 34.393498910483167, -0.831555922679231 ], [ 34.3909354334832, -0.83314283667926 ], [ 34.389287484483184, -0.83564527767925 ], [ 34.384099496483195, -0.846265394679224 ], [ 34.382146371483195, -0.84846266067922 ], [ 34.37891150748316, -0.846936781679235 ], [ 34.374944222483172, -0.848035414679262 ], [ 34.371709359483184, -0.849866468679241 ], [ 34.370305550483174, -0.853162367679263 ], [ 34.367314828483181, -0.854138929679268 ], [ 34.350713265483186, -0.855847914679262 ], [ 34.344914925483174, -0.856763441679223 ], [ 34.3421073084832, -0.857434828679234 ], [ 34.338689339483203, -0.85926588267927 ], [ 34.33789588248316, -0.863538343679241 ], [ 34.334111703483181, -0.865247328679234 ], [ 34.329900277483198, -0.866468031679235 ], [ 34.327092660483167, -0.867139418679246 ], [ 34.322698129483165, -0.867444593679241 ], [ 34.317937386483202, -0.864331800679227 ], [ 34.314519418483194, -0.86103590267925 ], [ 34.311711800483174, -0.857984144679224 ], [ 34.309331429483159, -0.855054457679219 ], [ 34.307744515483186, -0.851880629679274 ], [ 34.3010916834832, -0.842664320679264 ], [ 34.300298226483157, -0.83973463267927 ], [ 34.296941293483194, -0.838636000679233 ], [ 34.293889535483167, -0.835156996679248 ], [ 34.290898812483185, -0.83283766067922 ], [ 34.284917367483153, -0.827039320679264 ], [ 34.279729379483165, -0.826734144679224 ], [ 34.275517953483181, -0.827161390679239 ], [ 34.27094031648317, -0.826428968679241 ], [ 34.266118539483152, -0.825147230679252 ], [ 34.263494027483198, -0.823865492679263 ], [ 34.259526742483153, -0.823438246679248 ], [ 34.254338754483165, -0.820569593679241 ], [ 34.254094613483169, -0.816480238679221 ], [ 34.253545296483189, -0.813367445679264 ], [ 34.249944222483172, -0.810742933679253 ], [ 34.246892464483203, -0.807263929679268 ], [ 34.245488656483182, -0.804456312679238 ], [ 34.2424979334832, -0.800855238679221 ], [ 34.240300668483194, -0.797742445679264 ], [ 34.237493050483174, -0.793347914679262 ], [ 34.234929574483196, -0.786328871679248 ], [ 34.2327323084832, -0.783582289679262 ], [ 34.229314339483203, -0.781629164679262 ], [ 34.226323617483153, -0.77845533667926 ], [ 34.220891488483169, -0.773755629679217 ], [ 34.214116586483151, -0.769483168679246 ], [ 34.21094275748316, -0.761731703679234 ], [ 34.207524789483152, -0.757642347679225 ], [ 34.205327523483156, -0.755445082679219 ], [ 34.203313363483169, -0.752576429679268 ], [ 34.20313025748316, -0.74915846167926 ], [ 34.200688851483157, -0.744763929679268 ], [ 34.196904671483189, -0.745557386679254 ], [ 34.193913949483196, -0.746656019679224 ], [ 34.190923226483157, -0.748181898679266 ], [ 34.187932504483165, -0.751477797679231 ], [ 34.1839041834832, -0.753552992679263 ], [ 34.179509652483198, -0.75666578567922 ], [ 34.173100961483151, -0.762769300679227 ], [ 34.16992713248316, -0.765149672679231 ], [ 34.166142953483181, -0.766553480679252 ], [ 34.16211463248316, -0.767652113679221 ], [ 34.158330453483181, -0.768262464679256 ], [ 34.155339730483199, -0.768262464679256 ], [ 34.152287972483172, -0.769971449679249 ], [ 34.14929725048318, -0.774060804679268 ], [ 34.146306527483198, -0.777539808679253 ], [ 34.141911996483195, -0.779553968679241 ], [ 34.13812781648317, -0.779981214679256 ], [ 34.130498421483189, -0.780164320679264 ], [ 34.122930062483185, -0.780042250679233 ], [ 34.118901742483153, -0.780530531679235 ], [ 34.11414100048318, -0.783277113679221 ], [ 34.108708871483195, -0.784558851679267 ], [ 34.098332894483171, -0.78486402767925 ], [ 34.091924203483181, -0.785840589679256 ], [ 34.088323129483165, -0.787061293679246 ], [ 34.084905160483167, -0.78986891067922 ], [ 34.083928597483172, -0.79377516067922 ], [ 34.08148719148317, -0.799329359679237 ], [ 34.080327523483156, -0.807630140679239 ], [ 33.926518929483159, -0.807263929679268 ], [ 33.925298226483157, -0.762036879679217 ], [ 33.925115121483195, -0.746045668679246 ], [ 33.92468787548318, -0.740064222679225 ], [ 33.923528207483166, -0.731458265679239 ], [ 33.922490609483184, -0.69325025767927 ], [ 33.921697152483198, -0.672864515679239 ], [ 33.919499886483202, -0.626233656679235 ], [ 33.919133675483174, -0.596570570679264 ], [ 33.917729867483153, -0.570264418679246 ], [ 33.920720589483203, -0.55457838267927 ], [ 33.922490609483184, -0.521436293679246 ], [ 33.923345101483157, -0.498365004679217 ], [ 33.924932015483186, -0.481336195679264 ], [ 33.925115121483195, -0.468335707679219 ], [ 33.933110726483157, -0.420972425679227 ], [ 33.948491586483151, -0.340467054679268 ], [ 34.21234656648317, -0.340467054679268 ], [ 34.241704476483157, -0.342664320679264 ], [ 34.243718636483202, -0.347241957679219 ], [ 34.246892464483203, -0.355969984679237 ], [ 34.248540414483152, -0.359876234679237 ], [ 34.25671912548318, -0.381177504679217 ], [ 34.268498910483167, -0.412366468679241 ], [ 34.271306527483198, -0.417737562679238 ], [ 34.276311410483167, -0.423047621679248 ], [ 34.278935921483189, -0.425244886679254 ], [ 34.281499398483156, -0.426831800679227 ], [ 34.285710824483196, -0.42854078567922 ], [ 34.2913260584832, -0.430249769679224 ], [ 34.294499886483202, -0.431043226679267 ], [ 34.302312386483202, -0.430554945679264 ], [ 34.305913461483151, -0.429883558679253 ], [ 34.309697640483186, -0.428662855679252 ], [ 34.31390906648317, -0.427075941679223 ], [ 34.317937386483202, -0.42463453567922 ], [ 34.328496468483188, -0.416150648679266 ], [ 34.422490609483184, -0.337232191679223 ], [ 34.447698129483165, -0.322339613679221 ], [ 34.455144418483194, -0.31916578567922 ], [ 34.483708871483195, -0.301160414679262 ], [ 34.530889046483189, -0.273084242679263 ], [ 34.555730355483199, -0.271253187679238 ], [ 34.704289925483174, -0.259229261679254 ], [ 34.734746468483188, -0.277844984679237 ], [ 34.743901742483153, -0.283765394679224 ], [ 34.755742562483185, -0.292371351679267 ], [ 34.75671912548318, -0.295850355679252 ], [ 34.758916390483186, -0.299329359679237 ], [ 34.758306039483152, -0.303357679679268 ], [ 34.759099496483195, -0.308362562679238 ], [ 34.761540902483198, -0.312146742679263 ] ] ] } } +, +{ "type": "Feature", "id": 41, "properties": { "OBJECTID": 42, "ID_": 5443, "COUNTY_NAM": "MIGORI", "CONST_CODE": 260, "CONSTITUEN": "KURIA EAST", "COUNTY_COD": 44, "Shape_Leng": 2.9681189429, "Shape_Area": 0.25500213176 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.605632584483196, -0.65308795767925 ], [ 34.607121957483166, -0.653333265679239 ], [ 34.610539925483174, -0.652478773679266 ], [ 34.615727914483152, -0.653577406679235 ], [ 34.618291390483186, -0.654859144679224 ], [ 34.621343148483156, -0.65614088267927 ], [ 34.625920785483167, -0.656629164679262 ], [ 34.631902230483199, -0.661634047679231 ], [ 34.635320199483196, -0.662976820679264 ], [ 34.635503304483159, -0.668958265679239 ], [ 34.636540902483198, -0.673169691679223 ], [ 34.637944711483151, -0.676465589679256 ], [ 34.63812781648317, -0.679456312679238 ], [ 34.636907113483169, -0.682080824679249 ], [ 34.638494027483198, -0.685071547679231 ], [ 34.63953162548318, -0.689466078679234 ], [ 34.63953162548318, -0.694043714679256 ], [ 34.640508187483185, -0.698133070679264 ], [ 34.640691293483194, -0.70197828567922 ], [ 34.642095101483157, -0.705335218679241 ], [ 34.635137093483188, -0.720655043679246 ], [ 34.633489144483171, -0.723157484679237 ], [ 34.629521859483184, -0.72645338267927 ], [ 34.62891150748316, -0.732068617679263 ], [ 34.62891150748316, -0.735242445679264 ], [ 34.629888070483155, -0.73817213267927 ], [ 34.630742562483185, -0.741773207679219 ], [ 34.629338754483165, -0.746167738679221 ], [ 34.627690804483159, -0.750379164679262 ], [ 34.629094613483169, -0.753369886679254 ], [ 34.626714242483153, -0.75697096167926 ], [ 34.6253104334832, -0.769666273679266 ], [ 34.625493539483152, -0.775037367679263 ], [ 34.624944222483172, -0.786939222679225 ], [ 34.623723519483171, -0.791761000679233 ], [ 34.623540414483152, -0.824964125679233 ], [ 34.625737679483159, -0.829175550679227 ], [ 34.624089730483199, -0.833448011679254 ], [ 34.62250281648317, -0.836865980679252 ], [ 34.621892464483203, -0.841565687679238 ], [ 34.618291390483186, -0.842053968679241 ], [ 34.61273719148317, -0.842359144679224 ], [ 34.609929574483196, -0.844434339679256 ], [ 34.61133338248316, -0.847852308679253 ], [ 34.611699593483188, -0.851941664679262 ], [ 34.61133338248316, -0.859448988679221 ], [ 34.61328650748316, -0.863233168679246 ], [ 34.617742074483196, -0.87385328567922 ], [ 34.617131722483172, -0.878736097679225 ], [ 34.615117562483185, -0.883252699679249 ], [ 34.615117562483185, -0.887647230679252 ], [ 34.615911019483171, -0.892652113679221 ], [ 34.6174979334832, -0.896558363679221 ], [ 34.617925179483159, -0.901380140679239 ], [ 34.619512093483188, -0.906079847679225 ], [ 34.620305550483174, -0.910352308679253 ], [ 34.622136605483199, -0.918164808679253 ], [ 34.624089730483199, -0.924573500679233 ], [ 34.624333871483195, -0.927564222679225 ], [ 34.623723519483171, -0.930738050679227 ], [ 34.623296273483156, -0.934583265679239 ], [ 34.62250281648317, -0.938062269679224 ], [ 34.623540414483152, -0.946057875679233 ], [ 34.624944222483172, -0.949170668679246 ], [ 34.626714242483153, -0.952466566679223 ], [ 34.627507699483196, -0.955457289679262 ], [ 34.629338754483165, -0.958631117679263 ], [ 34.634526742483153, -0.965467054679268 ], [ 34.638494027483198, -0.966565687679238 ], [ 34.641301644483171, -0.968335707679219 ], [ 34.621709359483184, -0.98713453567922 ], [ 34.612493050483174, -0.997571547679231 ], [ 34.603703988483169, -1.005872328679234 ], [ 34.590520394483171, -1.017530043679247 ], [ 34.591924203483181, -1.036450941679223 ], [ 34.593511117483153, -1.044141371679248 ], [ 34.597295296483189, -1.051831800679227 ], [ 34.601140511483202, -1.058545668679247 ], [ 34.618535531483182, -1.077466566679223 ], [ 34.61469031648317, -1.083264906679235 ], [ 34.614934457483166, -1.089429457679219 ], [ 34.615911019483171, -1.092359144679224 ], [ 34.620122445483155, -1.097241957679219 ], [ 34.621343148483156, -1.102063734679237 ], [ 34.622930062483185, -1.107068617679263 ], [ 34.622319712483197, -1.113843519679224 ], [ 34.627141488483169, -1.119763929679268 ], [ 34.63031531648317, -1.125440199679249 ], [ 34.631108773483156, -1.13166578567922 ], [ 34.632695687483185, -1.138379652679251 ], [ 34.631291879483165, -1.142346937679238 ], [ 34.63031531648317, -1.146253187679238 ], [ 34.6253104334832, -1.15614088267927 ], [ 34.62891150748316, -1.159131605679252 ], [ 34.631902230483199, -1.162061293679247 ], [ 34.635137093483188, -1.164136488679221 ], [ 34.641118539483152, -1.165662367679263 ], [ 34.643743050483174, -1.168836195679264 ], [ 34.64734412548318, -1.171338636679254 ], [ 34.650334847483172, -1.175244886679254 ], [ 34.654119027483198, -1.178479750679233 ], [ 34.654119027483198, -1.187573988679221 ], [ 34.657720101483157, -1.189466078679234 ], [ 34.661138070483155, -1.190381605679252 ], [ 34.665898812483185, -1.196546156679235 ], [ 34.668523324483196, -1.197766859679237 ], [ 34.67133094148317, -1.199842054679268 ], [ 34.672307504483165, -1.203443129679274 ], [ 34.672490609483184, -1.207776625679233 ], [ 34.673528207483166, -1.211377699679249 ], [ 34.679936898483156, -1.214246351679267 ], [ 34.682927621483195, -1.213147718679241 ], [ 34.686894906483182, -1.21278150767927 ], [ 34.688542855483199, -1.216565687679238 ], [ 34.692693246483195, -1.243238050679227 ], [ 34.696294320483155, -1.252637464679256 ], [ 34.698735726483157, -1.264051039679262 ], [ 34.699346078483181, -1.270764906679235 ], [ 34.711492074483196, -1.308667738679221 ], [ 34.71429969148317, -1.319776136679254 ], [ 34.719121468483188, -1.344678480679252 ], [ 34.720891488483169, -1.347058851679267 ], [ 34.724736703483181, -1.36707838267927 ], [ 34.731511605483199, -1.389356214679256 ], [ 34.70313025748316, -1.372083265679239 ], [ 34.675115121483195, -1.355481703679234 ], [ 34.656499398483156, -1.346753675679227 ], [ 34.641118539483152, -1.336682875679233 ], [ 34.631291879483165, -1.332532484679237 ], [ 34.617742074483196, -1.323743422679231 ], [ 34.601689828483181, -1.315076429679268 ], [ 34.583135140483186, -1.304273207679219 ], [ 34.547490609483184, -1.285535414679262 ], [ 34.515508187483185, -1.266065199679249 ], [ 34.48969031648317, -1.250745375679233 ], [ 34.468511117483153, -1.240735609679237 ], [ 34.45789100048318, -1.233655531679235 ], [ 34.446904671483189, -1.228467543679247 ], [ 34.425908578483181, -1.215833265679239 ], [ 34.386296761483202, -1.19416578567922 ], [ 34.315495980483199, -1.154065687679238 ], [ 34.275334847483172, -1.130567152679251 ], [ 34.250127328483181, -1.11604078567922 ], [ 34.227910531483182, -1.104566175679227 ], [ 34.20789100048318, -1.093274672679231 ], [ 34.192510140483186, -1.083570082679219 ], [ 34.176335824483196, -1.074048597679225 ], [ 34.165288461483151, -1.06916578567922 ], [ 34.150090707483166, -1.060559828679234 ], [ 34.136296761483202, -1.050366957679219 ], [ 34.125493539483152, -1.046643812679238 ], [ 34.115911019483171, -1.041577894679224 ], [ 34.09070350048318, -1.027356703679234 ], [ 34.080327523483156, -1.021863539679262 ], [ 34.046086800483174, -1.045850355679252 ], [ 34.040898812483185, -1.046155531679235 ], [ 34.037541879483165, -1.045178968679241 ], [ 34.034123910483167, -1.042676527679251 ], [ 34.031316293483194, -1.039075453679234 ], [ 34.02930213248316, -1.035474379679274 ], [ 34.028508675483174, -1.032483656679235 ], [ 34.028325570483155, -1.029370863679221 ], [ 34.028508675483174, -1.020459730679252 ], [ 34.028142464483203, -1.014173109679237 ], [ 34.0257010584832, -1.010266859679237 ], [ 34.02289344148317, -1.007031996679248 ], [ 34.018926156483182, -1.003430922679231 ], [ 33.934697640483186, -1.002576429679268 ], [ 33.931706918483194, -0.929029066679223 ], [ 33.93109656648317, -0.919751722679225 ], [ 33.930486214483203, -0.902967054679268 ], [ 33.930120004483165, -0.891553480679252 ], [ 33.930486214483203, -0.883557875679233 ], [ 33.929509652483198, -0.880261976679267 ], [ 33.929326546483189, -0.872449476679267 ], [ 33.928899300483174, -0.866529066679223 ], [ 33.928899300483174, -0.861768324679249 ], [ 33.926518929483159, -0.807263929679268 ], [ 34.080327523483156, -0.807630140679239 ], [ 34.08148719148317, -0.799329359679237 ], [ 34.083928597483172, -0.79377516067922 ], [ 34.084905160483167, -0.78986891067922 ], [ 34.088323129483165, -0.787061293679246 ], [ 34.091924203483181, -0.785840589679256 ], [ 34.098332894483171, -0.78486402767925 ], [ 34.108708871483195, -0.784558851679267 ], [ 34.11414100048318, -0.783277113679221 ], [ 34.118901742483153, -0.780530531679235 ], [ 34.122930062483185, -0.780042250679233 ], [ 34.130498421483189, -0.780164320679264 ], [ 34.13812781648317, -0.779981214679256 ], [ 34.141911996483195, -0.779553968679241 ], [ 34.146306527483198, -0.777539808679253 ], [ 34.14929725048318, -0.774060804679268 ], [ 34.152287972483172, -0.769971449679249 ], [ 34.155339730483199, -0.768262464679256 ], [ 34.158330453483181, -0.768262464679256 ], [ 34.16211463248316, -0.767652113679221 ], [ 34.166142953483181, -0.766553480679252 ], [ 34.16992713248316, -0.765149672679231 ], [ 34.173100961483151, -0.762769300679227 ], [ 34.17969275748316, -0.75666578567922 ], [ 34.1839041834832, -0.753552992679263 ], [ 34.188542855483199, -0.751050550679227 ], [ 34.190923226483157, -0.748181898679266 ], [ 34.193913949483196, -0.746656019679224 ], [ 34.197942269483171, -0.745130140679239 ], [ 34.201726449483196, -0.746167738679221 ], [ 34.20313025748316, -0.74915846167926 ], [ 34.203313363483169, -0.752576429679268 ], [ 34.205327523483156, -0.755445082679219 ], [ 34.208501351483157, -0.758679945679264 ], [ 34.211125863483169, -0.762036879679217 ], [ 34.214726937483185, -0.770459730679252 ], [ 34.218328011483202, -0.771863539679262 ], [ 34.220891488483169, -0.773755629679217 ], [ 34.226140511483202, -0.778638441679223 ], [ 34.228337777483198, -0.781262953679234 ], [ 34.231694711483151, -0.782849867679263 ], [ 34.234136117483153, -0.785352308679253 ], [ 34.235723031483182, -0.788281996679248 ], [ 34.236516488483169, -0.791883070679264 ], [ 34.24109412548318, -0.798963148679266 ], [ 34.243535531483182, -0.80244215267925 ], [ 34.246526254483165, -0.805982191679223 ], [ 34.249944222483172, -0.810742933679253 ], [ 34.253545296483189, -0.813367445679264 ], [ 34.25391150748316, -0.816358168679246 ], [ 34.252324593483188, -0.819837172679231 ], [ 34.254888070483155, -0.821729261679254 ], [ 34.259526742483153, -0.823438246679248 ], [ 34.263494027483198, -0.823865492679263 ], [ 34.266118539483152, -0.825147230679252 ], [ 34.27094031648317, -0.826428968679241 ], [ 34.275517953483181, -0.827161390679239 ], [ 34.279546273483156, -0.826734144679224 ], [ 34.284917367483153, -0.827039320679264 ], [ 34.290898812483185, -0.832959730679252 ], [ 34.294499886483202, -0.835767347679225 ], [ 34.296941293483194, -0.838636000679233 ], [ 34.299932015483186, -0.841138441679223 ], [ 34.307744515483186, -0.851880629679274 ], [ 34.309331429483159, -0.855054457679219 ], [ 34.311711800483174, -0.857984144679224 ], [ 34.314519418483194, -0.86103590267925 ], [ 34.317937386483202, -0.864331800679227 ], [ 34.322515023483156, -0.867444593679241 ], [ 34.326299203483181, -0.868238050679227 ], [ 34.330327523483156, -0.86634596167926 ], [ 34.338323129483165, -0.863843519679224 ], [ 34.338689339483203, -0.85926588267927 ], [ 34.3421073084832, -0.857434828679234 ], [ 34.344914925483174, -0.856763441679223 ], [ 34.353703988483169, -0.85535963267927 ], [ 34.367925179483159, -0.854138929679268 ], [ 34.374700082483166, -0.848035414679262 ], [ 34.378728402483198, -0.846936781679235 ], [ 34.382146371483195, -0.84846266067922 ], [ 34.384099496483195, -0.846265394679224 ], [ 34.387334357483205, -0.839734635679238 ], [ 34.390691293483194, -0.834363539679262 ], [ 34.393498910483167, -0.831555922679231 ], [ 34.392095101483157, -0.827771742679263 ], [ 34.388921273483156, -0.823438246679248 ], [ 34.387944711483151, -0.818982679679268 ], [ 34.391118539483152, -0.818738539679262 ], [ 34.39453650748316, -0.820142347679225 ], [ 34.397710336483151, -0.820752699679249 ], [ 34.403325570483155, -0.823865492679263 ], [ 34.40710975048318, -0.825635511679254 ], [ 34.411504281483182, -0.827954847679225 ], [ 34.416142953483181, -0.831250746679248 ], [ 34.420720589483203, -0.833264906679235 ], [ 34.428899300483174, -0.837232191679223 ], [ 34.431706918483194, -0.839673597679225 ], [ 34.435491097483172, -0.842053968679241 ], [ 34.442510140483186, -0.848279554679268 ], [ 34.445500863483169, -0.849073011679254 ], [ 34.450322640483186, -0.853162367679263 ], [ 34.458745492483153, -0.859571058679253 ], [ 34.464543832483166, -0.864575941679223 ], [ 34.465093148483156, -0.860730726679267 ], [ 34.46429969148317, -0.851331312679238 ], [ 34.464726937483185, -0.842359144679224 ], [ 34.465337289483152, -0.837964613679221 ], [ 34.466496957483166, -0.835034925679227 ], [ 34.469731820483155, -0.827954847679225 ], [ 34.471745980483199, -0.824781019679224 ], [ 34.472722543483194, -0.821363050679227 ], [ 34.474126351483157, -0.817761976679267 ], [ 34.476140511483202, -0.813367445679264 ], [ 34.478337777483198, -0.809949476679267 ], [ 34.484136117483153, -0.799939710679271 ], [ 34.484746468483188, -0.795972425679227 ], [ 34.48633338248316, -0.78895338267927 ], [ 34.488713754483165, -0.78596266067922 ], [ 34.494939339483203, -0.78114088267927 ], [ 34.502324593483188, -0.773633558679253 ], [ 34.506108773483156, -0.769483168679246 ], [ 34.509343636483202, -0.76643141067922 ], [ 34.516301644483171, -0.760633070679264 ], [ 34.519292367483153, -0.758863050679227 ], [ 34.521123421483189, -0.75556715267925 ], [ 34.526494515483186, -0.74775465267925 ], [ 34.532536996483195, -0.743054945679264 ], [ 34.534307015483186, -0.739453871679248 ], [ 34.535344613483169, -0.73518141067922 ], [ 34.537541879483165, -0.731763441679223 ], [ 34.534123910483167, -0.727979261679254 ], [ 34.534917367483153, -0.723950941679223 ], [ 34.534734261483202, -0.720960218679241 ], [ 34.534917367483153, -0.717542250679233 ], [ 34.535527718483188, -0.713758070679264 ], [ 34.534307015483186, -0.709180433679253 ], [ 34.534917367483153, -0.705579359679237 ], [ 34.53711463248316, -0.703137953679234 ], [ 34.538091195483155, -0.699231703679234 ], [ 34.540898812483185, -0.695081312679238 ], [ 34.543340218483188, -0.691968519679224 ], [ 34.546086800483174, -0.689038832679219 ], [ 34.549504769483171, -0.686780531679235 ], [ 34.552129281483182, -0.683545668679246 ], [ 34.553288949483196, -0.680677015679239 ], [ 34.553533089483203, -0.677747328679234 ], [ 34.556523812483185, -0.676282484679237 ], [ 34.559941781483182, -0.674268324679249 ], [ 34.5589041834832, -0.67158277767925 ], [ 34.558293832483166, -0.668164808679253 ], [ 34.562688363483169, -0.666272718679241 ], [ 34.566106332483166, -0.665662367679263 ], [ 34.568730843483188, -0.664136488679221 ], [ 34.571904671483189, -0.662854750679233 ], [ 34.574895394483171, -0.663037855679252 ], [ 34.577703011483202, -0.662366468679241 ], [ 34.580693734483184, -0.661145765679239 ], [ 34.582707894483171, -0.657849867679263 ], [ 34.583928597483172, -0.653943617679263 ], [ 34.588506234483184, -0.65223463267927 ], [ 34.593694222483172, -0.65223463267927 ], [ 34.597905648483156, -0.65205152767925 ], [ 34.601933968483188, -0.652478773679266 ], [ 34.605632584483196, -0.65308795767925 ] ] ] } } +, +{ "type": "Feature", "id": 42, "properties": { "OBJECTID": 43, "ID_": 4405, "COUNTY_NAM": "KISII", "CONST_CODE": 267, "CONSTITUEN": "NYARIBARI CHACHE", "COUNTY_COD": 45, "Shape_Leng": 1.67945950816, "Shape_Area": 0.10641196741 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.786931527483198, -0.675855238679221 ], [ 34.789739144483171, -0.678235609679237 ], [ 34.793706429483159, -0.684339125679233 ], [ 34.793523324483196, -0.687573988679221 ], [ 34.79633094148317, -0.69025953567922 ], [ 34.7991385584832, -0.690747816679223 ], [ 34.802495492483153, -0.69025953567922 ], [ 34.8089041834832, -0.688245375679233 ], [ 34.812139046483189, -0.689282972679225 ], [ 34.815129769483171, -0.691541273679266 ], [ 34.820928109483184, -0.69416578567922 ], [ 34.82312537548318, -0.696729261679254 ], [ 34.823491586483151, -0.699964125679233 ], [ 34.824346078483181, -0.703870375679233 ], [ 34.828496468483188, -0.705640394679224 ], [ 34.831120980483199, -0.706983168679246 ], [ 34.834905160483167, -0.708448011679254 ], [ 34.838933480483199, -0.712232191679223 ], [ 34.841924203483181, -0.716565687679238 ], [ 34.84570838248316, -0.718335707679219 ], [ 34.848332894483171, -0.720532972679225 ], [ 34.850896371483195, -0.722241957679219 ], [ 34.853093636483202, -0.724561293679246 ], [ 34.858525765483186, -0.72736891067922 ], [ 34.861089242483153, -0.729077894679224 ], [ 34.868718636483202, -0.734876234679237 ], [ 34.871892464483203, -0.736646254679217 ], [ 34.875127328483181, -0.737744886679254 ], [ 34.87891150748316, -0.739453871679248 ], [ 34.881536019483171, -0.741529066679223 ], [ 34.884526742483153, -0.742566664679262 ], [ 34.886907113483169, -0.744275648679266 ], [ 34.889104379483165, -0.746778089679256 ], [ 34.893132699483196, -0.74775465267925 ], [ 34.89789344148317, -0.748365004679217 ], [ 34.902104867483153, -0.751233656679235 ], [ 34.904546273483156, -0.753858168679246 ], [ 34.906133187483185, -0.756848890679239 ], [ 34.907720101483157, -0.760938246679248 ], [ 34.912724984483184, -0.760449964679256 ], [ 34.918340218483188, -0.760633070679264 ], [ 34.922307504483165, -0.761975843679241 ], [ 34.925298226483157, -0.763257582679219 ], [ 34.928105843483188, -0.766065199679249 ], [ 34.931523812483185, -0.767041761679254 ], [ 34.935491097483172, -0.767835218679241 ], [ 34.938725961483151, -0.771070082679219 ], [ 34.942937386483202, -0.773755629679217 ], [ 34.946111214483203, -0.776746351679267 ], [ 34.947698129483165, -0.780347425679227 ], [ 34.950505746483195, -0.783460220679219 ], [ 34.953923714483203, -0.793347914679262 ], [ 34.958501351483157, -0.797864515679239 ], [ 34.970342171483189, -0.817456800679227 ], [ 34.980718148483156, -0.837232191679223 ], [ 34.98914100048318, -0.848828871679248 ], [ 34.999700082483166, -0.866773207679219 ], [ 35.012517464483203, -0.889356214679256 ], [ 35.001286996483195, -0.893567640679239 ], [ 34.996709359483184, -0.893262464679256 ], [ 34.988530648483156, -0.896558363679221 ], [ 34.9827323084832, -0.897351820679264 ], [ 34.975102914483152, -0.899732191679223 ], [ 34.958501351483157, -0.902661879679274 ], [ 34.95453406648317, -0.904248793679246 ], [ 34.942327035483167, -0.907849867679263 ], [ 34.928899300483174, -0.910779554679268 ], [ 34.917729867483153, -0.912366468679241 ], [ 34.892522347483172, -0.919934828679234 ], [ 34.889104379483165, -0.921460707679219 ], [ 34.869328988483169, -0.925550062679238 ], [ 34.86609412548318, -0.927259047679231 ], [ 34.862309945483155, -0.927564222679225 ], [ 34.849126351483157, -0.931165297679231 ], [ 34.844914925483174, -0.932630140679239 ], [ 34.831120980483199, -0.933362562679238 ], [ 34.8245291834832, -0.937635023679266 ], [ 34.805913461483151, -0.941052992679263 ], [ 34.780889046483189, -0.948682386679254 ], [ 34.776494515483186, -0.947949964679256 ], [ 34.760320199483196, -0.95393141067922 ], [ 34.7503104334832, -0.956433851679267 ], [ 34.741887582483166, -0.956983168679246 ], [ 34.735539925483174, -0.960034925679227 ], [ 34.731938851483157, -0.959180433679253 ], [ 34.715520394483171, -0.962964613679221 ], [ 34.698308480483199, -0.96845777767925 ], [ 34.677495492483153, -0.97346266067922 ], [ 34.672307504483165, -0.97236402767925 ], [ 34.668706429483159, -0.973157484679237 ], [ 34.664128793483194, -0.972974379679274 ], [ 34.656499398483156, -0.968946058679253 ], [ 34.649541390483186, -0.96595533667926 ], [ 34.64648963248316, -0.967664320679264 ], [ 34.643498910483167, -0.969068129679274 ], [ 34.639714730483199, -0.967359144679224 ], [ 34.634526742483153, -0.965467054679268 ], [ 34.629338754483165, -0.958631117679263 ], [ 34.627507699483196, -0.955457289679262 ], [ 34.626897347483172, -0.952161390679239 ], [ 34.624944222483172, -0.949170668679246 ], [ 34.623540414483152, -0.946057875679233 ], [ 34.62250281648317, -0.938062269679224 ], [ 34.623296273483156, -0.934583265679239 ], [ 34.62390662548318, -0.929639418679246 ], [ 34.626103890483186, -0.925183851679267 ], [ 34.623723519483171, -0.922742445679264 ], [ 34.622136605483199, -0.918469984679237 ], [ 34.618718636483202, -0.902539808679253 ], [ 34.6174979334832, -0.899060804679268 ], [ 34.617925179483159, -0.895032484679237 ], [ 34.615727914483152, -0.892774183679253 ], [ 34.615117562483185, -0.889539320679264 ], [ 34.614934457483166, -0.886243422679231 ], [ 34.615117562483185, -0.883252699679249 ], [ 34.617131722483172, -0.878736097679225 ], [ 34.618291390483186, -0.873365004679274 ], [ 34.616521371483195, -0.870862562679238 ], [ 34.61328650748316, -0.863233168679246 ], [ 34.61133338248316, -0.859448988679221 ], [ 34.611699593483188, -0.851941664679262 ], [ 34.610906136483202, -0.84345777767925 ], [ 34.613896859483184, -0.842176039679262 ], [ 34.6174979334832, -0.841870863679221 ], [ 34.620305550483174, -0.842664320679264 ], [ 34.622685921483189, -0.84095533667926 ], [ 34.62250281648317, -0.836865980679252 ], [ 34.624089730483199, -0.833448011679254 ], [ 34.625737679483159, -0.829175550679227 ], [ 34.623540414483152, -0.824964125679233 ], [ 34.624700082483166, -0.790479261679254 ], [ 34.624944222483172, -0.786939222679225 ], [ 34.627690804483159, -0.775464613679221 ], [ 34.625737679483159, -0.769849379679217 ], [ 34.627141488483169, -0.762342054679268 ], [ 34.626714242483153, -0.75697096167926 ], [ 34.629094613483169, -0.753369886679254 ], [ 34.629094613483169, -0.74885328567922 ], [ 34.629888070483155, -0.744580824679249 ], [ 34.630925668483194, -0.74134596167926 ], [ 34.63031531648317, -0.738050062679238 ], [ 34.62891150748316, -0.735242445679264 ], [ 34.62891150748316, -0.732068617679263 ], [ 34.631291879483165, -0.727063734679237 ], [ 34.634709847483172, -0.723828871679248 ], [ 34.635686410483167, -0.720349867679263 ], [ 34.643315804483159, -0.705945570679264 ], [ 34.640691293483194, -0.702039320679264 ], [ 34.640508187483185, -0.698438246679248 ], [ 34.639897836483151, -0.695142347679225 ], [ 34.63953162548318, -0.691968519679224 ], [ 34.63953162548318, -0.688855726679267 ], [ 34.638494027483198, -0.685071547679231 ], [ 34.637944711483151, -0.676465589679256 ], [ 34.636540902483198, -0.673169691679223 ], [ 34.635503304483159, -0.668958265679239 ], [ 34.637517464483203, -0.662061293679246 ], [ 34.644902718483188, -0.632947523679266 ], [ 34.64734412548318, -0.629163343679241 ], [ 34.650090707483166, -0.62684400767927 ], [ 34.651738656483182, -0.623242933679253 ], [ 34.651311410483167, -0.618970472679225 ], [ 34.652898324483196, -0.615064222679225 ], [ 34.655339730483199, -0.61243971167926 ], [ 34.657903207483166, -0.60853346167926 ], [ 34.660710824483196, -0.605664808679253 ], [ 34.685918343483188, -0.603162367679263 ], [ 34.6917166834832, -0.595838148679266 ], [ 34.695928109483184, -0.592664320679264 ], [ 34.700139535483167, -0.585462172679231 ], [ 34.700139535483167, -0.582166273679266 ], [ 34.701116097483172, -0.579480726679267 ], [ 34.702703011483202, -0.576428968679241 ], [ 34.705327523483156, -0.573682386679254 ], [ 34.709538949483196, -0.570874769679224 ], [ 34.711492074483196, -0.567578871679248 ], [ 34.711736214483203, -0.56416090267925 ], [ 34.712529671483189, -0.560559828679234 ], [ 34.716130746483195, -0.560071547679231 ], [ 34.720098031483182, -0.561048109679237 ], [ 34.725530160483167, -0.56135328567922 ], [ 34.731145394483171, -0.558179457679219 ], [ 34.735112679483159, -0.559583265679239 ], [ 34.73914100048318, -0.56025465267925 ], [ 34.744512093483188, -0.560132582679219 ], [ 34.74890662548318, -0.559766371679248 ], [ 34.752141488483169, -0.559766371679248 ], [ 34.754094613483169, -0.556958754679217 ], [ 34.756536019483171, -0.554029066679223 ], [ 34.759343636483202, -0.552564222679225 ], [ 34.761540902483198, -0.548841078679234 ], [ 34.761907113483169, -0.545240004679217 ], [ 34.763494027483198, -0.542737562679238 ], [ 34.766301644483171, -0.539563734679237 ], [ 34.76953650748316, -0.53504713267927 ], [ 34.774724496483195, -0.535230238679221 ], [ 34.77930213248316, -0.53486402767925 ], [ 34.784734261483202, -0.53486402767925 ], [ 34.789128793483194, -0.533582289679262 ], [ 34.79492713248316, -0.528333265679239 ], [ 34.800115121483195, -0.527967054679268 ], [ 34.803288949483196, -0.526563246679248 ], [ 34.809331429483159, -0.524671156679235 ], [ 34.81250525748316, -0.523267347679225 ], [ 34.815495980483199, -0.521436293679246 ], [ 34.818486703483181, -0.520032484679237 ], [ 34.822331918483194, -0.51923902767925 ], [ 34.825505746483195, -0.518079359679237 ], [ 34.828496468483188, -0.517835218679241 ], [ 34.83289100048318, -0.516980726679267 ], [ 34.836492074483196, -0.515943129679217 ], [ 34.840886605483199, -0.514173109679237 ], [ 34.845525277483198, -0.514051039679262 ], [ 34.8499198084832, -0.512464125679233 ], [ 34.853703988483169, -0.510266859679237 ], [ 34.856145394483171, -0.506543714679256 ], [ 34.858708871483195, -0.505261976679267 ], [ 34.863103402483198, -0.504163343679241 ], [ 34.867742074483196, -0.505933363679221 ], [ 34.870305550483174, -0.507947523679266 ], [ 34.869328988483169, -0.510755140679239 ], [ 34.869695199483196, -0.514234144679224 ], [ 34.869512093483188, -0.518750746679248 ], [ 34.87109900748316, -0.527661879679217 ], [ 34.871526254483165, -0.532239515679239 ], [ 34.871709359483184, -0.537366468679241 ], [ 34.873296273483156, -0.540479261679254 ], [ 34.874944222483172, -0.543164808679253 ], [ 34.876286996483195, -0.546643812679238 ], [ 34.876897347483172, -0.551038343679241 ], [ 34.876897347483172, -0.555066664679262 ], [ 34.878545296483189, -0.557935316679223 ], [ 34.879094613483169, -0.561170179679268 ], [ 34.877324593483188, -0.563733656679235 ], [ 34.875737679483159, -0.567578871679248 ], [ 34.874333871483195, -0.572278578679234 ], [ 34.873723519483171, -0.575635511679254 ], [ 34.876103890483186, -0.579175550679227 ], [ 34.879888070483155, -0.585950453679234 ], [ 34.880925668483194, -0.58973463267927 ], [ 34.879888070483155, -0.592542250679233 ], [ 34.882695687483185, -0.594068129679217 ], [ 34.885137093483188, -0.59736402767925 ], [ 34.887517464483203, -0.60145338267927 ], [ 34.8909354334832, -0.605847914679262 ], [ 34.890508187483185, -0.610730726679267 ], [ 34.887944711483151, -0.613965589679256 ], [ 34.885137093483188, -0.613477308679253 ], [ 34.882512582483166, -0.612073500679233 ], [ 34.879338754483165, -0.610852797679231 ], [ 34.876897347483172, -0.60926588267927 ], [ 34.874333871483195, -0.608045179679268 ], [ 34.870915902483198, -0.608838636679254 ], [ 34.866521371483195, -0.608472425679227 ], [ 34.86414100048318, -0.606336195679264 ], [ 34.861089242483153, -0.60517652767925 ], [ 34.858342660483167, -0.603040297679231 ], [ 34.855535043483194, -0.600354750679233 ], [ 34.850896371483195, -0.600049574679249 ], [ 34.847722543483194, -0.598828871679248 ], [ 34.844304574483196, -0.598279554679268 ], [ 34.838140023483156, -0.602979261679254 ], [ 34.835332406483182, -0.605969984679237 ], [ 34.834538949483196, -0.60926588267927 ], [ 34.833135140483186, -0.613477308679253 ], [ 34.830327521483177, -0.617871841679235 ], [ 34.827092660483167, -0.621533949679249 ], [ 34.823308480483199, -0.624829847679225 ], [ 34.820500863483169, -0.627881605679252 ], [ 34.818120492483153, -0.630078871679248 ], [ 34.817143929483159, -0.63447340267925 ], [ 34.814092171483189, -0.63837965267925 ], [ 34.812688363483169, -0.642163832679219 ], [ 34.811345589483203, -0.645032484679237 ], [ 34.810918343483188, -0.650159437679238 ], [ 34.810918343483188, -0.656262953679234 ], [ 34.810124886483202, -0.660535414679262 ], [ 34.810307992483153, -0.663465101679267 ], [ 34.812139046483189, -0.666455824679249 ], [ 34.809087289483152, -0.666150648679266 ], [ 34.804936898483156, -0.665357191679223 ], [ 34.800542367483153, -0.666272718679241 ], [ 34.792729867483153, -0.666883070679264 ], [ 34.789739144483171, -0.674451429679268 ], [ 34.786931527483198, -0.675855238679221 ] ], [ [ 34.786931527483198, -0.675855238679221 ], [ 34.783330453483181, -0.67493971167926 ], [ 34.77930213248316, -0.676831800679227 ], [ 34.785100472483172, -0.680371839679256 ], [ 34.786931527483198, -0.675855238679221 ] ] ] } } +, +{ "type": "Feature", "id": 43, "properties": { "OBJECTID": 44, "ID_": 4923, "COUNTY_NAM": "BOMET", "CONST_CODE": 195, "CONSTITUEN": "CHEPALUNGU", "COUNTY_COD": 36, "Shape_Leng": 2.72406675872, "Shape_Area": 0.19238263931 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.350530160483167, -0.974683363679221 ], [ 35.347295296483189, -0.973157484679237 ], [ 35.343511117483153, -0.974256117679263 ], [ 35.340093148483156, -0.97645338267927 ], [ 35.339726937483185, -0.979566175679227 ], [ 35.335332406483182, -0.977979261679254 ], [ 35.331120980483199, -0.981031019679224 ], [ 35.332524789483152, -0.984571058679253 ], [ 35.325505746483195, -0.987073500679233 ], [ 35.321538461483151, -0.988843519679224 ], [ 35.318730843483188, -0.990857679679268 ], [ 35.315740121483195, -0.992566664679262 ], [ 35.31531287548318, -0.996045668679246 ], [ 35.31250525748316, -0.997449476679267 ], [ 35.313298714483203, -1.000867445679264 ], [ 35.3089041834832, -1.002271254679274 ], [ 35.304326546483189, -1.005078871679248 ], [ 35.300115121483195, -1.004346449679249 ], [ 35.29773475048318, -1.00666578567922 ], [ 35.295537484483184, -1.009229261679254 ], [ 35.2913260584832, -1.010266859679237 ], [ 35.288701546483189, -1.012281019679224 ], [ 35.285527718483188, -1.014173109679237 ], [ 35.282292855483199, -1.014051039679262 ], [ 35.280339730483199, -1.017530043679247 ], [ 35.277287972483172, -1.019239027679251 ], [ 35.271916879483165, -1.02137525767927 ], [ 35.270329964483203, -1.023877699679249 ], [ 35.266301644483171, -1.022229750679233 ], [ 35.263310921483189, -1.020764906679235 ], [ 35.260930550483174, -1.023267347679225 ], [ 35.259343636483202, -1.026868422679231 ], [ 35.25671912548318, -1.029981214679256 ], [ 35.253118050483174, -1.029553968679241 ], [ 35.250737679483159, -1.031262953679234 ], [ 35.24890662548318, -1.034253675679227 ], [ 35.245915902483198, -1.036878187679238 ], [ 35.242742074483196, -1.036450941679223 ], [ 35.23914100048318, -1.034436781679235 ], [ 35.222905648483156, -1.021436293679247 ], [ 35.209111703483181, -1.008069593679241 ], [ 35.19812537548318, -1.001660902679251 ], [ 35.182927621483195, -0.989453871679248 ], [ 35.172490609483184, -0.980542738679221 ], [ 35.163701546483189, -0.973645765679239 ], [ 35.15430213248316, -0.96565016067922 ], [ 35.148320687483185, -0.959729750679233 ], [ 35.145513070483155, -0.958264906679235 ], [ 35.11914588248316, -0.936841566679223 ], [ 35.118108285483167, -0.934156019679224 ], [ 35.109502328483181, -0.928662855679252 ], [ 35.105718148483156, -0.92567213267927 ], [ 35.0999198084832, -0.920667250679233 ], [ 35.090337289483152, -0.912854750679233 ], [ 35.086308968483188, -0.908765394679224 ], [ 35.083318246483195, -0.906934339679256 ], [ 35.067327035483167, -0.90315016067922 ], [ 35.063115609483184, -0.901868422679231 ], [ 35.055730355483199, -0.900464613679221 ], [ 35.013494027483198, -0.89033277767925 ], [ 35.014104379483165, -0.887036879679274 ], [ 35.012944711483151, -0.882642347679225 ], [ 35.014714730483199, -0.878430922679231 ], [ 35.017705453483181, -0.874463636679254 ], [ 35.021306527483198, -0.872449476679267 ], [ 35.02429725048318, -0.875562269679224 ], [ 35.0257010584832, -0.872449476679267 ], [ 35.026128304483159, -0.863538343679241 ], [ 35.025334847483172, -0.859876234679237 ], [ 35.024114144483171, -0.856458265679239 ], [ 35.022527230483199, -0.853040297679231 ], [ 35.02289344148317, -0.849073011679254 ], [ 35.026921761483202, -0.84754713267927 ], [ 35.031316293483194, -0.847058851679267 ], [ 35.034307015483186, -0.848157484679237 ], [ 35.045720589483203, -0.85535963267927 ], [ 35.062688363483169, -0.837171156679235 ], [ 35.086736214483203, -0.809033949679249 ], [ 35.0921073084832, -0.803357679679268 ], [ 35.088689339483203, -0.796338636679254 ], [ 35.087529671483189, -0.789380629679217 ], [ 35.074101937483185, -0.764539320679264 ], [ 35.069707406483182, -0.751538832679219 ], [ 35.061711800483174, -0.73713453567922 ], [ 35.048711312483185, -0.709363539679262 ], [ 35.04968787548318, -0.705457289679262 ], [ 35.052922738483169, -0.701734144679224 ], [ 35.056890023483156, -0.699353773679266 ], [ 35.061528695483155, -0.69697340267925 ], [ 35.069524300483174, -0.695874769679224 ], [ 35.072331918483194, -0.691663343679241 ], [ 35.07031775748316, -0.685865004679217 ], [ 35.067327035483167, -0.682874281679235 ], [ 35.065740121483195, -0.679883558679253 ], [ 35.063298714483203, -0.677259047679231 ], [ 35.063542855483199, -0.672742445679264 ], [ 35.058293832483166, -0.666150648679266 ], [ 35.057134164483152, -0.663159925679227 ], [ 35.05609656648317, -0.659131605679252 ], [ 35.05609656648317, -0.654431898679266 ], [ 35.05750037548318, -0.650952894679224 ], [ 35.056706918483194, -0.646680433679253 ], [ 35.058110726483157, -0.642163832679219 ], [ 35.059941781483182, -0.637952406679235 ], [ 35.064336312483185, -0.633863050679227 ], [ 35.064092171483189, -0.629346449679249 ], [ 35.06250525748316, -0.624646742679263 ], [ 35.067143929483159, -0.612073500679233 ], [ 35.067510140483186, -0.608350355679252 ], [ 35.068730843483188, -0.604566175679227 ], [ 35.070500863483169, -0.601331312679238 ], [ 35.073491586483151, -0.599866468679241 ], [ 35.081731332483166, -0.600843031679235 ], [ 35.081914437483185, -0.604444105679252 ], [ 35.082707894483171, -0.607251722679225 ], [ 35.086492074483196, -0.60926588267927 ], [ 35.086308968483188, -0.613233168679246 ], [ 35.084905160483167, -0.617261488679221 ], [ 35.08594275748316, -0.620374281679235 ], [ 35.084111703483181, -0.62275465267925 ], [ 35.087712777483198, -0.625562269679224 ], [ 35.087102425483174, -0.628675062679238 ], [ 35.085332406483182, -0.632031996679248 ], [ 35.082707894483171, -0.635449964679256 ], [ 35.0823416834832, -0.639966566679223 ], [ 35.083745492483153, -0.643445570679264 ], [ 35.082097543483194, -0.646863539679262 ], [ 35.081120980483199, -0.651258070679264 ], [ 35.083928597483172, -0.654859144679224 ], [ 35.09070350048318, -0.658155043679246 ], [ 35.094121468483188, -0.659375746679248 ], [ 35.097722543483194, -0.658032972679225 ], [ 35.101506722483172, -0.657544691679223 ], [ 35.10632850048318, -0.657971937679238 ], [ 35.110723031483182, -0.657239515679239 ], [ 35.115117562483185, -0.655530531679235 ], [ 35.118108285483167, -0.656751234679237 ], [ 35.120305550483174, -0.658643324679249 ], [ 35.121343148483156, -0.661573011679254 ], [ 35.12109900748316, -0.665479261679254 ], [ 35.126531136483202, -0.663343031679235 ], [ 35.131108773483156, -0.661939222679225 ], [ 35.134526742483153, -0.660474379679217 ], [ 35.138310921483189, -0.66096266067922 ], [ 35.141911996483195, -0.66096266067922 ], [ 35.146306527483198, -0.66004713267927 ], [ 35.150517953483181, -0.660474379679217 ], [ 35.154119027483198, -0.66004713267927 ], [ 35.158940804483159, -0.658765394679224 ], [ 35.164128793483194, -0.657666761679254 ], [ 35.168706429483159, -0.657239515679239 ], [ 35.173100961483151, -0.657666761679254 ], [ 35.177495492483153, -0.657361585679271 ], [ 35.179509652483198, -0.654431898679266 ], [ 35.182927621483195, -0.652478773679266 ], [ 35.1917166834832, -0.648267347679225 ], [ 35.195928109483184, -0.646741468679241 ], [ 35.197942269483171, -0.642835218679241 ], [ 35.199101937483185, -0.639356214679256 ], [ 35.202336800483174, -0.636548597679225 ], [ 35.205327523483156, -0.634778578679234 ], [ 35.207524789483152, -0.632947523679266 ], [ 35.21234656648317, -0.627881605679252 ], [ 35.217717660483167, -0.624951918679246 ], [ 35.221318734483184, -0.622144300679227 ], [ 35.224126351483157, -0.62025221167926 ], [ 35.226689828483181, -0.618177015679239 ], [ 35.22992469148317, -0.615857679679268 ], [ 35.229131234483184, -0.612744886679254 ], [ 35.228887093483188, -0.608472425679227 ], [ 35.227117074483196, -0.603040297679231 ], [ 35.229741586483151, -0.599683363679221 ], [ 35.233342660483167, -0.598035414679262 ], [ 35.235723031483182, -0.595349867679263 ], [ 35.23773719148317, -0.591870863679221 ], [ 35.234746468483188, -0.592542250679233 ], [ 35.231511605483199, -0.591260511679254 ], [ 35.229131234483184, -0.588880140679239 ], [ 35.226323617483153, -0.586865980679252 ], [ 35.22211219148317, -0.584729750679233 ], [ 35.218511117483153, -0.582471449679249 ], [ 35.215093148483156, -0.576551039679262 ], [ 35.213140023483156, -0.574170668679246 ], [ 35.203740609483184, -0.566052992679263 ], [ 35.200139535483167, -0.562635023679266 ], [ 35.200688851483157, -0.558240492679263 ], [ 35.202092660483167, -0.555371839679256 ], [ 35.205327523483156, -0.553357679679268 ], [ 35.206304086483151, -0.549146254679217 ], [ 35.203496468483188, -0.545056898679266 ], [ 35.199895394483171, -0.542249281679235 ], [ 35.198308480483199, -0.538037855679252 ], [ 35.198918832483166, -0.53486402767925 ], [ 35.200322640483186, -0.531629164679262 ], [ 35.199712289483152, -0.528272230679252 ], [ 35.195500863483169, -0.526258070679264 ], [ 35.192693246483195, -0.523755629679217 ], [ 35.190495980483199, -0.521436293679246 ], [ 35.19031287548318, -0.517835218679241 ], [ 35.192327035483167, -0.51478346167926 ], [ 35.194341195483155, -0.511243422679231 ], [ 35.1917166834832, -0.508435804679268 ], [ 35.188542855483199, -0.50556715267925 ], [ 35.184331429483159, -0.504468519679224 ], [ 35.180303109483184, -0.502881605679252 ], [ 35.178533089483203, -0.499951918679246 ], [ 35.178533089483203, -0.495862562679238 ], [ 35.180913461483151, -0.490430433679253 ], [ 35.182134164483152, -0.486157972679225 ], [ 35.185491097483172, -0.486463148679266 ], [ 35.1917166834832, -0.484937269679224 ], [ 35.195134652483198, -0.483655531679235 ], [ 35.199101937483185, -0.484571058679253 ], [ 35.203740609483184, -0.483350355679252 ], [ 35.208135140483186, -0.481763441679223 ], [ 35.213689339483203, -0.481031019679224 ], [ 35.217900765483186, -0.479566175679227 ], [ 35.220342171483189, -0.47645338267927 ], [ 35.219731820483155, -0.472180922679231 ], [ 35.213933480483199, -0.470532972679225 ], [ 35.210332406483182, -0.467969496679248 ], [ 35.211736214483203, -0.464063246679248 ], [ 35.215093148483156, -0.462171156679235 ], [ 35.2171073084832, -0.458264906679235 ], [ 35.218938363483169, -0.455457289679262 ], [ 35.218694222483172, -0.452466566679223 ], [ 35.223088754483165, -0.445752699679249 ], [ 35.225286019483171, -0.441968519679224 ], [ 35.227727425483174, -0.438855726679267 ], [ 35.229314339483203, -0.435071547679231 ], [ 35.231145394483171, -0.426160414679262 ], [ 35.235112679483159, -0.423963148679266 ], [ 35.23969031648317, -0.424573500679233 ], [ 35.243718636483202, -0.424451429679268 ], [ 35.247930062483185, -0.423352797679231 ], [ 35.251531136483202, -0.421460707679219 ], [ 35.254704964483203, -0.423352797679231 ], [ 35.257695687483185, -0.424756605679252 ], [ 35.261296761483202, -0.424878675679227 ], [ 35.264714730483199, -0.424146254679217 ], [ 35.268315804483159, -0.422132093679241 ], [ 35.271916879483165, -0.420484144679224 ], [ 35.277104867483153, -0.41877516067922 ], [ 35.281133187483185, -0.420240004679217 ], [ 35.284917367483153, -0.41962965267925 ], [ 35.287908089483203, -0.420178968679241 ], [ 35.290105355483199, -0.422559339679256 ], [ 35.292912972483172, -0.424756605679252 ], [ 35.300908578483181, -0.426465589679256 ], [ 35.305486214483203, -0.426160414679262 ], [ 35.310307992483153, -0.42493971167926 ], [ 35.314092171483189, -0.423047621679248 ], [ 35.304326546483189, -0.444531996679248 ], [ 35.285527718483188, -0.491834242679263 ], [ 35.289739144483171, -0.490979750679233 ], [ 35.293523324483196, -0.489759047679231 ], [ 35.297307504483165, -0.492871839679256 ], [ 35.29968787548318, -0.495374281679235 ], [ 35.305303109483184, -0.498059828679234 ], [ 35.309697640483186, -0.502454359679237 ], [ 35.311711800483174, -0.505261976679267 ], [ 35.312139046483189, -0.511548597679225 ], [ 35.350713265483186, -0.490552504679217 ], [ 35.358708871483195, -0.487744886679254 ], [ 35.361943734483184, -0.484937269679224 ], [ 35.365911019483171, -0.484632093679241 ], [ 35.370305550483174, -0.484937269679224 ], [ 35.376897347483172, -0.481458265679239 ], [ 35.379704964483203, -0.477979261679254 ], [ 35.381536019483171, -0.474683363679221 ], [ 35.385503304483159, -0.475537855679252 ], [ 35.390508187483185, -0.469983656679235 ], [ 35.394719613483169, -0.46455152767925 ], [ 35.39648963248316, -0.461865980679252 ], [ 35.400517953483181, -0.462354261679254 ], [ 35.405889046483189, -0.462537367679263 ], [ 35.409917367483153, -0.460950453679234 ], [ 35.411931527483198, -0.45814283667926 ], [ 35.418706429483159, -0.456067640679239 ], [ 35.421514046483189, -0.457044203679234 ], [ 35.425298226483157, -0.457349379679217 ], [ 35.428533089483203, -0.456250746679248 ], [ 35.430486214483203, -0.454175550679227 ], [ 35.432317269483171, -0.451673109679237 ], [ 35.432744515483186, -0.447766859679237 ], [ 35.435307992483153, -0.443372328679234 ], [ 35.436345589483203, -0.43934400767927 ], [ 35.439092171483189, -0.438062269679224 ], [ 35.440740121483195, -0.434156019679224 ], [ 35.443486703483181, -0.430432875679233 ], [ 35.446904671483189, -0.429456312679238 ], [ 35.450139535483167, -0.427564222679225 ], [ 35.453496468483188, -0.42493971167926 ], [ 35.455144418483194, -0.42176588267927 ], [ 35.456914437483185, -0.418836195679264 ], [ 35.458928597483172, -0.415967543679246 ], [ 35.460698617483153, -0.412366468679241 ], [ 35.463506234483184, -0.409253675679227 ], [ 35.465886605483199, -0.406262953679234 ], [ 35.469487679483159, -0.405347425679227 ], [ 35.473088754483165, -0.402356703679234 ], [ 35.479131234483184, -0.409070570679264 ], [ 35.481145394483171, -0.413465101679267 ], [ 35.484502328483181, -0.418164808679253 ], [ 35.488530648483156, -0.426343519679224 ], [ 35.498113168483194, -0.442884047679231 ], [ 35.507329476483157, -0.456250746679248 ], [ 35.512700570483155, -0.464368422679231 ], [ 35.52429725048318, -0.483350355679252 ], [ 35.529119027483198, -0.491651136679254 ], [ 35.537908089483203, -0.504956800679227 ], [ 35.540532601483157, -0.512036879679217 ], [ 35.543706429483159, -0.514661390679239 ], [ 35.546941293483194, -0.521436293679246 ], [ 35.549321664483152, -0.524182875679233 ], [ 35.561101449483196, -0.544446547679231 ], [ 35.566533578483181, -0.553479750679233 ], [ 35.568486703483181, -0.558057386679254 ], [ 35.570928109483184, -0.560865004679217 ], [ 35.586308968483188, -0.58674391067922 ], [ 35.58789588248316, -0.589673597679225 ], [ 35.50531531648317, -0.613660414679262 ], [ 35.493718636483202, -0.617566664679262 ], [ 35.435735238483169, -0.634229261679254 ], [ 35.410527718483188, -0.641675550679227 ], [ 35.404912484483184, -0.643262464679256 ], [ 35.39929725048318, -0.644544203679234 ], [ 35.398320687483185, -0.647779066679223 ], [ 35.401738656483182, -0.655042250679233 ], [ 35.40430213248316, -0.662549574679249 ], [ 35.405522836483151, -0.665235121679248 ], [ 35.408696664483152, -0.673352797679231 ], [ 35.412724984483184, -0.684339125679233 ], [ 35.413945687483185, -0.687146742679263 ], [ 35.418889535483167, -0.700635511679254 ], [ 35.420293343483188, -0.704053480679252 ], [ 35.420903695483155, -0.70814283667926 ], [ 35.423100961483151, -0.711438734679237 ], [ 35.424504769483171, -0.715772230679252 ], [ 35.426702035483167, -0.721143324679249 ], [ 35.430303109483184, -0.723828871679248 ], [ 35.433293832483166, -0.726331312679238 ], [ 35.434941781483182, -0.728833754679217 ], [ 35.44031287548318, -0.731763441679223 ], [ 35.444097054483159, -0.734937269679224 ], [ 35.449101937483185, -0.739575941679223 ], [ 35.453740609483184, -0.742444593679241 ], [ 35.459538949483196, -0.747083265679239 ], [ 35.462712777483198, -0.750257093679241 ], [ 35.466496957483166, -0.752637464679256 ], [ 35.469914925483174, -0.755139906679235 ], [ 35.47351600048318, -0.758252699679249 ], [ 35.479741586483151, -0.763074476679267 ], [ 35.488530648483156, -0.76673658667926 ], [ 35.492131722483172, -0.768079359679237 ], [ 35.495915902483198, -0.768933851679267 ], [ 35.499944222483172, -0.770154554679268 ], [ 35.503545296483189, -0.772656996679248 ], [ 35.509099496483195, -0.774671156679235 ], [ 35.515691293483194, -0.775037367679263 ], [ 35.51953650748316, -0.775464613679221 ], [ 35.52289344148317, -0.776746351679267 ], [ 35.526921761483202, -0.777539808679253 ], [ 35.53070594148317, -0.777661879679217 ], [ 35.534123910483167, -0.777967054679268 ], [ 35.542485726483157, -0.783155043679246 ], [ 35.545537484483184, -0.785474379679217 ], [ 35.547307504483165, -0.788465101679267 ], [ 35.545537484483184, -0.792371351679267 ], [ 35.541936410483167, -0.796338636679254 ], [ 35.538701546483189, -0.799146254679274 ], [ 35.536321175483174, -0.80067213267927 ], [ 35.534490121483195, -0.803235609679237 ], [ 35.528508675483174, -0.808667738679221 ], [ 35.524541390483186, -0.810742933679253 ], [ 35.521306527483198, -0.81135328567922 ], [ 35.520329964483203, -0.816052992679263 ], [ 35.5159354334832, -0.818555433679253 ], [ 35.512517464483203, -0.821363050679227 ], [ 35.508733285483167, -0.824781019679224 ], [ 35.50531531648317, -0.824658949679249 ], [ 35.501714242483153, -0.825757582679219 ], [ 35.498113168483194, -0.82533033667926 ], [ 35.495732796483189, -0.828137953679234 ], [ 35.491521371483195, -0.830945570679264 ], [ 35.48773719148317, -0.833081800679227 ], [ 35.485539925483174, -0.836072523679266 ], [ 35.482915414483152, -0.838452894679224 ], [ 35.480535043483194, -0.841565687679238 ], [ 35.478337777483198, -0.845777113679221 ], [ 35.479741586483151, -0.849744398679266 ], [ 35.478703988483169, -0.85267408667926 ], [ 35.476323617483153, -0.855847914679262 ], [ 35.472295296483189, -0.858045179679268 ], [ 35.472722543483194, -0.861157972679225 ], [ 35.469914925483174, -0.862073500679233 ], [ 35.467717660483167, -0.864270765679239 ], [ 35.46289588248316, -0.865247328679234 ], [ 35.461736214483203, -0.87385328567922 ], [ 35.458501351483157, -0.876172621679248 ], [ 35.456304086483151, -0.878247816679223 ], [ 35.456304086483151, -0.881848890679239 ], [ 35.45453406648317, -0.884168226679267 ], [ 35.44672156648317, -0.884351332679219 ], [ 35.443303597483172, -0.889356214679256 ], [ 35.44031287548318, -0.889661390679239 ], [ 35.441289437483185, -0.893262464679256 ], [ 35.439519418483194, -0.896070082679219 ], [ 35.435735238483169, -0.898084242679263 ], [ 35.431706918483194, -0.897168714679256 ], [ 35.42914344148317, -0.905530531679235 ], [ 35.425115121483195, -0.906934339679256 ], [ 35.4260916834832, -0.911756117679263 ], [ 35.427495492483153, -0.915052015679239 ], [ 35.427312386483202, -0.919141371679248 ], [ 35.42468787548318, -0.923657972679225 ], [ 35.425725472483172, -0.929029066679223 ], [ 35.4260916834832, -0.932630140679239 ], [ 35.425298226483157, -0.935865004679274 ], [ 35.422917855483199, -0.937635023679266 ], [ 35.423100961483151, -0.941663343679241 ], [ 35.421086800483174, -0.945874769679224 ], [ 35.416509164483152, -0.946851332679219 ], [ 35.408330453483181, -0.949475843679241 ], [ 35.404119027483198, -0.95106275767927 ], [ 35.402104867483153, -0.955030043679246 ], [ 35.398931039483152, -0.95783766067922 ], [ 35.394109261483202, -0.958081800679227 ], [ 35.387090218483188, -0.960034925679227 ], [ 35.382512582483166, -0.961072523679266 ], [ 35.37891150748316, -0.962537367679263 ], [ 35.376897347483172, -0.965772230679252 ], [ 35.375127328483181, -0.969373304679268 ], [ 35.372136605483199, -0.970838148679266 ], [ 35.369328988483169, -0.974073011679254 ], [ 35.366338265483186, -0.973828871679248 ], [ 35.36328650748316, -0.971265394679224 ], [ 35.360112679483159, -0.97236402767925 ], [ 35.355718148483156, -0.969129164679262 ], [ 35.351506722483172, -0.968152601679267 ], [ 35.352300179483159, -0.971753675679227 ], [ 35.350530160483167, -0.974683363679221 ] ] ], [ [ [ 35.350530160483167, -0.974683363679221 ], [ 35.351140511483202, -0.978772718679241 ], [ 35.348332894483171, -0.976575453679234 ], [ 35.350530160483167, -0.974683363679221 ] ] ] ] } } +, +{ "type": "Feature", "id": 44, "properties": { "OBJECTID": 45, "ID_": 3966, "COUNTY_NAM": "NYAMIRA", "CONST_CODE": 272, "CONSTITUEN": "NORTH MUGIRANGO", "COUNTY_COD": 46, "Shape_Leng": 1.44616032887, "Shape_Area": 0.07281816374 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.042650522483193, -0.470789315679272 ], [ 35.0413260584832, -0.478040297679231 ], [ 35.041142953483181, -0.481336195679264 ], [ 35.039739144483171, -0.484876234679237 ], [ 35.035893929483159, -0.485059339679256 ], [ 35.034490121483195, -0.487744886679254 ], [ 35.034917367483153, -0.491651136679254 ], [ 35.034123910483167, -0.49494703567922 ], [ 35.033940804483159, -0.498975355679252 ], [ 35.039311898483156, -0.499341566679223 ], [ 35.043523324483196, -0.500684339679256 ], [ 35.047124398483156, -0.500562269679224 ], [ 35.050542367483153, -0.499280531679235 ], [ 35.053105843483188, -0.50166090267925 ], [ 35.054936898483156, -0.504163343679241 ], [ 35.056890023483156, -0.508069593679241 ], [ 35.053105843483188, -0.516675550679227 ], [ 35.051946175483174, -0.519666273679266 ], [ 35.049321664483152, -0.522229750679233 ], [ 35.048711312483185, -0.525464613679221 ], [ 35.0510916834832, -0.527844984679237 ], [ 35.052312386483202, -0.530835707679219 ], [ 35.053105843483188, -0.535535414679262 ], [ 35.050115121483195, -0.538648207679219 ], [ 35.050725472483172, -0.541455824679249 ], [ 35.052495492483153, -0.544873793679246 ], [ 35.050298226483157, -0.548474867679263 ], [ 35.050908578483181, -0.551465589679256 ], [ 35.051335824483196, -0.556043226679267 ], [ 35.050908578483181, -0.560681898679266 ], [ 35.051335824483196, -0.564466078679234 ], [ 35.050908578483181, -0.567578871679248 ], [ 35.049321664483152, -0.570874769679224 ], [ 35.050298226483157, -0.573743422679231 ], [ 35.050908578483181, -0.581861097679225 ], [ 35.051946175483174, -0.586072523679266 ], [ 35.053288949483196, -0.588636000679233 ], [ 35.055303109483184, -0.591382582679219 ], [ 35.056523813483174, -0.595349868679252 ], [ 35.058110726483157, -0.598828871679248 ], [ 35.060124886483202, -0.60145338267927 ], [ 35.062322152483198, -0.603345472679225 ], [ 35.062932504483165, -0.60658033667926 ], [ 35.062688363483169, -0.610059339679256 ], [ 35.061528695483155, -0.612683851679267 ], [ 35.059087289483152, -0.615369398679266 ], [ 35.057744515483186, -0.619763929679268 ], [ 35.063115609483184, -0.627454359679237 ], [ 35.064885629483165, -0.631055433679253 ], [ 35.063725961483151, -0.634778578679234 ], [ 35.060307992483153, -0.63752516067922 ], [ 35.058110726483157, -0.641980726679267 ], [ 35.056523812483185, -0.646436293679246 ], [ 35.05750037548318, -0.651136000679233 ], [ 35.05609656648317, -0.654431898679266 ], [ 35.055730355483199, -0.657666761679254 ], [ 35.056890023483156, -0.661756117679263 ], [ 35.058537972483172, -0.666272718679241 ], [ 35.063542855483199, -0.672864515679239 ], [ 35.063542855483199, -0.677381117679263 ], [ 35.065740121483195, -0.679883558679253 ], [ 35.067327035483167, -0.68244703567922 ], [ 35.070134652483198, -0.685742933679253 ], [ 35.072331918483194, -0.691724379679217 ], [ 35.069524300483174, -0.695874769679224 ], [ 35.061345589483203, -0.69697340267925 ], [ 35.056890023483156, -0.699353773679266 ], [ 35.052922738483169, -0.701734144679224 ], [ 35.049504769483171, -0.705274183679253 ], [ 35.048528207483166, -0.709973890679239 ], [ 35.061711800483174, -0.73713453567922 ], [ 35.068730843483188, -0.752271254679217 ], [ 35.074101937483185, -0.764539320679264 ], [ 35.086492074483196, -0.791333754679274 ], [ 35.088506234483184, -0.796643812679238 ], [ 35.090093148483156, -0.799146254679274 ], [ 35.091924203483181, -0.803235609679237 ], [ 35.045537484483184, -0.854566175679227 ], [ 35.039128793483194, -0.85127027767925 ], [ 35.034307015483186, -0.848157484679237 ], [ 35.031316293483194, -0.847058851679267 ], [ 35.026921761483202, -0.84754713267927 ], [ 35.02289344148317, -0.848950941679223 ], [ 35.022527230483199, -0.853040297679231 ], [ 35.024114144483171, -0.85658033667926 ], [ 35.025334847483172, -0.859876234679237 ], [ 35.026128304483159, -0.863538343679241 ], [ 35.0257010584832, -0.872144300679227 ], [ 35.024541390483186, -0.875379164679262 ], [ 35.021306527483198, -0.872449476679267 ], [ 35.017705453483181, -0.874463636679254 ], [ 35.014714730483199, -0.878430922679231 ], [ 35.012944711483151, -0.882642347679225 ], [ 35.014104379483165, -0.887036879679274 ], [ 35.013310921483189, -0.89033277767925 ], [ 34.98914100048318, -0.848828871679248 ], [ 34.955693734483184, -0.793164808679253 ], [ 34.950932992483153, -0.784741957679219 ], [ 34.94812537548318, -0.780530531679235 ], [ 34.946111214483203, -0.776746351679267 ], [ 34.944341195483155, -0.773877699679249 ], [ 34.940740121483195, -0.772046644679224 ], [ 34.937139046483189, -0.76923902767925 ], [ 34.933293832483166, -0.767041761679254 ], [ 34.928899300483174, -0.766553480679252 ], [ 34.925908578483181, -0.763074476679267 ], [ 34.922307504483165, -0.761975843679241 ], [ 34.918523324483196, -0.760449964679256 ], [ 34.913091195483155, -0.760449964679256 ], [ 34.907720101483157, -0.761365492679263 ], [ 34.906743539483152, -0.758435804679268 ], [ 34.905095589483203, -0.755078871679248 ], [ 34.902715218483188, -0.751782972679225 ], [ 34.89789344148317, -0.748365004679217 ], [ 34.893132699483196, -0.747632582679219 ], [ 34.888921273483156, -0.746533949679249 ], [ 34.887090218483188, -0.743970472679225 ], [ 34.880498421483189, -0.740552504679217 ], [ 34.876714242483153, -0.738233168679246 ], [ 34.873113168483194, -0.736951429679268 ], [ 34.868718636483202, -0.734876234679237 ], [ 34.861089242483153, -0.729077894679224 ], [ 34.858525765483186, -0.72736891067922 ], [ 34.853093636483202, -0.724561293679246 ], [ 34.850896371483195, -0.722241957679219 ], [ 34.847295296483189, -0.719678480679252 ], [ 34.843511117483153, -0.717237074679249 ], [ 34.840520394483171, -0.71473463267927 ], [ 34.838323129483165, -0.711438734679237 ], [ 34.834905160483167, -0.707959730679252 ], [ 34.83148719148317, -0.707166273679266 ], [ 34.828496468483188, -0.705762464679256 ], [ 34.825139535483167, -0.704663832679219 ], [ 34.823491586483151, -0.701245863679221 ], [ 34.82312537548318, -0.696729261679254 ], [ 34.820928109483184, -0.69416578567922 ], [ 34.815129769483171, -0.691541273679266 ], [ 34.811711800483174, -0.689038832679219 ], [ 34.806706918483194, -0.688672621679248 ], [ 34.802495492483153, -0.69025953567922 ], [ 34.799321664483152, -0.690869886679254 ], [ 34.796086800483174, -0.690137464679256 ], [ 34.793523324483196, -0.687573988679221 ], [ 34.793706429483159, -0.684339125679233 ], [ 34.789739144483171, -0.678235609679237 ], [ 34.78711463248316, -0.676953871679248 ], [ 34.785100472483172, -0.680371839679256 ], [ 34.779546273483156, -0.676770765679239 ], [ 34.78210975048318, -0.675183851679267 ], [ 34.785100472483172, -0.674756605679252 ], [ 34.789739144483171, -0.674451429679268 ], [ 34.7913260584832, -0.670362074679249 ], [ 34.794133675483174, -0.667066175679227 ], [ 34.798528207483166, -0.665967543679246 ], [ 34.801702035483167, -0.666638929679268 ], [ 34.805303109483184, -0.665662367679263 ], [ 34.809331429483159, -0.666150648679266 ], [ 34.812322152483198, -0.666150648679266 ], [ 34.810307992483153, -0.663465101679267 ], [ 34.810124886483202, -0.660535414679262 ], [ 34.810918343483188, -0.656262953679234 ], [ 34.810918343483188, -0.650159437679238 ], [ 34.811345589483203, -0.645032484679237 ], [ 34.812688363483169, -0.642163832679219 ], [ 34.814336312483185, -0.63783033667926 ], [ 34.817143929483159, -0.633863050679227 ], [ 34.819524300483174, -0.631360609679237 ], [ 34.820500863483169, -0.627881605679252 ], [ 34.822087777483198, -0.625440199679249 ], [ 34.824712289483152, -0.62385328567922 ], [ 34.827519906483182, -0.621167738679221 ], [ 34.83093787548318, -0.618238050679227 ], [ 34.834111703483181, -0.610852797679231 ], [ 34.83594275748316, -0.605542738679221 ], [ 34.840337289483152, -0.60127027767925 ], [ 34.844304574483196, -0.59846266067922 ], [ 34.847722543483194, -0.59876783667926 ], [ 34.850896371483195, -0.600049574679249 ], [ 34.854497445483155, -0.599439222679225 ], [ 34.860295785483167, -0.604749281679235 ], [ 34.863896859483184, -0.606336195679264 ], [ 34.866338265483186, -0.608472425679227 ], [ 34.869695199483196, -0.60908277767925 ], [ 34.873113168483194, -0.608167250679233 ], [ 34.876714242483153, -0.60908277767925 ], [ 34.879521859483184, -0.610730726679267 ], [ 34.886540902483198, -0.613843519679224 ], [ 34.890691293483194, -0.610730726679267 ], [ 34.891301644483171, -0.606336195679264 ], [ 34.886907113483169, -0.600843031679235 ], [ 34.885137093483188, -0.59736402767925 ], [ 34.882695687483185, -0.594068129679217 ], [ 34.880132211483151, -0.591931898679266 ], [ 34.881108773483156, -0.587842543679246 ], [ 34.876103890483186, -0.579175550679227 ], [ 34.873296273483156, -0.576673109679237 ], [ 34.87390662548318, -0.573743422679231 ], [ 34.875920785483167, -0.567151625679233 ], [ 34.878301156483182, -0.562940199679249 ], [ 34.878545296483189, -0.558362562679238 ], [ 34.876897347483172, -0.555066664679262 ], [ 34.876897347483172, -0.551038343679241 ], [ 34.876286996483195, -0.54658277767925 ], [ 34.874333871483195, -0.541944105679252 ], [ 34.872136605483199, -0.537976820679264 ], [ 34.871526254483165, -0.532666761679254 ], [ 34.871343148483156, -0.528760511679254 ], [ 34.870488656483182, -0.52454908667926 ], [ 34.869695199483196, -0.513867933679253 ], [ 34.869695199483196, -0.509961683679253 ], [ 34.87250281648317, -0.508863050679227 ], [ 34.868901742483153, -0.506482679679268 ], [ 34.8655448084832, -0.504529554679268 ], [ 34.862493050483174, -0.504163343679241 ], [ 34.877141488483169, -0.491834242679263 ], [ 34.881536019483171, -0.488965589679256 ], [ 34.884892953483181, -0.488050062679238 ], [ 34.892339242483153, -0.486951429679268 ], [ 34.896123421483189, -0.485242445679264 ], [ 34.907536996483195, -0.482251722679225 ], [ 34.912297738483169, -0.479566175679227 ], [ 34.918706429483159, -0.478162367679263 ], [ 34.921086800483174, -0.475354750679233 ], [ 34.927922738483169, -0.471936781679235 ], [ 34.933721078483181, -0.472669203679234 ], [ 34.936345589483203, -0.467664320679264 ], [ 34.940923226483157, -0.465467054679268 ], [ 34.945745004483165, -0.461682875679233 ], [ 34.958745492483153, -0.45087965267925 ], [ 34.967534554483159, -0.442945082679219 ], [ 34.973088754483165, -0.440747816679223 ], [ 34.978337777483198, -0.438367445679264 ], [ 34.986516488483169, -0.436231214679256 ], [ 34.989507211483151, -0.434033949679249 ], [ 34.999089730483199, -0.430249769679224 ], [ 35.001714242483153, -0.42854078567922 ], [ 35.004704964483203, -0.425855238679221 ], [ 35.014104379483165, -0.418042738679221 ], [ 35.021306527483198, -0.414258558679253 ], [ 35.024724496483195, -0.414380629679217 ], [ 35.027898324483196, -0.415540297679231 ], [ 35.03070594148317, -0.419263441679223 ], [ 35.033696664483152, -0.421460707679219 ], [ 35.035527718483188, -0.425244886679254 ], [ 35.039739144483171, -0.432141859679237 ], [ 35.039495004483165, -0.435376722679225 ], [ 35.039739144483171, -0.438855726679267 ], [ 35.042302621483195, -0.441663343679241 ], [ 35.044744027483198, -0.445081312679238 ], [ 35.045720589483203, -0.448682386679254 ], [ 35.045110238483169, -0.451673109679237 ], [ 35.04492713248316, -0.455762464679256 ], [ 35.042729867483153, -0.459546644679224 ], [ 35.043340218483188, -0.463636000679233 ], [ 35.042650522483193, -0.470789315679272 ] ] ] } } +, +{ "type": "Feature", "id": 45, "properties": { "OBJECTID": 46, "ID_": 3371, "COUNTY_NAM": "KISUMU", "CONST_CODE": 244, "CONSTITUEN": "NYAKACH", "COUNTY_COD": 42, "Shape_Leng": 2.85283474806, "Shape_Area": 0.21632857436 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.808293832483166, -0.016553480679252 ], [ 34.808293832483166, -0.021131117679263 ], [ 34.815495980483199, -0.024182875679233 ], [ 34.828313363483169, -0.02815016067922 ], [ 34.834538949483196, -0.02815016067922 ], [ 34.852544320483155, -0.027539808679253 ], [ 34.86469031648317, -0.027356703679234 ], [ 34.870305550483174, -0.026929457679219 ], [ 34.881108773483156, -0.026746351679267 ], [ 34.888921273483156, -0.025647718679241 ], [ 34.894109261483202, -0.025647718679241 ], [ 34.906926644483171, -0.02815016067922 ], [ 34.910893929483159, -0.028333265679239 ], [ 34.917119515483186, -0.02705152767925 ], [ 34.920537484483184, -0.02845533667926 ], [ 34.920110238483169, -0.033338148679266 ], [ 34.923894418483194, -0.036634047679231 ], [ 34.935918343483188, -0.035840589679256 ], [ 34.951299203483181, -0.03095777767925 ], [ 34.955144418483194, -0.030774672679231 ], [ 34.953313363483169, -0.027539808679253 ], [ 34.958318246483195, -0.02705152767925 ], [ 34.960698617483153, -0.029431898679266 ], [ 34.964726937483185, -0.032666761679254 ], [ 34.97211219148317, -0.029859144679224 ], [ 34.978887093483188, -0.02454908667926 ], [ 34.98914100048318, -0.024060804679268 ], [ 34.990300668483194, -0.020154554679268 ], [ 34.995305550483174, -0.022840101679267 ], [ 35.000920785483167, -0.02528150767927 ], [ 35.00671912548318, -0.028272230679252 ], [ 35.008489144483171, -0.033460218679241 ], [ 35.0081229334832, -0.039563734679237 ], [ 35.007939828483181, -0.051465589679256 ], [ 35.010503304483159, -0.054151136679254 ], [ 35.015325082483166, -0.054029066679223 ], [ 35.021123421483189, -0.054151136679254 ], [ 35.055303109483184, -0.054151136679254 ], [ 35.059331429483159, -0.054456312679238 ], [ 35.060491097483172, -0.057935316679223 ], [ 35.063115609483184, -0.060681898679266 ], [ 35.065923226483157, -0.066663343679241 ], [ 35.071904671483189, -0.058850843679241 ], [ 35.074346078483181, -0.056470472679225 ], [ 35.077336800483174, -0.054029066679223 ], [ 35.08093787548318, -0.05244215267925 ], [ 35.086492074483196, -0.049573500679233 ], [ 35.088933480483199, -0.047864515679239 ], [ 35.0921073084832, -0.044568617679263 ], [ 35.094487679483159, -0.039563734679237 ], [ 35.095342171483189, -0.036573011679254 ], [ 35.09570838248316, -0.033460218679241 ], [ 35.097295296483189, -0.030469496679248 ], [ 35.100102914483152, -0.02815016067922 ], [ 35.10352088248316, -0.023572523679266 ], [ 35.103337777483198, -0.018933851679267 ], [ 35.102727425483174, -0.014966566679223 ], [ 35.102300179483159, -0.009961683679253 ], [ 35.103703988483169, -0.005261976679267 ], [ 35.108098519483171, -0.007581312679238 ], [ 35.120732796483189, -0.016370375679233 ], [ 35.123723519483171, -0.018140394679224 ], [ 35.130742562483185, -0.02314527767925 ], [ 35.133489144483171, -0.024671156679235 ], [ 35.135930550483174, -0.026746351679267 ], [ 35.143743050483174, -0.032178480679252 ], [ 35.148137582483166, -0.034253675679227 ], [ 35.150945199483196, -0.036573011679254 ], [ 35.155339730483199, -0.036756117679263 ], [ 35.158330453483181, -0.03626783667926 ], [ 35.160893929483159, -0.034070570679264 ], [ 35.163091195483155, -0.03114088267927 ], [ 35.166936410483167, -0.031873304679268 ], [ 35.169744027483198, -0.031079847679225 ], [ 35.172917855483199, -0.029737074679249 ], [ 35.177129281483182, -0.028577406679235 ], [ 35.180303109483184, -0.029859144679224 ], [ 35.183537972483172, -0.028760511679254 ], [ 35.187932504483165, -0.028882582679219 ], [ 35.191533578483181, -0.028272230679252 ], [ 35.193913949483196, -0.026136000679233 ], [ 35.196904671483189, -0.026929457679219 ], [ 35.201116097483172, -0.027478773679266 ], [ 35.2073416834832, -0.029370863679221 ], [ 35.214116586483151, -0.032849867679263 ], [ 35.217900765483186, -0.03596266067922 ], [ 35.221745980483199, -0.037366468679241 ], [ 35.221501839483203, -0.040540297679231 ], [ 35.223943246483195, -0.051282484679237 ], [ 35.225896371483195, -0.06135328567922 ], [ 35.227117074483196, -0.066052992679263 ], [ 35.227300179483159, -0.07197340267925 ], [ 35.227300179483159, -0.085034925679227 ], [ 35.226506722483172, -0.089978773679266 ], [ 35.227117074483196, -0.094434339679256 ], [ 35.226933968483188, -0.107434828679234 ], [ 35.229131234483184, -0.112256605679252 ], [ 35.233525765483186, -0.117566664679262 ], [ 35.234746468483188, -0.121045668679246 ], [ 35.239324105483199, -0.120435316679223 ], [ 35.24609900748316, -0.120740492679263 ], [ 35.254338754483165, -0.120740492679263 ], [ 35.260503304483159, -0.132459242679263 ], [ 35.261296761483202, -0.136670668679246 ], [ 35.263738168483194, -0.138440687679238 ], [ 35.269719613483169, -0.149732191679223 ], [ 35.270513070483155, -0.154065687679238 ], [ 35.27429725048318, -0.151074964679256 ], [ 35.276311410483167, -0.14814527767925 ], [ 35.279119027483198, -0.147046644679224 ], [ 35.281743539483152, -0.150342543679246 ], [ 35.283086312483185, -0.152967054679268 ], [ 35.285100472483172, -0.15595777767925 ], [ 35.287297738483169, -0.16004713267927 ], [ 35.296697152483198, -0.176465589679256 ], [ 35.326116097483172, -0.176465589679256 ], [ 35.331304086483151, -0.177136976679267 ], [ 35.33148719148317, -0.188672621679248 ], [ 35.331731332483166, -0.192029554679268 ], [ 35.33289100048318, -0.197278578679234 ], [ 35.334538949483196, -0.202466566679223 ], [ 35.335698617483153, -0.207166273679266 ], [ 35.337712777483198, -0.211865980679252 ], [ 35.340093148483156, -0.220838148679266 ], [ 35.341496957483166, -0.228467543679246 ], [ 35.343328011483202, -0.236157972679225 ], [ 35.342534554483159, -0.239759047679231 ], [ 35.336125863483169, -0.242749769679224 ], [ 35.3323416834832, -0.243543226679267 ], [ 35.318120492483153, -0.24915846167926 ], [ 35.314702523483156, -0.249463636679254 ], [ 35.312139046483189, -0.247266371679248 ], [ 35.3089041834832, -0.243238050679227 ], [ 35.305913461483151, -0.240430433679253 ], [ 35.302922738483169, -0.241162855679252 ], [ 35.29968787548318, -0.239270765679239 ], [ 35.295537484483184, -0.238477308679253 ], [ 35.291936410483167, -0.237378675679227 ], [ 35.287297738483169, -0.23743971167926 ], [ 35.2835135584832, -0.238050062679238 ], [ 35.280339730483199, -0.23817213267927 ], [ 35.276311410483167, -0.238233168679246 ], [ 35.272099984483184, -0.237866957679219 ], [ 35.265141976483157, -0.23426588267927 ], [ 35.262944711483151, -0.232434828679234 ], [ 35.261907113483169, -0.229749281679235 ], [ 35.262944711483151, -0.225171644679224 ], [ 35.260686410483167, -0.223279554679268 ], [ 35.257939828483181, -0.221875746679248 ], [ 35.255925668483194, -0.219373304679268 ], [ 35.249700082483166, -0.212354261679254 ], [ 35.249089730483199, -0.209058363679221 ], [ 35.245305550483174, -0.204053480679252 ], [ 35.241521371483195, -0.201551039679262 ], [ 35.237309945483155, -0.199170668679246 ], [ 35.235295785483167, -0.19697340267925 ], [ 35.231694711483151, -0.195935804679268 ], [ 35.227727425483174, -0.19697340267925 ], [ 35.223088754483165, -0.195264418679246 ], [ 35.220342171483189, -0.192273695679264 ], [ 35.218938363483169, -0.186170179679268 ], [ 35.218938363483169, -0.182263929679268 ], [ 35.216741097483172, -0.179456312679238 ], [ 35.215520394483171, -0.175366957679219 ], [ 35.21289588248316, -0.173474867679263 ], [ 35.206731332483166, -0.170056898679266 ], [ 35.203923714483203, -0.166638929679268 ], [ 35.1995291834832, -0.164258558679253 ], [ 35.189885629483165, -0.162366468679241 ], [ 35.186528695483155, -0.162244398679266 ], [ 35.183721078483181, -0.164746839679256 ], [ 35.178716195483155, -0.165052015679239 ], [ 35.175725472483172, -0.16377027767925 ], [ 35.170720589483203, -0.16395338267927 ], [ 35.167729867483153, -0.164563734679237 ], [ 35.163701546483189, -0.16377027767925 ], [ 35.160344613483169, -0.165662367679263 ], [ 35.157536996483195, -0.166333754679217 ], [ 35.154119027483198, -0.16486891067922 ], [ 35.14929725048318, -0.163343031679235 ], [ 35.145513070483155, -0.162671644679224 ], [ 35.139714730483199, -0.162549574679249 ], [ 35.137517464483203, -0.16004713267927 ], [ 35.133306039483152, -0.156629164679262 ], [ 35.126286996483195, -0.160535414679262 ], [ 35.122930062483185, -0.168347914679262 ], [ 35.12109900748316, -0.171643812679238 ], [ 35.118108285483167, -0.176343519679224 ], [ 35.110539925483174, -0.19025953567922 ], [ 35.107121957483166, -0.193677504679217 ], [ 35.106145394483171, -0.198133070679264 ], [ 35.103887093483188, -0.201856214679256 ], [ 35.100713265483186, -0.203382093679241 ], [ 35.095098031483182, -0.204846937679238 ], [ 35.08734656648317, -0.205945570679264 ], [ 35.073918832483166, -0.209363539679262 ], [ 35.069890511483202, -0.212232191679223 ], [ 35.064702523483156, -0.217237074679249 ], [ 35.063298714483203, -0.220044691679223 ], [ 35.061894906483182, -0.224439222679225 ], [ 35.060491097483172, -0.229871351679267 ], [ 35.0589041834832, -0.234632093679241 ], [ 35.057927621483195, -0.238843519679224 ], [ 35.057134164483152, -0.247266371679248 ], [ 35.056890023483156, -0.251538832679219 ], [ 35.057134164483152, -0.254773695679264 ], [ 35.055730355483199, -0.26356275767927 ], [ 35.055913461483151, -0.267530043679246 ], [ 35.05469275748316, -0.272840101679267 ], [ 35.052922738483169, -0.278577406679235 ], [ 35.052129281483182, -0.282849867679263 ], [ 35.052312386483202, -0.287244398679266 ], [ 35.051946175483174, -0.291455824679249 ], [ 35.0510916834832, -0.295850355679252 ], [ 35.049504769483171, -0.300244886679254 ], [ 35.046941293483194, -0.30354078567922 ], [ 35.042302621483195, -0.30775221167926 ], [ 35.032536996483195, -0.315869886679254 ], [ 35.029546273483156, -0.318738539679262 ], [ 35.025517953483181, -0.323255140679239 ], [ 35.022527230483199, -0.325757582679219 ], [ 35.016118539483152, -0.329358656679235 ], [ 35.013310921483189, -0.330579359679237 ], [ 35.010503304483159, -0.331433851679267 ], [ 35.008306039483152, -0.334180433679253 ], [ 35.006902230483199, -0.33778150767927 ], [ 35.006291879483165, -0.34345777767925 ], [ 35.00671912548318, -0.346570570679264 ], [ 35.006108773483156, -0.349744398679266 ], [ 35.006108773483156, -0.354566175679227 ], [ 35.005498421483189, -0.358167250679233 ], [ 35.006291879483165, -0.362378675679227 ], [ 35.007146371483195, -0.37293775767927 ], [ 35.010320199483196, -0.386548597679225 ], [ 35.010686410483167, -0.389844496679248 ], [ 35.009892953483181, -0.393750746679248 ], [ 35.007146371483195, -0.399732191679223 ], [ 35.004888070483155, -0.402539808679253 ], [ 35.002690804483159, -0.405835707679219 ], [ 34.998723519483171, -0.40595777767925 ], [ 34.994695199483196, -0.407666761679254 ], [ 34.988530648483156, -0.411450941679223 ], [ 34.986089242483153, -0.414075453679234 ], [ 34.980718148483156, -0.413831312679238 ], [ 34.976933968483188, -0.41096266067922 ], [ 34.97351600048318, -0.411450941679223 ], [ 34.971135629483165, -0.412976820679264 ], [ 34.964910043483194, -0.41395338267927 ], [ 34.959111703483181, -0.415845472679225 ], [ 34.950688851483157, -0.415967543679246 ], [ 34.945745004483165, -0.414441664679262 ], [ 34.940495980483199, -0.414075453679234 ], [ 34.938115609483184, -0.412366468679241 ], [ 34.930913461483151, -0.411756117679263 ], [ 34.930303109483184, -0.408765394679224 ], [ 34.929936898483156, -0.404553968679241 ], [ 34.926946175483174, -0.403333265679239 ], [ 34.922917855483199, -0.403943617679263 ], [ 34.918889535483167, -0.404065687679238 ], [ 34.91492225048318, -0.402967054679268 ], [ 34.91492225048318, -0.399060804679268 ], [ 34.915715707483166, -0.393933851679267 ], [ 34.916936410483167, -0.390149672679231 ], [ 34.915898812483185, -0.386182386679254 ], [ 34.911504281483182, -0.387952406679235 ], [ 34.907536996483195, -0.390149672679231 ], [ 34.90430213248316, -0.391065199679249 ], [ 34.900517953483181, -0.392835218679241 ], [ 34.897527230483199, -0.394666273679266 ], [ 34.894292367483153, -0.395459730679252 ], [ 34.892095101483157, -0.397656996679248 ], [ 34.888494027483198, -0.398633558679253 ], [ 34.882512582483166, -0.396741468679241 ], [ 34.879338754483165, -0.397229750679233 ], [ 34.875493539483152, -0.396863539679262 ], [ 34.872685921483189, -0.395764906679235 ], [ 34.866704476483157, -0.395764906679235 ], [ 34.86328650748316, -0.397473890679239 ], [ 34.859746468483188, -0.394177992679263 ], [ 34.855535043483194, -0.392652113679221 ], [ 34.850896371483195, -0.392774183679253 ], [ 34.843938363483169, -0.392530043679246 ], [ 34.838506234483184, -0.391370375679233 ], [ 34.835088265483186, -0.389844496679248 ], [ 34.828496468483188, -0.38856275767927 ], [ 34.824895394483171, -0.385755140679239 ], [ 34.825139535483167, -0.38197096167926 ], [ 34.822942269483171, -0.378552992679263 ], [ 34.823308480483199, -0.373975355679252 ], [ 34.819341195483155, -0.366834242679263 ], [ 34.816533578483181, -0.362744886679254 ], [ 34.813542855483199, -0.358838636679254 ], [ 34.811528695483155, -0.354749281679235 ], [ 34.804936898483156, -0.354566175679227 ], [ 34.802129281483182, -0.355054457679219 ], [ 34.797124398483156, -0.35145338267927 ], [ 34.792302621483195, -0.346448500679233 ], [ 34.790532601483157, -0.343152601679267 ], [ 34.785710824483196, -0.338330824679249 ], [ 34.787724984483184, -0.332471449679249 ], [ 34.787908089483203, -0.326673109679237 ], [ 34.785344613483169, -0.323682386679254 ], [ 34.780522836483151, -0.319776136679254 ], [ 34.777287972483172, -0.31806715267925 ], [ 34.774724496483195, -0.316052992679263 ], [ 34.771306527483198, -0.313733656679235 ], [ 34.766911996483195, -0.312940199679249 ], [ 34.760930550483174, -0.31135328567922 ], [ 34.758489144483171, -0.307263929679268 ], [ 34.7581229334832, -0.303662855679252 ], [ 34.758916390483186, -0.299329359679237 ], [ 34.75671912548318, -0.295362074679249 ], [ 34.755742562483185, -0.292371351679267 ], [ 34.743901742483153, -0.283765394679224 ], [ 34.734746468483188, -0.277844984679237 ], [ 34.704106820483155, -0.259229261679254 ], [ 34.555730355483199, -0.271253187679238 ], [ 34.530889046483189, -0.273084242679263 ], [ 34.483891976483157, -0.301038343679241 ], [ 34.480901254483165, -0.293164808679253 ], [ 34.467717660483167, -0.252942640679239 ], [ 34.462529671483189, -0.236341078679234 ], [ 34.435735238483169, -0.156934339679256 ], [ 34.434697640483186, -0.150830824679249 ], [ 34.432317269483171, -0.146558363679221 ], [ 34.428533089483203, -0.127149183679253 ], [ 34.426702035483167, -0.121167738679221 ], [ 34.425115121483195, -0.116773207679219 ], [ 34.423528207483166, -0.113233168679246 ], [ 34.417119515483186, -0.091382582679219 ], [ 34.416936410483167, -0.087476332679219 ], [ 34.419499886483202, -0.078870375679233 ], [ 34.425298226483157, -0.070264418679246 ], [ 34.429326546483189, -0.069348890679239 ], [ 34.431890023483156, -0.06525953567922 ], [ 34.438115609483184, -0.061048109679237 ], [ 34.441533578483181, -0.059461195679264 ], [ 34.444707406483182, -0.05744703567922 ], [ 34.447942269483171, -0.056165297679231 ], [ 34.450322640483186, -0.053052504679217 ], [ 34.452886117483153, -0.051160414679262 ], [ 34.455327523483156, -0.048780043679246 ], [ 34.458501351483157, -0.047864515679239 ], [ 34.461492074483196, -0.045484144679224 ], [ 34.46570350048318, -0.043958265679239 ], [ 34.471929086483151, -0.042066175679227 ], [ 34.475896371483195, -0.03986891067922 ], [ 34.482305062483185, -0.035657484679237 ], [ 34.485112679483159, -0.033582289679262 ], [ 34.492131722483172, -0.03095777767925 ], [ 34.5003104334832, -0.030164320679264 ], [ 34.506902230483199, -0.028882582679219 ], [ 34.511540902483198, -0.027356703679234 ], [ 34.517339242483153, -0.025037367679263 ], [ 34.52148963248316, -0.023755629679217 ], [ 34.5257010584832, -0.022168714679256 ], [ 34.531743539483152, -0.019361097679225 ], [ 34.536138070483155, -0.018079359679237 ], [ 34.544133675483174, -0.021070082679219 ], [ 34.5491385584832, -0.023877699679249 ], [ 34.553716195483155, -0.021863539679262 ], [ 34.560307992483153, -0.022779066679223 ], [ 34.563725961483151, -0.024182875679233 ], [ 34.562139046483189, -0.03095777767925 ], [ 34.562139046483189, -0.034253675679227 ], [ 34.562688363483169, -0.037976820679264 ], [ 34.567510140483186, -0.040540297679231 ], [ 34.573735726483157, -0.039258558679253 ], [ 34.577336800483174, -0.038037855679252 ], [ 34.583745492483153, -0.033155043679246 ], [ 34.583745492483153, -0.02723463267927 ], [ 34.586736214483203, -0.022656996679248 ], [ 34.587529671483189, -0.019483168679246 ], [ 34.589543832483166, -0.01356275767927 ], [ 34.589910043483194, -0.00965650767927 ], [ 34.592290414483152, -0.007459242679263 ], [ 34.589726937483185, 0.000048081320754 ], [ 34.592290414483152, 0.003038804320736 ], [ 34.595098031483182, 0.004625718320765 ], [ 34.599309457483166, 0.008043687320762 ], [ 34.603887093483188, 0.01005784732075 ], [ 34.607121957483166, 0.008226792320781 ], [ 34.609136117483153, 0.002855699320773 ], [ 34.612920296483189, 0.002855699320773 ], [ 34.613530648483156, -0.000379164679262 ], [ 34.617925179483159, -0.000135023679266 ], [ 34.620915902483198, 0.000475327320769 ], [ 34.624700082483166, 0.001634995320783 ], [ 34.628545296483189, 0.00224534732075 ], [ 34.631536019483171, 0.001634995320783 ], [ 34.635686410483167, 0.000475327320769 ], [ 34.641301644483171, -0.003369886679254 ], [ 34.648931039483152, -0.006848890679239 ], [ 34.652898324483196, -0.007337172679231 ], [ 34.672307504483165, -0.015943129679217 ], [ 34.681523812483185, -0.01478346167926 ], [ 34.686101449483196, -0.012281019679224 ], [ 34.689092171483189, -0.011548597679225 ], [ 34.693303597483172, -0.018140394679224 ], [ 34.696294320483155, -0.02064283667926 ], [ 34.704717171483189, -0.021131117679263 ], [ 34.709722054483159, -0.020154554679268 ], [ 34.713689339483203, -0.015637953679234 ], [ 34.715337289483152, -0.011853773679266 ], [ 34.717900765483186, -0.009229261679254 ], [ 34.726140511483202, -0.007154066679223 ], [ 34.72992469148317, -0.009046156679235 ], [ 34.732915414483152, -0.013257582679219 ], [ 34.739507211483151, -0.024182875679233 ], [ 34.745732796483189, -0.023938734679237 ], [ 34.749333871483195, -0.027844984679237 ], [ 34.752141488483169, -0.03236158667926 ], [ 34.75671912548318, -0.028943617679263 ], [ 34.759526742483153, -0.02528150767927 ], [ 34.762700570483155, -0.021863539679262 ], [ 34.765508187483185, -0.01746900767927 ], [ 34.769109261483202, -0.017957289679262 ], [ 34.772527230483199, -0.016858656679235 ], [ 34.776128304483159, -0.01673658667926 ], [ 34.779912484483184, -0.018140394679224 ], [ 34.782903207483166, -0.015149672679231 ], [ 34.784307015483186, -0.012036879679217 ], [ 34.786504281483182, -0.008863050679227 ], [ 34.788701546483189, -0.006360609679237 ], [ 34.793889535483167, -0.001782972679225 ], [ 34.796514046483189, 0.001024644320748 ], [ 34.802129281483182, 0.006273667320781 ], [ 34.804936898483156, 0.00865403832074 ], [ 34.808110726483157, 0.009447495320783 ], [ 34.810918343483188, 0.010668199320773 ], [ 34.812932504483165, 0.013231675320751 ], [ 34.817693246483195, 0.017259995320783 ], [ 34.822942269483171, 0.022020738320746 ], [ 34.826543343483188, 0.02263108932078 ], [ 34.830510629483165, 0.022020738320746 ], [ 34.82813025748316, 0.018236558320777 ], [ 34.825688851483157, 0.015062730320776 ], [ 34.816289437483185, 0.001818101320734 ], [ 34.814336312483185, -0.001538832679219 ], [ 34.810735238483169, -0.007825453679234 ], [ 34.809331429483159, -0.011243422679231 ], [ 34.810735238483169, -0.013867933679253 ], [ 34.808293832483166, -0.016553480679252 ] ] ] } } +, +{ "type": "Feature", "id": 46, "properties": { "OBJECTID": 47, "ID_": 667, "COUNTY_NAM": "TRANS NZOIA", "CONST_CODE": 137, "CONSTITUEN": "ENDEBESS", "COUNTY_COD": 26, "Shape_Leng": 2.33533782345, "Shape_Area": 0.20192419449 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.906926644483171, 1.269030015320763 ], [ 34.90570594148317, 1.250048081320754 ], [ 34.908696664483152, 1.250231187320762 ], [ 34.917729867483153, 1.250231187320762 ], [ 34.934087289483152, 1.25084153832074 ], [ 34.93890906648317, 1.251268785320744 ], [ 34.950322640483186, 1.249620835320738 ], [ 34.955693734483184, 1.248461167320781 ], [ 34.959722054483159, 1.248033921320766 ], [ 34.970525277483198, 1.246263902320775 ], [ 34.982488168483194, 1.251634995320783 ], [ 34.994695199483196, 1.256822984320761 ], [ 35.0003104334832, 1.255846421320766 ], [ 35.013738168483194, 1.253038804320736 ], [ 35.019902718483188, 1.242052476320734 ], [ 35.025945199483196, 1.231859605320776 ], [ 35.041509164483152, 1.216417710320738 ], [ 35.044316781483182, 1.21403733932078 ], [ 35.037724984483184, 1.20341722232075 ], [ 35.039495004483165, 1.199449937320762 ], [ 35.042119515483186, 1.196825425320751 ], [ 35.043523324483196, 1.194017808320777 ], [ 35.046941293483194, 1.193041245320783 ], [ 35.049321664483152, 1.190843980320776 ], [ 35.052312386483202, 1.187670152320775 ], [ 35.056706918483194, 1.183641831320754 ], [ 35.062139046483189, 1.17943040632076 ], [ 35.066106332483166, 1.177660386320779 ], [ 35.070134652483198, 1.17784349232073 ], [ 35.073918832483166, 1.176439683320777 ], [ 35.079717171483189, 1.172838609320761 ], [ 35.082707894483171, 1.169847886320779 ], [ 35.085698617483153, 1.167223374320767 ], [ 35.086736214483203, 1.172655503320752 ], [ 35.088506234483184, 1.179674546320766 ], [ 35.091741097483172, 1.181871812320762 ], [ 35.099126351483157, 1.183031480320776 ], [ 35.102910531483182, 1.183275620320783 ], [ 35.106145394483171, 1.182238023320733 ], [ 35.11609412548318, 1.186022202320769 ], [ 35.120915902483198, 1.18583909732075 ], [ 35.124089730483199, 1.184069077320769 ], [ 35.131291879483165, 1.185472886320779 ], [ 35.152287972483172, 1.198229234320761 ], [ 35.155095589483203, 1.191637437320762 ], [ 35.161321175483174, 1.17802659732075 ], [ 35.178105843483188, 1.155016343320765 ], [ 35.183293832483166, 1.146837632320737 ], [ 35.185307992483153, 1.144030015320763 ], [ 35.192510140483186, 1.132250230320776 ], [ 35.202092660483167, 1.117052476320734 ], [ 35.207524789483152, 1.115465562320762 ], [ 35.213323129483165, 1.115038316320747 ], [ 35.218328011483202, 1.11442796432078 ], [ 35.219914925483174, 1.112047593320765 ], [ 35.235112679483159, 1.085863511320779 ], [ 35.235539925483174, 1.08287278832074 ], [ 35.23828650748316, 1.080675523320733 ], [ 35.241338265483186, 1.075853745320783 ], [ 35.242742074483196, 1.072863023320733 ], [ 35.249944222483172, 1.07042161732073 ], [ 35.257329476483157, 1.067430894320748 ], [ 35.260320199483196, 1.066027085320738 ], [ 35.267522347483172, 1.063219468320765 ], [ 35.274114144483171, 1.060045640320763 ], [ 35.281743539483152, 1.055468003320752 ], [ 35.28711463248316, 1.052050035320744 ], [ 35.290898812483185, 1.049425523320733 ], [ 35.295110238483169, 1.047045152320775 ], [ 35.309331429483159, 1.038072984320761 ], [ 35.313542855483199, 1.035875718320765 ], [ 35.331120980483199, 1.029222886320779 ], [ 35.334905160483167, 1.028063218320765 ], [ 35.339726937483185, 1.02623216332074 ], [ 35.34711219148317, 1.023851792320781 ], [ 35.351689828483181, 1.022020738320746 ], [ 35.355535043483194, 1.020861070320732 ], [ 35.35877327148318, 1.020263613320762 ], [ 35.362920296483189, 1.017015855320776 ], [ 35.36328650748316, 1.012255113320746 ], [ 35.362920296483189, 1.00865403832074 ], [ 35.360295785483167, 1.007067124320767 ], [ 35.344121468483188, 1.00364915632076 ], [ 35.344475838483156, 0.999478095320737 ], [ 35.345891488483169, 0.996263902320775 ], [ 35.347295296483189, 0.992235581320754 ], [ 35.34851600048318, 0.98942796432078 ], [ 35.351989067483196, 0.983215590320751 ], [ 35.352917864483167, 0.979185278320754 ], [ 35.3499198084832, 0.977037827320769 ], [ 35.345891488483169, 0.975267808320777 ], [ 35.339910043483194, 0.971239488320746 ], [ 35.338140023483156, 0.967455308320777 ], [ 35.346745980483199, 0.965441148320733 ], [ 35.343694222483172, 0.963426988320746 ], [ 35.341130746483195, 0.962023179320736 ], [ 35.343694222483172, 0.949449937320762 ], [ 35.344487679483159, 0.946642320320732 ], [ 35.360539925483174, 0.94346849232073 ], [ 35.354497445483155, 0.931627671320766 ], [ 35.349492562483185, 0.919847886320779 ], [ 35.334722054483159, 0.92784349232073 ], [ 35.331304086483151, 0.931444566320747 ], [ 35.328923714483203, 0.929430406320759 ], [ 35.327336800483174, 0.926256577320769 ], [ 35.308293832483166, 0.893236558320777 ], [ 35.306890023483156, 0.889269273320733 ], [ 35.30469275748316, 0.891222398320733 ], [ 35.303288949483196, 0.895433824320773 ], [ 35.299932015483186, 0.898058335320738 ], [ 35.297124398483156, 0.901659410320744 ], [ 35.296086800483174, 0.90544358932078 ], [ 35.294316781483182, 0.90904466332074 ], [ 35.293523324483196, 0.912462632320737 ], [ 35.291936410483167, 0.914843003320752 ], [ 35.288945687483185, 0.917040269320748 ], [ 35.285527718483188, 0.918871324320773 ], [ 35.281316293483194, 0.919664781320759 ], [ 35.278325570483155, 0.922045152320775 ], [ 35.2757010584832, 0.92466966332074 ], [ 35.273931039483152, 0.927233140320763 ], [ 35.272710336483151, 0.93083421432078 ], [ 35.270696175483174, 0.934252183320777 ], [ 35.263921273483156, 0.93443528832074 ], [ 35.261296761483202, 0.936449449320773 ], [ 35.25391150748316, 0.939257066320747 ], [ 35.2503104334832, 0.938219468320765 ], [ 35.247136605483199, 0.936449449320773 ], [ 35.244695199483196, 0.933275620320783 ], [ 35.239934457483166, 0.931627671320766 ], [ 35.236089242483153, 0.929064195320732 ], [ 35.234746468483188, 0.92607347232075 ], [ 35.229741586483151, 0.921434800320751 ], [ 35.226506722483172, 0.919847886320779 ], [ 35.222295296483189, 0.919054429320736 ], [ 35.218938363483169, 0.919054429320736 ], [ 35.215886605483199, 0.920458238320746 ], [ 35.211736214483203, 0.920458238320746 ], [ 35.207097543483194, 0.921862046320766 ], [ 35.201909554483159, 0.921617906320759 ], [ 35.197515023483156, 0.92302171432078 ], [ 35.193730843483188, 0.92466966332074 ], [ 35.19031287548318, 0.924425523320733 ], [ 35.185918343483188, 0.923632066320747 ], [ 35.18109656648317, 0.921434800320751 ], [ 35.174504769483171, 0.919420640320763 ], [ 35.170903695483155, 0.92003099232073 ], [ 35.167912972483172, 0.921434800320751 ], [ 35.164495004483165, 0.920458238320746 ], [ 35.156743539483152, 0.917833726320734 ], [ 35.151738656483182, 0.917833726320734 ], [ 35.147527230483199, 0.917223374320767 ], [ 35.144109261483202, 0.917467515320763 ], [ 35.141301644483171, 0.919420640320763 ], [ 35.13812781648317, 0.918627183320777 ], [ 35.134526742483153, 0.918444077320769 ], [ 35.131143983483177, 0.919074485320775 ], [ 35.128540309483178, 0.917011574320779 ], [ 35.128139743483182, 0.913506628320758 ], [ 35.1253104334832, 0.911669175320751 ], [ 35.121343148483156, 0.909655015320763 ], [ 35.118291390483186, 0.906420152320775 ], [ 35.117742074483196, 0.902269761320779 ], [ 35.1174979334832, 0.899034898320733 ], [ 35.115911019483171, 0.896227281320759 ], [ 35.114324105483199, 0.892015855320776 ], [ 35.116887582483166, 0.886034410320744 ], [ 35.1155448084832, 0.882250230320776 ], [ 35.113301105483167, 0.880332050320758 ], [ 35.111407604483183, 0.878950306320744 ], [ 35.108708871483195, 0.876451890320763 ], [ 35.106145394483171, 0.874620835320738 ], [ 35.103987127483201, 0.873525682320744 ], [ 35.100609531483194, 0.87408861532077 ], [ 35.098050746483175, 0.876800927320742 ], [ 35.094458520483151, 0.878856684320735 ], [ 35.090516792483179, 0.880003002320732 ], [ 35.086213070483204, 0.882215196320769 ], [ 35.082733893483173, 0.88597592632078 ], [ 35.081914437483185, 0.888842027320775 ], [ 35.0823416834832, 0.892015855320776 ], [ 35.080144418483194, 0.89464036732073 ], [ 35.076726449483196, 0.897020738320746 ], [ 35.07312537548318, 0.89763108932078 ], [ 35.068730843483188, 0.896227281320759 ], [ 35.064336312483185, 0.896044175320751 ], [ 35.05609656648317, 0.898241441320747 ], [ 35.05414344148317, 0.900438706320754 ], [ 35.050908578483181, 0.900072495320783 ], [ 35.048100961483151, 0.899034898320733 ], [ 35.04492713248316, 0.900255601320734 ], [ 35.041509164483152, 0.899462144320748 ], [ 35.039311898483156, 0.896471421320766 ], [ 35.031743539483152, 0.89341966332074 ], [ 35.026738656483182, 0.89482347232075 ], [ 35.022710336483151, 0.892443101320734 ], [ 35.020513070483155, 0.889269273320733 ], [ 35.019708127483163, 0.886031932320745 ], [ 34.999333871483195, 0.881639878320752 ], [ 34.98914100048318, 0.879625718320765 ], [ 34.985906136483202, 0.878466050320751 ], [ 34.98828650748316, 0.884264390320763 ], [ 34.971501839483203, 0.878832261320779 ], [ 34.966313851483157, 0.877428452320769 ], [ 34.967290414483152, 0.872423570320732 ], [ 34.955327523483156, 0.869860093320765 ], [ 34.950688851483157, 0.868639390320763 ], [ 34.943120492483153, 0.868822495320783 ], [ 34.941533578483181, 0.865831773320733 ], [ 34.94031287548318, 0.863024156320759 ], [ 34.938298714483203, 0.85966722232075 ], [ 34.936894906483182, 0.855638902320775 ], [ 34.934697640483186, 0.853441636320779 ], [ 34.926946175483174, 0.852831285320744 ], [ 34.920720589483203, 0.848253648320733 ], [ 34.915898812483185, 0.846056382320737 ], [ 34.901921761483202, 0.83903733932078 ], [ 34.887700570483155, 0.832445542320781 ], [ 34.878545296483189, 0.827440660320744 ], [ 34.87109900748316, 0.823839585320738 ], [ 34.822698129483165, 0.808824937320762 ], [ 34.809941781483182, 0.806871812320762 ], [ 34.811345589483203, 0.810472886320779 ], [ 34.811711800483174, 0.81364671432078 ], [ 34.811894906483182, 0.82042161732073 ], [ 34.807927621483195, 0.833055894320748 ], [ 34.80609656648317, 0.836840074320773 ], [ 34.805913461483151, 0.841234605320776 ], [ 34.803533089483203, 0.844835679320736 ], [ 34.800298226483157, 0.847643296320766 ], [ 34.798528207483166, 0.851061265320763 ], [ 34.795903695483155, 0.858019273320733 ], [ 34.795903695483155, 0.862047593320765 ], [ 34.796697152483198, 0.865038316320747 ], [ 34.795720589483203, 0.868456285320744 ], [ 34.793889535483167, 0.871019761320779 ], [ 34.793096078483181, 0.874620835320738 ], [ 34.7913260584832, 0.879076402320775 ], [ 34.790715707483166, 0.883226792320781 ], [ 34.789128793483194, 0.886217515320763 ], [ 34.787908089483203, 0.890062730320776 ], [ 34.790288461483151, 0.893053452320769 ], [ 34.793096078483181, 0.896227281320759 ], [ 34.796086800483174, 0.900072495320783 ], [ 34.79968787548318, 0.902025620320783 ], [ 34.801335824483196, 0.905260484320761 ], [ 34.800298226483157, 0.909471910320744 ], [ 34.798711312483185, 0.91221849232073 ], [ 34.79633094148317, 0.914415757320737 ], [ 34.793523324483196, 0.917650620320783 ], [ 34.790105355483199, 0.92003099232073 ], [ 34.787724984483184, 0.922228257320737 ], [ 34.783940804483159, 0.923448960320738 ], [ 34.779119027483198, 0.923632066320747 ], [ 34.771123421483189, 0.921434800320751 ], [ 34.768132699483196, 0.92106858932078 ], [ 34.76453162548318, 0.922838609320761 ], [ 34.747930062483185, 0.932054917320781 ], [ 34.743901742483153, 0.93443528832074 ], [ 34.740117562483185, 0.937426011320779 ], [ 34.737920296483189, 0.940050523320733 ], [ 34.725896371483195, 0.95622483932078 ], [ 34.719487679483159, 0.965258042320781 ], [ 34.702703011483202, 0.988268296320766 ], [ 34.689519418483194, 1.004625718320765 ], [ 34.681340707483166, 1.016222398320733 ], [ 34.679509652483198, 1.020433824320773 ], [ 34.676518930483205, 1.023241440320758 ], [ 34.661687386483202, 1.043871324320773 ], [ 34.656316293483194, 1.050829331320754 ], [ 34.652287972483172, 1.054064195320732 ], [ 34.652898324483196, 1.057421128320752 ], [ 34.654912484483184, 1.061815660320744 ], [ 34.658940804483159, 1.071825425320751 ], [ 34.660893929483159, 1.077257554320736 ], [ 34.662541879483165, 1.081041734320761 ], [ 34.658696664483152, 1.081835191320747 ], [ 34.654912484483184, 1.081835191320747 ], [ 34.651128304483159, 1.08287278832074 ], [ 34.642705453483181, 1.087816636320779 ], [ 34.639714730483199, 1.088243882320737 ], [ 34.63672400748316, 1.089647691320747 ], [ 34.6331229334832, 1.091051499320767 ], [ 34.629521859483184, 1.093431870320783 ], [ 34.619512093483188, 1.101244370320783 ], [ 34.616338265483186, 1.103441636320779 ], [ 34.611516488483169, 1.108019273320733 ], [ 34.603887093483188, 1.116625230320776 ], [ 34.601506722483172, 1.120043199320773 ], [ 34.586736214483203, 1.139269273320733 ], [ 34.58093787548318, 1.147875230320776 ], [ 34.583501350483168, 1.149034898320733 ], [ 34.587102425483174, 1.149218003320752 ], [ 34.593144906483182, 1.151049058320777 ], [ 34.597295296483189, 1.15263597232075 ], [ 34.610723031483182, 1.156237046320766 ], [ 34.614934457483166, 1.158861558320777 ], [ 34.617742074483196, 1.162035386320779 ], [ 34.620732796483189, 1.164659898320733 ], [ 34.624700082483166, 1.166429917320781 ], [ 34.627934945483155, 1.16685716332074 ], [ 34.630925668483194, 1.167467515320763 ], [ 34.637090218483188, 1.16966478132076 ], [ 34.639897836483151, 1.172045152320775 ], [ 34.6428885584832, 1.174242417320781 ], [ 34.649541390483186, 1.177233140320763 ], [ 34.651738656483182, 1.179674546320766 ], [ 34.655522836483151, 1.181871812320762 ], [ 34.657292855483199, 1.185045640320763 ], [ 34.660710824483196, 1.18724290632076 ], [ 34.66351844148317, 1.189623277320775 ], [ 34.665105355483199, 1.192430894320748 ], [ 34.665898812483185, 1.195848863320746 ], [ 34.666936410483167, 1.198656480320776 ], [ 34.667912972483172, 1.202257554320736 ], [ 34.670720589483203, 1.205675523320733 ], [ 34.683110726483157, 1.208666245320783 ], [ 34.690923226483157, 1.209642808320777 ], [ 34.697515023483156, 1.211656968320765 ], [ 34.701909554483159, 1.213426988320746 ], [ 34.711736214483203, 1.213243882320737 ], [ 34.71570350048318, 1.213854234320761 ], [ 34.720342171483189, 1.215258042320781 ], [ 34.724126351483157, 1.215441148320733 ], [ 34.728337777483198, 1.216051499320767 ], [ 34.7327323084832, 1.216417710320738 ], [ 34.736699593483188, 1.217272202320769 ], [ 34.740911019483171, 1.21763841332074 ], [ 34.744512093483188, 1.218676011320779 ], [ 34.748113168483194, 1.218065660320744 ], [ 34.752507699483196, 1.218065660320744 ], [ 34.755742562483185, 1.21885911732073 ], [ 34.759343636483202, 1.21904222232075 ], [ 34.763738168483194, 1.217821519320748 ], [ 34.768132699483196, 1.216844956320754 ], [ 34.771916879483165, 1.218065660320744 ], [ 34.775090707483166, 1.220629136320779 ], [ 34.779119027483198, 1.220018785320744 ], [ 34.782903207483166, 1.221422593320765 ], [ 34.787541879483165, 1.220262925320751 ], [ 34.794316781483182, 1.219652574320773 ], [ 34.800908578483181, 1.22545091332074 ], [ 34.803899300483174, 1.227220933320777 ], [ 34.806523812483185, 1.229845445320732 ], [ 34.808293832483166, 1.234239976320734 ], [ 34.811711800483174, 1.238268296320766 ], [ 34.811894906483182, 1.241869370320783 ], [ 34.813725961483151, 1.244615952320769 ], [ 34.816106332483166, 1.246263902320775 ], [ 34.817693246483195, 1.248644273320733 ], [ 34.818730843483188, 1.255236070320732 ], [ 34.819524300483174, 1.258470933320777 ], [ 34.833501351483157, 1.263048570320732 ], [ 34.907536996483195, 1.281420152320775 ], [ 34.906926644483171, 1.269030015320763 ] ] ] } } +, +{ "type": "Feature", "id": 47, "properties": { "OBJECTID": 60, "ID_": 0, "COUNTY_NAM": null, "CONST_CODE": 0, "CONSTITUEN": null, "COUNTY_COD": 0, "Shape_Leng": 0.02935459334, "Shape_Area": 0.00001042895 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.429326546483189, -0.132337172679231 ], [ 34.432317269483171, -0.146558363679221 ], [ 34.42914344148317, -0.138440687679238 ], [ 34.429326546483189, -0.132337172679231 ] ] ] } } + +] +} diff --git a/src/views/CT/CT.js b/src/views/CT/CT.js index 1c28d7f7..e3bef024 100644 --- a/src/views/CT/CT.js +++ b/src/views/CT/CT.js @@ -335,14 +335,14 @@ import { import { loadViralLoadOverallNumberGt1000CopiesSecondlineRegiment } from '../../actions/CT/ViralLoad/viralLoadOverallNumberTestsGt1000CopiesSecondlineRegiment'; -import { loadCurrentOnArtVerified } from './../../actions/CT/CurrentOnArt/currentOnArtVerifiedActions'; +import { loadCurrentOnArtVerified } from '../../actions/CT/CurrentOnArt/currentOnArtVerifiedActions'; import { loadCurrentOnArtVerifiedByPartner } from './../../actions/CT/CurrentOnArt/currentOnArtVerifiedByPartnerActions'; import { loadCurrentOnArtVerifiedByCounty } from './../../actions/CT/CurrentOnArt/currentOnArtVerifiedByCountyActions'; -import { loadCurrentOnArtVerifiedByAgeSex } from './../../actions/CT/CurrentOnArt/currentOnArtVerifiedByAgeSexActions'; +import { loadCurrentOnArtVerifiedByAgeSex } from '../../actions/CT/CurrentOnArt/currentOnArtVerifiedByAgeSexActions'; import { loadOtzEnrollmentTrend } from '../../actions/CT/OTZ/OtzEnrollmentTrendsActions'; import { loadOtzEnrollmentByAgeSex } from '../../actions/CT/OTZ/OtzEnrollmentByAgeSexActions'; import { loadOtzNotEnrolledPartner } from '../../actions/CT/OTZ/OtzNotEnrolledByPartnerActions'; -import { loadOtzNotEnrolledCounty } from './../../actions/CT/OTZ/OtzNotEnrolledByCountyActions'; +import { loadOtzNotEnrolledCounty } from '../../actions/CT/OTZ/OtzNotEnrolledByCountyActions'; import { loadAlHivWithReSuppression } from '../../actions/CT/OTZ/AlHivWithReSuppressionActions'; import { loadOtzVlSuppressionByAgeNotEnrolled } from '../../actions/CT/OTZ/OtzVlSuppressionByAgeNotEnrolledActions'; import { loadOtzVlSuppressionBySexNotEnrolled } from '../../actions/CT/OTZ/OtzVlSuppressionBySexNotEnrolledActions'; @@ -353,14 +353,16 @@ import { loadCurrentOnArtByFacility } from '../../actions/CT/CurrentOnArt/curren import { loadCurrentOnArt } from '../../actions/CT/CurrentOnArt/currentOnArtActions'; import { loadCurrOnARTKHIS } from '../../actions/Operational&HIS/Comparison/currOnArtKHISActions'; import { loadArtVerificationByCounty } from '../../actions/CT/ArtVerification/artVerificationByCountyActions'; -import { loadArtVerificationByPartner } from './../../actions/CT/ArtVerification/artVerificationByPartnerActions'; -import { loadArtVerificationReasons } from './../../actions/CT/ArtVerification/artVerificationReasonsActions'; +import { loadArtVerificationByPartner } from '../../actions/CT/ArtVerification/artVerificationByPartnerActions'; +import { loadArtVerificationReasons } from '../../actions/CT/ArtVerification/artVerificationReasonsActions'; import { loadAppointmentKeepingWaterfall } from '../../actions/CT/TreatmentOutcomes/appointmentKeepingWaterfallActions'; import { loadQuaterlyIIT } from '../../actions/CT/TreatmentOutcomes/quaterlyIITActions'; -import { loadIITTracing } from './../../actions/CT/TreatmentOutcomes/IITTracingActions'; -import { loadIITTracingOutcomes } from './../../actions/CT/TreatmentOutcomes/IITTracingOutcomesActions'; +import { loadIITTracing } from '../../actions/CT/TreatmentOutcomes/IITTracingActions'; +import { loadIITTracingOutcomes } from '../../actions/CT/TreatmentOutcomes/IITTracingOutcomesActions'; import { loadViralLoadUptakeUToU } from '../../actions/CT/ViralLoad/viralLoadUptakeUToUActions'; import { loadViralLoadCategorizationUToU } from '../../actions/CT/ViralLoad/viralLoadCategorizationUToUActions'; +import { loadAlhivOnArtByAgeSex } from '../../actions/CT/OTZ/OtzAlhivOnArtByAgeSexActions'; +import { loadOtzTotalWithDurableVLResults } from '../../actions/CT/OTZ/OtzTotalWithDurableVlResultsActions'; const NewOnArt = Loadable({ loader: () => import('./NewOnArt/NewOnArt'), loading: Loading, delay: LOADING_DELAY }); const CurrentOnArt = Loadable({ @@ -496,6 +498,9 @@ const CT = () => { } else { dispatch(disablePBFWFilter()); } + return () => { + disablePBFWFilter(); + } }, [dispatch, active_tab, mini_tab]); useEffect(() => { @@ -729,6 +734,8 @@ const CT = () => { dispatch(loadOtzVlSuppressionBySexNotEnrolled()); dispatch(loadOtzVlSuppressionByPartnerNotEnrolled()); dispatch(loadOtzVlSuppressionByCountyNotEnrolled()); + dispatch(loadOtzTotalWithDurableVLResults()); + dispatch(loadAlhivOnArtByAgeSex()); break; case 'ovc': dispatch(loadOvcOverallServ()); @@ -798,7 +805,7 @@ const CT = () => { dispatch(loadArtVerificationByCounty()) dispatch(loadArtVerificationByPartner()) dispatch(loadArtVerificationReasons()) - + dispatch(loadCurrentOnArtVerifiedByCounty(active_tab)); dispatch(loadCurrentOnArtVerifiedByPartner(active_tab)); dispatch(loadCurrentOnArtByCounty(active_tab)); diff --git a/src/views/CT/OTZ/OTZByAgeSex.js b/src/views/CT/OTZ/OTZByAgeSex.js index cdd837b0..b311700a 100644 --- a/src/views/CT/OTZ/OTZByAgeSex.js +++ b/src/views/CT/OTZ/OTZByAgeSex.js @@ -43,16 +43,7 @@ const OTZByAgeSex = () => { }, }, }, - { - // min: -ovcAgeSex.distributionMale.max, - // max: ovcAgeSex.distributionFemale.max, - title: { text: 'MALE' }, - labels: { - formatter: function () { - return Math.abs(this.value); - }, - }, - }, + ], plotOptions: { series: { stacking: 'normal' }, @@ -107,7 +98,7 @@ const OTZByAgeSex = () => { </CardBody> </Card> </div> - + </div> ); }; diff --git a/src/views/CT/OTZ/OTZDistributionOfCALHIVByAgeSex.js b/src/views/CT/OTZ/OTZDistributionOfCALHIVByAgeSex.js new file mode 100644 index 00000000..779f8813 --- /dev/null +++ b/src/views/CT/OTZ/OTZDistributionOfCALHIVByAgeSex.js @@ -0,0 +1,98 @@ +import { Card, CardBody, CardHeader } from 'reactstrap'; +import HighchartsReact from 'highcharts-react-official'; +import Highcharts from 'highcharts'; +import React, { useCallback, useEffect, useState } from 'react'; +import { useSelector } from 'react-redux'; +import * as otzDistributionOfCALHIVByAgeSexSelector from '../../../selectors/CT/OTZ/otzAlhivOnArtByAgeSex'; + +const OTZDistributionOfCALHIVByAgeSex = () => { + const [ovcDistributionOfALHIVByAgeSex, setOvcDistributionOfALHIVByAgeSex] = useState({}); + const distributionOfALHIVByAgeSex = useSelector(otzDistributionOfCALHIVByAgeSexSelector.getOtzAlhivOnArtByAgeSex); + + const loadOvcDistributionOfALHIVByAgeSex = useCallback(async () => { + setOvcDistributionOfALHIVByAgeSex({ + chart: { type: 'bar' }, + title: { text: '' }, + xAxis: [ + { + categories: [ + '15 to 19', + '10 to 14', + ], + title: { text: '' }, + reversed: false, + }, + { + categories: [ + '15 to 19', + '10 to 14', + ], + title: { text: '' }, + reversed: false, + linkedTo: 0, + opposite: true, + }, + ], + yAxis: [ + { + min: -distributionOfALHIVByAgeSex.max, + max: distributionOfALHIVByAgeSex.max, + title: { text: 'Number Of Patients' }, + labels: { + formatter: function () { + return Math.abs(this.value); + }, + }, + }, + ], + plotOptions: { + series: { stacking: 'normal' }, + }, + tooltip: { + formatter: function () { + return ( + '<b>' + + this.series.name + + ', Age Group ' + + this.point.category + + '</b><br/>' + + 'Number Of Patients: ' + + Highcharts.numberFormat(Math.abs(this.point.y), 1) + ); + }, + }, + legend: { align: 'left', verticalAlign: 'top', y: 0, x: 80 }, + series: [ + { + name: 'Female', + data: distributionOfALHIVByAgeSex.distributionFemale.reverse(), + color: '#EA4C8B', + }, + { + name: 'Male', + data: distributionOfALHIVByAgeSex.distributionMale.reverse(), + color: '#14084D', + }, + ], + }); + }, [distributionOfALHIVByAgeSex]); + + useEffect(() => { + loadOvcDistributionOfALHIVByAgeSex(); + }, [loadOvcDistributionOfALHIVByAgeSex]); + + return ( + <Card className="trends-card"> + <CardHeader className="trends-header" style={{textTransform: 'none'}}> + DISTRIBUTION OF ALHIV PATIENTS BY AGE AND SEX + </CardHeader> + <CardBody className="trends-body"> + <div className="col-12"> + <HighchartsReact highcharts={Highcharts} options={ovcDistributionOfALHIVByAgeSex} /> + </div> + </CardBody> + </Card> + ); +}; + +export default OTZDistributionOfCALHIVByAgeSex; diff --git a/src/views/CT/OTZ/OTZOverview.js b/src/views/CT/OTZ/OTZOverview.js index cb1b2169..95fa0c33 100644 --- a/src/views/CT/OTZ/OTZOverview.js +++ b/src/views/CT/OTZ/OTZOverview.js @@ -4,6 +4,7 @@ import { useSelector } from 'react-redux'; import * as otzTotalAdolescentsSelector from '../../../selectors/CT/OTZ/otzTotalAdolescents'; import * as otzEnrolledSelector from '../../../selectors/CT/OTZ/otzEnrolled'; import * as otzTotalWithVlResultsSelector from '../../../selectors/CT/OTZ/otzTotalWithVlResults'; +import * as otzTotalWithDurableVlResultsSelector from '../../../selectors/CT/OTZ/otzTotalWithDurableVlResults'; import * as otzTotalWithWithResultsLessThan1000Selector from '../../../selectors/CT/OTZ/otzTotalWithWithResultsLessThan1000'; import { formatNumber, roundNumber } from '../../../utils/utils'; import DataCard from '../../Shared/DataCard'; @@ -20,6 +21,9 @@ const OTZOverview = () => { const otzTotalWithVlResults = useSelector( otzTotalWithVlResultsSelector.getOtzTotalWithVlResults ); + const otzTotalWithDurableVlResults = useSelector( + otzTotalWithDurableVlResultsSelector.getOtzTotalWithDurableVlResults + ); const otzTotalWithVlResultsLessThan1000 = useSelector( otzTotalWithWithResultsLessThan1000Selector.getOtzTotalWithVlResultsLessThan1000 ); @@ -48,6 +52,15 @@ const OTZOverview = () => { otzEnrolled.enrolledInOTZ) * 100 : 0, + + totalWithDurableVlResults: otzTotalWithDurableVlResults?.totalDurable, + totalWithDurableVlResultsPerc: + parseInt(otzTotalWithVlResultsLessThan1000.totalWithVlLessThan1000, 10) > 0 + ? (otzTotalWithDurableVlResults?.totalDurable / + otzTotalWithVlResultsLessThan1000.totalWithVlLessThan1000) * + 100 + : 0, + totalWithVlLessThan1000: otzTotalWithVlResultsLessThan1000.totalWithVlLessThan1000, totalWithVlLessThan1000Perc: @@ -62,6 +75,7 @@ const OTZOverview = () => { otzEnrolled, otzTotalWithVlResults, otzTotalWithVlResultsLessThan1000, + otzTotalWithDurableVlResults, ]); useEffect(() => { @@ -69,48 +83,65 @@ const OTZOverview = () => { }, [loadOtzTotalAdolescents]); return ( - <Row> - <Col> - <DataCardCT - title={currentOnArtText} - subtitle={null} - data={formatNumber(otzTotalAdolescents.otzTotalAdolescents)} - /> - </Col> - <Col> - <DataCardCT - title="ENROLLED ON OTZ" - subtitle={ - roundNumber(otzTotalAdolescents.enrolledInOTZPerc) + '%' - } - data={formatNumber(otzTotalAdolescents.enrolledInOTZ)} - /> - </Col> - <Col> - <DataCardCT - title="ADOLESCENTS ON OTZ WITH VALID VL" - subtitle={ - roundNumber( - otzTotalAdolescents.totalWithVlResultsPerc - ) + '%' - } - data={formatNumber(otzTotalAdolescents.totalWithVlResults)} - /> - </Col> - <Col> - <DataCardCT - title="ADOLESCENTS ON OTZ VIRALLY SUPPRESSED" - subtitle={ - roundNumber( - otzTotalAdolescents.totalWithVlLessThan1000Perc - ) + '%' - } - data={formatNumber( - otzTotalAdolescents.totalWithVlLessThan1000 - )} - /> - </Col> - </Row> + <> + <Row> + <Col> + <DataCardCT + title={currentOnArtText} + subtitle={null} + data={formatNumber(otzTotalAdolescents.otzTotalAdolescents)} + /> + </Col> + <Col> + <DataCardCT + title="ENROLLED ON OTZ" + subtitle={ + roundNumber(otzTotalAdolescents.enrolledInOTZPerc) + '%' + } + data={formatNumber(otzTotalAdolescents.enrolledInOTZ)} + /> + </Col> + </Row> + <Row> + <Col> + <DataCardCT + title="ADOLESCENTS ON OTZ WITH VALID VL" + subtitle={ + roundNumber( + otzTotalAdolescents.totalWithVlResultsPerc + ) + '%' + } + data={formatNumber(otzTotalAdolescents.totalWithVlResults)} + /> + </Col> + <Col> + <DataCardCT + title="ADOLESCENTS ON OTZ VIRALLY SUPPRESSED" + subtitle={ + roundNumber( + otzTotalAdolescents.totalWithVlLessThan1000Perc + ) + '%' + } + data={formatNumber( + otzTotalAdolescents.totalWithVlLessThan1000 + )} + /> + </Col> + <Col> + <DataCardCT + title="ADOLESCENTS ON OTZ DURABLY SUPPRESSED" + subtitle={ + roundNumber( + otzTotalAdolescents.totalWithDurableVlResultsPerc + ) + '%' + } + data={formatNumber( + otzTotalAdolescents.totalWithDurableVlResults + )} + /> + </Col> + </Row> + </> ); }; diff --git a/src/views/CT/OTZ/OTZTabs.js b/src/views/CT/OTZ/OTZTabs.js index 544e3c48..5148e32c 100644 --- a/src/views/CT/OTZ/OTZTabs.js +++ b/src/views/CT/OTZ/OTZTabs.js @@ -10,6 +10,7 @@ import OTZByAgeSex from './OTZByAgeSex'; import { Card, CardBody, CardHeader } from 'reactstrap'; const OtzEnrollmentAmongAlhivOnArtBySex = Loadable({ loader: () => import('./OtzEnrollmentAmongAlhivOnArtBySex'), loading: Loading, delay: LOADING_DELAY }); +const OtzEnrollmentOnOTZBySex = Loadable({ loader: () => import('./OtzEnrollmentOnOTZBySex'), loading: Loading, delay: LOADING_DELAY }); const OtzEnrollmentAmongAlhivOnArtByAge = Loadable({ loader: () => import('./OtzEnrollmentAmongAlhivOnArtByAge'), loading: Loading, delay: LOADING_DELAY }); const OtzEnrollmentAmongAlhivOnArtByCounty = Loadable({ loader: () => import('./OtzEnrollmentAmongAlhivOnArtByCounty'), loading: Loading, delay: LOADING_DELAY }); const OtzEnrollmentTrends = Loadable({ @@ -17,7 +18,7 @@ const OtzEnrollmentTrends = Loadable({ loading: Loading, delay: LOADING_DELAY, }); -const OVCDistributionOfCALHIVByAgeSex = Loadable({ loader: () => import('../OVC/OVCDistributionOfCALHIVByAgeSex'), loading: Loading, delay: LOADING_DELAY }); +const OTZDistributionOfCALHIVByAgeSex = Loadable({ loader: () => import('./OTZDistributionOfCALHIVByAgeSex'), loading: Loading, delay: LOADING_DELAY }); const OtzEnrollmentAmongAlhivOnArtByPartner = Loadable({ loader: () => import('./OtzEnrollmentAmongAlhivOnArtByPartner'), loading: Loading, delay: LOADING_DELAY }); const OtzNotEnrolledAmongAlhivOnArtByCounty = Loadable({ loader: () => import('./OtzNotEnrolledAmongAlhivOnArtByCounty'), @@ -207,7 +208,7 @@ const OTZTabs = () => { <strong>UNSUPPRESSED →</strong>{' '} Adolescents on OTZ (10-19 years) who are current on treatment with valid viral load - results of > 1,000 copies/ml + results of ≥ 200 copies/ml </li> <li> <strong>Completed Training →</strong>{' '} @@ -218,10 +219,13 @@ const OTZTabs = () => { </CardBody> </Card> <Row> - <Col className={'col-6'}> + <Col className={'col-4'}> <OtzEnrollmentAmongAlhivOnArtBySex /> </Col> - <Col className={'col-6'}> + <Col className={'col-4'}> + <OtzEnrollmentOnOTZBySex /> + </Col> + <Col className={'col-4'}> <OtzEnrollmentAmongAlhivOnArtByAge /> </Col> </Row> @@ -242,7 +246,7 @@ const OTZTabs = () => { </Row> <Row> <Col className={'col-6'}> - <OVCDistributionOfCALHIVByAgeSex /> + <OTZDistributionOfCALHIVByAgeSex /> </Col> <Col className={'col-6'}> <OTZByAgeSex /> diff --git a/src/views/CT/OTZ/OtzAlhivWithBaselineVl.js b/src/views/CT/OTZ/OtzAlhivWithBaselineVl.js index 22ac9630..868a4851 100644 --- a/src/views/CT/OTZ/OtzAlhivWithBaselineVl.js +++ b/src/views/CT/OTZ/OtzAlhivWithBaselineVl.js @@ -28,8 +28,7 @@ const OtzAlhivWithBaselineVl = () => { }, xAxis: { categories: [ - 'ADOLECENTS IN CARE', - 'ENROLLED IN ANY OTZ PROGRAM', + 'ADOLESCENTS IN CARE', 'BASELINE VL AVAILABLE', 'VIRALLY SUPPRESSED', 'HIGH VIRAL LOAD', @@ -71,29 +70,15 @@ const OtzAlhivWithBaselineVl = () => { { name: 'OTZ OUTCOMES AMONG ALHIV WITH BASELINE VL', data: [ - // TODO: adolocents in care bar here + // TODO: adolescents in care bar here { - name: 'Adolecentes in care', + name: 'Adolescents in care', color: '#14084D', y: adolescents.totalAdolescents > 0 ? adolescents.totalAdolescents : 0, }, - { - name: 'Enrolled in OTZ', - color: '#1AB394', - y: - otzOutcomesWithBaselineVl.length > 0 - ? otzOutcomesWithBaselineVl[0] - .AlHivEnrolledInOTZ - : 0, - text: - otzOutcomesWithBaselineVl.length > 0 - ? otzOutcomesWithBaselineVl[0] - .AlHivEnrolledInOTZPerc - : 0, - }, { name: 'Baseline VL', color: '#2D73F5', @@ -153,7 +138,7 @@ const OtzAlhivWithBaselineVl = () => { className="trends-header" style={{ textTransform: 'none' }} > - OVERALL VL UPTAKE AND SUPPRESSION AMONG CALHIV PATIENTS + OVERALL VL UPTAKE AND SUPPRESSION AMONG ALHIV PATIENTS </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/OTZ/OtzAlhivWithReSuppression.js b/src/views/CT/OTZ/OtzAlhivWithReSuppression.js index 7e54409f..74b58dbd 100644 --- a/src/views/CT/OTZ/OtzAlhivWithReSuppression.js +++ b/src/views/CT/OTZ/OtzAlhivWithReSuppression.js @@ -21,9 +21,9 @@ const OtzAlhivWithReSuppression = () => { }, xAxis: { categories: [ - 'ALHIV WITH VL >1000 AT BASELINE', - 'ALHIV WITH VL <1000 WITH REPEAT VLS', - 'NUMBER WITH VL >1000 UPON REPEAT', + 'ALHIV WITH VL >=200 AT BASELINE', + 'ALHIV WITH VL <200 WITH REPEAT VLS', + 'NUMBER WITH VL >=200 UPON REPEAT', ], crosshair: true, }, @@ -57,7 +57,7 @@ const OtzAlhivWithReSuppression = () => { name: 'OTZ OUTCOMES AMONG ALHIV WITH RE-SUPPRESSION', data: [ { - name: 'ALHIV WITH VL >1000 AT BASELINE', + name: 'ALHIV WITH VL >=200 AT BASELINE', color: '#00AD30', y: otzOutcomesWithReSuppression.AlHivWithVlGreaterThan1000 @@ -67,7 +67,7 @@ const OtzAlhivWithReSuppression = () => { ?? 0, }, { - name: 'ALHIV WITH VL <1000 WITH REPEAT VL', + name: 'ALHIV WITH VL <200 WITH REPEAT VL', color: '#fad53f', y: otzOutcomesWithReSuppression.ALHivWithVLLessThan1000WithRepeatVL @@ -77,7 +77,7 @@ const OtzAlhivWithReSuppression = () => { ?? 0, }, { - name: 'NUMBER WITH VL >1000 UPON REPEAT', + name: 'NUMBER WITH VL >=200 UPON REPEAT', color: '#bb1414', y: otzOutcomesWithReSuppression.ALHivWithVLGreaterThan1000WithRepeatVL @@ -102,7 +102,7 @@ const OtzAlhivWithReSuppression = () => { className="trends-header" style={{ textTransform: 'none' }} > - SUPPRESSION AMONG CALHIV WITH REPEAT VLS (RESUPPRESSING) + SUPPRESSION AMONG ALHIV WITH REPEAT VLS (RESUPPRESSING) </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/OTZ/OtzEnrollmentAmongAlhivOnArtBySex.js b/src/views/CT/OTZ/OtzEnrollmentAmongAlhivOnArtBySex.js index 2358742b..0a2aab41 100644 --- a/src/views/CT/OTZ/OtzEnrollmentAmongAlhivOnArtBySex.js +++ b/src/views/CT/OTZ/OtzEnrollmentAmongAlhivOnArtBySex.js @@ -56,7 +56,6 @@ const OtzEnrollmentAmongAlhivOnArtBySex = () => { crosshair: true }, yAxis: { - type: 'logarithmic', minorTickInterval: 0.1, title: { text: 'PERCENTAGE OF PATIENTS' diff --git a/src/views/CT/OTZ/OtzEnrollmentOnOTZBySex.js b/src/views/CT/OTZ/OtzEnrollmentOnOTZBySex.js new file mode 100644 index 00000000..280f10ce --- /dev/null +++ b/src/views/CT/OTZ/OtzEnrollmentOnOTZBySex.js @@ -0,0 +1,89 @@ +import React, { useCallback, useEffect, useState } from 'react'; +import { Card, CardBody, CardHeader } from 'reactstrap'; +import Highcharts from 'highcharts'; +import HighchartsReact from 'highcharts-react-official'; +import { useSelector } from 'react-redux'; +import * as otzEnrollmentAmongAlhivBySex + from '../../../selectors/CT/OTZ/otzEnrollmentAmongAlhivBySex'; + +const OtzEnrollmentOnOTZBySex = () => { + const [otzEnrollmentAmongAlHivOnArtBySex, setOtzEnrollmentAmongAlHivOnArtBySex] = useState({}); + const otzEnrollmentsBySex = useSelector(otzEnrollmentAmongAlhivBySex.getOtzEnrollmentAmongAlHivOnArtBySex); + + let femaleTxCurr = 0; + + let maleTxCurr = 0; + + const femaleVals = otzEnrollmentsBySex.filter(obj => obj.Gender === 'Female'); + const maleVals = otzEnrollmentsBySex.filter(obj => obj.Gender === 'Male'); + if (femaleVals.length > 0) { + femaleTxCurr = femaleVals[0].TXCurr; + } + + if (maleVals.length > 0) { + + maleTxCurr = maleVals[0].TXCurr; + } + + const loadOtzEnrollmentAmongAlHivOnArtBySex = useCallback(async () => { + setOtzEnrollmentAmongAlHivOnArtBySex({ + chart: { + type: 'pie', + renderTo: 'container' + }, + title: { + text: '' + }, + plotOptions: { + pie: { + allowPointSelect: true, + cursor: 'pointer', + dataLabels: { + enabled: true, + format: '<b>{point.name}</b> <br/> {point.percentage:.1f} % <br/> ({point.y})' + }, + showInLegend: true + } + }, + series: [ + { + name: 'OTZ ENROLMENT ON ART BY SEX', + colorByPoint: true, + data: [ + { + name: 'MALES', + y: maleTxCurr, + color: '#14084D', + text: maleTxCurr + }, + { + name: 'FEMALES', + y: femaleTxCurr, + color: '#EA4C8B', + text: femaleTxCurr, + } + ] + } + ] + }); + },[otzEnrollmentsBySex]); + + useEffect(() => { + loadOtzEnrollmentAmongAlHivOnArtBySex(); + }, [loadOtzEnrollmentAmongAlHivOnArtBySex]); + + return ( + <Card className="trends-card"> + <CardHeader className="trends-header" style={{textTransform: 'none'}}> + OTZ ENROLMENT ON ART BY SEX + </CardHeader> + <CardBody className="trends-body"> + <div className="col-12"> + <HighchartsReact highcharts={Highcharts} options={otzEnrollmentAmongAlHivOnArtBySex} /> + </div> + </CardBody> + </Card> + ); +} + +export default OtzEnrollmentOnOTZBySex; diff --git a/src/views/CT/OTZ/OtzEnrollmentTrends.js b/src/views/CT/OTZ/OtzEnrollmentTrends.js index 86e2f17c..e4bbd5fc 100644 --- a/src/views/CT/OTZ/OtzEnrollmentTrends.js +++ b/src/views/CT/OTZ/OtzEnrollmentTrends.js @@ -16,7 +16,7 @@ const OtzEnrollmentTrends = () => { const loadOtzEnrollmentAmongAlhivOnArtByMonth = useCallback(async () => { setEnrollmentAmongAlhivOnArtByMonth({ chart: { - type: 'column', + type: 'line', }, title: { text: '', @@ -28,8 +28,6 @@ const OtzEnrollmentTrends = () => { crosshair: true, }, yAxis: { - // type: 'logarithmic', - // minorTickInterval: 0.1, title: { text: 'NUMBER OF PATIENTS', }, diff --git a/src/views/CT/OTZ/OtzNotEnrolledAmongAlhivOnArtByPartner.js b/src/views/CT/OTZ/OtzNotEnrolledAmongAlhivOnArtByPartner.js index 23bff687..5ffca4f5 100644 --- a/src/views/CT/OTZ/OtzNotEnrolledAmongAlhivOnArtByPartner.js +++ b/src/views/CT/OTZ/OtzNotEnrolledAmongAlhivOnArtByPartner.js @@ -50,7 +50,7 @@ const OtzNotEnrolledAmongAlhivOnArtByPartner = () => { }, series: [ { - name: 'ADOLESCENTS RECIEVING HIV CARE, NOT ENROLLED IN OTZ BY PARTNER', + name: 'ADOLESCENTS RECEIVING HIV CARE, NOT ENROLLED IN OTZ BY PARTNER', data: otzEnrollmentsByPartner, color: '#14084D', }, @@ -68,7 +68,7 @@ const OtzNotEnrolledAmongAlhivOnArtByPartner = () => { className="trends-header" style={{ textTransform: 'none' }} > - ADOLESCENTS RECIEVING HIV CARE, NOT ENROLLED IN OTZ BY PARTNER + ADOLESCENTS RECEIVING HIV CARE, NOT ENROLLED IN OTZ BY PARTNER </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/OTZ/OtzOutcomesAmongAlhivWithBaselineVl.js b/src/views/CT/OTZ/OtzOutcomesAmongAlhivWithBaselineVl.js index c3a5e8a5..979936dd 100644 --- a/src/views/CT/OTZ/OtzOutcomesAmongAlhivWithBaselineVl.js +++ b/src/views/CT/OTZ/OtzOutcomesAmongAlhivWithBaselineVl.js @@ -4,12 +4,10 @@ import HighchartsReact from 'highcharts-react-official'; import Highcharts from 'highcharts'; import { useSelector } from 'react-redux'; import * as otzOutcomesAmongAlhivWithBaselineVL from '../../../selectors/CT/OTZ/otzOutcomesAmongAlhivWithBaselineVL'; -import * as otzTotalAdolescentsSelector from '../../../selectors/CT/OTZ/otzTotalAdolescents'; const OtzOutcomesAmongAlhivWithBaselineVl = () => { const [otzOutcomesAmongAlHivWithBaselineVL, setOtzOutcomesAmongAlHivWithBaselineVL] = useState({}); const otzOutcomesWithBaselineVl = useSelector(otzOutcomesAmongAlhivWithBaselineVL.getOtzOutcomesAmongAlHivWithBaselineVL); - const adolescents = useSelector(otzTotalAdolescentsSelector.getOtzTotalAdolescents); const loadOtzOutcomesAmongAlhivWithBaselineVl = useCallback(async () => { setOtzOutcomesAmongAlHivWithBaselineVL({ @@ -21,7 +19,6 @@ const OtzOutcomesAmongAlhivWithBaselineVl = () => { }, xAxis: { categories: [ - 'ADOLECENTS IN CARE', 'ENROLLED IN ANY OTZ PROGRAM', 'BASELINE VL AVAILABLE', 'VIRALLY SUPPRESSED', @@ -48,7 +45,7 @@ const OtzOutcomesAmongAlhivWithBaselineVl = () => { formatter: function () { if (this.point.text) return '' + this.point.y + '(' + this.point.text + '%)' - else return '' + this.point.y; + else return '' + this.point.y; }, }, tooltip: { valueSuffix: '({point.text:.0f})' }, @@ -58,15 +55,6 @@ const OtzOutcomesAmongAlhivWithBaselineVl = () => { { name: 'OTZ OUTCOMES AMONG ALHIV WITH BASELINE VL', data: [ - // TODO: adolocents in care bar here - { - name: 'Adolecentes in care', - color: '#14084D', - y: - adolescents.totalAdolescents > 0 - ? adolescents.totalAdolescents - : 0, - }, { name: 'Enrolled in OTZ', color: '#1AB394', @@ -87,12 +75,12 @@ const OtzOutcomesAmongAlhivWithBaselineVl = () => { y: otzOutcomesWithBaselineVl.length > 0 ? otzOutcomesWithBaselineVl[0] - .AlHivWithBaselineVl + .AlHivWithBaselineVlEnrolled : 0, text: otzOutcomesWithBaselineVl.length > 0 ? otzOutcomesWithBaselineVl[0] - .AlHivWithBaselineVlPerc + .AlHivWithBaselineVlEnrolledPerc : 0, }, { @@ -101,12 +89,12 @@ const OtzOutcomesAmongAlhivWithBaselineVl = () => { y: otzOutcomesWithBaselineVl.length > 0 ? otzOutcomesWithBaselineVl[0] - .AlHivWithVlLessThan1000 + .AlHivWithVlLessThan1000Enrolled : 0, text: otzOutcomesWithBaselineVl.length > 0 ? otzOutcomesWithBaselineVl[0] - .AlHivWithVlLessThan1000Perc + .AlHivWithVlLessThan1000EnrolledPerc : 0, }, // TODO: LOW LEVEL VIREMIA bar here @@ -116,12 +104,12 @@ const OtzOutcomesAmongAlhivWithBaselineVl = () => { y: otzOutcomesWithBaselineVl.length > 0 ? otzOutcomesWithBaselineVl[0] - .AlHivWithVlGreaterThan1000 + .AlHivWithVlGreaterThan1000Enrolled : 0, text: otzOutcomesWithBaselineVl.length > 0 ? otzOutcomesWithBaselineVl[0] - .AlHivWithVlGreaterThan1000Perc + .AlHivWithVlGreaterThan1000EnrolledPerc : 0, }, ], diff --git a/src/views/CT/OTZ/OtzOutcomesAmongAlhivWithReSuppression.js b/src/views/CT/OTZ/OtzOutcomesAmongAlhivWithReSuppression.js index 0c9bb6d1..309fec11 100644 --- a/src/views/CT/OTZ/OtzOutcomesAmongAlhivWithReSuppression.js +++ b/src/views/CT/OTZ/OtzOutcomesAmongAlhivWithReSuppression.js @@ -19,9 +19,9 @@ const OtzOutcomesAmongAlhivWithReSuppression = () => { }, xAxis: { categories: [ - 'OTZ WITH VL >1000 AT BASELINE', - 'OTZ WITH VL <1000 WITH REPEAT VLS', - 'NUMBER WITH VL >1000 UPON REPEAT', + 'OTZ WITH VL >=200 AT BASELINE', + 'OTZ WITH VL <200 WITH REPEAT VLS', + 'NUMBER WITH VL >=200 UPON REPEAT', ], crosshair: true, }, @@ -55,7 +55,7 @@ const OtzOutcomesAmongAlhivWithReSuppression = () => { name: 'OTZ OUTCOMES AMONG ALHIV WITH RE-SUPPRESSION', data: [ { - name: 'ALHIV WITH VL >1000 AT BASELINE', + name: 'ALHIV WITH VL >=200 AT BASELINE', color: '#00AD30', y: otzOutcomesWithReSuppression.length > 0 @@ -69,7 +69,7 @@ const OtzOutcomesAmongAlhivWithReSuppression = () => { : 0, }, { - name: 'ALHIV WITH VL <1000 WITH REPEAT VL', + name: 'ALHIV WITH VL <200 WITH REPEAT VL', color: '#fad53f', y: otzOutcomesWithReSuppression.length > 0 @@ -83,7 +83,7 @@ const OtzOutcomesAmongAlhivWithReSuppression = () => { : 0, }, { - name: 'NUMBER WITH VL >1000 UPON REPEAT', + name: 'NUMBER WITH VL >=200 UPON REPEAT', color: '#bb1414', y: otzOutcomesWithReSuppression.length > 0 diff --git a/src/views/CT/OTZ/OtzVlSuppressionByAge.js b/src/views/CT/OTZ/OtzVlSuppressionByAge.js index 6d84d813..d109a973 100644 --- a/src/views/CT/OTZ/OtzVlSuppressionByAge.js +++ b/src/views/CT/OTZ/OtzVlSuppressionByAge.js @@ -60,7 +60,7 @@ const OtzVlSuppressionByAge = () => { return ( <Card className="trends-card"> <CardHeader className="trends-header" style={{textTransform: 'none'}}> - VL SUPPRESSION AMONG CALHIV ENROLLED IN OTZ BY AGE + VL SUPPRESSION AMONG ALHIV ENROLLED IN OTZ BY AGE </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/OTZ/OtzVlSuppressionByAgeNotEnrolled.js b/src/views/CT/OTZ/OtzVlSuppressionByAgeNotEnrolled.js index 35731d2e..ce1f1b05 100644 --- a/src/views/CT/OTZ/OtzVlSuppressionByAgeNotEnrolled.js +++ b/src/views/CT/OTZ/OtzVlSuppressionByAgeNotEnrolled.js @@ -62,7 +62,7 @@ const OtzVlSuppressionByAgeNotEnrolled = () => { return ( <Card className="trends-card"> <CardHeader className="trends-header" style={{textTransform: 'none'}}> - VL SUPPRESSION AMONG CALHIV NOT ENROLLED IN OTZ BY AGE + VL SUPPRESSION AMONG ALHIV NOT ENROLLED IN OTZ BY AGE </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/OTZ/OtzVlSuppressionByCounty.js b/src/views/CT/OTZ/OtzVlSuppressionByCounty.js index 78c84068..c47c9b50 100644 --- a/src/views/CT/OTZ/OtzVlSuppressionByCounty.js +++ b/src/views/CT/OTZ/OtzVlSuppressionByCounty.js @@ -52,7 +52,7 @@ const OtzVlSuppressionByCounty = () => { return ( <Card className="trends-card"> <CardHeader className="trends-header" style={{textTransform: 'none'}}> - VL SUPPRESSION AMONG CALHIV ENROLLED IN OTZ BY COUNTY + VL SUPPRESSION AMONG ALHIV ENROLLED IN OTZ BY COUNTY </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/OTZ/OtzVlSuppressionByPartner.js b/src/views/CT/OTZ/OtzVlSuppressionByPartner.js index 318b3ea7..f3720b47 100644 --- a/src/views/CT/OTZ/OtzVlSuppressionByPartner.js +++ b/src/views/CT/OTZ/OtzVlSuppressionByPartner.js @@ -52,7 +52,7 @@ const OtzVlSuppressionByPartner = () => { return ( <Card className="trends-card"> <CardHeader className="trends-header" style={{textTransform: 'none'}}> - VL SUPPRESSION AMONG CALHIV ENROLLED IN OTZ BY PARTNER + VL SUPPRESSION AMONG ALHIV ENROLLED IN OTZ BY PARTNER </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/OTZ/OtzVlSuppressionBySex.js b/src/views/CT/OTZ/OtzVlSuppressionBySex.js index 0c76a70b..a2d7bf0d 100644 --- a/src/views/CT/OTZ/OtzVlSuppressionBySex.js +++ b/src/views/CT/OTZ/OtzVlSuppressionBySex.js @@ -65,7 +65,7 @@ const OtzVlSuppressionBySex = () => { return ( <Card className="trends-card"> <CardHeader className="trends-header" style={{textTransform: 'none'}}> - VL SUPPRESSION AMONG CALHIV ENROLLED IN OTZ BY GENDER + VL SUPPRESSION AMONG ALHIV ENROLLED IN OTZ BY GENDER </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/OTZ/OtzVlSuppressionBySexNotEnrolled.js b/src/views/CT/OTZ/OtzVlSuppressionBySexNotEnrolled.js index 0bd422f3..e8c4ac2b 100644 --- a/src/views/CT/OTZ/OtzVlSuppressionBySexNotEnrolled.js +++ b/src/views/CT/OTZ/OtzVlSuppressionBySexNotEnrolled.js @@ -70,7 +70,7 @@ const OtzVlSuppressionBySexNotEnrolled = () => { className="trends-header" style={{ textTransform: 'none' }} > - VL SUPPRESSION AMONG CALHIV NOT ENROLLED IN OTZ BY GENDER + VL SUPPRESSION AMONG ALHIV NOT ENROLLED IN OTZ BY GENDER </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/OTZ/OtzVlSuppressionNotEnrolledByCounty.js b/src/views/CT/OTZ/OtzVlSuppressionNotEnrolledByCounty.js index aa809008..55cf31e5 100644 --- a/src/views/CT/OTZ/OtzVlSuppressionNotEnrolledByCounty.js +++ b/src/views/CT/OTZ/OtzVlSuppressionNotEnrolledByCounty.js @@ -63,7 +63,7 @@ const OtzVlSuppressionNotEnrolledByCounty = () => { className="trends-header" style={{ textTransform: 'none' }} > - VL SUPPRESSION AMONG CALHIV NOT ENROLLED IN OTZ BY COUNTY + VL SUPPRESSION AMONG ALHIV NOT ENROLLED IN OTZ BY COUNTY </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/OTZ/OtzVlSuppressionNotEnrolledByPartner.js b/src/views/CT/OTZ/OtzVlSuppressionNotEnrolledByPartner.js index c634f388..abdb4840 100644 --- a/src/views/CT/OTZ/OtzVlSuppressionNotEnrolledByPartner.js +++ b/src/views/CT/OTZ/OtzVlSuppressionNotEnrolledByPartner.js @@ -59,7 +59,7 @@ const OtzVlSuppressionNotEnrolledByPartner = () => { className="trends-header" style={{ textTransform: 'none' }} > - VL SUPPRESSION AMONG CALHIV NOT ENROLLED IN OTZ BY PARTNER + VL SUPPRESSION AMONG ALHIV NOT ENROLLED IN OTZ BY PARTNER </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/CT/ViralLoad/ViralLoadOverallNonSuppressedVlTest.js b/src/views/CT/ViralLoad/ViralLoadOverallNonSuppressedVlTest.js index 6714aea4..89a9372d 100644 --- a/src/views/CT/ViralLoad/ViralLoadOverallNonSuppressedVlTest.js +++ b/src/views/CT/ViralLoad/ViralLoadOverallNonSuppressedVlTest.js @@ -27,9 +27,10 @@ const ViralLoadOverallNonSuppressedVlTest = () => { }, title: { text: '' }, xAxis: [{ - categories: ['NUMBER OF PLHIV WITH > 1000cpm', 'NUMBER OF PLHIV ON ART WITH VL > 1000 COPIES/ML WHO RECEIVED EAC', - 'NUMBER OF PLHIV ON ART WITH VL > 1000 COPIES/ML WHO RECEIVED FOLLOW UP VL TESTS', 'NUMBER OF PLHIV ON ART WITH VL > 1000 COPIES/ML WHO RECEIVED FOLLOW UP VL TESTS', - 'NUMBER WITH FOLLOW UP VL TEST AT VL > 1000 COPIES/ML SWITCHED TO SECOND LINE REGIMENT'], + categories: ['NUMBER OF PLHIV WITH > 200 COPIES/ML', 'NUMBER OF PLHIV ON ART WITH VL > 200 COPIES/ML WHO RECEIVED EAC', + 'NUMBER OF PLHIV ON ART WITH VL > 200 COPIES/ML WHO RECEIVED FOLLOW UP VL TESTS', + 'NUMBER OF PLHIV ON ART WITH VL > 200 COPIES/ML WHO RECEIVED FOLLOW UP VL TESTS', + 'NUMBER WITH FOLLOW UP VL TEST AT VL > 200 COPIES/ML SWITCHED TO SECOND LINE REGIMENT'], crosshair: true }], yAxis: [ @@ -43,11 +44,8 @@ const ViralLoadOverallNonSuppressedVlTest = () => { returnString = '<b>' + this.x + '</b><br/>'; allSeries.forEach(function(ser) { - if (ser.options.stack === thisPoint.series.options.stack) { - if (ser.data[thisIndex].y !== null) { - returnString += ser.points[thisIndex].name + ': ' + ser.points[thisIndex].y + '<br/>'; - } - + if (ser.options.stack === thisPoint.series.options.stack && ser.data[thisIndex].y !== null) { + returnString += ser.points[thisIndex].name + ': ' + ser.points[thisIndex].y + '<br/>'; } }); @@ -79,7 +77,7 @@ const ViralLoadOverallNonSuppressedVlTest = () => { name: 'VIRAL LOAD CASCADE', data: [ { - name: 'NUMBER OF PLHIV WITH > 1000cpm', + name: 'NUMBER OF PLHIV WITH > 200cpm', y: viralLoadUptakeGt1000Copies, color: '#bb1414', text: viralLoadUptakeGt1000Copies.toLocaleString('en'), @@ -92,7 +90,7 @@ const ViralLoadOverallNonSuppressedVlTest = () => { text: 'EAC 3<br/>' + viralLoadUptakeGt1000CopiesEac.EACVisitDate_3?.toLocaleString('en') + ' (' + parseFloat(((viralLoadUptakeGt1000CopiesEac.EACVisitDate_3 / Object.values(viralLoadUptakeGt1000CopiesEac).reduce((a, b) => a + b, 0)) * 100).toString()).toFixed(0) + '%)' }, { - name: 'NUMBER OF PLHIV ON ART WITH VL > 1000 COPIES/ML WHO RECEIVED FOLLOW UP VL TESTS', + name: 'NUMBER OF PLHIV ON ART WITH VL > 200 COPIES/ML WHO RECEIVED FOLLOW UP VL TESTS', y: viralLoadUptakeGt1000CopiesRecFollowTestAll, color: '#fad53f', text: viralLoadUptakeGt1000CopiesRecFollowTestAll.toLocaleString('en') @@ -104,7 +102,7 @@ const ViralLoadOverallNonSuppressedVlTest = () => { text: ' NUMBER VIRALLY SUPPRESSED <br/> ON FOLLOW UP VL TEST ' + viralLoadUptakeGt1000CopiesRecFollowTest[0]?.Num.toLocaleString('en') + ' (' + parseFloat(((viralLoadUptakeGt1000CopiesRecFollowTest[0]?.Num / totalFollowTest) * 100).toString()).toFixed(0) + '%)' }, { - name: 'NUMBER WITH FOLLOW UP VL TEST AT VL > 1000 COPIES/ML SWITCHED TO SECOND LINE REGIMENT', + name: 'NUMBER WITH FOLLOW UP VL TEST AT VL > 200 COPIES/ML SWITCHED TO SECOND LINE REGIMENT', y: viralLoadOverallNumberGt1000CopiesSecondlineRegimentData ?? 0, color: '#142459', text: viralLoadOverallNumberGt1000CopiesSecondlineRegimentData?.toLocaleString('en') @@ -123,10 +121,10 @@ const ViralLoadOverallNonSuppressedVlTest = () => { }, null, { - name: 'NUMBER WHO HAD > 1000 COPIES/ML ON A FOLLOW UP TEST', + name: 'NUMBER WHO HAD > 200 COPIES/ML ON A FOLLOW UP TEST', y: viralLoadUptakeGt1000CopiesRecFollowTest[1]?.Num ?? 0, color: '#bb1414', - text: 'NUMBER WHO HAD > 1000 COPIES/ML <br/> ON A FOLLOW UP TEST ' + viralLoadUptakeGt1000CopiesRecFollowTest[1]?.Num.toLocaleString('en') + ' (' + parseFloat(((viralLoadUptakeGt1000CopiesRecFollowTest[1]?.Num / totalFollowTest) * 100).toString()).toFixed(0) + '%)' + text: 'NUMBER WHO HAD > 200 COPIES/ML <br/> ON A FOLLOW UP TEST ' + viralLoadUptakeGt1000CopiesRecFollowTest[1]?.Num.toLocaleString('en') + ' (' + parseFloat(((viralLoadUptakeGt1000CopiesRecFollowTest[1]?.Num / totalFollowTest) * 100).toString()).toFixed(0) + '%)' }, null ] @@ -159,7 +157,7 @@ const ViralLoadOverallNonSuppressedVlTest = () => { <div className="col-12"> <Card className="trends-card"> <CardHeader className="trends-header"> - {'VL CASCADE FOR PATIENTS WITH A NON-SUPPRESSED VL TEST RESULT FOR THE LAST 12 MONTHS (VL > 1000 copies/ml)'} + {'VL CASCADE FOR PATIENTS WITH A NON-SUPPRESSED VL TEST RESULT FOR THE LAST 12 MONTHS (VL > 200 copies/ml)'} </CardHeader> <CardBody className="trends-body"> <div className="col-12"> diff --git a/src/views/Highlight/Highlight.js b/src/views/Highlight/Highlight.js new file mode 100644 index 00000000..52b8bef6 --- /dev/null +++ b/src/views/Highlight/Highlight.js @@ -0,0 +1,10 @@ +import HighlightTabs from './HighlightTabs'; + +const Highlight = () => { + + return ( + <HighlightTabs /> + ); +} + +export default Highlight; diff --git a/src/views/Highlight/HighlightCOP.js b/src/views/Highlight/HighlightCOP.js new file mode 100644 index 00000000..557a9f05 --- /dev/null +++ b/src/views/Highlight/HighlightCOP.js @@ -0,0 +1,97 @@ +import React from 'react'; +import axios from 'axios'; +import { embedDashboard } from "@superset-ui/embedded-sdk"; + + +const supersetUrl = 'https://dwhanalytics.kenyahmis.org' +const supersetApiUrl = supersetUrl + '/api/v1/security' +const dashboardId = "7aa9c6c5-2904-4d6f-87e3-9a36a0b51e6e" + +async function getToken() { + + //calling login to get access token + const login_body = { + "password": "admin", + "provider": "db", + "refresh": true, + "username": "admin" + }; + + const login_headers = { + "headers": { + "Content-Type": "application/json" + } + } + + // console.log(supersetApiUrl + '/login') + const { data } = await axios.post(supersetApiUrl + '/login', login_body, login_headers) + const access_token = data['access_token'] + // console.log(access_token) + + + // Calling guest token + const guest_token_body = { + "resources": [ + { + "type": "dashboard", + "id": dashboardId, + } + ], + "rls": [], + "user": { + "username": "report-viewer", + "first_name": "report-viewer", + "last_name": "report-viewer", + } + }; + + const guest_token_headers = { + "headers": { + "Content-Type": "application/json", + "Authorization": 'Bearer ' + access_token + } + } + + + // console.log(supersetApiUrl + '/guest_token/') + // console.log(guest_token_body) + // console.log(guest_token_headers) + await axios.post(supersetApiUrl + '/guest_token/', guest_token_body, guest_token_headers).then(dt=>{ + // console.log(dt.data['token']) + embedDashboard({ + id: dashboardId, // given by the Superset embedding UI + supersetDomain: supersetUrl, + mountPoint: document.getElementById("superset-container"), // html element in which iframe render + fetchGuestToken: () => dt.data['token'], + dashboardUiConfig: { + hideTitle: false, + hideChartControls: true, + hideTab: true, + filters: { + expanded: true, + }, + } + }); + }) + + var iframe = document.querySelector("iframe") + if (iframe) { + iframe.style.width = '100%'; // Set the width as needed + iframe.style.minHeight = '70vw'; // Set the height as needed + iframe.style.overflow = 'hidden' + iframe.style.border = 0 + } + +} + +const HighlightCOP = () => { + getToken() + + return ( + <> + <div id="superset-container"></div> + </> + ) +} + +export default HighlightCOP diff --git a/src/views/Highlight/HighlightInternal.js b/src/views/Highlight/HighlightInternal.js new file mode 100644 index 00000000..76b616b5 --- /dev/null +++ b/src/views/Highlight/HighlightInternal.js @@ -0,0 +1,30 @@ +import { useEffect, useState } from 'react'; +import axios from 'axios'; +import { DWH_API_URL } from '../../constants'; + +const HighlightInternal = () => { + const [iframeUrl, setIframeUrl] = useState(''); + + useEffect(() => { + axios.get(`${DWH_API_URL}self-service/monthly-highlight`) + .then(res => { + const url = res.data?.url; + setIframeUrl(url); + }) + .catch(error => { + console.error('Error fetching iframe URL:', error); + }); + }, []); + + return ( + <iframe + src={iframeUrl} + frameBorder={0} + width={'100%'} + height={800} + allowTransparency + /> + ); +} + +export default HighlightInternal diff --git a/src/views/Highlight/HighlightTabs.js b/src/views/Highlight/HighlightTabs.js new file mode 100644 index 00000000..64038208 --- /dev/null +++ b/src/views/Highlight/HighlightTabs.js @@ -0,0 +1,56 @@ +import { Nav, NavItem, NavLink, TabContent, TabPane } from 'reactstrap'; +import classnames from 'classnames'; +import React, { useState } from 'react'; +import Loadable from 'react-loadable'; +import Loading from '../Shared/Loading'; +import { LOADING_DELAY } from '../../constants'; +const HighlightInternal = Loadable({ loader: () => import('./HighlightInternal'), loading: Loading, delay: LOADING_DELAY }); +const HighlightCOP = Loadable({ loader: () => import('./HighlightCOP'), loading: Loading, delay: LOADING_DELAY }); + + +const HighlightTabs = () => { + + const [activeTab, setActiveTab] = useState('cop'); + + return( + <> + <Nav tabs> + <NavItem> + <NavLink + className={classnames({ + active: activeTab === 'cop', + })} + onClick={() => { + setActiveTab('cop'); + }} + > + COMMUNITY DASHBOARDS + </NavLink> + </NavItem> + <NavItem> + <NavLink + className={classnames({ + active: activeTab === 'metabase', + })} + onClick={() => { + setActiveTab('metabase'); + }} + > + KENYAHMIS DASHBOARDS + </NavLink> + </NavItem> + </Nav> + <TabContent activeTab={activeTab}> + <TabPane tabId="cop"> + <HighlightCOP /> + </TabPane> + <TabPane tabId="metabase"> + <HighlightInternal /> + </TabPane> + </TabContent> + </> + ) +} + + +export default HighlightTabs diff --git a/src/views/Home/HomeEmrSitesMap.js b/src/views/Home/HomeEmrSitesMap.js index 11a6dccc..2efbb7ac 100644 --- a/src/views/Home/HomeEmrSitesMap.js +++ b/src/views/Home/HomeEmrSitesMap.js @@ -16,7 +16,7 @@ const HomeEmrSitesMap = () => { const emrNames = []; let emrSites = []; if (gpsSites === undefined || gpsSites === null) gpsSites = []; - + for (let i = 0; i < gpsSites.length; i++) { if (emrNames.indexOf(gpsSites[i].emr) === -1) { emrNames.push(gpsSites[i].emr); @@ -34,12 +34,13 @@ const HomeEmrSitesMap = () => { } } data.push({ - mapData: Highcharts.maps['custom/ke-province'], + mapData: Highcharts.maps['custom/ke-county-all'], name: 'Basemap', borderColor: '#A0A0A0', nullColor: 'rgba(200, 200, 200, 0.3)', showInLegend: false }); + for (let j = 0; j < emrNames.length; j++) { data.push({ name: emrNames[j] === null ? 'Unknown' : emrNames[j], diff --git a/src/views/Home/HomeVLCascade.js b/src/views/Home/HomeVLCascade.js index ab293ccc..2824a2ce 100644 --- a/src/views/Home/HomeVLCascade.js +++ b/src/views/Home/HomeVLCascade.js @@ -6,12 +6,8 @@ import * as currentOnArtSelectors from '../../selectors/CT/CurrentOnArt/currentO import { formatNumber, roundNumber } from '../../utils/utils'; import DataCard from '../Shared/DataCard'; import moment from 'moment'; -import { ETL_DAY } from '../../constants'; const HomeVLCascade = () => { - // const currentOnArt = useSelector( - // currentOnArtOverviewSelectors.getCurrentOnArt - // ); const currentDate = moment(); // Check if the current date is before the 20th of the month diff --git a/src/views/RR/HisDeployments.js b/src/views/RR/HisDeployments.js new file mode 100644 index 00000000..d3223720 --- /dev/null +++ b/src/views/RR/HisDeployments.js @@ -0,0 +1,74 @@ +import HisDeploymentsOverview from './HisDeploymentsOverview'; +import HisDeploymentsEMRStatusByPartner from './HisDeploymentsEMRStatusByPartner'; +import HisDeploymentsFacilityLevelByOwnershipPartner from './HisDeploymentsFacilityLevelByOwnershipPartner'; +import HisDeploymentsFacilityLevelByOwnershipCounty from './HisDeploymentsFacilityLevelByOwnershipCounty'; +import HisDeploymentsFacilityByInfrastructure from './HisDeploymentsFacilityByInfrastructure'; +import HisDeploymentsLinelist from './HisDeploymentsLinelist'; +import HisDeploymentsTxCurr from './HisDeploymentsTxcurr'; +import SectionHeader from '../Shared/SectionHeader'; +import React, { useEffect } from 'react'; +import moment from 'moment'; +import VisibilitySensor from 'react-visibility-sensor'; +import UniversalFilter from '../Shared/UniversalFilter'; +import { disableStickyFilter, enableStickyFilter } from '../../actions/Shared/uiActions'; +import { useDispatch } from 'react-redux'; +import { loadHisFacilityLinelistAction } from '../../actions/RR/hisFacilityLinelistActions'; +import { loadHisFacilityByInfrastructureActions } from '../../actions/RR/hisFacilityByInfrastructureActions'; +import { loadHisFacilityStatusByPartnerAction } from '../../actions/RR/hisFacilityStatusByPartnerActions'; +import { loadHisFacilityLevelByCountyAction } from '../../actions/RR/hisFacilityLevelByCountyActions'; +import { loadHisFacilityLevelByPartnerAction } from '../../actions/RR/hisFacilityLevelByPartnerActions'; +import { loadHisFacilityStatusAction } from '../../actions/RR/hisFacilityStatusActions'; +import { loadHisFacilityTxcurrAction } from '../../actions/RR/hisFacilityTxcurrActions'; +import { loadHisFacilityStatusByCountyAction } from '../../actions/RR/hisFacilityStatusByCountyActions'; +import { loadHisFacilityByInfrastructureCountyActions } from '../../actions/RR/hisFacilityByInfrastructureCountyActions'; +import HisDeploymentsEMRStatusByCounty from './HisDeploymentsEMRStatusByCounty'; +import HisDeploymentsFacilityByInfrastructureCounty from './HisDeploymentsFacilityByInfrastructureCounty'; +import { loadHisFacilityArtHtsMnchAction } from '../../actions/RR/hisFacilityArtHtsMnchActions'; +import HisDeploymentsArtHtsMnchLinelist from './HisDeploymentsArtHtsMnchLinelist'; +import HisDeploymentsHTSMap from './HisDeploymentsHTSMap'; + +const HisDeployments = () =>{ + const dispatch = useDispatch(); + + useEffect(() => { + dispatch(loadHisFacilityStatusAction()); + dispatch(loadHisFacilityLevelByPartnerAction()); + dispatch(loadHisFacilityStatusByPartnerAction()); + dispatch(loadHisFacilityLevelByCountyAction()); + dispatch(loadHisFacilityByInfrastructureActions()); + dispatch(loadHisFacilityLinelistAction()); + dispatch(loadHisFacilityTxcurrAction()); + dispatch(loadHisFacilityStatusByCountyAction()); + dispatch(loadHisFacilityByInfrastructureCountyActions()); + dispatch(loadHisFacilityArtHtsMnchAction()); + }, [dispatch]) + const onVisibilityChange = (isVisible) => { + if (isVisible) { + dispatch(disableStickyFilter()); + } else { + dispatch(enableStickyFilter()); + } + }; + return ( + <> + <SectionHeader title="HIS Deployments" description={`Year ${moment().format('YYYY')}`}/> + <VisibilitySensor onChange={onVisibilityChange}> + <UniversalFilter/> + </VisibilitySensor> + <HisDeploymentsOverview /> + <HisDeploymentsEMRStatusByCounty/> + <HisDeploymentsEMRStatusByPartner /> + <HisDeploymentsFacilityLevelByOwnershipCounty /> + <HisDeploymentsFacilityLevelByOwnershipPartner /> + <HisDeploymentsFacilityByInfrastructureCounty /> + <HisDeploymentsFacilityByInfrastructure /> + <HisDeploymentsTxCurr /> + <HisDeploymentsArtHtsMnchLinelist /> + <HisDeploymentsLinelist /> + <HisDeploymentsHTSMap /> + </> + ) +} + + +export default HisDeployments diff --git a/src/views/RR/HisDeploymentsArtHtsMnchLinelist.js b/src/views/RR/HisDeploymentsArtHtsMnchLinelist.js new file mode 100644 index 00000000..0cb1f79e --- /dev/null +++ b/src/views/RR/HisDeploymentsArtHtsMnchLinelist.js @@ -0,0 +1,61 @@ +import { Card, CardBody, CardHeader, Spinner } from 'reactstrap'; +import { useSelector } from 'react-redux'; +import React from 'react'; +import * as hisSelector from '../../selectors/RR/HisDeploymentsSelector'; +import CsvDownloader from 'react-csv-downloader'; +import DataTable from 'react-data-table-component'; +import moment from 'moment'; + +const HisDeploymentsArtHtsMnchLinelist = () =>{ + const hisLinelist = useSelector( + hisSelector.getFacilityArtHtsMnchLinelist + ); + + + return ( + <> + <Card className="trends-card"> + <CardHeader className="trends-header"> + KEPH LEVELS FOR EMR SITES FOR KHIS INDICATORS + { + hisLinelist.loading === true ? + <Spinner className="pull-right"/> : + <CsvDownloader + filename={`ndwh_his_deployment_facility_linelist_${moment().format('YYYY_MM_DD')}`} + separator="," + datas={hisLinelist.list} + className="pull-right" + > + <i className="bordered download icon inverted black"></i> + </CsvDownloader> + } + </CardHeader> + <CardBody className="trends-body"> + <DataTable + columns={[ + { selector: 'SiteCode', name: 'MFL CODE' }, + { selector: 'KEPH_Level', name: 'KEPH Level' }, + { selector: 'CurrentOnART_Total', name: 'Current On ART Total' }, + { selector: 'Tested_Total', name: 'Tested Total' }, + { selector: 'onMaternalHAARTtotal', name: 'On Maternal HAART Total' }, + ]} + data={hisLinelist.list} + noHeader + dense + defaultSortField="SiteCode" + defaultSortAsc={true} + pagination + paginationPerPage={20} + responsive + highlightOnHover + progressPending={hisLinelist.loading} + progressComponent={<Spinner/>} + /> + </CardBody> + </Card> + </> + ); +} + + +export default HisDeploymentsArtHtsMnchLinelist diff --git a/src/views/RR/HisDeploymentsEMRStatusByCounty.js b/src/views/RR/HisDeploymentsEMRStatusByCounty.js new file mode 100644 index 00000000..a48dc51d --- /dev/null +++ b/src/views/RR/HisDeploymentsEMRStatusByCounty.js @@ -0,0 +1,113 @@ +import React, { useEffect, useState, useCallback } from 'react'; +import Highcharts from 'highcharts'; +import { Card, CardBody, CardHeader } from 'reactstrap'; +import HighchartsReact from 'highcharts-react-official'; +import * as hisSelector from '../../selectors/RR/HisDeploymentsSelector'; +import { useSelector } from 'react-redux'; + +const HISDeploymentsByCounty = () => { + const hisStatusData = useSelector( + hisSelector.getFacilityStatusByCounty + ); + const [hisDeployments, setHisDeployments] = useState({}); + + const loadHisDeployments = useCallback(async () => { + setHisDeployments({ + chart: { + type: 'column', + }, + title: { + text: '', + align: 'left', + }, + xAxis: { + title: { + text: 'COUNTY', + }, + categories: hisStatusData.counties, + }, + yAxis: { + min: 0, + title: { + text: 'NUMBER OF FACILITIES', + }, + reversedStacks: false, + stackLabels: { + enabled: false, + style: { + fontWeight: 'bold', + color: + (Highcharts.defaultOptions.title.style && + Highcharts.defaultOptions.title.style.color) || + 'gray', + textOutline: 'none', + }, + }, + }, + legend: { + align: 'left', + verticalAlign: 'top', + floating: false, + shadow: false, + y: 0, + x: 80, + }, + tooltip: { + headerFormat: '<b>{point.x}</b><br/>', + pointFormat: + '{series.name}: {point.y}<br/>Total: {point.stackTotal}', + }, + plotOptions: { + column: { + stacking: 'percent', + dataLabels: { + enabled: false, + }, + }, + }, + series: [ + { + name: 'ACTIVE', + data: hisStatusData.actives, + color: '#00AD30', + }, + { + name: 'DISCONTINUED', + data: hisStatusData.discontinueds, + color: '#152459', + }, + { + name: 'STALLED/INACTIVE', + data: hisStatusData.inactives, + color: '#F6941C', + } + ], + }); + }, [hisStatusData]); + + useEffect(() => { + loadHisDeployments(); + }, [loadHisDeployments]); + + return ( + <div className="row"> + <div className="col-12"> + <Card className="trends-card"> + <CardHeader className="trends-header"> + EMR STATUS BY COUNTY + </CardHeader> + <CardBody className="trends-body"> + <div className="col-12"> + <HighchartsReact + highcharts={Highcharts} + options={hisDeployments} + /> + </div> + </CardBody> + </Card> + </div> + </div> + ); +}; + +export default HISDeploymentsByCounty; diff --git a/src/views/RR/HisDeploymentsEMRStatusByPartner.js b/src/views/RR/HisDeploymentsEMRStatusByPartner.js new file mode 100644 index 00000000..94aa0271 --- /dev/null +++ b/src/views/RR/HisDeploymentsEMRStatusByPartner.js @@ -0,0 +1,114 @@ +import React, { useEffect, useState, useCallback } from 'react'; +import Highcharts from 'highcharts'; +import { Card, CardBody, CardHeader } from 'reactstrap'; +import HighchartsReact from 'highcharts-react-official'; +import * as hisSelector from '../../selectors/RR/HisDeploymentsSelector'; +import { useSelector } from 'react-redux'; + +const HISDeploymentsByPartner = () => { + const hisStatusData = useSelector( + hisSelector.getFacilityStatusByPartner + ); + const [hisDeployments, setHisDeployments] = useState({}); + + const loadHisDeployments = useCallback(async () => { + setHisDeployments({ + chart: { + type: 'column', + }, + title: { + text: '', + align: 'left', + }, + xAxis: { + title: { + text: 'SERVICE DELIVERY PARTNER', + }, + categories: hisStatusData.partnerNames, + }, + yAxis: { + min: 0, + title: { + text: 'NUMBER OF FACILITIES', + }, + reversedStacks: false, + stackLabels: { + enabled: false, + style: { + fontWeight: 'bold', + color: + // theme + (Highcharts.defaultOptions.title.style && + Highcharts.defaultOptions.title.style.color) || + 'gray', + textOutline: 'none', + }, + }, + }, + legend: { + align: 'left', + verticalAlign: 'top', + floating: false, + shadow: false, + y: 0, + x: 80, + }, + tooltip: { + headerFormat: '<b>{point.x}</b><br/>', + pointFormat: + '{series.name}: {point.y}<br/>Total: {point.stackTotal}', + }, + plotOptions: { + column: { + stacking: 'percent', + dataLabels: { + enabled: false, + }, + }, + }, + series: [ + { + name: 'ACTIVE', + data: hisStatusData.actives, + color: '#00AD30', + }, + { + name: 'DISCONTINUED', + data: hisStatusData.discontinueds, + color: '#152459', + }, + { + name: 'STALLED/INACTIVE', + data: hisStatusData.inactives, + color: '#F6941C', + } + ], + }); + }, [hisStatusData]); + + useEffect(() => { + loadHisDeployments(); + }, [loadHisDeployments]); + + return ( + <div className="row"> + <div className="col-12"> + <Card className="trends-card"> + <CardHeader className="trends-header"> + EMR STATUS BY PARTNER + </CardHeader> + <CardBody className="trends-body"> + <div className="col-12"> + <HighchartsReact + highcharts={Highcharts} + options={hisDeployments} + /> + </div> + </CardBody> + </Card> + </div> + </div> + ); +}; + +export default HISDeploymentsByPartner; diff --git a/src/views/RR/HisDeploymentsFacilityByInfrastructure.js b/src/views/RR/HisDeploymentsFacilityByInfrastructure.js new file mode 100644 index 00000000..dcb3997a --- /dev/null +++ b/src/views/RR/HisDeploymentsFacilityByInfrastructure.js @@ -0,0 +1,109 @@ +import React, { useEffect, useState, useCallback } from 'react'; +import Highcharts from 'highcharts'; +import { Card, CardBody, CardHeader } from 'reactstrap'; +import HighchartsReact from 'highcharts-react-official'; +import { useSelector } from 'react-redux'; +import * as hisSelector from '../../selectors/RR/HisDeploymentsSelector'; + +const HisDeploymentsFacilityByInfrastructure = () => { + const [hisDeployments, setHisDeployments] = useState({}); + const hisStatusData = useSelector( + hisSelector.getFacilityByInfrastructure + ); + + const loadHisByInfrastructure = useCallback(async () => { + setHisDeployments({ + chart: { + type: 'column', + }, + title: { + text: '', + align: 'left', + }, + xAxis: { + title: { + text: 'SERVICE DELIVERY PARTNER', + }, + categories: hisStatusData.partnerNames, + }, + yAxis: { + min: 0, + title: { + text: 'NUMBER OF FACILITIES', + }, + reversedStacks: false, + stackLabels: { + enabled: false, + style: { + fontWeight: 'bold', + color: + // theme + (Highcharts.defaultOptions.title.style && + Highcharts.defaultOptions.title.style.color) || + 'gray', + textOutline: 'none', + }, + }, + }, + legend: { + align: 'left', + verticalAlign: 'top', + floating: false, + shadow: false, + y: 0, + x: 80, + }, + tooltip: { + headerFormat: '<b>{point.x}</b><br/>', + pointFormat: + '{series.name}: {point.y}<br/>Total: {point.stackTotal}', + }, + plotOptions: { + column: { + stacking: 'percent', + dataLabels: { + enabled: false, + }, + }, + }, + series: [ + { + name: 'ON PREMISES', + data: hisStatusData.onPremises, + color: '#00AD30', + }, + { + name: 'ON CLOUD', + data: hisStatusData.onCloud, + color: '#152459', + } + ], + }); + }, [hisStatusData]); + + useEffect(() => { + loadHisByInfrastructure(); + }, [loadHisByInfrastructure]); + + return ( + <div className="row"> + <div className="col-12"> + <Card className="trends-card"> + <CardHeader className="trends-header"> + ACTIVE FACILITY BY INFRASTRUCTURE DEPLOYMENT(PARTNER) + </CardHeader> + <CardBody className="trends-body"> + <div className="col-12"> + <HighchartsReact + highcharts={Highcharts} + options={hisDeployments} + /> + </div> + </CardBody> + </Card> + </div> + </div> + ); +}; + +export default HisDeploymentsFacilityByInfrastructure; diff --git a/src/views/RR/HisDeploymentsFacilityByInfrastructureCounty.js b/src/views/RR/HisDeploymentsFacilityByInfrastructureCounty.js new file mode 100644 index 00000000..db639959 --- /dev/null +++ b/src/views/RR/HisDeploymentsFacilityByInfrastructureCounty.js @@ -0,0 +1,109 @@ +import React, { useEffect, useState, useCallback } from 'react'; +import Highcharts from 'highcharts'; +import { Card, CardBody, CardHeader } from 'reactstrap'; +import HighchartsReact from 'highcharts-react-official'; +import { useSelector } from 'react-redux'; +import * as hisSelector from '../../selectors/RR/HisDeploymentsSelector'; + +const HisDeploymentsFacilityByInfrastructureCounty = () => { + const [hisDeployments, setHisDeployments] = useState({}); + const hisStatusData = useSelector( + hisSelector.getFacilityByInfrastructureCounty + ); + + const loadHisByInfrastructure = useCallback(async () => { + setHisDeployments({ + chart: { + type: 'column', + }, + title: { + text: '', + align: 'left', + }, + xAxis: { + title: { + text: 'COUNTY', + }, + categories: hisStatusData.counties, + }, + yAxis: { + min: 0, + title: { + text: 'NUMBER OF FACILITIES', + }, + reversedStacks: false, + stackLabels: { + enabled: false, + style: { + fontWeight: 'bold', + color: + // theme + (Highcharts.defaultOptions.title.style && + Highcharts.defaultOptions.title.style.color) || + 'gray', + textOutline: 'none', + }, + }, + }, + legend: { + align: 'left', + verticalAlign: 'top', + floating: false, + shadow: false, + y: 0, + x: 80, + }, + tooltip: { + headerFormat: '<b>{point.x}</b><br/>', + pointFormat: + '{series.name}: {point.y}<br/>Total: {point.stackTotal}', + }, + plotOptions: { + column: { + stacking: 'percent', + dataLabels: { + enabled: false, + }, + }, + }, + series: [ + { + name: 'ON PREMISES', + data: hisStatusData.onPremises, + color: '#00AD30', + }, + { + name: 'ON CLOUD', + data: hisStatusData.onCloud, + color: '#152459', + } + ], + }); + }, [hisStatusData]); + + useEffect(() => { + loadHisByInfrastructure(); + }, [loadHisByInfrastructure]); + + return ( + <div className="row"> + <div className="col-12"> + <Card className="trends-card"> + <CardHeader className="trends-header"> + ACTIVE FACILITY BY INFRASTRUCTURE DEPLOYMENT(COUNTY) + </CardHeader> + <CardBody className="trends-body"> + <div className="col-12"> + <HighchartsReact + highcharts={Highcharts} + options={hisDeployments} + /> + </div> + </CardBody> + </Card> + </div> + </div> + ); +}; + +export default HisDeploymentsFacilityByInfrastructureCounty; diff --git a/src/views/RR/HisDeploymentsFacilityLevelByOwnershipCounty.js b/src/views/RR/HisDeploymentsFacilityLevelByOwnershipCounty.js new file mode 100644 index 00000000..148d957a --- /dev/null +++ b/src/views/RR/HisDeploymentsFacilityLevelByOwnershipCounty.js @@ -0,0 +1,129 @@ +import React, { useEffect, useState, useCallback } from 'react'; +import Highcharts from 'highcharts'; +import { Card, CardBody, CardHeader } from 'reactstrap'; +import HighchartsReact from 'highcharts-react-official'; +import { useSelector } from 'react-redux'; +import * as hisSelector from '../../selectors/RR/HisDeploymentsSelector'; + +const HisDeploymentsFacilityLevelByOwnershipCounty = () => { + const [hisDeployments, setHisDeployments] = useState({}); + const hisStatusData = useSelector( + hisSelector.getFacilityLevelByCounty + ); + + const loadHisLevelByCounty = useCallback(async () => { + setHisDeployments({ + chart: { + type: 'column', + }, + title: { + text: '', + align: 'left', + }, + xAxis: { + title: { + text: 'COUNTY', + }, + categories: hisStatusData.counties, + }, + yAxis: { + min: 0, + title: { + text: 'NUMBER OF FACILITIES', + }, + reversedStacks: false, + stackLabels: { + enabled: false, + style: { + fontWeight: 'bold', + color: + // theme + (Highcharts.defaultOptions.title.style && + Highcharts.defaultOptions.title.style.color) || + 'gray', + textOutline: 'none', + }, + }, + }, + legend: { + align: 'left', + verticalAlign: 'top', + floating: false, + shadow: false, + y: 0, + x: 80, + }, + tooltip: { + headerFormat: '<b>{point.x}</b><br/>', + pointFormat: + '{series.name}: {point.y}<br/>Total: {point.stackTotal}', + }, + plotOptions: { + column: { + stacking: 'percent', + dataLabels: { + enabled: false, + }, + }, + }, + series: [ + { + name: 'LEVEL 1', + data: hisStatusData.lvl1, + color: '#00AD30', + }, + { + name: 'LEVEL 2', + data: hisStatusData.lvl2, + color: '#152459', + }, + { + name: 'LEVEL 3', + data: hisStatusData.lvl3, + color: '#F6941C', + }, + { + name: 'LEVEL 4', + data: hisStatusData.lvl4, + color: '#D21D7F', + }, + { + name: 'LEVEL 5', + data: hisStatusData.lvl5, + color: '#8E2C16', + }, + { + name: 'LEVEL 6', + data: hisStatusData.lvl6, + color: '#5FA5E6', + }, + ], + }); + }, [hisStatusData]); + + useEffect(() => { + loadHisLevelByCounty(); + }, [loadHisLevelByCounty]); + + return ( + <div className="row"> + <div className="col-12"> + <Card className="trends-card"> + <CardHeader className="trends-header"> + ACTIVE FACILITY LEVEL BY OWNERSHIP (COUNTY) + </CardHeader> + <CardBody className="trends-body"> + <div className="col-12"> + <HighchartsReact + highcharts={Highcharts} + options={hisDeployments} + /> + </div> + </CardBody> + </Card> + </div> + </div> + ); +}; + +export default HisDeploymentsFacilityLevelByOwnershipCounty; diff --git a/src/views/RR/HisDeploymentsFacilityLevelByOwnershipPartner.js b/src/views/RR/HisDeploymentsFacilityLevelByOwnershipPartner.js new file mode 100644 index 00000000..b5f7ab18 --- /dev/null +++ b/src/views/RR/HisDeploymentsFacilityLevelByOwnershipPartner.js @@ -0,0 +1,129 @@ +import React, { useEffect, useState, useCallback } from 'react'; +import Highcharts from 'highcharts'; +import { Card, CardBody, CardHeader } from 'reactstrap'; +import HighchartsReact from 'highcharts-react-official'; +import * as hisSelector from '../../selectors/RR/HisDeploymentsSelector'; +import { useSelector } from 'react-redux'; + +const HisDeploymentsFacilityLevelByOwnershipPartner = () => { + const [hisDeployments, setHisDeployments] = useState({}); + const hisStatusData = useSelector( + hisSelector.getFacilityLevelByPartner + ); + + const loadHisLevelByPartner = useCallback(async () => { + setHisDeployments({ + chart: { + type: 'column', + }, + title: { + text: '', + align: 'left', + }, + xAxis: { + title: { + text: 'SERVICE DELIVERY PARTNER', + }, + categories: hisStatusData.partnerNames, + }, + yAxis: { + min: 0, + title: { + text: 'NUMBER OF FACILITIES', + }, + reversedStacks: false, + stackLabels: { + enabled: false, + style: { + fontWeight: 'bold', + color: + // theme + (Highcharts.defaultOptions.title.style && + Highcharts.defaultOptions.title.style.color) || + 'gray', + textOutline: 'none', + }, + }, + }, + legend: { + align: 'left', + verticalAlign: 'top', + floating: false, + shadow: false, + y: 0, + x: 80, + }, + tooltip: { + headerFormat: '<b>{point.x}</b><br/>', + pointFormat: + '{series.name}: {point.y}<br/>Total: {point.stackTotal}', + }, + plotOptions: { + column: { + stacking: 'percent', + dataLabels: { + enabled: false, + }, + }, + }, + series: [ + { + name: 'LEVEL 1', + data: hisStatusData.lvl1, + color: '#00AD30', + }, + { + name: 'LEVEL 2', + data: hisStatusData.lvl2, + color: '#152459', + }, + { + name: 'LEVEL 3', + data: hisStatusData.lvl3, + color: '#F6941C', + }, + { + name: 'LEVEL 4', + data: hisStatusData.lvl4, + color: '#D21D7F', + }, + { + name: 'LEVEL 5', + data: hisStatusData.lvl5, + color: '#8E2C16', + }, + { + name: 'LEVEL 6', + data: hisStatusData.lvl6, + color: '#5FA5E6', + }, + ], + }); + }, [hisStatusData]); + + useEffect(() => { + loadHisLevelByPartner(); + }, [loadHisLevelByPartner]); + + return ( + <div className="row"> + <div className="col-12"> + <Card className="trends-card"> + <CardHeader className="trends-header"> + ACTIVE FACILITY LEVEL BY OWNERSHIP (PARTNER) + </CardHeader> + <CardBody className="trends-body"> + <div className="col-12"> + <HighchartsReact + highcharts={Highcharts} + options={hisDeployments} + /> + </div> + </CardBody> + </Card> + </div> + </div> + ); +}; + +export default HisDeploymentsFacilityLevelByOwnershipPartner; diff --git a/src/views/RR/HisDeploymentsHTSMap.js b/src/views/RR/HisDeploymentsHTSMap.js new file mode 100644 index 00000000..d5ff5483 --- /dev/null +++ b/src/views/RR/HisDeploymentsHTSMap.js @@ -0,0 +1,144 @@ +import React, { useEffect, useState, useCallback } from 'react'; +import Highcharts from '../../utils/highcharts'; +import HighchartsReact from 'highcharts-react-official'; +import { getAll } from '../Shared/Api'; +import countyMapping from '../Shared/countyMapping.json'; +import { useSelector } from 'react-redux'; +import { Card, CardBody, CardHeader, Col, Row } from 'reactstrap'; + +const HisDeploymentsHTSMap = () => { + const filters = useSelector(state => state.filters); + const [htsCoverageByCounty, setHtsCoverageByCountyMap] = useState({}); + const [htsPosCoverageByCounty, setHtsPosCoverageByCountyMap] = useState({}); + + const loadCurrentOnArtByCounty = useCallback(async () => { + let params = { + county: filters.counties, + subCounty: filters.subCounties, + facility: filters.facilities, + partner: filters.partners, + agency: filters.agencies, + project: filters.projects, + }; + const htsPerData = []; + const htsPosPerData = []; + const mappedCounties = countyMapping; + const result = await getAll('common/getCountyCoverageHts', params); + for (let i = 0; i < result.length; i++) { + let resultCounty = result[i].County; + resultCounty = resultCounty ? resultCounty.toLowerCase() : ''; + resultCounty = resultCounty.replace(/[`~!@#$%^&*()_|+\-=?;:'",.<>{}[]\\\/]/gi, ''); + resultCounty = resultCounty.replace(' ', ''); + for (let j = 0; j < mappedCounties.length; j++) { + let mappedCounty = mappedCounties[j].name; + mappedCounty = mappedCounty.toLowerCase(); + mappedCounty = mappedCounty.replace(/[`~!@#$%^&*()_|+\-=?;:'",.<>{}[]\\\/]/gi, ''); + mappedCounty = mappedCounty.replace(' ', ''); + if ( mappedCounty === resultCounty) { + let htsPer = result[i].Tested_DHIS > 0 ? (result[i].Tested_NDW / result[i].Tested_DHIS) * 100 : 0 + htsPerData.push({ + id: mappedCounties[j].id, + value: htsPer.toFixed(2) + }); + let htsPosPer = result[i].Positive_DHIS > 0 ? (result[i].Positive_NDW / result[i].Positive_DHIS) * 100 : 0 + htsPosPerData.push({ + id: mappedCounties[j].id, + value: htsPosPer.toFixed(2) + }); + } + } + } + + setHtsCoverageByCountyMap({ + chart: { map: 'custom/ke-county' }, + title: { text: '' }, + colors: ['#62c1e5', '#E28C78', '#F17B25', '#F7DB00', '#8CC63F', '#009245'], + colorAxis: { dataClassColor: 'category', dataClasses: [ + { to: 0 }, + { from: 0.01, to: 10 }, + { from: 10, to: 25 }, + { from: 25, to: 45 }, + { from: 45, to: 80 }, + { from: 80 } + ]}, + tooltip: { + formatter: function () { + return this.series.name + '<br>' + + this.point.properties.NAME_1 + ': <b>' + this.point.value + '% </b>'; + } + }, + mapNavigation: { + enabled: true, + enableMouseWheelZoom: false, + enableButtons: false, + buttonOptions: { + verticalAlign: 'bottom' + } + }, + legend: { title: { text: 'KEY: % NDW Coverage' }, layout: 'vertical', align: 'right', verticalAlign: 'bottom', valueDecimals: 0, backgroundColor: 'white', floating: true, }, + series: [ + { name: 'HTS_TST Coverage', data: htsPerData, joinBy: ['CC_1', 'id'], states: { hover: { color: '#000000' } } } + ] + }); + + setHtsPosCoverageByCountyMap({ + chart: { map: 'custom/ke-county' }, + title: { text: '' }, + colors: ['#62c1e5', '#E28C78', '#F17B25', '#F7DB00', '#8CC63F', '#009245'], + colorAxis: { dataClassColor: 'category', dataClasses: [ + { to: 0 }, + { from: 0.01, to: 10 }, + { from: 10, to: 25 }, + { from: 25, to: 45 }, + { from: 45, to: 80 }, + { from: 80 } + ]}, + tooltip: { + formatter: function () { + return this.series.name + '<br>' + + this.point.properties.NAME_1 + ': <b>' + this.point.value + '% </b>'; + } + }, + mapNavigation: { + enabled: true, + enableMouseWheelZoom: false, + enableButtons: false, + buttonOptions: { + verticalAlign: 'bottom' + } + }, + legend: { title: { text: 'KEY: % NDW Coverage' }, layout: 'vertical', align: 'right', verticalAlign: 'bottom', valueDecimals: 0, backgroundColor: 'white', floating: true, }, + series: [ + { name: 'HTS_POS Coverage', data: htsPosPerData, joinBy: ['CC_1', 'id'], states: { hover: { color: '#000000' } } } + ] + }); + }, [filters]); + + useEffect(() => { + loadCurrentOnArtByCounty(); + }, [loadCurrentOnArtByCounty]); + + return ( + <div className="row"> + <div className="col-12"> + <Card className="trends-card"> + <CardHeader className="trends-header"> + eHTS COVERAGE BY COUNTY + </CardHeader> + <CardBody className="trends-body"> + <Row> + <Col> + <HighchartsReact highcharts={Highcharts} options={htsCoverageByCounty} constructorType={'mapChart'}/> + </Col> + <Col> + <HighchartsReact highcharts={Highcharts} options={htsPosCoverageByCounty} constructorType={'mapChart'}/> + </Col> + </Row> + </CardBody> + </Card> + </div> + </div> + ); +} + +export default HisDeploymentsHTSMap; diff --git a/src/views/RR/HisDeploymentsLinelist.js b/src/views/RR/HisDeploymentsLinelist.js new file mode 100644 index 00000000..4e1462a1 --- /dev/null +++ b/src/views/RR/HisDeploymentsLinelist.js @@ -0,0 +1,103 @@ +import { Card, CardBody, CardHeader, Col, Row, Spinner } from 'reactstrap'; +import { useSelector } from 'react-redux'; +// import MuiDataTable from 'mui-datatables'; +import React from 'react'; +import * as hisSelector from '../../selectors/RR/HisDeploymentsSelector'; +import CsvDownloader from 'react-csv-downloader'; +import DataTable from 'react-data-table-component'; +import moment from 'moment'; + +const HisDeploymentsLinelist = () =>{ + const hisLinelist = useSelector( + hisSelector.getFacilityLinelist + ); + + + // const columns = [ + // { name: 'MFLCode', label: 'MFL CODE' }, + // { name: 'FacilityName', label: 'Facility Name' }, + // { name: 'KEPH_Level', label: 'KEPH Level' }, + // { name: 'County', label: 'County' }, + // { name: 'SubCounty', label: 'Sub County' }, + // { name: 'owner', label: 'Owner' }, + // { name: 'PartnerName', label: 'SDP' }, + // { name: 'AgencyName', label: 'Agency' }, + // { name: 'EMR', label: 'EMR' }, + // { name: 'EMR_Status', label: 'EMR Status' }, + // { name: 'InfrastructureType', label: 'Infrastructure Type' }, + // ]; + + return ( + <> + {/*<Row>*/} + {/* <Col>*/} + {/* <Card className="trends-card">*/} + {/* <CardHeader className="trends-header">*/} + {/* {`HIS DEPLOYMENT LINELIST`}*/} + {/* </CardHeader>*/} + {/* <CardBody className="trends-body">*/} + {/* <MuiDataTable*/} + {/* data={hisLinelist.list}*/} + {/* columns={columns}*/} + {/* options={{*/} + {/* responsive: 'simple',*/} + {/* selectableRows: 'none',*/} + {/* file: ''*/} + {/* }}*/} + {/* />*/} + {/* </CardBody>*/} + {/* </Card>*/} + {/* </Col>*/} + {/*</Row>*/} + + <Card className="trends-card"> + <CardHeader className="trends-header"> + HIS DEPLOYMENT LINELIST + { + hisLinelist.loading === true ? + <Spinner className="pull-right"/> : + <CsvDownloader + filename={`ndwh_his_deployment_facility_linelist_${moment().format('YYYY_MM_DD')}`} + separator="," + datas={hisLinelist.list} + className="pull-right" + > + <i className="bordered download icon inverted black"></i> + </CsvDownloader> + } + </CardHeader> + <CardBody className="trends-body"> + <DataTable + columns={[ + { selector: 'MFLCode', name: 'MFL CODE' }, + { selector: 'FacilityName', name: 'Facility Name' }, + { selector: 'KEPH_Level', name: 'KEPH Level' }, + { selector: 'County', name: 'County' }, + { selector: 'SubCounty', name: 'Sub County' }, + { selector: 'owner', name: 'Owner' }, + { selector: 'PartnerName', name: 'SDP' }, + { selector: 'AgencyName', name: 'Agency' }, + { selector: 'EMR', name: 'EMR' }, + { selector: 'EMR_Status', name: 'EMR Status' }, + { selector: 'InfrastructureType', name: 'Infrastructure Type' }, + ]} + data={hisLinelist.list} + noHeader + dense + defaultSortField="MFLCode" + defaultSortAsc={true} + pagination + paginationPerPage={20} + responsive + highlightOnHover + progressPending={hisLinelist.loading} + progressComponent={<Spinner/>} + /> + </CardBody> + </Card> + </> + ); +} + + +export default HisDeploymentsLinelist diff --git a/src/views/RR/HisDeploymentsOverview.js b/src/views/RR/HisDeploymentsOverview.js new file mode 100644 index 00000000..7191798a --- /dev/null +++ b/src/views/RR/HisDeploymentsOverview.js @@ -0,0 +1,65 @@ +import { Card, CardBody, CardHeader, Col, Row } from 'reactstrap'; +import { formatNumber } from '../../utils/utils'; +import React from 'react'; +import * as hisSelector from '../../selectors/RR/HisDeploymentsSelector'; +import { useSelector } from 'react-redux'; + +const HisDeploymentsOverview = () =>{ + const hisStatusData = useSelector( + hisSelector.getFacilityStatus + ); + return ( + <> + <Row> + <Col> + <Card className="card-uploads-consistency-rates"> + <CardHeader className="expected-uploads-header"> + ACTIVE + </CardHeader> + <CardBody + className="align-items-center d-flex justify-content-center" + style={{ textAlign: 'center', backgroundColor: '#F6F6F6', height: '100px' }} + > + <div className="col-12"> + <span className="expected-uploads-text">{formatNumber(hisStatusData.active)} </span> + </div> + </CardBody> + </Card> + </Col> + <Col> + <Card className="card-uploads-consistency-rates"> + <CardHeader className="expected-uploads-header"> + DISCONTINUED + </CardHeader> + <CardBody + className="align-items-center d-flex justify-content-center" + style={{ textAlign: 'center', backgroundColor: '#F6F6F6', height: '100px' }} + > + <div className="col-12"> + <span className="expected-uploads-text">{formatNumber(hisStatusData.discontinued)} </span> + </div> + </CardBody> + </Card> + </Col> + <Col> + <Card className="card-uploads-consistency-rates"> + <CardHeader className="expected-uploads-header"> + STALLED/INACTIVE + </CardHeader> + <CardBody + className="align-items-center d-flex justify-content-center" + style={{ textAlign: 'center', backgroundColor: '#F6F6F6', height: '100px' }} + > + <div className="col-12"> + <span className="expected-uploads-text">{formatNumber(hisStatusData.stalled)} </span> + </div> + </CardBody> + </Card> + </Col> + </Row> + </> + ) +} + + +export default HisDeploymentsOverview diff --git a/src/views/RR/HisDeploymentsTxcurr.js b/src/views/RR/HisDeploymentsTxcurr.js new file mode 100644 index 00000000..2e197d22 --- /dev/null +++ b/src/views/RR/HisDeploymentsTxcurr.js @@ -0,0 +1,58 @@ +import { Card, CardBody, CardHeader, Spinner } from 'reactstrap'; +import { useSelector } from 'react-redux'; +import React from 'react'; +import * as hisSelector from '../../selectors/RR/HisDeploymentsSelector'; +import CsvDownloader from 'react-csv-downloader'; +import DataTable from 'react-data-table-component'; +import moment from 'moment'; + +const HisDeploymentsTxCurr = () =>{ + const hisTxcurr = useSelector( + hisSelector.getFacilityTxCurr + ); + + + return ( + <> + + <Card className="trends-card"> + <CardHeader className="trends-header"> + HIS TXCURR BY KEPH LEVEL FOR EMR SITES LINELIST + { + hisTxcurr.loading === true ? + <Spinner className="pull-right"/> : + <CsvDownloader + filename={`ndwh_his_deployment_facility_linelist_${moment().format('YYYY_MM_DD')}`} + separator="," + datas={hisTxcurr.list} + className="pull-right" + > + <i className="bordered download icon inverted black"></i> + </CsvDownloader> + } + </CardHeader> + <CardBody className="trends-body"> + <DataTable + columns={[ + { selector: 'KEPH_Level', name: 'KEPH Level' }, + { selector: 'TxCurr', name: 'TXCURR' }, + ]} + data={hisTxcurr.list} + noHeader + dense + defaultSortAsc={true} + pagination + paginationPerPage={20} + responsive + highlightOnHover + progressPending={hisTxcurr.loading} + progressComponent={<Spinner/>} + /> + </CardBody> + </Card> + </> + ); +} + + +export default HisDeploymentsTxCurr diff --git a/src/views/RR/RR.js b/src/views/RR/RR.js index 12ff6a20..dc9e0afd 100644 --- a/src/views/RR/RR.js +++ b/src/views/RR/RR.js @@ -20,15 +20,11 @@ import { LOADING_DELAY, RR_TABS, PAGES } from "../../constants"; import Loading from './../Shared/Loading'; import UniversalFilter from '../Shared/UniversalFilter'; import SectionHeader from './../Shared/SectionHeader'; -import SectionFooter from './../Shared/SectionFooter'; -import moment from 'moment'; import { useHistory, useParams } from 'react-router-dom'; -const RROverview = Loadable({ loader: () => import('./RROverview'), loading: Loading, delay: LOADING_DELAY }); -const RROverviewTrends = Loadable({ loader: () => import('./RROverviewTrends'), loading: Loading, delay: LOADING_DELAY }); -const RRCounty = Loadable({ loader: () => import('./RRCounty'), loading: Loading, delay: LOADING_DELAY }); -const RRPartner = Loadable({ loader: () => import('./RRPartner'), loading: Loading, delay: LOADING_DELAY }); -const RRIndicatorDefinition = Loadable({ loader: () => import('./RRIndicatorDefinition'), loading: Loading, delay: LOADING_DELAY }); + +const RRTab = Loadable({ loader: () => import('./RRTab'), loading: Loading, delay: LOADING_DELAY }); +const HisDeployments = Loadable({ loader: () => import('./HisDeployments'), loading: Loading, delay: LOADING_DELAY }); const RR = () => { const dispatch = useDispatch(); @@ -108,7 +104,7 @@ const RR = () => { if (!active_tab) { history.push(`/reporting-rates/${DEFAULT_ACTIVE_TAB}`); } - }, []); + }, [DEFAULT_ACTIVE_TAB]); if(!active_tab){ history.push(`/reporting-rates/${rrTab}`); @@ -126,25 +122,22 @@ const RR = () => { {renderTabNavItems()} </Nav> <TabContent activeTab={active_tab}> - <TabPane tabId={active_tab}> + <TabPane tabId={'ct'}> <SectionHeader title="REPORTING RATES" description="OVERVIEW"/> <VisibilitySensor onChange={onVisibilityChange}> <UniversalFilter/> </VisibilitySensor> - <RRIndicatorDefinition /> - <RROverview/> - <RROverviewTrends/> - <SectionFooter overview={"The Overall reporting rates refers to the proportion of EMR sites that submitted the most recent i.e. The "+ moment().format('MMMM, YYYY') + " Overall reporting rates in the number of EMR sites that uploaded data to the NDW in " + moment().format('MMMM, YYYY') + " and so forth."} - /> - {/*<SectionHeader title="REPORTING RATES" description="BY COUNTY"/>*/} - <RRCounty/> - <SectionFooter overview={"The overall reporting rate for "+ moment().format('MMMM, YYYY') +" is the number of EMR sites that uploaded data in "+ moment().format('MMMM, YYYY') } - /> - {/*<SectionHeader title="REPORTING RATES" description="BY PARTNER"/>*/} - <RRPartner/> - <SectionFooter overview={'The overall reporting rate for ' + moment().format('MMMM, YYYY') +",is the number of EMR sites that uploaded data in " + moment().format('MMMM, YYYY') } - - /> + <RRTab/> + </TabPane> + <TabPane tabId={'hts'}> + <SectionHeader title="REPORTING RATES" description="OVERVIEW"/> + <VisibilitySensor onChange={onVisibilityChange}> + <UniversalFilter/> + </VisibilitySensor> + <RRTab/> + </TabPane> + <TabPane tabId={'his'}> + <HisDeployments/> </TabPane> </TabContent> <p></p><p></p> diff --git a/src/views/RR/RRCounty.js b/src/views/RR/RRCounty.js index 7cc1835f..a4a57dea 100644 --- a/src/views/RR/RRCounty.js +++ b/src/views/RR/RRCounty.js @@ -107,14 +107,14 @@ const RRCounty = () => { consistency_values.sort(function(a, b) { return b.y - a.y; }); - const consistency_counties = consistency_values.map(obj => capitalize(obj.county)); + const consistency_counties = consistency_values?.map(obj => capitalize(obj.county)); - const counties = overallReportingRateResult.map(({ county }) => county); - const emrResultSeries = overallReportingRateResult.map(({ expected }) => parseInt(expected, 10)); + const counties = overallReportingRateResult?.map(({ county }) => county); + const emrResultSeries = overallReportingRateResult?.map(({ expected }) => parseInt(expected, 10)); setReportingByCounty({ title: { text: '' }, - xAxis: [{ categories: counties.map(name=> name?name.toUpperCase(): name), title: { text: 'Counties'.toUpperCase() }, crosshair: true }], + xAxis: [{ categories: counties?.map(name=> name ? name?.toUpperCase() : name), title: { text: 'COUNTIES' }, crosshair: true }], yAxis: [ { title: { text: 'NUMBER OF EMR SITES' } } ], diff --git a/src/views/RR/RROverview.js b/src/views/RR/RROverview.js index facabc5e..d0f78939 100644 --- a/src/views/RR/RROverview.js +++ b/src/views/RR/RROverview.js @@ -19,19 +19,19 @@ const RROverview = () => { const overallReportingRatesByFacilityReportedFiltered = useSelector(state => state.overallReportingRatesByFacilityReported.listFiltered); const overallReportingRatesByFacilityReportedUnFiltered = useSelector(state => state.overallReportingRatesByFacilityReported.listUnfiltered); const overallReportingRatesByFacilityReportedList = filters.filtered ? overallReportingRatesByFacilityReportedFiltered[rrTab] : overallReportingRatesByFacilityReportedUnFiltered[rrTab]; - const overallReportingRatesByFacilityReported = overallReportingRatesByFacilityReportedList.length ? overallReportingRatesByFacilityReportedList : []; + const overallReportingRatesByFacilityReported = overallReportingRatesByFacilityReportedList?.length ? overallReportingRatesByFacilityReportedList : []; const overallReportingRatesByFacilityReportedLoading = useSelector(state => state.overallReportingRatesByFacilityReported.loading)[rrTab]; const overallReportingRatesByFacilityNotReportedFiltered = useSelector(state => state.overallReportingRatesByFacilityNotReported.listFiltered); const overallReportingRatesByFacilityNotReportedUnFiltered = useSelector(state => state.overallReportingRatesByFacilityNotReported.listUnfiltered); const overallReportingRatesByFacilityNotReportedList = filters.filtered ? overallReportingRatesByFacilityNotReportedFiltered[rrTab] : overallReportingRatesByFacilityNotReportedUnFiltered[rrTab]; - const overallReportingRatesByFacilityNotReported = overallReportingRatesByFacilityNotReportedList.length ? overallReportingRatesByFacilityNotReportedList : []; + const overallReportingRatesByFacilityNotReported = overallReportingRatesByFacilityNotReportedList?.length ? overallReportingRatesByFacilityNotReportedList : []; const overallReportingRatesByFacilityNotReportedLoading = useSelector(state => state.overallReportingRatesByFacilityNotReported.loading)[rrTab]; const consistencyByFacilityNotReportedFiltered = useSelector(state => state.consistencyByFacilityNotReported.listFiltered); const consistencyByFacilityNotReportedUnFiltered = useSelector(state => state.consistencyByFacilityNotReported.listUnfiltered); const consistencyByFacilityNotReportedList = filters.filtered ? consistencyByFacilityNotReportedFiltered[rrTab] : consistencyByFacilityNotReportedUnFiltered[rrTab]; - const consistencyByFacilityNotReported = consistencyByFacilityNotReportedList.length ? consistencyByFacilityNotReportedList : []; + const consistencyByFacilityNotReported = consistencyByFacilityNotReportedList?.length ? consistencyByFacilityNotReportedList : []; const consistencyByFacilityNotReportedLoading = useSelector(state => state.consistencyByFacilityNotReported.loading)[rrTab]; const getPerc = (count, total) => { @@ -57,7 +57,7 @@ const RROverview = () => { moment(params.fromDate, "MMM YYYY").startOf('month').subtract(1, 'month').format('YYYY,M') : moment().startOf('month').subtract(2, 'month').format('YYYY,M'); const data = await getAll('manifests/expected/' + rrTab, params); - setExpected(data.expected.toLocaleString('en')); + setExpected(data?.expected?.toLocaleString('en')); }, [filters, rrTab]); const loadConsistnecy = useCallback(async () => { @@ -184,6 +184,8 @@ const RROverview = () => { loadExpected(); loadConsistnecy(); loadRecency(); + loadFacilityInfrastructureType(); + loadImplementationDate(); }, [loadExpected, loadConsistnecy, loadRecency]); return ( @@ -275,6 +277,75 @@ const RROverview = () => { </CardBody> </Card> </div> + {(rrTab === 'ct') ? ( + <> + {/*<div className="col">*/} + {/* <Card className="card-uploads-consistency-rates">*/} + {/* <CardHeader className="expected-uploads-header">*/} + {/* FACILITIES RECENTLY MIGRATED FROM PAPER*/} + {/* </CardHeader>*/} + {/* <CardBody*/} + {/* className="align-items-center d-flex justify-content-center"*/} + {/* style={{*/} + {/* textAlign: 'center',*/} + {/* backgroundColor: '#F6F6F6',*/} + {/* height: '100px',*/} + {/* }}*/} + {/* >*/} + {/* <div className="col-12">*/} + {/* <span className="expected-uploads-text">*/} + {/* {implementationStats}*/} + {/* </span>*/} + {/* </div>*/} + {/* </CardBody>*/} + {/* </Card>*/} + {/*</div>*/} + {/*<div className="col">*/} + {/* <Card className="card-uploads-consistency-rates">*/} + {/* <CardHeader className="expected-uploads-header">*/} + {/* FACILITIES ON CLOUD*/} + {/* </CardHeader>*/} + {/* <CardBody*/} + {/* className="align-items-center d-flex justify-content-center"*/} + {/* style={{*/} + {/* textAlign: 'center',*/} + {/* backgroundColor: '#F6F6F6',*/} + {/* height: '100px',*/} + {/* }}*/} + {/* >*/} + {/* <div className="col-12">*/} + {/* <span className="expected-uploads-text">*/} + {/* {infrastructureStats.onCloud?.facilities_number.toLocaleString(*/} + {/* 'en'*/} + {/* ) || 0}*/} + {/* </span>*/} + {/* </div>*/} + {/* </CardBody>*/} + {/* </Card>*/} + {/*</div>*/} + {/*<div className="col">*/} + {/* <Card className="card-uploads-consistency-rates">*/} + {/* <CardHeader className="expected-uploads-header">*/} + {/* FACILITIES ON PREMISES*/} + {/* </CardHeader>*/} + {/* <CardBody*/} + {/* className="align-items-center d-flex justify-content-center"*/} + {/* style={{*/} + {/* textAlign: 'center',*/} + {/* backgroundColor: '#F6F6F6',*/} + {/* height: '100px',*/} + {/* }}*/} + {/* >*/} + {/* <div className="col-12">*/} + {/* <span className="expected-uploads-text">*/} + {/* {infrastructureStats.onPremises?.facilities_number.toLocaleString('en') || 0}*/} + {/* </span>*/} + {/* </div>*/} + {/* </CardBody>*/} + {/* </Card>*/} + {/*</div>*/} + </> + ): (<></>)} </div> <div className="row"> <div className="col-4"> diff --git a/src/views/RR/RROverviewTrends.js b/src/views/RR/RROverviewTrends.js index d4aaf897..2ff0d294 100644 --- a/src/views/RR/RROverviewTrends.js +++ b/src/views/RR/RROverviewTrends.js @@ -67,12 +67,12 @@ const RROverviewTrends = () => { data[monthYear] = parseInt(element.recency); } } - const categories = Object.values(months).slice(-12); + const categories = filters.fromDate ? Object.values(months).slice(-12) : Object.values(months).slice(-13, -1); const dataRecent = Object.values(data).slice(-12); const dataProcessed = dataRecent.map(d => Math.round((d/expected) * 100)); setOverallReportingTrend({ title: { text: '', }, - xAxis: [{ labels: { style: { fontSize: '9px' } },categories: categories.map(name => name ? name.toUpperCase() : name), crosshair: true }], + xAxis: [{ labels: { style: { fontSize: '9px' } },categories: categories?.map(name => name ? name.toUpperCase() : name), crosshair: true }], yAxis: [{ title: { text: 'Percentage'.toUpperCase() }, labels: { format: '{value}' } }], plotOptions: { column: { dataLabels: { enabled: true, format: '<b>{point.y} %</b>' } } }, legend: { enabled: false }, @@ -97,6 +97,8 @@ const RROverviewTrends = () => { params.period = moment(params.fromDate, 'MMM YYYY') .format('YYYY,M'); let endDate = moment() + .subtract(1, 'month') + .add(ETL_DAY, 'days') .endOf('month'); if (filters.toDate || filters.fromDate) { endDate = moment(filters.toDate || filters.fromDate, 'MMM YYYY').endOf('month'); @@ -121,7 +123,7 @@ const RROverviewTrends = () => { data[monthYear] = parseInt(element.consistency); } } - const categories = Object.values(months).slice(-12); + const categories = filters.fromDate ? Object.values(months).slice(-12) : Object.values(months).slice(-13, -1); const dataRecent = Object.values(data).slice(-12); const dataProcessed = dataRecent.map(d => Math.round((d/expected) * 100)); setConsistencyTrend({ diff --git a/src/views/RR/RRPartner.js b/src/views/RR/RRPartner.js index 4a3db309..11ecc6f0 100644 --- a/src/views/RR/RRPartner.js +++ b/src/views/RR/RRPartner.js @@ -115,7 +115,7 @@ const RRPartner = () => { setReportingByPartner({ title: { text: '' }, - xAxis: [{ categories: partners.map(name => name.toUpperCase()), title: { text: 'Partners'.toUpperCase() }, crosshair: true }], + xAxis: [{ categories: partners?.map(name => name?.toUpperCase()), title: { text: 'Partners'.toUpperCase() }, crosshair: true }], yAxis: [ { title: { text: 'Number of EMR Sites'.toUpperCase() } }, // { title: { text: 'Percentage (%) Reporting Rate'}, opposite: true, min: 0, max: 100 }, diff --git a/src/views/RR/RRTab.js b/src/views/RR/RRTab.js new file mode 100644 index 00000000..861fa0aa --- /dev/null +++ b/src/views/RR/RRTab.js @@ -0,0 +1,31 @@ +import SectionFooter from '../Shared/SectionFooter'; +import moment from 'moment/moment'; +import React from 'react'; +import Loadable from 'react-loadable'; +import Loading from '../Shared/Loading'; +import { LOADING_DELAY } from '../../constants'; +const RROverview = Loadable({ loader: () => import('./RROverview'), loading: Loading, delay: LOADING_DELAY }); +const RROverviewTrends = Loadable({ loader: () => import('./RROverviewTrends'), loading: Loading, delay: LOADING_DELAY }); +const RRCounty = Loadable({ loader: () => import('./RRCounty'), loading: Loading, delay: LOADING_DELAY }); +const RRPartner = Loadable({ loader: () => import('./RRPartner'), loading: Loading, delay: LOADING_DELAY }); +const RRIndicatorDefinition = Loadable({ loader: () => import('./RRIndicatorDefinition'), loading: Loading, delay: LOADING_DELAY }); + +const RRTab = () => { + + return ( + <div> + <RRIndicatorDefinition /> + <RROverview/> + <RROverviewTrends/> + <SectionFooter overview={"The Overall reporting rates refers to the proportion of EMR sites that submitted the most recent i.e. The "+ moment().format('MMMM, YYYY') + " Overall reporting rates in the number of EMR sites that uploaded data to the NDW in " + moment().format('MMMM, YYYY') + " and so forth."} /> + {/*<SectionHeader title="REPORTING RATES" description="BY COUNTY"/>*/} + <RRCounty/> + <SectionFooter overview={"The overall reporting rate for "+ moment().format('MMMM, YYYY') +" is the number of EMR sites that uploaded data in "+ moment().format('MMMM, YYYY') } /> + {/*<SectionHeader title="REPORTING RATES" description="BY PARTNER"/>*/} + <RRPartner/> + <SectionFooter overview={'The overall reporting rate for ' + moment().format('MMMM, YYYY') +",is the number of EMR sites that uploaded data in " + moment().format('MMMM, YYYY') } /> + </div> + ) +} + +export default RRTab diff --git a/src/views/Shared/countyMapping.json b/src/views/Shared/countyMapping.json index 18d33221..ef5faa5d 100644 --- a/src/views/Shared/countyMapping.json +++ b/src/views/Shared/countyMapping.json @@ -7,7 +7,7 @@ { "id": 26, "name": "Trans Nzoia" }, { "id": 7, "name": "Garissa" }, { "id": 43, "name": "Homa Bay" }, - { "id": 28, "name": "Elgeyo-Marakwet" }, + { "id": 28, "name": "Elgeyo Marakwet" }, { "id": 14, "name": "Embu" }, { "id": 39, "name": "Bungoma" }, { "id": 40, "name": "Busia" }, @@ -46,4 +46,4 @@ { "id": 33, "name": "Narok" }, { "id": 46, "name": "Nyamira" }, { "id": 24, "name": "West Pokot" } -] \ No newline at end of file +] diff --git a/src/views/Tafsiri/Tafsiri.js b/src/views/Tafsiri/Tafsiri.js new file mode 100644 index 00000000..3259c20f --- /dev/null +++ b/src/views/Tafsiri/Tafsiri.js @@ -0,0 +1,542 @@ +import { useState } from 'react'; +import { + Stack, + Typography, + TextField, + Button, + Box, + Card, + CardContent, + IconButton, + Tooltip, + CircularProgress, + Table, + TableBody, + TableCell, + TableContainer, + TableHead, + TableRow, + Paper, + Snackbar, + Fab, + Modal, + Rating, +} from '@mui/material'; +import { FileCopy as FileCopyIcon } from '@mui/icons-material'; +import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter'; +import { materialLight } from 'react-syntax-highlighter/dist/esm/styles/prism'; +import RateReviewIcon from '@mui/icons-material/RateReview'; +import userManager from '../../services/UserService'; + +const BACKEND_URL = process.env.REACT_APP_BACKEND_URL; +const SUPERSET_URL = process.env.REACT_APP_SUPERSET_URL; +const SUPERSET_USERNAME = process.env.REACT_APP_SUPERSET_USERNAME; +const SUPERSET_PASSWORD = process.env.REACT_APP_SUPERSET_PASSWORD; + +const Tafsiri = () => { + const [query, setQuery] = useState(''); + const [sqlQuery, setSqlQuery] = useState(''); + const [data, setData] = useState([]); + const [columns, setColumns] = useState([]); + const [copied, setCopied] = useState(false); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(''); + const [queryGenerated, setQueryGenerated] = useState(false); + const [feedback, setFeedback] = useState(''); + const [feedbackSent, setFeedbackSent] = useState(false); + const [feedbackError, setFeedbackError] = useState(''); + const [vizType, setVizType] = useState('table'); + const handleChange = (event) => { + setVizType(event.target.value); + }; + const [open, setOpen] = useState(false); + const handleOpen = () => setOpen(true); + const handleClose = () => setOpen(false); + const [ratingValue, setRatingValue] = useState(2); + const style = { + position: 'absolute', + top: '50%', + left: '50%', + transform: 'translate(-50%, -50%)', + width: 400, + bgcolor: 'background.paper', + boxShadow: 24, + p: 4, + }; + + const handleCopy = () => { + navigator.clipboard + .writeText(sqlQuery) + .then(() => { + setCopied(true); + setTimeout(() => setCopied(false), 2000); + }) + .catch((err) => { + console.error('Failed to copy text: ', err); + }); + }; + // Variable that will store objectId + + const handleGenerateSQL = async () => { + setLoading(true); + setSqlQuery(''); // Clear previous SQL query + setData([]); // Clear previous data + setColumns([]); // Clear previous columns + setError(''); // Clear previous error + setQueryGenerated(false); + console.log('Backend URL:' + BACKEND_URL); + console.log('Superset URL' + SUPERSET_URL); + try { + // Fetch the user and get user_id + const user = await userManager.getUser(); + const user_id = user.profile.sub; + + const response = await fetch( + BACKEND_URL + '/query_from_natural_language', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*', + }, + body: JSON.stringify({ + question: query, + user_id: user_id, + }), + } + ); + const result = await response.json(); + const responseId = result.saved_response_id; + // Save responseId to local storage + localStorage.setItem('responseId', responseId); + if (response.ok) { + setSqlQuery(result.sql_query || ''); // Set SQL query or empty if not available + setQueryGenerated(true); + if (result.sql_query) { + const resultData = result.data || []; + setData(resultData); + if (resultData.length > 0) { + setColumns(Object.keys(resultData[0])); + } else { + setError('No data available for the given SQL query.'); + } + } else { + setError(result.message || 'Failed to execute SQL.'); + } + } + } catch (error) { + console.error('Error generating SQL:', error); + setError('An unexpected error occurred while generating the SQL.'); + } finally { + setLoading(false); + } + }; + + const handleQueryChange = (event) => { + setQuery(event.target.value); + }; + + const handleFeedbackChange = (event) => { + setFeedback(event.target.value); + }; + + const handleSendFeedback = async () => { + const responseId = localStorage.getItem('responseId'); + if (!feedback) { + setFeedbackError('Feedback cannot be empty.'); + return; + } + + try { + const response = await fetch(BACKEND_URL + `/rate/${responseId}`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*', + }, + body: JSON.stringify({ + response_rating: ratingValue, + response_rating_feedback: feedback, + }), + }); + if (response.ok) { + setFeedbackSent(true); + setFeedback(''); + setFeedbackError(''); + } else { + setFeedbackError( + 'Failed to send feedback. Please try again later.' + ); + } + } catch (error) { + console.error('Error sending feedback:', error); + setFeedbackError( + 'An unexpected error occurred while sending feedback.' + ); + } + }; + // Handles running the query on Apache Superset + const handleSuperset = async () => { + setLoading(true); + try { + // Get Access token from Superset + const response = await fetch( + SUPERSET_URL + '/api/v1/security/login', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*', + }, + body: JSON.stringify({ + password: SUPERSET_PASSWORD, + provider: 'db', + refresh: true, + username: SUPERSET_USERNAME, + }), + } + ); + if (response.ok) { + const result = await response.json(); + console.log('Logged in to Superset:', result); + const accessToken = result.access_token; + const date = new Date() + .toISOString() + .replace(/[-:.]/g, '') + .replace('T', '_') + .split('.')[0]; + // Save Query on Superset instance + const response2 = await fetch( + SUPERSET_URL + '/api/v1/saved_query/', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*', + Authorization: `Bearer ${accessToken}`, + }, + body: JSON.stringify({ + db_id: 2, + description: '', + label: 'tafsiriquery' + date, + sql: sqlQuery, + schema: 'dbo', + }), + } + ); + // Open Superset on New tab with the saved query + if (response2.ok) { + const result2 = await response2.json(); + console.log('Saved query on Superset:', result2); + window + .open( + SUPERSET_URL + '/sqllab?savedQueryId=' + result2.id, + '_blank' + ) + .focus(); + } else { + console.error('Failed to save query on Superset.'); + } + } else { + console.error('Failed to save query on Superset.'); + } + } catch (error) { + console.error('Error logging in to Superset:', error); + } finally { + setLoading(false); + } + }; + return ( + <Box + sx={{ + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + p: 2, + }} + > + <Card sx={{ width: '100%', maxWidth: 800, p: 2 }}> + <CardContent> + <Stack spacing={3}> + <Typography + variant="h2" + component="h2" + gutterBottom + sx={{ + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + p: 2, + }} + > + TAFSIRI + </Typography> + <Typography + variant="h6" + component="h6" + gutterBottom + sx={{ + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + }} + > + <em> + Trasformational AI For SQL Inferences and + Reporting Integration + </em> + </Typography> + + <TextField + id="outlined-textarea" + label="Enter your question" + placeholder="What would you like to ask today..." + multiline + fullWidth + variant="outlined" + value={query} + onChange={handleQueryChange} + /> + + <Box sx={{ display: 'flex', justifyContent: 'center' }}> + <Button + variant="contained" + size="large" + sx={{ textTransform: 'none' }} + onClick={handleGenerateSQL} + disabled={loading} + > + {loading ? ( + <CircularProgress size={24} /> + ) : ( + 'Generate' + )} + </Button> + </Box> + + <Typography variant="body1" component="p"> + Your SQL query is here: + </Typography> + + <Box + sx={{ + position: 'relative', + p: 2, + borderRadius: 1, + overflow: 'hidden', + bgcolor: '#f5f5f5', + border: '1px solid #ddd', + }} + > + <SyntaxHighlighter + language="sql" + style={materialLight} + > + {sqlQuery || 'SQL query will be shown here.'} + </SyntaxHighlighter> + <Tooltip title={copied ? 'Copied!' : 'Copy'}> + <IconButton + onClick={handleCopy} + size="small" + sx={{ + position: 'absolute', + top: 8, + right: 8, + bgcolor: 'white', + boxShadow: 1, + }} + disabled={!sqlQuery} + > + <FileCopyIcon fontSize="small" /> + </IconButton> + </Tooltip> + </Box> + + {data.length > 0 ? ( + <div + style={{ + display: 'flex', + justifyContent: 'space-between', + }} + > + <Typography variant="body1" component="p"> + Query Results: + </Typography> + <Box + sx={{ + display: 'flex', + justifyContent: 'center', + }} + > + <Button + variant="contained" + size="large" + sx={{ textTransform: 'none' }} + onClick={handleSuperset} + disabled={loading} + > + {loading ? ( + <CircularProgress size={24} /> + ) : ( + 'Run on Superset' + )} + </Button> + </Box> + + {/* <FormControl sx={{ width: 320 }}> + <InputLabel id="labelVizType">Select Visualization</InputLabel> + <Select labelId="labelVizType" id="vizType" value={vizType} onChange={handleChange} label="Select Visualization"> + <MenuItem value="table">Table</MenuItem> + <MenuItem value="pie-chart">Pie Chart</MenuItem> + <MenuItem value="bar-chart">Bar Chart</MenuItem> + </Select> + </FormControl> */} + </div> + ) : null} + + {error && ( + <Typography + variant="body2" + color="error" + component="p" + > + {error} + </Typography> + )} + + {data.length > 0 ? ( + <TableContainer component={Paper}> + <Table> + <TableHead> + <TableRow> + {columns.map((column, index) => ( + <TableCell key={index}> + {column} + </TableCell> + ))} + </TableRow> + </TableHead> + <TableBody> + {data.map((row, rowIndex) => ( + <TableRow key={rowIndex}> + {columns.map( + (column, colIndex) => ( + <TableCell + key={colIndex} + > + {row[column]} + </TableCell> + ) + )} + </TableRow> + ))} + </TableBody> + </Table> + </TableContainer> + ) : ( + queryGenerated && ( + <Box + sx={{ + position: 'relative', + p: 2, + borderRadius: 1, + overflow: 'hidden', + bgcolor: '#f5f5f5', + border: '1px solid #ddd', + }} + > + <Typography variant="body2" component="p"> + No results to display. Please generate + and run a query. + </Typography> + </Box> + ) + )} + </Stack> + </CardContent> + </Card> + {data.length > 0 ? ( + <div> + <Fab + aria-label="edit" + onClick={handleOpen} + sx={{ + position: 'fixed', + bottom: 16, + right: 16, + bgcolor: '#1976d2', + color: 'white', + '&:hover': { + bgcolor: '#1565c0', + }, + }} + > + <RateReviewIcon /> + </Fab> + + <Modal + open={open} + onClose={handleClose} + aria-labelledby="modal-modal-title" + aria-describedby="modal-modal-description" + > + <Box sx={style}> + <Typography variant="body1" component="h3"> + How was your experience using TAFSIRI? + </Typography> + <Rating + name="simple-controlled" + value={ratingValue} + onChange={(event, newValue) => { + setRatingValue(newValue); + }} + /> + <TextField + id="outlined-feedback" + label="Your feedback" + placeholder="Let us know what you think..." + multiline + fullWidth + variant="outlined" + value={feedback} + onChange={handleFeedbackChange} + /> + <Box + sx={{ + display: 'flex', + justifyContent: 'center', + }} + > + <Button + variant="contained" + size="large" + sx={{ textTransform: 'none' }} + onClick={handleSendFeedback} + > + Send Feedback + </Button> + </Box> + {feedbackError && ( + <Typography + variant="body2" + color="error" + component="p" + > + {feedbackError} + </Typography> + )} + <Snackbar + open={feedbackSent} + autoHideDuration={6000} + onClose={() => setFeedbackSent(false)} + message="Feedback sent successfully!" + /> + </Box> + </Modal> + </div> + ) : null} + </Box> + ); +}; + +export default Tafsiri; diff --git a/yarn.lock b/yarn.lock index c4dcfcd3..386c25a0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -223,6 +223,13 @@ dependencies: "@babel/types" "^7.13.12" +"@babel/helper-module-imports@^7.16.7": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" + integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== + dependencies: + "@babel/types" "^7.18.6" + "@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.13.14": version "7.13.14" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz#e600652ba48ccb1641775413cb32cfa4e8b495ef" @@ -289,11 +296,21 @@ dependencies: "@babel/types" "^7.12.13" +"@babel/helper-string-parser@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" + integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== + "@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.14.0": version "7.14.0" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288" integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A== +"@babel/helper-validator-identifier@^7.19.1": + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + "@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.17": version "7.12.17" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831" @@ -1195,6 +1212,14 @@ core-js-pure "^3.0.0" regenerator-runtime "^0.13.4" +"@babel/runtime-corejs3@^7.12.1": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.21.0.tgz#6e4939d9d9789ff63e2dc58e88f13a3913a24eba" + integrity sha512-TDD4UJzos3JJtM+tHX+w2Uc+KWj7GV+VKKFdMVd2Rx8sdA19hcc3P3AHFYd5LVOw+pYuSd5lICC3gm52B6Rwxw== + dependencies: + core-js-pure "^3.25.1" + regenerator-runtime "^0.13.11" + "@babel/runtime@7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.1.tgz#b4116a6b6711d010b2dad3b7b6e43bf1b9954740" @@ -1223,6 +1248,20 @@ dependencies: regenerator-runtime "^0.13.4" +"@babel/runtime@^7.18.3", "@babel/runtime@^7.21.0", "@babel/runtime@^7.8.7": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673" + integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw== + dependencies: + regenerator-runtime "^0.13.11" + +"@babel/runtime@^7.3.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.7.tgz#f4f0d5530e8dbdf59b3451b9b3e594b6ba082e12" + integrity sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw== + dependencies: + regenerator-runtime "^0.14.0" + "@babel/template@^7.10.4", "@babel/template@^7.12.13", "@babel/template@^7.3.3": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327" @@ -1299,6 +1338,15 @@ "@babel/helper-validator-identifier" "^7.12.11" to-fast-properties "^2.0.0" +"@babel/types@^7.18.6": + version "7.21.3" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.3.tgz#4865a5357ce40f64e3400b0f3b737dc6d4f64d05" + integrity sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg== + dependencies: + "@babel/helper-string-parser" "^7.19.4" + "@babel/helper-validator-identifier" "^7.19.1" + to-fast-properties "^2.0.0" + "@bcoe/v8-coverage@^0.2.3": version "0.2.3" resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" @@ -1353,17 +1401,92 @@ resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-10.1.0.tgz#f0950bba18819512d42f7197e56c518aa491cf18" integrity sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg== -"@emotion/is-prop-valid@^0.8.8": - version "0.8.8" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" - integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== +"@emotion/babel-plugin@^11.10.6": + version "11.10.6" + resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.10.6.tgz#a68ee4b019d661d6f37dec4b8903255766925ead" + integrity sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ== + dependencies: + "@babel/helper-module-imports" "^7.16.7" + "@babel/runtime" "^7.18.3" + "@emotion/hash" "^0.9.0" + "@emotion/memoize" "^0.8.0" + "@emotion/serialize" "^1.1.1" + babel-plugin-macros "^3.1.0" + convert-source-map "^1.5.0" + escape-string-regexp "^4.0.0" + find-root "^1.1.0" + source-map "^0.5.7" + stylis "4.1.3" + +"@emotion/cache@*", "@emotion/cache@^11.10.5", "@emotion/cache@^11.7.1": + version "11.10.5" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.10.5.tgz#c142da9351f94e47527ed458f7bbbbe40bb13c12" + integrity sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA== + dependencies: + "@emotion/memoize" "^0.8.0" + "@emotion/sheet" "^1.2.1" + "@emotion/utils" "^1.2.0" + "@emotion/weak-memoize" "^0.3.0" + stylis "4.1.3" + +"@emotion/hash@^0.9.0": + version "0.9.0" + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.0.tgz#c5153d50401ee3c027a57a177bc269b16d889cb7" + integrity sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ== + +"@emotion/is-prop-valid@^1.1.0", "@emotion/is-prop-valid@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz#7f2d35c97891669f7e276eb71c83376a5dc44c83" + integrity sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg== + dependencies: + "@emotion/memoize" "^0.8.0" + +"@emotion/memoize@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.0.tgz#f580f9beb67176fa57aae70b08ed510e1b18980f" + integrity sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA== + +"@emotion/react@^11.10.6": + version "11.10.6" + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.10.6.tgz#dbe5e650ab0f3b1d2e592e6ab1e006e75fd9ac11" + integrity sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw== + dependencies: + "@babel/runtime" "^7.18.3" + "@emotion/babel-plugin" "^11.10.6" + "@emotion/cache" "^11.10.5" + "@emotion/serialize" "^1.1.1" + "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0" + "@emotion/utils" "^1.2.0" + "@emotion/weak-memoize" "^0.3.0" + hoist-non-react-statics "^3.3.1" + +"@emotion/serialize@*", "@emotion/serialize@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.1.tgz#0595701b1902feded8a96d293b26be3f5c1a5cf0" + integrity sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA== dependencies: - "@emotion/memoize" "0.7.4" + "@emotion/hash" "^0.9.0" + "@emotion/memoize" "^0.8.0" + "@emotion/unitless" "^0.8.0" + "@emotion/utils" "^1.2.0" + csstype "^3.0.2" -"@emotion/memoize@0.7.4": - version "0.7.4" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" - integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== +"@emotion/sheet@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.1.tgz#0767e0305230e894897cadb6c8df2c51e61a6c2c" + integrity sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA== + +"@emotion/styled@^11.10.6": + version "11.10.6" + resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.10.6.tgz#d886afdc51ef4d66c787ebde848f3cc8b117ebba" + integrity sha512-OXtBzOmDSJo5Q0AFemHCfl+bUueT8BIcPSxu0EGTpGk6DmI5dnhSzQANm1e1ze0YZL7TDyAyy6s/b/zmGOS3Og== + dependencies: + "@babel/runtime" "^7.18.3" + "@emotion/babel-plugin" "^11.10.6" + "@emotion/is-prop-valid" "^1.2.0" + "@emotion/serialize" "^1.1.1" + "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0" + "@emotion/utils" "^1.2.0" "@emotion/stylis@^0.8.4": version "0.8.5" @@ -1375,6 +1498,26 @@ resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== +"@emotion/unitless@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.0.tgz#a4a36e9cbdc6903737cd20d38033241e1b8833db" + integrity sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw== + +"@emotion/use-insertion-effect-with-fallbacks@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz#ffadaec35dbb7885bd54de3fa267ab2f860294df" + integrity sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A== + +"@emotion/utils@*", "@emotion/utils@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.2.0.tgz#9716eaccbc6b5ded2ea5a90d65562609aab0f561" + integrity sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw== + +"@emotion/weak-memoize@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz#ea89004119dc42db2e1dba0f97d553f7372f6fcb" + integrity sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg== + "@eslint/eslintrc@^0.4.0": version "0.4.0" resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547" @@ -1651,6 +1794,139 @@ "@types/yargs" "^15.0.0" chalk "^4.0.0" +"@jridgewell/gen-mapping@^0.3.0": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" + integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/source-map@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" + integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@^0.3.9": + version "0.3.17" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" + integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@mui/base@5.0.0-alpha.122": + version "5.0.0-alpha.122" + resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-alpha.122.tgz#707c33834cfb627b81c273a25d50b2bef44a1256" + integrity sha512-IgZEFQyHa39J1+Q3tekVdhPuUm1fr3icddaNLmiAIeYTVXmR7KR5FhBAIL0P+4shlPq0liUPGlXryoTm0iCeFg== + dependencies: + "@babel/runtime" "^7.21.0" + "@emotion/is-prop-valid" "^1.2.0" + "@mui/types" "^7.2.3" + "@mui/utils" "^5.11.13" + "@popperjs/core" "^2.11.6" + clsx "^1.2.1" + prop-types "^15.8.1" + react-is "^18.2.0" + +"@mui/core-downloads-tracker@^5.11.14": + version "5.11.14" + resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-5.11.14.tgz#0ea7d3890fa50e1fc8028674f39ee8b39b7d43c0" + integrity sha512-rfc08z6+3Fif+Gopx2/qmk+MEQlwYeA+gOcSK048BHkTty/ol/boHuVeL2BNC/cf9OVRjJLYHtVb/DeW791LSQ== + +"@mui/icons-material@^5.11.11": + version "5.11.11" + resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.11.11.tgz#d4e01bd405b0dac779f5e060586277f91f3acb6e" + integrity sha512-Eell3ADmQVE8HOpt/LZ3zIma8JSvPh3XgnhwZLT0k5HRqZcd6F/QDHc7xsWtgz09t+UEFvOYJXjtrwKmLdwwpw== + dependencies: + "@babel/runtime" "^7.21.0" + +"@mui/material@^5.11.14": + version "5.11.14" + resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.11.14.tgz#f7e3fb9262d09b801deafd41c22dc2767c198c9d" + integrity sha512-uoiUyybmo+M+nYARBygmbXgX6s/hH0NKD56LCAv9XvmdGVoXhEGjOvxI5/Bng6FS3NNybnA8V+rgZW1Z/9OJtA== + dependencies: + "@babel/runtime" "^7.21.0" + "@mui/base" "5.0.0-alpha.122" + "@mui/core-downloads-tracker" "^5.11.14" + "@mui/system" "^5.11.14" + "@mui/types" "^7.2.3" + "@mui/utils" "^5.11.13" + "@types/react-transition-group" "^4.4.5" + clsx "^1.2.1" + csstype "^3.1.1" + prop-types "^15.8.1" + react-is "^18.2.0" + react-transition-group "^4.4.5" + +"@mui/private-theming@^5.11.13": + version "5.11.13" + resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.11.13.tgz#7841acc7e0d85e3aad223b1a0fad11be9349ef01" + integrity sha512-PJnYNKzW5LIx3R+Zsp6WZVPs6w5sEKJ7mgLNnUXuYB1zo5aX71FVLtV7geyPXRcaN2tsoRNK7h444ED0t7cIjA== + dependencies: + "@babel/runtime" "^7.21.0" + "@mui/utils" "^5.11.13" + prop-types "^15.8.1" + +"@mui/styled-engine@^5.11.11": + version "5.11.11" + resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.11.11.tgz#9084c331fdcff2210ec33adf37f34e94d67202e4" + integrity sha512-wV0UgW4lN5FkDBXefN8eTYeuE9sjyQdg5h94vtwZCUamGQEzmCOtir4AakgmbWMy0x8OLjdEUESn9wnf5J9MOg== + dependencies: + "@babel/runtime" "^7.21.0" + "@emotion/cache" "^11.10.5" + csstype "^3.1.1" + prop-types "^15.8.1" + +"@mui/system@^5.11.14": + version "5.11.14" + resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.11.14.tgz#7e7489e5266b56a6890043c623fa91a850a6669a" + integrity sha512-/MBv5dUoijJNEKEGi5tppIszGN0o2uejmeISi5vl0CLcaQsI1cd+uBgK+JYUP1VWvI/MtkWRLVSWtF2FWhu5Nw== + dependencies: + "@babel/runtime" "^7.21.0" + "@mui/private-theming" "^5.11.13" + "@mui/styled-engine" "^5.11.11" + "@mui/types" "^7.2.3" + "@mui/utils" "^5.11.13" + clsx "^1.2.1" + csstype "^3.1.1" + prop-types "^15.8.1" + +"@mui/types@^7.2.3": + version "7.2.3" + resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.2.3.tgz#06faae1c0e2f3a31c86af6f28b3a4a42143670b9" + integrity sha512-tZ+CQggbe9Ol7e/Fs5RcKwg/woU+o8DCtOnccX6KmbBc7YrfqMYEYuaIcXHuhpT880QwNkZZ3wQwvtlDFA2yOw== + +"@mui/utils@^5.11.13": + version "5.11.13" + resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.11.13.tgz#8d7317f221e8973200764820fa7f2a622dbc7150" + integrity sha512-5ltA58MM9euOuUcnvwFJqpLdEugc9XFsRR8Gt4zZNb31XzMfSKJPR4eumulyhsOTK1rWf7K4D63NKFPfX0AxqA== + dependencies: + "@babel/runtime" "^7.21.0" + "@types/prop-types" "^15.7.5" + "@types/react-is" "^16.7.1 || ^17.0.0" + prop-types "^15.8.1" + react-is "^18.2.0" + "@nodelib/fs.scandir@2.1.4": version "2.1.4" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69" @@ -1692,6 +1968,26 @@ schema-utils "^2.6.5" source-map "^0.7.3" +"@popperjs/core@^2.11.6": + version "2.11.7" + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.7.tgz#ccab5c8f7dc557a52ca3288c10075c9ccd37fff7" + integrity sha512-Cr4OjIkipTtcXKjAsm8agyleBuDHvxzeBoa1v543lbv1YaIwQjESsVcmjiWiPEbC1FIeHOG/Op9kdCmAmiS3Kw== + +"@react-dnd/asap@^4.0.0": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@react-dnd/asap/-/asap-4.0.1.tgz#5291850a6b58ce6f2da25352a64f1b0674871aab" + integrity sha512-kLy0PJDDwvwwTXxqTFNAAllPHD73AycE9ypWeln/IguoGBEbvFcPDbCV03G52bEcC5E+YgupBE0VzHGdC8SIXg== + +"@react-dnd/invariant@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@react-dnd/invariant/-/invariant-2.0.0.tgz#09d2e81cd39e0e767d7da62df9325860f24e517e" + integrity sha512-xL4RCQBCBDJ+GRwKTFhGUW8GXa4yoDfJrPbLblc3U09ciS+9ZJXJ3Qrcs/x2IODOdIE5kQxvMmE2UKyqUictUw== + +"@react-dnd/shallowequal@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@react-dnd/shallowequal/-/shallowequal-2.0.0.tgz#a3031eb54129f2c66b2753f8404266ec7bf67f0a" + integrity sha512-Pc/AFTdwZwEKJxFJvlxrSmGe/di+aAOBn60sremrpLo6VI/6cmiUYNNwlI5KNYttg7uypzA3ILPMPgxB2GYZEg== + "@reduxjs/toolkit@^1.8.5": version "1.8.5" resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-1.8.5.tgz#c14bece03ee08be88467f22dc0ecf9cf875527cd" @@ -1757,6 +2053,24 @@ dependencies: "@sinonjs/commons" "^1.7.0" +"@superset-ui/embedded-sdk@^0.1.0-alpha.8": + version "0.1.0-alpha.11" + resolved "https://registry.yarnpkg.com/@superset-ui/embedded-sdk/-/embedded-sdk-0.1.0-alpha.11.tgz#9a1ab1704f5278211b08dd0ba9271dc62119ff57" + integrity sha512-TYD7eLyk5csN5/ms723Oz6oE/jtk5tqp7smub+K/GSPZWy1aArLbWcEp0ARDdqLzRkRpc3gxEwCWDHs3IERAPg== + dependencies: + "@superset-ui/switchboard" "^0.18.26-0" + jwt-decode "^3.1.2" + +"@superset-ui/switchboard@^0.18.26-0": + version "0.18.26-2" + resolved "https://registry.yarnpkg.com/@superset-ui/switchboard/-/switchboard-0.18.26-2.tgz#d69abc5a4b2564c89eae2ee48b406491d308b6e7" + integrity sha512-yIuEv8QGS+j+SS3P3TGQ0wp9WGKGHJrI39kjh74N1HFZlHhfZEKZ28XdZIjOEXlqCr7pvrF0XPEzLHnGSsbtCg== + +"@superset-ui/switchboard@^1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@superset-ui/switchboard/-/switchboard-1.5.0.tgz#1f785a63167196cb319e7582062934660b2d99cb" + integrity sha512-t1bvVJP0dYXObkJRMiL3oBClg+vaih1kOSA7E1Ym3RWfPaLJYVr1vDzgnxKkMD4DXhNg9HPOeOzkBNbGqRwgCg== + "@surma/rollup-plugin-off-main-thread@^1.1.1": version "1.4.2" resolved "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz#e6786b6af5799f82f7ab3a82e53f6182d2b91a58" @@ -2005,6 +2319,13 @@ dependencies: "@types/node" "*" +"@types/hast@^2.0.0": + version "2.3.10" + resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.10.tgz#5c9d9e0b304bbb8879b857225c5ebab2d81d7643" + integrity sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw== + dependencies: + "@types/unist" "^2" + "@types/hoist-non-react-statics@^3.0.1", "@types/hoist-non-react-statics@^3.3.1": version "3.3.1" resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f" @@ -2045,11 +2366,16 @@ dependencies: "@types/istanbul-lib-report" "*" -"@types/json-schema@*", "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6": +"@types/json-schema@*", "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5": version "7.0.7" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== +"@types/json-schema@^7.0.8": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + "@types/json5@^0.0.29": version "0.0.29" resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" @@ -2085,6 +2411,11 @@ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== +"@types/prop-types@^15.7.5": + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + "@types/q@^1.5.1": version "1.5.4" resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" @@ -2097,6 +2428,20 @@ dependencies: "@types/react" "*" +"@types/react-is@^16.7.1 || ^17.0.0": + version "17.0.3" + resolved "https://registry.yarnpkg.com/@types/react-is/-/react-is-17.0.3.tgz#2d855ba575f2fc8d17ef9861f084acc4b90a137a" + integrity sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw== + dependencies: + "@types/react" "*" + +"@types/react-transition-group@^4.4.5": + version "4.4.5" + resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.5.tgz#aae20dcf773c5aa275d5b9f7cdbca638abc5e416" + integrity sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA== + dependencies: + "@types/react" "*" + "@types/react@*": version "17.0.6" resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.6.tgz#0ec564566302c562bf497d73219797a5e0297013" @@ -2163,6 +2508,11 @@ dependencies: source-map "^0.6.1" +"@types/unist@^2": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc" + integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA== + "@types/use-sync-external-store@^0.0.3": version "0.0.3" resolved "https://registry.yarnpkg.com/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz#b6725d5f4af24ace33b36fafd295136e75509f43" @@ -2516,6 +2866,11 @@ acorn@^8.1.0: resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.2.1.tgz#0d36af126fb6755095879c1dc6fd7edf7d60a5fb" integrity sha512-z716cpm5TX4uzOzILx8PavOE6C6DKshHDw1aQN52M/yNSqE9s5O8SMfyhCCfCJ3HmTL0NkVOi+8a/55T7YB3bg== +acorn@^8.5.0: + version "8.8.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" + integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== + address@1.1.2, address@^1.0.1: version "1.1.2" resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" @@ -2529,6 +2884,11 @@ adjust-sourcemap-loader@3.0.0: loader-utils "^2.0.0" regex-parser "^2.2.11" +adler-32@, adler-32@~1.3.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/adler-32/-/adler-32-1.3.1.tgz#1dbf0b36dda0012189a32b3679061932df1821e2" + integrity sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A== + aggregate-error@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" @@ -2609,6 +2969,11 @@ ansi-regex@^5.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" @@ -2679,6 +3044,14 @@ arr-union@^3.1.0: resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= +array-buffer-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" + integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== + dependencies: + call-bind "^1.0.2" + is-array-buffer "^3.0.1" + array-flatten@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" @@ -2841,6 +3214,11 @@ autoprefixer@^9.6.1: postcss "^7.0.32" postcss-value-parser "^4.1.0" +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + aws-sign2@~0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" @@ -2949,6 +3327,15 @@ babel-plugin-macros@2.8.0: cosmiconfig "^6.0.0" resolve "^1.12.0" +babel-plugin-macros@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1" + integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== + dependencies: + "@babel/runtime" "^7.12.5" + cosmiconfig "^7.0.0" + resolve "^1.19.0" + babel-plugin-named-asset-import@^0.3.7: version "0.3.7" resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz#156cd55d3f1228a5765774340937afc8398067dd" @@ -3536,6 +3923,14 @@ caseless@~0.12.0: resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= +cfb@>=0.10.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/cfb/-/cfb-1.2.2.tgz#94e687628c700e5155436dac05f74e08df23bc44" + integrity sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA== + dependencies: + adler-32 "~1.3.0" + crc-32 "~1.2.0" + chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -3566,6 +3961,21 @@ char-regex@^1.0.2: resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== +character-entities-legacy@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" + integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== + +character-entities@^1.0.0: + version "1.2.4" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" + integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== + +character-reference-invalid@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" + integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== + chart.js@^3.7.1: version "3.7.1" resolved "https://registry.npmmirror.com/chart.js/-/chart.js-3.7.1.tgz#0516f690c6a8680c6c707e31a4c1807a6f400ada" @@ -3703,6 +4113,11 @@ cliui@^6.0.0: strip-ansi "^6.0.0" wrap-ansi "^6.2.0" +clsx@^1.0.4, clsx@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" + integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== + clsx@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" @@ -3722,6 +4137,15 @@ coa@^2.0.2: chalk "^2.4.1" q "^1.1.2" +codepage@~1.3.6: + version "1.3.8" + resolved "https://registry.yarnpkg.com/codepage/-/codepage-1.3.8.tgz#4f2e5d7c0975de28f88498058dcb5afcab6a5f71" + integrity sha512-cjAoQW5L/TCKWRbzt/xGBvhwJKQFhcIVO0jWQtpKQx4gr9qvXNkpRfq6gSmjjA8dB2Is/DPOb7gNwqQXP7UgTQ== + dependencies: + commander "" + concat-stream "" + voc "" + collect-v8-coverage@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" @@ -3780,6 +4204,11 @@ colorette@^1.2.1, colorette@^1.2.2: resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== +colors@0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" + integrity sha512-OsSVtHK8Ir8r3+Fxw/b4jS1ZLPXkV6ZxDRJQzeD7qo0SqMXWrHDM71DgYzPMHY8SFJ0Ao+nNU2p1MmwdzKqPrw== + combined-stream@^1.0.6, combined-stream@~1.0.6: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" @@ -3787,6 +4216,16 @@ combined-stream@^1.0.6, combined-stream@~1.0.6: dependencies: delayed-stream "~1.0.0" +comma-separated-tokens@^1.0.0: + version "1.0.8" + resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea" + integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== + +commander@: + version "10.0.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.0.tgz#71797971162cd3cf65f0b9d24eb28f8d303acdf1" + integrity sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA== + commander@^2.20.0: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" @@ -3844,6 +4283,16 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= +concat-stream@: + version "2.0.0" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" + integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.0.2" + typedarray "^0.0.6" + concat-stream@^1.5.0: version "1.6.2" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" @@ -3903,6 +4352,11 @@ convert-source-map@^0.3.3: resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190" integrity sha1-8dgClQr33SYxof6+BZZVDIarMZA= +convert-source-map@^1.5.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + cookie-signature@1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" @@ -3955,6 +4409,11 @@ core-js-pure@^3.0.0: resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.10.1.tgz#28642697dfcf02e0fd9f4d9891bd03a22df28ecf" integrity sha512-PeyJH2SE0KuxY5eCGNWA+W+CeDpB6M1PN3S7Am7jSv/Ttuxz2SnWbIiVQOn/TDaGaGtxo8CRWHkXwJscbUHtVw== +core-js-pure@^3.25.1: + version "3.29.1" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.29.1.tgz#1be6ca2b8772f6b4df7fc4621743286e676c6162" + integrity sha512-4En6zYVi0i0XlXHVz/bi6l1XDjCqkKRq765NXuX+SnaIatlE96Odt5lMLjdxUiNI1v9OXI5DSLWYPlmTfkTktg== + core-js@^2.4.0: version "2.6.12" resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" @@ -4002,6 +4461,11 @@ cosmiconfig@^7.0.0: path-type "^4.0.0" yaml "^1.10.0" +crc-32@, crc-32@~1.2.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/crc-32/-/crc-32-1.2.2.tgz#3cad35a934b8bf71f25ca524b6da51fb7eace2ff" + integrity sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ== + create-ecdh@^4.0.0: version "4.0.4" resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" @@ -4143,7 +4607,7 @@ css-select-base-adapter@^0.1.1: resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== -css-select@^2.0.0, css-select@^2.0.2: +css-select@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== @@ -4153,6 +4617,17 @@ css-select@^2.0.0, css-select@^2.0.2: domutils "^1.7.0" nth-check "^1.0.2" +css-select@^4.1.3: + version "4.3.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" + integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== + dependencies: + boolbase "^1.0.0" + css-what "^6.0.1" + domhandler "^4.3.1" + domutils "^2.8.0" + nth-check "^2.0.1" + css-to-react-native@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756" @@ -4183,6 +4658,11 @@ css-what@^3.2.1: resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== +css-what@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + css.escape@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" @@ -4310,6 +4790,11 @@ csstype@^3.0.2: resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340" integrity sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw== +csstype@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9" + integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== + cyclist@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" @@ -4356,7 +4841,7 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: dependencies: ms "2.0.0" -debug@^3.1.1, debug@^3.2.6: +debug@^3.1.1, debug@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== @@ -4427,6 +4912,14 @@ define-properties@^1.1.2, define-properties@^1.1.3: dependencies: object-keys "^1.0.12" +define-properties@^1.1.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" + integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + define-property@^0.2.5: version "0.2.5" resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" @@ -4534,6 +5027,15 @@ dir-glob@^3.0.1: dependencies: path-type "^4.0.0" +dnd-core@^11.1.3: + version "11.1.3" + resolved "https://registry.yarnpkg.com/dnd-core/-/dnd-core-11.1.3.tgz#f92099ba7245e49729d2433157031a6267afcc98" + integrity sha512-QugF55dNW+h+vzxVJ/LSJeTeUw9MCJ2cllhmVThVPEtF16ooBkxj0WBE5RB+AceFxMFo1rO6bJKXtqKl+JNnyA== + dependencies: + "@react-dnd/asap" "^4.0.0" + "@react-dnd/invariant" "^2.0.0" + redux "^4.0.4" + dns-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" @@ -4586,7 +5088,7 @@ dom-accessibility-api@^0.5.4: resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.4.tgz#b06d059cdd4a4ad9a79275f9d414a5c126241166" integrity sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ== -dom-converter@^0.2: +dom-converter@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== @@ -4600,6 +5102,14 @@ dom-helpers@^3.4.0: dependencies: "@babel/runtime" "^7.1.2" +dom-helpers@^5.0.1, dom-helpers@^5.1.3: + version "5.2.1" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" + integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== + dependencies: + "@babel/runtime" "^7.8.7" + csstype "^3.0.2" + dom-serializer@0: version "0.2.2" resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" @@ -4608,12 +5118,21 @@ dom-serializer@0: domelementtype "^2.0.1" entities "^2.0.0" +dom-serializer@^1.0.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + domain-browser@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== -domelementtype@1, domelementtype@^1.3.1: +domelementtype@1: version "1.3.1" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== @@ -4623,6 +5142,11 @@ domelementtype@^2.0.1: resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== +domelementtype@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + domexception@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" @@ -4630,14 +5154,14 @@ domexception@^2.0.1: dependencies: webidl-conversions "^5.0.0" -domhandler@^2.3.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== +domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== dependencies: - domelementtype "1" + domelementtype "^2.2.0" -domutils@^1.5.1, domutils@^1.7.0: +domutils@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== @@ -4645,6 +5169,15 @@ domutils@^1.5.1, domutils@^1.7.0: dom-serializer "0" domelementtype "1" +domutils@^2.5.2, domutils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + dot-case@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" @@ -4751,11 +5284,6 @@ emoji-regex@^9.0.0: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== -emojis-list@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" - integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= - emojis-list@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" @@ -4789,11 +5317,6 @@ enquirer@^2.3.5: dependencies: ansi-colors "^4.1.1" -entities@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - entities@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" @@ -4850,6 +5373,55 @@ es-abstract@^1.17.2, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2: string.prototype.trimstart "^1.0.4" unbox-primitive "^1.0.0" +es-abstract@^1.19.0, es-abstract@^1.20.4: + version "1.21.2" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff" + integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg== + dependencies: + array-buffer-byte-length "^1.0.0" + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-set-tostringtag "^2.0.1" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.2.0" + get-symbol-description "^1.0.0" + globalthis "^1.0.3" + gopd "^1.0.1" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-proto "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.5" + is-array-buffer "^3.0.2" + is-callable "^1.2.7" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-typed-array "^1.1.10" + is-weakref "^1.0.2" + object-inspect "^1.12.3" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + safe-regex-test "^1.0.0" + string.prototype.trim "^1.2.7" + string.prototype.trimend "^1.0.6" + string.prototype.trimstart "^1.0.6" + typed-array-length "^1.0.4" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.9" + +es-set-tostringtag@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" + integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== + dependencies: + get-intrinsic "^1.1.3" + has "^1.0.3" + has-tostringtag "^1.0.0" + es-to-primitive@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" @@ -4877,6 +5449,11 @@ es6-iterator@2.0.3, es6-iterator@~2.0.3: es5-ext "^0.10.35" es6-symbol "^3.1.1" +es6-promise@^3.1.2, es6-promise@^3.2.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" + integrity sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg== + es6-symbol@^3.1.1, es6-symbol@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" @@ -4905,6 +5482,11 @@ escape-string-regexp@^1.0.5: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + escodegen@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" @@ -5177,12 +5759,10 @@ events@^3.0.0: resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== -eventsource@^1.0.7: - version "1.1.1" - resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.1.1.tgz#4544a35a57d7120fba4fa4c86cb4023b2c09df2f" - integrity sha512-qV5ZC0h7jYIAOhArFJgSfdyz6rALJyb270714o7ZtNnw2WSJ+eexhKtE0O8LYPRsHZHf2osHKZBxGPvm3kPkCA== - dependencies: - original "^1.0.0" +eventsource@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-2.0.2.tgz#76dfcc02930fb2ff339520b6d290da573a9e8508" + integrity sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA== evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: version "1.0.3" @@ -5382,6 +5962,13 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" +fault@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" + integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA== + dependencies: + format "^0.2.0" + faye-websocket@^0.11.3: version "0.11.3" resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz#5c0e9a8968e8912c286639fde977a8b209f2508e" @@ -5389,6 +5976,13 @@ faye-websocket@^0.11.3: dependencies: websocket-driver ">=0.5.1" +faye-websocket@^0.11.4: + version "0.11.4" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" + integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== + dependencies: + websocket-driver ">=0.5.1" + fb-watchman@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" @@ -5416,6 +6010,11 @@ file-loader@6.1.1: loader-utils "^2.0.0" schema-utils "^3.0.0" +file-saver@1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-1.3.8.tgz#e68a30c7cb044e2fb362b428469feb291c2e09d8" + integrity sha512-spKHSBQIxxS81N/O21WmuXA2F6wppUCsutpzenOeZzOCCJ5gEfcbqJP983IrpLXzYmXnMUa6J03SubcNPdKrlg== + file-saver@^2.0.2: version "2.0.5" resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-2.0.5.tgz#d61cfe2ce059f414d899e9dd6d4107ee25670c38" @@ -5479,6 +6078,11 @@ find-cache-dir@^3.3.1: make-dir "^3.0.2" pkg-dir "^4.1.0" +find-root@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" + integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== + find-up@4.1.0, find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" @@ -5537,6 +6141,13 @@ font-awesome@^4.7.0: resolved "https://registry.yarnpkg.com/font-awesome/-/font-awesome-4.7.0.tgz#8fa8cf0411a1a31afd07b06d2902bb9fc815a133" integrity sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM= +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + for-in@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" @@ -5569,11 +6180,21 @@ form-data@~2.3.2: combined-stream "^1.0.6" mime-types "^2.1.12" +format@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" + integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww== + forwarded@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== +frac@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/frac/-/frac-0.3.1.tgz#577677b7fdcbe6faf7c461f1801d34137cda4354" + integrity sha512-1Lzf2jOjhIkRaa013KlxNOn2D9FemmQNeYUDpEIyPeFXmpLvbZXJOlaayMBT6JKXx+afQFgQ1QJ4kaF7Z07QFQ== + fragment-cache@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" @@ -5662,11 +6283,26 @@ function-bind@^1.1.1: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + functional-red-black-tree@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" @@ -5695,6 +6331,15 @@ get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: has "^1.0.3" has-symbols "^1.0.1" +get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" + integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + get-own-enumerable-property-symbols@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" @@ -5719,6 +6364,14 @@ get-stream@^5.0.0: dependencies: pump "^3.0.0" +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" @@ -5805,6 +6458,13 @@ globals@^13.6.0: dependencies: type-fest "^0.20.2" +globalthis@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" + integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== + dependencies: + define-properties "^1.1.3" + globby@11.0.1: version "11.0.1" resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357" @@ -5840,6 +6500,13 @@ globby@^6.1.0: pify "^2.0.0" pinkie-promise "^2.0.0" +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4: version "4.2.6" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" @@ -5891,10 +6558,10 @@ harmony-reflect@^1.4.6: resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.1.tgz#c108d4f2bb451efef7a37861fdbdae72c9bdefa9" integrity sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA== -has-bigints@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" - integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== +has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== has-flag@^3.0.0: version "3.0.0" @@ -5906,6 +6573,18 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + has-symbols@^1.0.1, has-symbols@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" @@ -5916,6 +6595,13 @@ has-symbols@^1.0.3: resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + has-value@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" @@ -5971,6 +6657,22 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" +hast-util-parse-selector@^2.0.0: + version "2.2.5" + resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a" + integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ== + +hastscript@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640" + integrity sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w== + dependencies: + "@types/hast" "^2.0.0" + comma-separated-tokens "^1.0.0" + hast-util-parse-selector "^2.0.0" + property-information "^5.0.0" + space-separated-tokens "^1.0.0" + he@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" @@ -5991,6 +6693,11 @@ highcharts@^8.2.2: resolved "https://registry.yarnpkg.com/highcharts/-/highcharts-8.2.2.tgz#3eb1a694cff013d3385c3ca8e58e69a27be52cab" integrity sha512-F63TXO7RxsvTcpO/KOubQZWualYpCMyCTuKtoWbt7KCsfQ3Kl7Fr6HEyyJdjkYl+XlnmnKlSRi9d3HjLK9Q0wg== +highlight.js@^10.4.1, highlight.js@~10.7.0: + version "10.7.3" + resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531" + integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A== + history@^4.9.0: version "4.10.1" resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3" @@ -6012,7 +6719,7 @@ hmac-drbg@^1.0.1: minimalistic-assert "^1.0.0" minimalistic-crypto-utils "^1.0.1" -hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2: +hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== @@ -6094,17 +6801,15 @@ html-webpack-plugin@4.5.0: tapable "^1.1.3" util.promisify "1.0.0" -htmlparser2@^3.10.1: - version "3.10.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" - integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== +htmlparser2@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== dependencies: - domelementtype "^1.3.1" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^3.1.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.5.2" + entities "^2.0.0" http-deceiver@^1.2.7: version "1.2.7" @@ -6137,6 +6842,13 @@ http-parser-js@>=0.5.1: resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.3.tgz#01d2709c79d41698bb01d4decc5e9da4e4a033d9" integrity sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg== +http-post-message@^0.2: + version "0.2.3" + resolved "https://registry.yarnpkg.com/http-post-message/-/http-post-message-0.2.3.tgz#32c560ac615f310a7e459ffc71277b579b242e1e" + integrity sha512-76heerrzYhvWptJfWxUarHw2O3fkMqF48bbq/S6XFWHUc34o8tkySBwtReXuAKJAECZWVu8U0TYLckFcwtSdrg== + dependencies: + es6-promise "^3.2.1" + http-proxy-middleware@0.19.1: version "0.19.1" resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a" @@ -6225,11 +6937,16 @@ immer@8.0.1: version "8.0.1" resolved "https://registry.yarnpkg.com/immer/-/immer-8.0.1.tgz#9c73db683e2b3975c424fb0572af5889877ae656" integrity sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA== -immer@^9.0.16: - version "9.0.16" - resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.16.tgz#8e7caab80118c2b54b37ad43e05758cdefad0198" - integrity sha512-qenGE7CstVm1NrHQbMh8YaSzTZTFNP3zPqr3YU0S0UY441j4bJTg4A2Hh5KAhwgaiU6ZZ1Ar6y/2f4TblnMReQ== +immer@^9.0.7: + version "9.0.21" + resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.21.tgz#1e025ea31a40f24fb064f1fef23e931496330176" + integrity sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA== + +immutable@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.0.tgz#eb1738f14ffb39fd068b1dbe1296117484dd34be" + integrity sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg== import-cwd@^2.0.0: version "2.1.0" @@ -6342,6 +7059,15 @@ internal-slot@^1.0.3: has "^1.0.3" side-channel "^1.0.4" +internal-slot@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" + integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== + dependencies: + get-intrinsic "^1.2.0" + has "^1.0.3" + side-channel "^1.0.4" + ip-regex@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" @@ -6381,6 +7107,19 @@ is-accessor-descriptor@^1.0.0: dependencies: kind-of "^6.0.0" +is-alphabetical@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" + integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== + +is-alphanumerical@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" + integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== + dependencies: + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + is-arguments@^1.0.4: version "1.1.0" resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9" @@ -6388,6 +7127,15 @@ is-arguments@^1.0.4: dependencies: call-bind "^1.0.0" +is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" + integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + is-typed-array "^1.1.10" + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" @@ -6429,6 +7177,11 @@ is-buffer@^1.1.5: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== +is-callable@^1.1.3, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + is-callable@^1.1.4, is-callable@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" @@ -6460,10 +7213,10 @@ is-core-module@^2.0.0: dependencies: has "^1.0.3" -is-core-module@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" - integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== +is-core-module@^2.9.0: + version "2.11.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" + integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== dependencies: has "^1.0.3" @@ -6486,6 +7239,11 @@ is-date-object@^1.0.1: resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== +is-decimal@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" + integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== + is-descriptor@^0.1.0: version "0.1.6" resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" @@ -6560,6 +7318,11 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: dependencies: is-extglob "^2.1.1" +is-hexadecimal@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" + integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== + is-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" @@ -6570,6 +7333,11 @@ is-negative-zero@^2.0.1: resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + is-number-object@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" @@ -6641,6 +7409,14 @@ is-regex@^1.0.4, is-regex@^1.1.2: call-bind "^1.0.2" has-symbols "^1.0.1" +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + is-regexp@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" @@ -6656,6 +7432,13 @@ is-root@2.1.0: resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" @@ -6671,6 +7454,13 @@ is-string@^1.0.5: resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== +is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" @@ -6678,11 +7468,29 @@ is-symbol@^1.0.2, is-symbol@^1.0.3: dependencies: has-symbols "^1.0.1" +is-typed-array@^1.1.10, is-typed-array@^1.1.9: + version "1.1.10" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" + integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + is-typedarray@^1.0.0, is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + is-what@^3.12.0: version "3.14.1" resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.14.1.tgz#e1222f46ddda85dead0fd1c9df131760e77755c1" @@ -7343,12 +8151,7 @@ json-stringify-safe@~5.0.1: resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= -json3@^3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" - integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA== - -json5@^1.0.1: +json5@^1.0.1, json5@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== @@ -7396,6 +8199,18 @@ jsprim@^1.2.2: array-includes "^3.1.2" object.assign "^4.1.2" +jszip@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/jszip/-/jszip-2.4.0.tgz#487a93b76c3bffa6cb085cd61eb934eabe2d294f" + integrity sha512-m+yvNmYfRCaf1gr5YFT5e3fnSqLnE9McbNyRd0fNycsT0HltS19NKc18fh3Lvl/AIW/ovL6/MQ1JnfFg4G3o4A== + dependencies: + pako "~0.2.5" + +jwt-decode@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/jwt-decode/-/jwt-decode-3.1.2.tgz#3fb319f3675a2df0c2895c8f5e9fa4b67b04ed59" + integrity sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A== + keyboard-key@^1.0.2, keyboard-key@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/keyboard-key/-/keyboard-key-1.1.0.tgz#6f2e8e37fa11475bb1f1d65d5174f1b35653f5b7" @@ -7517,15 +8332,6 @@ loader-runner@^2.4.0: resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== -loader-utils@1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" - integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== - dependencies: - big.js "^5.2.2" - emojis-list "^2.0.0" - json5 "^1.0.1" - loader-utils@2.0.0, loader-utils@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" @@ -7577,6 +8383,11 @@ lodash._reinterpolate@^3.0.0: resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= +lodash.assignwith@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb" + integrity sha512-ZznplvbvtjK2gMvnQ1BR/zqPFZmS6jbK4p+6Up4xcRYA7yMIwxHCfbTcrYxXKzzqLsQ05eJPVznEW3tuwV7k1g== + lodash.clonedeep@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" @@ -7587,16 +8398,36 @@ lodash.debounce@^4.0.8: resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= -lodash.flatten@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" - integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8= +lodash.find@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1" + integrity sha512-yaRZoAV3Xq28F1iafWN1+a0rflOej93l1DQUejs3SZ41h2O9UJBoS9aueGjPDgAl4B6tPC0NuuchLKaDQQ3Isg== + +lodash.get@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== + +lodash.isequal@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== + +lodash.isundefined@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz#23ef3d9535565203a66cefd5b830f848911afb48" + integrity sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA== lodash.memoize@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + lodash.orderby@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.orderby/-/lodash.orderby-4.6.0.tgz#e697f04ce5d78522f54d9338b32b81a3393e4eb3" @@ -7617,6 +8448,11 @@ lodash.templatesettings@^4.0.0: dependencies: lodash._reinterpolate "^3.0.0" +lodash.throttle@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" + integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== + lodash.truncate@^4.4.2: version "4.4.2" resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" @@ -7651,6 +8487,14 @@ lower-case@^2.0.2: dependencies: tslib "^2.0.3" +lowlight@^1.17.0: + version "1.20.0" + resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.20.0.tgz#ddb197d33462ad0d93bf19d17b6c301aa3941888" + integrity sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw== + dependencies: + fault "^1.0.0" + highlight.js "~10.7.0" + lru-cache@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" @@ -7692,12 +8536,12 @@ make-dir@^3.0.0, make-dir@^3.0.2: dependencies: semver "^6.0.0" -makeerror@1.0.x: - version "1.0.11" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" - integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== dependencies: - tmpl "1.0.x" + tmpl "1.0.5" map-cache@^0.2.2: version "0.2.2" @@ -7913,6 +8757,11 @@ minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== +minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + minipass-collect@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" @@ -7941,6 +8790,11 @@ minipass@^3.0.0, minipass@^3.1.1: dependencies: yallist "^4.0.0" +minipass@^4.0.0: + version "4.2.5" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.5.tgz#9e0e5256f1e3513f8c34691dd68549e85b2c8ceb" + integrity sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q== + minizlib@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" @@ -7985,11 +8839,16 @@ mkdirp@^1.0.3, mkdirp@^1.0.4: resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -moment@^2.22.2, moment@^2.27.0: +moment@^2.22.2: version "2.29.1" resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== +moment@^2.29.0: + version "2.30.1" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.30.1.tgz#f8c91c07b7a786e30c59926df530b4eac96974ae" + integrity sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how== + move-concurrently@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" @@ -8017,6 +8876,30 @@ ms@2.1.3, ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== +mui-datatables@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/mui-datatables/-/mui-datatables-4.3.0.tgz#445d6da0960005e242d4f69693702a33daba05ae" + integrity sha512-LFliQwNnnxW03IO+V3q/ORxZsOHkzl53iGogLbjUJzme47hNEN106dM0ie8oMSc0heYJY0J07oZmKm7Xn3X7IQ== + dependencies: + "@babel/runtime-corejs3" "^7.12.1" + "@emotion/cache" "^11.7.1" + clsx "^1.1.1" + lodash.assignwith "^4.2.0" + lodash.clonedeep "^4.5.0" + lodash.debounce "^4.0.8" + lodash.find "^4.6.0" + lodash.get "^4.4.2" + lodash.isequal "^4.5.0" + lodash.isundefined "^3.0.1" + lodash.memoize "^4.1.2" + lodash.merge "^4.6.2" + prop-types "^15.7.2" + react-dnd "^11.1.3" + react-dnd-html5-backend "^11.1.3" + react-sortable-tree-patch-react-17 "^2.9.0" + react-to-print "^2.8.0" + tss-react "^3.6.0" + multicast-dns-service-types@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" @@ -8238,6 +9121,13 @@ nth-check@^1.0.2: dependencies: boolbase "~1.0.0" +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + num2fraction@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" @@ -8267,6 +9157,11 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" +object-inspect@^1.12.3: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + object-inspect@^1.9.0: version "1.12.2" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" @@ -8302,6 +9197,16 @@ object.assign@^4.1.0, object.assign@^4.1.2: has-symbols "^1.0.1" object-keys "^1.1.1" +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + object.entries@^1.1.0, object.entries@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz#c601c7f168b62374541a07ddbd3e2d5e4f7711a6" @@ -8437,13 +9342,6 @@ optionator@^0.9.1: type-check "^0.4.0" word-wrap "^1.2.3" -original@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f" - integrity sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg== - dependencies: - url-parse "^1.4.3" - os-browserify@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" @@ -8530,6 +9428,11 @@ p-try@^2.0.0: resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== +pako@~0.2.5: + version "0.2.9" + resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + integrity sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA== + pako@~1.0.5: version "1.0.11" resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" @@ -8570,6 +9473,18 @@ parse-asn1@^5.0.0, parse-asn1@^5.1.5: pbkdf2 "^3.0.3" safe-buffer "^5.1.1" +parse-entities@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" + integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== + dependencies: + character-entities "^1.0.0" + character-entities-legacy "^1.0.0" + character-reference-invalid "^1.0.0" + is-alphanumerical "^1.0.0" + is-decimal "^1.0.0" + is-hexadecimal "^1.0.0" + parse-json@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" @@ -8658,7 +9573,7 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-parse@^1.0.6: +path-parse@^1.0.6, path-parse@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== @@ -9439,10 +10354,10 @@ postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1: indexes-of "^1.0.1" uniq "^1.0.1" -postcss@7.0.21: - version "7.0.21" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.21.tgz#06bb07824c19c2021c5d056d5b10c35b989f7e17" - integrity sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ== +postcss@7.0.36: + version "7.0.36" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.36.tgz#056f8cffa939662a8f5905950c07d5285644dfcb" + integrity sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw== dependencies: chalk "^2.4.2" source-map "^0.6.1" @@ -9466,6 +10381,37 @@ postcss@^8.1.0: nanoid "^3.1.22" source-map "^0.6.1" +powerbi-client-react@^1.3.5: + version "1.3.5" + resolved "https://registry.yarnpkg.com/powerbi-client-react/-/powerbi-client-react-1.3.5.tgz#652f5077505a73c1524a7a9c5e75e2131b47e566" + integrity sha512-YqLpkus9UD6YxRe3W+Kcnao6lRv/Do2XZilx4UWRWlXS+roQ3QI6Dm8KsxUpvMYo636x4mzAjj3FOymQwoLi4w== + dependencies: + lodash.isequal "^4.5.0" + powerbi-client "^2.21.1" + +powerbi-client@^2.21.1, powerbi-client@^2.22.2: + version "2.22.2" + resolved "https://registry.yarnpkg.com/powerbi-client/-/powerbi-client-2.22.2.tgz#fd0a6b5aa4bb86c9420cb543b05e2c6ad5ed09ef" + integrity sha512-NPVdTzaxOPgY9wfPPi8nvAcbHI3qyRkv82NCPO+AdpnoMglC0yONoEcb+x0a0Qf/XcsutXBbLwS+fgKGHFEOxw== + dependencies: + http-post-message "^0.2" + powerbi-models "^1.12.3" + powerbi-router "^0.1" + window-post-message-proxy "^0.2" + +powerbi-models@^1.12.3: + version "1.12.6" + resolved "https://registry.yarnpkg.com/powerbi-models/-/powerbi-models-1.12.6.tgz#941d91e0fb14b767d21e60ed45728d7640d03827" + integrity sha512-S+cDAPAtUl2YJLtT250MFR8cRG/mOsTzmL3CUemM/kV9t+QoGnAmkvrhp43tfQ0vjac3FFku6didEL+Ce6rDDg== + +powerbi-router@^0.1: + version "0.1.5" + resolved "https://registry.yarnpkg.com/powerbi-router/-/powerbi-router-0.1.5.tgz#dd2d2d0474f8cb76690a85f6a51d8ca9fea93a32" + integrity sha512-DFJCKxwh/DqMZXtHSo6xZl87mbRviZGn4P7Oi2rT0L4HMI4AjnWIrwg0JCSM7ymBzYnNe5UmrsCaf2Upur5RQA== + dependencies: + es6-promise "^3.2.1" + route-recognizer "^0.1.11" + prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" @@ -9529,6 +10475,16 @@ pretty-format@^26.6.0, pretty-format@^26.6.2: ansi-styles "^4.0.0" react-is "^17.0.1" +prismjs@^1.27.0: + version "1.29.0" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.29.0.tgz#f113555a8fa9b57c35e637bba27509dcf802dd12" + integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q== + +prismjs@~1.27.0: + version "1.27.0" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057" + integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA== + process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" @@ -9589,6 +10545,22 @@ prop-types@^15.5.0, prop-types@^15.5.8, prop-types@^15.6.1, prop-types@^15.6.2, object-assign "^4.1.1" react-is "^16.8.1" +prop-types@^15.5.9, prop-types@^15.8.1: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +property-information@^5.0.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69" + integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA== + dependencies: + xtend "^4.0.0" + proxy-addr@~2.0.7: version "2.0.7" resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" @@ -9709,7 +10681,7 @@ queue-microtask@^1.2.2: resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== -raf@^3.4.1: +raf@^3.2.0, raf@^3.4.1: version "3.4.1" resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== @@ -9763,6 +10735,15 @@ react-chartjs-2@^4.0.1: resolved "https://registry.yarnpkg.com/react-chartjs-2/-/react-chartjs-2-4.2.0.tgz#bc5693a8b161f125301cf28ab0fe980d7dce54aa" integrity sha512-9Vm9Sg9XAKiR579/FnBkesofjW9goaaFLfS7XlGTzUJlWFZGSE6A/pBI6+i/bP3pobKZoFcWJdFnjShytToqXw== +react-cookie@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/react-cookie/-/react-cookie-4.1.1.tgz#832e134ad720e0de3e03deaceaab179c4061a19d" + integrity sha512-ffn7Y7G4bXiFbnE+dKhHhbP+b8I34mH9jqnm8Llhj89zF4nPxPutxHT1suUqMeCEhLDBI7InYwf1tpaSoK5w8A== + dependencies: + "@types/hoist-non-react-statics" "^3.0.1" + hoist-non-react-statics "^3.0.0" + universal-cookie "^4.0.0" + react-csv-downloader@^2.2.0: version "2.4.0" resolved "https://registry.yarnpkg.com/react-csv-downloader/-/react-csv-downloader-2.4.0.tgz#dff85eb64962bc97760c2a80953633001ec205f6" @@ -9770,6 +10751,14 @@ react-csv-downloader@^2.2.0: dependencies: file-saver "^2.0.2" +react-data-table-component-with-filter@^7.5.3: + version "7.5.3" + resolved "https://registry.yarnpkg.com/react-data-table-component-with-filter/-/react-data-table-component-with-filter-7.5.3.tgz#f1e8953ef1a957bc976f410c7aa7971141402640" + integrity sha512-U1hsGbXbGutryXCZkO2ZLywm75br2OjwZk+L7K5w+Q3xlOTrEVKIVdIwKCq7Id/st3N7LHyg15eczR38wln4EQ== + dependencies: + deepmerge "^4.2.2" + yocto-queue "^1.0.0" + react-data-table-component@^6.11.2: version "6.11.7" resolved "https://registry.yarnpkg.com/react-data-table-component/-/react-data-table-component-6.11.7.tgz#112761005ceb13ae09732e1c1125eeacbda9e21d" @@ -9820,6 +10809,39 @@ react-dev-utils@^11.0.3: strip-ansi "6.0.0" text-table "0.2.0" +react-display-name@^0.2.0: + version "0.2.5" + resolved "https://registry.yarnpkg.com/react-display-name/-/react-display-name-0.2.5.tgz#304c7cbfb59ee40389d436e1a822c17fe27936c6" + integrity sha512-I+vcaK9t4+kypiSgaiVWAipqHRXYmZIuAiS8vzFvXHHXVigg/sMKwlRgLy6LH2i3rmP+0Vzfl5lFsFRwF1r3pg== + +react-dnd-html5-backend@^11.1.3: + version "11.1.3" + resolved "https://registry.yarnpkg.com/react-dnd-html5-backend/-/react-dnd-html5-backend-11.1.3.tgz#2749f04f416ec230ea193f5c1fbea2de7dffb8f7" + integrity sha512-/1FjNlJbW/ivkUxlxQd7o3trA5DE33QiRZgxent3zKme8DwF4Nbw3OFVhTRFGaYhHFNL1rZt6Rdj1D78BjnNLw== + dependencies: + dnd-core "^11.1.3" + +react-dnd-scrollzone-patch-react-17@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/react-dnd-scrollzone-patch-react-17/-/react-dnd-scrollzone-patch-react-17-1.0.2.tgz#aa7e4c54268fe109246e790f1412427481b63067" + integrity sha512-Wfhyc/Y/Veim29REBYm8nMmtDB5IwSmPPhXIuabBgsEa1MrVsuOwK9+7LmuP+mGbDOEP/S6G8+5XvDqPlRFK2g== + dependencies: + hoist-non-react-statics "^3.1.0" + lodash.throttle "^4.0.1" + prop-types "^15.5.9" + raf "^3.2.0" + react-display-name "^0.2.0" + +react-dnd@^11.1.3: + version "11.1.3" + resolved "https://registry.yarnpkg.com/react-dnd/-/react-dnd-11.1.3.tgz#f9844f5699ccc55dfc81462c2c19f726e670c1af" + integrity sha512-8rtzzT8iwHgdSC89VktwhqdKKtfXaAyC4wiqp0SywpHG12TTLvfOoL6xNEIUWXwIEWu+CFfDn4GZJyynCEuHIQ== + dependencies: + "@react-dnd/shallowequal" "^2.0.0" + "@types/hoist-non-react-statics" "^3.3.1" + dnd-core "^11.1.3" + hoist-non-react-statics "^3.3.0" + react-dom@^16.12.0: version "16.14.0" resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89" @@ -9830,17 +10852,34 @@ react-dom@^16.12.0: prop-types "^15.6.2" scheduler "^0.19.1" +react-dom@^17.0.0: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" + integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + scheduler "^0.20.2" + react-error-overlay@^6.0.9: version "6.0.9" resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.9.tgz#3c743010c9359608c375ecd6bc76f35d93995b0a" integrity sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew== +react-export-excel@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/react-export-excel/-/react-export-excel-0.5.3.tgz#d0617bfe97f8b2b6c78d278baf703977ba91d8ca" + integrity sha512-J0xKLojhLYEpgptdJWU7o4NljSQxv96yFNLAfa9M0m1jNNiVXBdBSlWCW713MRFl1ECJRhV4CbrjbmvEjEFvWg== + dependencies: + file-saver "1.3.8" + xlsx "git+https://github.com/securedeveloper/js-xlsx.git" + react-ga@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/react-ga/-/react-ga-3.3.0.tgz#c91f407198adcb3b49e2bc5c12b3fe460039b3ca" integrity sha512-o8RScHj6Lb8cwy3GMrVH6NJvL+y0zpJvKtc0+wmH7Bt23rszJmnqEQxRbyrqUzk9DTJIHoP42bfO5rswC9SWBQ== -react-is@^16.12.0, react-is@^16.6.0, react-is@^16.6.3, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6: +react-is@^16.12.0, react-is@^16.13.1, react-is@^16.6.0, react-is@^16.6.3, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -9850,7 +10889,7 @@ react-is@^17.0.1: resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== -react-is@^18.0.0: +react-is@^18.0.0, react-is@^18.2.0: version "18.2.0" resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== @@ -10019,6 +11058,39 @@ react-scripts@^4.0.3: optionalDependencies: fsevents "^2.1.3" +react-sortable-tree-patch-react-17@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/react-sortable-tree-patch-react-17/-/react-sortable-tree-patch-react-17-2.9.0.tgz#d80ef61a5b941a8cc52570f6aa2c3059076d9f21" + integrity sha512-Ngtdbf78OfjqCxLj7+N+K4zM9d1mQ/tfnUsOfICFDzNa5JHg6AjixAj69ijvz0ykEiA9lYop+0Fm4KCOqCdlKA== + dependencies: + lodash.isequal "^4.5.0" + prop-types "^15.6.1" + react "^17.0.0" + react-dnd "^11.1.3" + react-dnd-html5-backend "^11.1.3" + react-dnd-scrollzone-patch-react-17 "^1.0.2" + react-dom "^17.0.0" + react-lifecycles-compat "^3.0.4" + react-virtualized "^9.21.2" + +react-syntax-highlighter@^15.5.0: + version "15.5.0" + resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz#4b3eccc2325fa2ec8eff1e2d6c18fa4a9e07ab20" + integrity sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg== + dependencies: + "@babel/runtime" "^7.3.1" + highlight.js "^10.4.1" + lowlight "^1.17.0" + prismjs "^1.27.0" + refractor "^3.6.0" + +react-to-print@^2.8.0: + version "2.14.12" + resolved "https://registry.yarnpkg.com/react-to-print/-/react-to-print-2.14.12.tgz#e3ecddca2a03eddef1773ffb7c1a63c140f44036" + integrity sha512-qFJAwvDFd95Z+FWNqitt+HaB1/z+Zdd0MMrNOPUSus3fG32vqv512yB+HXhQ94J3HKoyqaIg44v0Zfc6xUBqlg== + dependencies: + prop-types "^15.8.1" + react-transition-group@^2.3.1: version "2.9.0" resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d" @@ -10029,6 +11101,28 @@ react-transition-group@^2.3.1: prop-types "^15.6.2" react-lifecycles-compat "^3.0.4" +react-transition-group@^4.4.5: + version "4.4.5" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" + integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== + dependencies: + "@babel/runtime" "^7.5.5" + dom-helpers "^5.0.1" + loose-envify "^1.4.0" + prop-types "^15.6.2" + +react-virtualized@^9.21.2: + version "9.22.3" + resolved "https://registry.yarnpkg.com/react-virtualized/-/react-virtualized-9.22.3.tgz#f430f16beb0a42db420dbd4d340403c0de334421" + integrity sha512-MKovKMxWTcwPSxE1kK1HcheQTWfuCxAuBoSTf2gwyMM21NdX/PXUhnoP8Uc5dRKd+nKm8v41R36OellhdCpkrw== + dependencies: + "@babel/runtime" "^7.7.2" + clsx "^1.0.4" + dom-helpers "^5.1.3" + loose-envify "^1.4.0" + prop-types "^15.7.2" + react-lifecycles-compat "^3.0.4" + react-visibility-sensor@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/react-visibility-sensor/-/react-visibility-sensor-5.1.1.tgz#5238380960d3a0b2be0b7faddff38541e337f5a9" @@ -10045,6 +11139,14 @@ react@^16.12.0: object-assign "^4.1.1" prop-types "^15.6.2" +react@^17.0.0: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" + integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + reactstrap@^8.8.1: version "8.9.0" resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-8.9.0.tgz#bca4afa3f5cd18899ef9b33d877a141886d5abae" @@ -10105,7 +11207,16 @@ read-pkg@^5.2.0: string_decoder "~1.1.1" util-deprecate "~1.0.1" -readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.6.0: +readable-stream@^3.0.2: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readable-stream@^3.0.6, readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== @@ -10142,10 +11253,10 @@ recoil-persist@^4.2.0: resolved "https://registry.yarnpkg.com/recoil-persist/-/recoil-persist-4.2.0.tgz#9fbb4a8c158cbb83ceb9dedf795aee24ed15395d" integrity sha512-MHVfML9GxJP3RpkKR4F5rp7DtvzIvjWhowtMao/b7h2k4afMio/4sMAdUtltIrDaeVegH0Iga8Sx5XQ3oD7CzA== - - version "0.7.6" - resolved "https://registry.yarnpkg.com/recoil/-/recoil-0.7.6.tgz#75297ecd70bbfeeb72e861aa6141a86bb6dfcd5e" - integrity sha512-hsBEw7jFdpBCY/tu2GweiyaqHKxVj6EqF2/SfrglbKvJHhpN57SANWvPW+gE90i3Awi+A5gssOd3u+vWlT+g7g== +recoil@^0.7.5: + version "0.7.7" + resolved "https://registry.yarnpkg.com/recoil/-/recoil-0.7.7.tgz#c5f2c843224384c9c09e4a62c060fb4c1454dc8e" + integrity sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ== dependencies: hamt_plus "1.0.2" @@ -10170,25 +11281,34 @@ redux-persist@^6.0.0: integrity sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ== redux-thunk@^2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.4.1.tgz#0dd8042cf47868f4b29699941de03c9301a75714" - integrity sha512-OOYGNY5Jy2TWvTL1KgAlVy6dcx3siPJ1wTq741EPyUKfn6W6nChdICjZwCd0p8AZBs5kWpZlbkXW2nE/zjUa+Q== + version "2.4.2" + resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.4.2.tgz#b9d05d11994b99f7a91ea223e8b04cf0afa5ef3b" + integrity sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q== -redux@^4.1.2, redux@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.0.tgz#46f10d6e29b6666df758780437651eeb2b969f13" - integrity sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA== +redux@^4.0.4, redux@^4.1.2, redux@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.1.tgz#c08f4306826c49b5e9dc901dee0452ea8fce6197" + integrity sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w== dependencies: "@babel/runtime" "^7.9.2" -regenerate-unicode-properties@^8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" - integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== +refractor@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/refractor/-/refractor-3.6.0.tgz#ac318f5a0715ead790fcfb0c71f4dd83d977935a" + integrity sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA== dependencies: - regenerate "^1.4.0" + hastscript "^6.0.0" + parse-entities "^2.0.0" + prismjs "~1.27.0" -regenerate@^1.4.0: +regenerate-unicode-properties@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz#54d09c7115e1f53dc2314a974b32c1c344efe326" + integrity sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: version "1.4.2" resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== @@ -10198,10 +11318,15 @@ regenerator-runtime@^0.11.0: resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== -regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.7: - version "0.13.7" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" - integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== +regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.7: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== regenerator-transform@^0.14.2: version "0.14.5" @@ -10223,68 +11348,69 @@ regex-parser@^2.2.11: resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58" integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q== -regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" - integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== +regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== dependencies: call-bind "^1.0.2" define-properties "^1.1.3" + functions-have-names "^1.2.2" regexpp@^3.0.0, regexpp@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" - integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== regexpu-core@^4.7.1: - version "4.7.1" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" - integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== - dependencies: - regenerate "^1.4.0" - regenerate-unicode-properties "^8.2.0" - regjsgen "^0.5.1" - regjsparser "^0.6.4" - unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.2.0" - -regjsgen@^0.5.1: + version "4.8.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.8.0.tgz#e5605ba361b67b1718478501327502f4479a98f0" + integrity sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg== + dependencies: + regenerate "^1.4.2" + regenerate-unicode-properties "^9.0.0" + regjsgen "^0.5.2" + regjsparser "^0.7.0" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.0.0" + +regjsgen@^0.5.2: version "0.5.2" resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== -regjsparser@^0.6.4: - version "0.6.9" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6" - integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ== +regjsparser@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.7.0.tgz#a6b667b54c885e18b52554cb4960ef71187e9968" + integrity sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ== dependencies: jsesc "~0.5.0" relateurl@^0.2.7: version "0.2.7" resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" - integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= + integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== remove-accents@0.4.2: version "0.4.2" resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5" - integrity sha1-CkPTqq4egNuRngeuJUsoXZ4ce7U= + integrity sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA== remove-trailing-separator@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== renderkid@^2.0.4: - version "2.0.5" - resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.5.tgz#483b1ac59c6601ab30a7a596a5965cabccfdd0a5" - integrity sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ== + version "2.0.7" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.7.tgz#464f276a6bdcee606f4a15993f9b29fc74ca8609" + integrity sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ== dependencies: - css-select "^2.0.2" - dom-converter "^0.2" - htmlparser2 "^3.10.1" - lodash "^4.17.20" - strip-ansi "^3.0.0" + css-select "^4.1.3" + dom-converter "^0.2.0" + htmlparser2 "^6.1.0" + lodash "^4.17.21" + strip-ansi "^3.0.1" repeat-element@^1.1.2: version "1.1.4" @@ -10294,7 +11420,7 @@ repeat-element@^1.1.2: repeat-string@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== request-promise-core@1.1.4: version "1.1.4" @@ -10341,7 +11467,7 @@ request@^2.88.2: require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== require-from-string@^2.0.2: version "2.0.2" @@ -10358,12 +11484,7 @@ requires-port@^1.0.0: resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== -reselect@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.0.0.tgz#f2529830e5d3d0e021408b246a206ef4ea4437f7" - integrity sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA== - -reselect@^4.1.7: +reselect@^4.0.0, reselect@^4.1.5: version "4.1.7" resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.7.tgz#56480d9ff3d3188970ee2b76527bd94a95567a42" integrity sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A== @@ -10371,7 +11492,7 @@ reselect@^4.1.7: resolve-cwd@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" - integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= + integrity sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg== dependencies: resolve-from "^3.0.0" @@ -10385,7 +11506,7 @@ resolve-cwd@^3.0.0: resolve-from@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" - integrity sha1-six699nWiBvItuZTM17rywoYh0g= + integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== resolve-from@^4.0.0: version "4.0.0" @@ -10403,17 +11524,17 @@ resolve-pathname@^3.0.0: integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng== resolve-url-loader@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz#235e2c28e22e3e432ba7a5d4e305c59a58edfc08" - integrity sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ== + version "3.1.5" + resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.5.tgz#1dce0847d4a2ef43c51f63c9fd30bf6dfbf26716" + integrity sha512-mgFMCmrV/tA4738EsFmPFE5/MaqSgUMe8LK971kVEKA/RrNVb7+VqFsg/qmKyythf34eyq476qIobP/gfFBGSQ== dependencies: adjust-sourcemap-loader "3.0.0" camelcase "5.3.1" compose-function "3.0.3" convert-source-map "1.7.0" es6-iterator "2.0.3" - loader-utils "1.2.3" - postcss "7.0.21" + loader-utils "^1.2.3" + postcss "7.0.36" rework "1.0.1" rework-visit "1.0.0" source-map "0.6.1" @@ -10421,7 +11542,7 @@ resolve-url-loader@^3.1.2: resolve-url@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== resolve@1.18.1: version "1.18.1" @@ -10431,21 +11552,23 @@ resolve@1.18.1: is-core-module "^2.0.0" path-parse "^1.0.6" -resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.3.2, resolve@^1.8.1: - version "1.20.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" - integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== +resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.19.0, resolve@^1.3.2, resolve@^1.8.1: + version "1.22.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== dependencies: - is-core-module "^2.2.0" - path-parse "^1.0.6" + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" resolve@^2.0.0-next.3: - version "2.0.0-next.3" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46" - integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q== + version "2.0.0-next.4" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" + integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== dependencies: - is-core-module "^2.2.0" - path-parse "^1.0.6" + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" ret@~0.1.10: version "0.1.15" @@ -10455,7 +11578,7 @@ ret@~0.1.10: retry@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" - integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== reusify@^1.0.4: version "1.0.4" @@ -10465,12 +11588,12 @@ reusify@^1.0.4: rework-visit@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a" - integrity sha1-mUWygD8hni96ygCtuLyfZA+ELJo= + integrity sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ== rework@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7" - integrity sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc= + integrity sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw== dependencies: convert-source-map "^0.3.3" css "^2.0.0" @@ -10478,12 +11601,12 @@ rework@1.0.1: rgb-regex@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" - integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= + integrity sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w== rgba-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" - integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= + integrity sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg== rimraf@3.0.2, rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" @@ -10542,6 +11665,11 @@ rollup@^1.31.1: "@types/node" "*" acorn "^7.1.0" +route-recognizer@^0.1.11: + version "0.1.11" + resolved "https://registry.yarnpkg.com/route-recognizer/-/route-recognizer-0.1.11.tgz#810d8e5702abb4056d6dcb8e865c5685e7c14eb7" + integrity sha512-7JNu5mXQVa39zxmUKyk/bfpeF2WyEC5JKVTJO5HATcoUQpcQsI3eLzhwGU69xeOagQxfOQ+yr2sSv0G8xy+vQA== + rsvp@^4.8.4: version "4.8.5" resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" @@ -10557,7 +11685,7 @@ run-parallel@^1.1.9: run-queue@^1.0.0, run-queue@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" - integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= + integrity sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg== dependencies: aproba "^1.1.1" @@ -10571,10 +11699,19 @@ safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +safe-regex-test@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" + integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + is-regex "^1.1.4" + safe-regex@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg== dependencies: ret "~0.1.10" @@ -10604,9 +11741,9 @@ sanitize.css@^10.0.0: integrity sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg== sass-loader@^10.0.5: - version "10.1.1" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.1.1.tgz#4ddd5a3d7638e7949065dd6e9c7c04037f7e663d" - integrity sha512-W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw== + version "10.4.1" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.4.1.tgz#bea4e173ddf512c9d7f53e9ec686186146807cbf" + integrity sha512-aX/iJZTTpNUNx/OSYzo2KsjIUQHqvWsAhhUijFjAPdZTEhstjZI9zTNvkTTwsx+uNUJqUwOw5gacxQMx4hJxGQ== dependencies: klona "^2.0.4" loader-utils "^2.0.0" @@ -10615,11 +11752,13 @@ sass-loader@^10.0.5: semver "^7.3.2" sass@^1.43.4: - version "1.43.4" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.43.4.tgz#68c7d6a1b004bef49af0d9caf750e9b252105d1f" - integrity sha512-/ptG7KE9lxpGSYiXn7Ar+lKOv37xfWsZRtFYal2QHNigyVQDx685VFT/h7ejVr+R8w7H4tmUgtulsKl5YpveOg== + version "1.60.0" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.60.0.tgz#657f0c23a302ac494b09a5ba8497b739fb5b5a81" + integrity sha512-updbwW6fNb5gGm8qMXzVO7V4sWf7LMXnMly/JEyfbfERbVH46Fn6q02BX7/eHTdKpE7d+oTkMMQpFWNUMfFbgQ== dependencies: chokidar ">=3.0.0 <4.0.0" + immutable "^4.0.0" + source-map-js ">=0.6.2 <2.0.0" sax@~1.2.4: version "1.2.4" @@ -10641,6 +11780,14 @@ scheduler@^0.19.1: loose-envify "^1.1.0" object-assign "^4.1.1" +scheduler@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" + integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + schema-utils@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" @@ -10660,23 +11807,23 @@ schema-utils@^2.6.5, schema-utils@^2.7.0, schema-utils@^2.7.1: ajv-keywords "^3.5.2" schema-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef" - integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA== + version "3.1.1" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" + integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== dependencies: - "@types/json-schema" "^7.0.6" + "@types/json-schema" "^7.0.8" ajv "^6.12.5" ajv-keywords "^3.5.2" select-hose@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" - integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= + integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== selfsigned@^1.10.8: - version "1.10.8" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.8.tgz#0d17208b7d12c33f8eac85c41835f27fc3d81a30" - integrity sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w== + version "1.10.14" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.14.tgz#ee51d84d9dcecc61e07e4aba34f229ab525c1574" + integrity sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA== dependencies: node-forge "^0.10.0" @@ -10691,9 +11838,9 @@ semantic-ui-calendar-react@^0.15.3: prop-types "^15.6.2" semantic-ui-css@^2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/semantic-ui-css/-/semantic-ui-css-2.4.1.tgz#f5aea39fafb787cbd905ec724272a3f9cba9004a" - integrity sha512-Pkp0p9oWOxlH0kODx7qFpIRYpK1T4WJOO4lNnpNPOoWKCrYsfHqYSKgk5fHfQtnWnsAKy7nLJMW02bgDWWFZFg== + version "2.5.0" + resolved "https://registry.yarnpkg.com/semantic-ui-css/-/semantic-ui-css-2.5.0.tgz#b3b7b58b5ffbe6d6fb6549beded16e79a9aa64eb" + integrity sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A== dependencies: jquery x.* @@ -10736,9 +11883,9 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== semver@^7.2.1, semver@^7.3.2: - version "7.3.5" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" - integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== + version "7.3.8" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== dependencies: lru-cache "^6.0.0" @@ -10778,7 +11925,7 @@ serialize-javascript@^5.0.1: serve-index@^1.9.1: version "1.9.1" resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" - integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk= + integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== dependencies: accepts "~1.3.4" batch "0.6.1" @@ -10801,7 +11948,7 @@ serve-static@1.15.0: set-blocking@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== set-value@^2.0.0, set-value@^2.0.1: version "2.0.1" @@ -10816,7 +11963,7 @@ set-value@^2.0.0, set-value@^2.0.1: setimmediate@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== setprototypeof@1.1.0: version "1.1.0" @@ -10844,7 +11991,7 @@ shallowequal@^1.1.0: shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== dependencies: shebang-regex "^1.0.0" @@ -10858,7 +12005,7 @@ shebang-command@^2.0.0: shebang-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== shebang-regex@^3.0.0: version "3.0.0" @@ -10892,9 +12039,9 @@ side-channel@^1.0.4: object-inspect "^1.9.0" signal-exit@^3.0.0, signal-exit@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" - integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== simple-line-icons@^2.4.1: version "2.5.5" @@ -10906,7 +12053,7 @@ simple-line-icons@^2.4.1: simple-swizzle@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" - integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== dependencies: is-arrayish "^0.3.1" @@ -10960,30 +12107,29 @@ snapdragon@^0.8.1: use "^3.1.0" sockjs-client@^1.5.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.5.1.tgz#256908f6d5adfb94dabbdbd02c66362cca0f9ea6" - integrity sha512-VnVAb663fosipI/m6pqRXakEOw7nvd7TUgdr3PlR/8V2I95QIdwT8L4nMxhyU8SmDBHYXU1TOElaKOmKLfYzeQ== + version "1.6.1" + resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.6.1.tgz#350b8eda42d6d52ddc030c39943364c11dcad806" + integrity sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw== dependencies: - debug "^3.2.6" - eventsource "^1.0.7" - faye-websocket "^0.11.3" + debug "^3.2.7" + eventsource "^2.0.2" + faye-websocket "^0.11.4" inherits "^2.0.4" - json3 "^3.3.3" - url-parse "^1.5.1" + url-parse "^1.5.10" sockjs@^0.3.21: - version "0.3.21" - resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.21.tgz#b34ffb98e796930b60a0cfa11904d6a339a7d417" - integrity sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw== + version "0.3.24" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" + integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== dependencies: faye-websocket "^0.11.3" - uuid "^3.4.0" + uuid "^8.3.2" websocket-driver "^0.7.4" sort-keys@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" - integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0= + integrity sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg== dependencies: is-plain-obj "^1.0.0" @@ -10992,6 +12138,11 @@ source-list-map@^2.0.0: resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== +"source-map-js@>=0.6.2 <2.0.0": + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: version "0.5.3" resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" @@ -11003,7 +12154,7 @@ source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: source-map-url "^0.4.0" urix "^0.1.0" -source-map-support@^0.5.6, source-map-support@~0.5.12, source-map-support@~0.5.19: +source-map-support@^0.5.6, source-map-support@~0.5.12, source-map-support@~0.5.20: version "0.5.21" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== @@ -11021,25 +12172,30 @@ source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, sourc resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@^0.5.0, source-map@^0.5.6: +source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== -source-map@^0.7.3, source-map@~0.7.2: - version "0.7.3" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" - integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== +source-map@^0.7.3: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== sourcemap-codec@^1.4.4: version "1.4.8" resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== +space-separated-tokens@^1.0.0: + version "1.1.5" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" + integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== + spdx-correct@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" - integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + version "3.2.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== dependencies: spdx-expression-parse "^3.0.0" spdx-license-ids "^3.0.0" @@ -11058,9 +12214,9 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.7" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" - integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== + version "3.0.13" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz#7189a474c46f8d47c7b0da4b987bb45e908bd2d5" + integrity sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w== spdy-transport@^3.0.0: version "3.0.0" @@ -11095,12 +12251,21 @@ split-string@^3.0.1, split-string@^3.0.2: sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +ssf@~0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/ssf/-/ssf-0.8.2.tgz#b9d4dc6a1c1bcf76f8abfa96d7d7656fb2abecd6" + integrity sha512-+ZkFDAG+ImJ48DcZvabx6YTrZ67DKkM0kbyOOtH73mbUEvNhQWWgRZrHC8+k7GuGKWQnACYLi7bj0eCt1jmosQ== + dependencies: + colors "0.6.2" + frac "0.3.1" + voc "" sshpk@^1.7.0: - version "1.16.1" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" - integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== + version "1.17.0" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" + integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== dependencies: asn1 "~0.2.3" assert-plus "^1.0.0" @@ -11132,21 +12297,21 @@ stable@^0.1.8: integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== stack-utils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.3.tgz#cd5f030126ff116b78ccb3c027fe302713b61277" - integrity sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw== + version "2.0.6" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" + integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== dependencies: escape-string-regexp "^2.0.0" stackframe@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.2.0.tgz#52429492d63c62eb989804c11552e3d22e779303" - integrity sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA== + version "1.3.4" + resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" + integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== static-extend@^0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + integrity sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g== dependencies: define-property "^0.2.5" object-copy "^0.1.0" @@ -11159,12 +12324,12 @@ statuses@2.0.1: "statuses@>= 1.4.0 < 2": version "1.5.0" resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== stealthy-require@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" - integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= + integrity sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g== stream-browserify@^2.0.1: version "2.0.2" @@ -11201,7 +12366,7 @@ stream-shift@^1.0.0: strict-uri-encode@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" - integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= + integrity sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ== string-length@^4.0.1: version "4.0.2" @@ -11225,43 +12390,55 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" -string-width@^4.1.0, string-width@^4.2.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" - integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.0" + strip-ansi "^6.0.1" string.prototype.matchall@^4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz#608f255e93e072107f5de066f81a2dfb78cf6b29" - integrity sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ== + version "4.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" + integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.18.0-next.2" - has-symbols "^1.0.1" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" internal-slot "^1.0.3" - regexp.prototype.flags "^1.3.1" + regexp.prototype.flags "^1.4.3" side-channel "^1.0.4" -string.prototype.trimend@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" - integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== +string.prototype.trim@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" + integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" + define-properties "^1.1.4" + es-abstract "^1.20.4" -string.prototype.trimstart@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" - integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== +string.prototype.trimend@^1.0.4, string.prototype.trimend@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" + integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string.prototype.trimstart@^1.0.4, string.prototype.trimstart@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" + integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" string_decoder@^1.0.0, string_decoder@^1.1.1: version "1.3.0" @@ -11286,17 +12463,17 @@ stringify-object@^3.3.0: is-obj "^1.0.1" is-regexp "^1.0.0" -strip-ansi@6.0.0, strip-ansi@^6.0.0: +strip-ansi@6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== dependencies: ansi-regex "^5.0.0" -strip-ansi@^3.0.0, strip-ansi@^3.0.1: +strip-ansi@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== dependencies: ansi-regex "^2.0.0" @@ -11307,10 +12484,17 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== strip-bom@^4.0.0: version "4.0.0" @@ -11328,7 +12512,7 @@ strip-comments@^1.0.2: strip-eof@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== strip-final-newline@^2.0.0: version "2.0.0" @@ -11356,13 +12540,13 @@ style-loader@1.3.0: schema-utils "^2.7.0" styled-components@^5.1.1: - version "5.3.0" - resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.0.tgz#e47c3d3e9ddfff539f118a3dd0fd4f8f4fb25727" - integrity sha512-bPJKwZCHjJPf/hwTJl6TbkSZg/3evha+XPEizrZUGb535jLImwDUdjTNxXqjjaASt2M4qO4AVfoHJNe3XB/tpQ== + version "5.3.9" + resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.9.tgz#641af2a8bb89904de708c71b439caa9633e8f0ba" + integrity sha512-Aj3kb13B75DQBo2oRwRa/APdB5rSmwUfN5exyarpX+x/tlM/rwZA2vVk2vQgVSP6WKaZJHWwiFrzgHt+CLtB4A== dependencies: "@babel/helper-module-imports" "^7.0.0" "@babel/traverse" "^7.4.5" - "@emotion/is-prop-valid" "^0.8.8" + "@emotion/is-prop-valid" "^1.1.0" "@emotion/stylis" "^0.8.4" "@emotion/unitless" "^0.7.4" babel-plugin-styled-components ">= 1.12.0" @@ -11380,6 +12564,11 @@ stylehacks@^4.0.0: postcss "^7.0.0" postcss-selector-parser "^3.0.0" +stylis@4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.1.3.tgz#fd2fbe79f5fed17c55269e16ed8da14c84d069f7" + integrity sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA== + supports-color@^5.3.0, supports-color@^5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -11402,13 +12591,18 @@ supports-color@^7.0.0, supports-color@^7.1.0: has-flag "^4.0.0" supports-hyperlinks@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" - integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== + version "2.3.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" + integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== dependencies: has-flag "^4.0.0" supports-color "^7.0.0" +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + svg-parser@^2.0.2: version "2.0.4" resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" @@ -11439,17 +12633,15 @@ symbol-tree@^3.2.4: integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== table@^6.0.4: - version "6.6.0" - resolved "https://registry.yarnpkg.com/table/-/table-6.6.0.tgz#905654b79df98d9e9a973de1dd58682532c40e8e" - integrity sha512-iZMtp5tUvcnAdtHpZTWLPF0M7AgiQsURR2DwmxnJwSy8I3+cY+ozzVvYha3BOLG2TB+L0CqjIz+91htuj6yCXg== + version "6.8.1" + resolved "https://registry.yarnpkg.com/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf" + integrity sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA== dependencies: ajv "^8.0.1" - lodash.clonedeep "^4.5.0" - lodash.flatten "^4.4.0" lodash.truncate "^4.4.2" slice-ansi "^4.0.0" - string-width "^4.2.0" - strip-ansi "^6.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" tapable@^1.0.0, tapable@^1.1.3: version "1.1.3" @@ -11457,13 +12649,13 @@ tapable@^1.0.0, tapable@^1.1.3: integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== tar@^6.0.2: - version "6.1.11" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" - integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== + version "6.1.13" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.13.tgz#46e22529000f612180601a6fe0680e7da508847b" + integrity sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw== dependencies: chownr "^2.0.0" fs-minipass "^2.0.0" - minipass "^3.0.0" + minipass "^4.0.0" minizlib "^2.1.1" mkdirp "^1.0.3" yallist "^4.0.0" @@ -11471,7 +12663,7 @@ tar@^6.0.2: temp-dir@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" - integrity sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0= + integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ== tempy@^0.3.0: version "0.3.0" @@ -11530,13 +12722,14 @@ terser@^4.1.2, terser@^4.6.2, terser@^4.6.3: source-map-support "~0.5.12" terser@^5.3.4: - version "5.7.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.0.tgz#a761eeec206bc87b605ab13029876ead938ae693" - integrity sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g== + version "5.16.8" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.8.tgz#ccde583dabe71df3f4ed02b65eb6532e0fae15d5" + integrity sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA== dependencies: + "@jridgewell/source-map" "^0.3.2" + acorn "^8.5.0" commander "^2.20.0" - source-map "~0.7.2" - source-map-support "~0.5.19" + source-map-support "~0.5.20" test-exclude@^6.0.0: version "6.0.0" @@ -11550,7 +12743,7 @@ test-exclude@^6.0.0: text-table@0.2.0, text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== throat@^5.0.0: version "5.0.0" @@ -11580,19 +12773,19 @@ timers-browserify@^2.0.4: timsort@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" - integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= + integrity sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A== tiny-invariant@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.1.0.tgz#634c5f8efdc27714b7f386c35e6760991d230875" - integrity sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw== + version "1.3.1" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642" + integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw== tiny-warning@^1.0.0, tiny-warning@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== -tmpl@1.0.x: +tmpl@1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== @@ -11600,24 +12793,24 @@ tmpl@1.0.x: to-arraybuffer@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= + integrity sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA== to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== to-object-path@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg== dependencies: kind-of "^3.0.2" to-regex-range@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + integrity sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg== dependencies: is-number "^3.0.0" repeat-string "^1.6.1" @@ -11653,18 +12846,19 @@ tough-cookie@^2.3.3, tough-cookie@~2.5.0: punycode "^2.1.1" tough-cookie@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" - integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== + version "4.1.2" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.2.tgz#e53e84b85f24e0b65dd526f46628db6c85f6b874" + integrity sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ== dependencies: psl "^1.1.33" punycode "^2.1.1" - universalify "^0.1.2" + universalify "^0.2.0" + url-parse "^1.5.3" -tr46@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.0.2.tgz#03273586def1595ae08fedb38d7733cee91d2479" - integrity sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg== +tr46@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" + integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== dependencies: punycode "^2.1.1" @@ -11679,13 +12873,13 @@ ts-pnp@1.2.0, ts-pnp@^1.1.6: integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== tsconfig-paths@^3.9.0: - version "3.9.0" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" - integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== + version "3.14.2" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" + integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== dependencies: "@types/json5" "^0.0.29" - json5 "^1.0.1" - minimist "^1.2.0" + json5 "^1.0.2" + minimist "^1.2.6" strip-bom "^3.0.0" tslib@^1.10.0, tslib@^1.8.1: @@ -11694,9 +12888,18 @@ tslib@^1.10.0, tslib@^1.8.1: integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tslib@^2.0.3: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c" - integrity sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w== + version "2.5.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" + integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== + +tss-react@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/tss-react/-/tss-react-3.7.1.tgz#119647731490f9e7e62c7f6a38a78df981929a4b" + integrity sha512-dfWUoxBlKZfIG9UC1A2h02OmcE/Ni0itCmmZu94E9g+KyBhKMHKcsKvUm0bNlRqTmYjXiCgPJDmj5fyc8CSrLg== + dependencies: + "@emotion/cache" "*" + "@emotion/serialize" "*" + "@emotion/utils" "*" tsutils@^3.17.1: version "3.21.0" @@ -11708,19 +12911,19 @@ tsutils@^3.17.1: tty-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" - integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= + integrity sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw== tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== dependencies: safe-buffer "^5.0.1" tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" @@ -11732,7 +12935,7 @@ type-check@^0.4.0, type-check@~0.4.0: type-check@~0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= + integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== dependencies: prelude-ls "~1.1.2" @@ -11780,9 +12983,18 @@ type@^1.0.1: integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== type@^2.0.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/type/-/type-2.5.0.tgz#0a2e78c2e77907b252abe5f298c1b01c63f0db3d" - integrity sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw== + version "2.7.2" + resolved "https://registry.yarnpkg.com/type/-/type-2.7.2.tgz#2376a15a3a28b1efa0f5350dcf72d24df6ef98d0" + integrity sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw== + +typed-array-length@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" + integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + is-typed-array "^1.1.9" typed-styles@^0.0.7: version "0.0.7" @@ -11799,40 +13011,40 @@ typedarray-to-buffer@^3.1.5: typedarray@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== -unbox-primitive@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" - integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== +unbox-primitive@^1.0.0, unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== dependencies: - function-bind "^1.1.1" - has-bigints "^1.0.1" - has-symbols "^1.0.2" + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" which-boxed-primitive "^1.0.2" -unicode-canonical-property-names-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" - integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== -unicode-match-property-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" - integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== dependencies: - unicode-canonical-property-names-ecmascript "^1.0.4" - unicode-property-aliases-ecmascript "^1.0.4" + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" -unicode-match-property-value-ecmascript@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" - integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== +unicode-match-property-value-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== -unicode-property-aliases-ecmascript@^1.0.4: - version "1.1.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" - integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== union-value@^1.0.0: version "1.0.1" @@ -11847,12 +13059,12 @@ union-value@^1.0.0: uniq@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" - integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= + integrity sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA== uniqs@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" - integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= + integrity sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ== unique-filename@^1.1.1: version "1.1.1" @@ -11871,7 +13083,7 @@ unique-slug@^2.0.0: unique-string@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" - integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= + integrity sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg== dependencies: crypto-random-string "^1.0.0" @@ -11883,11 +13095,16 @@ universal-cookie@^4.0.0: "@types/cookie" "^0.3.3" cookie "^0.4.0" -universalify@^0.1.0, universalify@^0.1.2: +universalify@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== +universalify@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" + integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== + universalify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" @@ -11909,12 +13126,12 @@ unpipe@1.0.0, unpipe@~1.0.0: unquote@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" - integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= + integrity sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg== unset-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + integrity sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ== dependencies: has-value "^0.3.1" isobject "^3.0.0" @@ -11934,7 +13151,7 @@ uri-js@^4.2.2: urix@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== url-loader@4.1.1: version "4.1.1" @@ -11945,7 +13162,7 @@ url-loader@4.1.1: mime-types "^2.1.27" schema-utils "^3.0.0" -url-parse@^1.4.3, url-parse@^1.5.1: +url-parse@^1.5.10, url-parse@^1.5.3: version "1.5.10" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== @@ -11956,7 +13173,7 @@ url-parse@^1.4.3, url-parse@^1.5.1: url@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= + integrity sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ== dependencies: punycode "1.3.2" querystring "0.2.0" @@ -11974,7 +13191,7 @@ use@^3.1.0: util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== util.promisify@1.0.0: version "1.0.0" @@ -11997,7 +13214,7 @@ util.promisify@~1.0.0: util@0.10.3: version "0.10.3" resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= + integrity sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ== dependencies: inherits "2.0.1" @@ -12011,19 +13228,19 @@ util@^0.11.0: utila@~0.4: version "0.4.0" resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" - integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw= + integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== utils-merge@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== -uuid@^3.3.2, uuid@^3.4.0: +uuid@^3.3.2: version "3.4.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== -uuid@^8.3.0: +uuid@^8.3.0, uuid@^8.3.2: version "8.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== @@ -12034,9 +13251,9 @@ v8-compile-cache@^2.0.3: integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== v8-to-istanbul@^7.0.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.1.tgz#04bfd1026ba4577de5472df4f5e89af49de5edda" - integrity sha512-p0BB09E5FRjx0ELN6RgusIPsSPhtgexSRcKETybEs6IGOTXJSZqfwxp7r//55nnu0f1AxltY5VvdVqy2vZf9AA== + version "7.1.2" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1" + integrity sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow== dependencies: "@types/istanbul-lib-coverage" "^2.0.1" convert-source-map "^1.6.0" @@ -12068,7 +13285,7 @@ vendors@^1.0.0: verror@1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== dependencies: assert-plus "^1.0.0" core-util-is "1.0.2" @@ -12079,6 +13296,11 @@ vm-browserify@^1.0.1: resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== +voc@: + version "1.2.0" + resolved "https://registry.yarnpkg.com/voc/-/voc-1.2.0.tgz#c459024531d71067c09e2c0c2bda6c2b13af32d8" + integrity sha512-BOuDjFFYvJdZO6e/N65AlaDItXo2TgyLjeyRYcqgAPkXpp5yTJcvkL2n+syO1r9Qc5g96tfBD2tuiMhYDmaGcA== + w3c-hr-time@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" @@ -12099,11 +13321,11 @@ wait-for-expect@^3.0.2: integrity sha512-cfS1+DZxuav1aBYbaO/kE06EOS8yRw7qOFoD3XtjTkYvCvh3zUvNST8DXK/nPaeqIzIv3P3kL3lRJn8iwOiSag== walker@^1.0.7, walker@~1.0.5: - version "1.0.7" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" - integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== dependencies: - makeerror "1.0.x" + makeerror "1.0.12" warning@^4.0.2, warning@^4.0.3: version "4.0.3" @@ -12284,12 +13506,12 @@ whatwg-mimetype@^2.3.0: integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== whatwg-url@^8.0.0, whatwg-url@^8.5.0: - version "8.5.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.5.0.tgz#7752b8464fc0903fec89aa9846fc9efe07351fd3" - integrity sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg== + version "8.7.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" + integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== dependencies: lodash "^4.7.0" - tr46 "^2.0.2" + tr46 "^2.1.0" webidl-conversions "^6.1.0" which-boxed-primitive@^1.0.2: @@ -12306,7 +13528,19 @@ which-boxed-primitive@^1.0.2: which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== + +which-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" + integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.10" which@^1.2.9, which@^1.3.1: version "1.3.1" @@ -12322,10 +13556,17 @@ which@^2.0.1, which@^2.0.2: dependencies: isexe "^2.0.0" +window-post-message-proxy@^0.2: + version "0.2.6" + resolved "https://registry.yarnpkg.com/window-post-message-proxy/-/window-post-message-proxy-0.2.6.tgz#8d9800d441629c8bff0a8cb2bf9e0119702940ca" + integrity sha512-IwNWtUWVFarBa2F9vhmfv2yr0PfPm57QuOBCw3qSLaunhD3THcHUKQ4HrJQiCuYUT7LEjhUtaoA+hrV+wQzNmQ== + dependencies: + es6-promise "^3.1.2" + wkt-parser@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/wkt-parser/-/wkt-parser-1.2.4.tgz#e42ba7b96f13aef82a2da9056e2d87da0fec5393" - integrity sha512-ZzKnc7ml/91fOPh5bANBL4vUlWPIYYv11waCtWTkl2TRN+LEmBg60Q1MA8gqV4hEp4MGfSj9JiHz91zw/gTDXg== + version "1.3.2" + resolved "https://registry.yarnpkg.com/wkt-parser/-/wkt-parser-1.3.2.tgz#deeff04a21edc5b170a60da418e9ed1d1ab0e219" + integrity sha512-A26BOOo7sHAagyxG7iuRhnKMO7Q3mEOiOT4oGUmohtN/Li5wameeU4S6f8vWw6NADTVKljBs8bzA8JPQgSEMVQ== word-wrap@^1.2.3, word-wrap@~1.2.3: version "1.2.3" @@ -12520,7 +13761,7 @@ wrap-ansi@^6.2.0: wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== write-file-atomic@^3.0.0: version "3.0.3" @@ -12540,9 +13781,21 @@ ws@^6.2.1: async-limiter "~1.0.0" ws@^7.4.4: - version "7.4.5" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1" - integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g== + version "7.5.9" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +"xlsx@git+https://github.com/securedeveloper/js-xlsx.git": + version "0.8.20" + resolved "git+https://github.com/securedeveloper/js-xlsx.git#32f550d3b3bdb1b781aabe100683311cd982c98e" + dependencies: + adler-32 "" + cfb ">=0.10.0" + codepage "~1.3.6" + commander "" + crc-32 "" + jszip "2.4.0" + ssf "~0.8.1" xml-name-validator@^3.0.0: version "3.0.0" @@ -12632,3 +13885,8 @@ yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +yocto-queue@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" + integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==