diff --git a/cave/com.raytheon.uf.viz.thinclient.cave/src/com/raytheon/uf/viz/thinclient/cave/preferences/SyncLocalizationEditor.java b/cave/com.raytheon.uf.viz.thinclient.cave/src/com/raytheon/uf/viz/thinclient/cave/preferences/SyncLocalizationEditor.java
index 4863c160a9..69266aeec7 100644
--- a/cave/com.raytheon.uf.viz.thinclient.cave/src/com/raytheon/uf/viz/thinclient/cave/preferences/SyncLocalizationEditor.java
+++ b/cave/com.raytheon.uf.viz.thinclient.cave/src/com/raytheon/uf/viz/thinclient/cave/preferences/SyncLocalizationEditor.java
@@ -37,10 +37,11 @@ import com.raytheon.uf.common.localization.LocalizationContext;
import com.raytheon.uf.common.localization.LocalizationContext.LocalizationType;
import com.raytheon.uf.common.localization.LocalizationFile;
import com.raytheon.uf.common.localization.PathManagerFactory;
-import com.raytheon.uf.viz.core.localization.CAVELocalizationAdapter;
+import com.raytheon.uf.viz.thinclient.preferences.ThinClientPreferenceConstants;
/**
- * TODO Add Description
+ * A {@link BooleanFieldEditor} which adds a button that can be used to
+ * synchronize localization files with the server.
*
*
*
@@ -48,7 +49,8 @@ import com.raytheon.uf.viz.core.localization.CAVELocalizationAdapter;
*
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
- * Nov 22, 2011 bsteffen Initial creation
+ * Nov 22, 2011 bsteffen Initial creation
+ * May 29, 2015 4532 bsteffen Notify the preference store when sync is running.
*
*
*
@@ -75,8 +77,9 @@ public class SyncLocalizationEditor extends BooleanFieldEditor {
@Override
protected IStatus run(IProgressMonitor monitor) {
- IPathManager pathManager = PathManagerFactory
- .getPathManager(new CAVELocalizationAdapter());
+ getPreferenceStore().firePropertyChangeEvent(ThinClientPreferenceConstants.P_SYNC_REMOTE_LOCALIZATION,
+ false, true);
+ IPathManager pathManager = PathManagerFactory.getPathManager();
LocalizationType[] types = { LocalizationType.CAVE_CONFIG,
LocalizationType.CAVE_STATIC,
LocalizationType.COMMON_STATIC };
@@ -105,6 +108,8 @@ public class SyncLocalizationEditor extends BooleanFieldEditor {
System.out.println("Time to download " + type + ": "
+ (endTime - startTime) + "ms");
}
+ getPreferenceStore().firePropertyChangeEvent(ThinClientPreferenceConstants.P_SYNC_REMOTE_LOCALIZATION,
+ true, false);
monitor.done();
return Status.OK_STATUS;
}
diff --git a/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/localization/ThinClientLocalizationAdapter.java b/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/localization/ThinClientLocalizationAdapter.java
index 70c1f65600..aed15d8878 100644
--- a/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/localization/ThinClientLocalizationAdapter.java
+++ b/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/localization/ThinClientLocalizationAdapter.java
@@ -25,6 +25,7 @@ import java.util.Date;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
+import java.util.concurrent.atomic.AtomicInteger;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.util.IPropertyChangeListener;
@@ -53,6 +54,7 @@ import com.raytheon.uf.viz.thinclient.preferences.ThinClientPreferenceConstants;
* Aug 9, 2011 njensen Initial creation
* Aug 13, 2013 2033 mschenke Changed to search all plugins when
* CAVE_STATIC BASE context searched
+ * May 29, 2015 4532 bsteffen Always use super when sync job is running.
*
*
*
@@ -63,6 +65,12 @@ import com.raytheon.uf.viz.thinclient.preferences.ThinClientPreferenceConstants;
public class ThinClientLocalizationAdapter extends CAVELocalizationAdapter
implements IPropertyChangeListener {
+ /**
+ * Whenever there is a sync job running, always call super to allow it to go
+ * to the server.
+ */
+ private final AtomicInteger syncJobsRunning = new AtomicInteger(0);
+
private boolean useRemoteFiles = true;
public ThinClientLocalizationAdapter() {
@@ -83,6 +91,10 @@ public class ThinClientLocalizationAdapter extends CAVELocalizationAdapter
@Override
public void retrieve(LocalizationFile file)
throws LocalizationOpFailedException {
+ if (syncJobsRunning.get() > 0) {
+ super.retrieve(file);
+ return;
+ }
try {
File localFile = file.getFile(false);
if (localFile.exists() == false || localFile.length() == 0) {
@@ -91,8 +103,15 @@ public class ThinClientLocalizationAdapter extends CAVELocalizationAdapter
} catch (LocalizationOpFailedException e) {
throw e;
} catch (LocalizationException e) {
- // Ignore exception
- e.printStackTrace();
+ /*
+ * At the time of this writing, nothing will actually throw any
+ * LocalizationException other than LocalizationOpFailedException.
+ * However since LocalizationFile.getFile(boolean) has a method
+ * signature indicating it could throw any LocalizationException
+ * this code should be able to handle any LocalizationException in
+ * case the implementation of getFile changes in the future.
+ */
+ throw new LocalizationOpFailedException(e);
}
}
@@ -108,7 +127,7 @@ public class ThinClientLocalizationAdapter extends CAVELocalizationAdapter
public ListResponse[] listDirectory(LocalizationContext[] contexts,
String path, boolean recursive, boolean filesOnly)
throws LocalizationOpFailedException {
- if (useRemoteFiles) {
+ if (shouldUseRemoteFiles()) {
return super.listDirectory(contexts, path, recursive, filesOnly);
} else {
@@ -164,7 +183,7 @@ public class ThinClientLocalizationAdapter extends CAVELocalizationAdapter
public ListResponse[] getLocalizationMetadata(
LocalizationContext[] context, String fileName)
throws LocalizationOpFailedException {
- if (useRemoteFiles) {
+ if (shouldUseRemoteFiles()) {
return super.getLocalizationMetadata(context, fileName);
} else {
List responses = new ArrayList(
@@ -193,19 +212,30 @@ public class ThinClientLocalizationAdapter extends CAVELocalizationAdapter
@Override
public boolean exists(LocalizationFile file) {
- if (useRemoteFiles) {
+ if (shouldUseRemoteFiles()) {
return super.exists(file);
} else {
return file.getFile().exists();
}
}
+ private boolean shouldUseRemoteFiles() {
+ return useRemoteFiles || syncJobsRunning.get() > 0;
+ }
+
@Override
public void propertyChange(PropertyChangeEvent event) {
if (ThinClientPreferenceConstants.P_DISABLE_REMOTE_LOCALIZATION
.equals(event.getProperty())) {
useRemoteFiles = !Boolean.valueOf(String.valueOf(event
.getNewValue()));
+ } else if (ThinClientPreferenceConstants.P_SYNC_REMOTE_LOCALIZATION.equals(event.getProperty())) {
+ boolean sync = Boolean.valueOf(String.valueOf(event.getNewValue()));
+ if (sync) {
+ syncJobsRunning.incrementAndGet();
+ } else {
+ syncJobsRunning.decrementAndGet();
+ }
}
}
diff --git a/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/preferences/ThinClientPreferenceConstants.java b/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/preferences/ThinClientPreferenceConstants.java
index 3d4efb9cdb..f8b93b6299 100644
--- a/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/preferences/ThinClientPreferenceConstants.java
+++ b/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/preferences/ThinClientPreferenceConstants.java
@@ -19,6 +19,8 @@
**/
package com.raytheon.uf.viz.thinclient.preferences;
+import org.eclipse.jface.preference.IPreferenceStore;
+
/**
* Preference constants for the thin client mode
*
@@ -32,6 +34,8 @@ package com.raytheon.uf.viz.thinclient.preferences;
* Jan 14, 2013 1469 bkowal The hdf5 data directory is no longer a preference constant.
* Feb 04, 2014 2704 njensen Consolidate services and pypies proxy addresses
* Jun 24, 2014 3236 njensen Added proxy address options
+ * May 29, 2015 4532 bsteffen Add sync localization option.
+ *
*
*
*
@@ -61,6 +65,19 @@ public class ThinClientPreferenceConstants {
public static String P_DISABLE_REMOTE_LOCALIZATION = "disableRemoteLocalization";
+ /**
+ * This preference is not stored but is used to send notification through
+ * the preference store that the {@link #P_CACHE_LOCALIZATION} and
+ * {@link #P_DISABLE_REMOTE_LOCALIZATION} should be temporarily ignored so
+ * that the localization files can be synchronized with the server. Before
+ * performing synchronization, an event should be fired using
+ * {@link IPreferenceStore#firePropertyChangeEvent(String, Object, Object)}
+ * with the preference name as {@link #P_SYNC_REMOTE_LOCALIZATION} and a
+ * newValue of true. When synchronization has completed another event should
+ * be fired with a newValue of false.
+ */
+ public static String P_SYNC_REMOTE_LOCALIZATION = "syncRemoteFiles";
+
public static String P_DISABLE_MENU_TIMES = "disableMenuTimes";
public static String P_DISABLE_JMS = "disableJms";
diff --git a/cave/com.raytheon.viz.gfe/GFESuite/runProcedure b/cave/com.raytheon.viz.gfe/GFESuite/runProcedure
index e76b886a3d..b4e64797fd 100755
--- a/cave/com.raytheon.viz.gfe/GFESuite/runProcedure
+++ b/cave/com.raytheon.viz.gfe/GFESuite/runProcedure
@@ -17,6 +17,13 @@ then
echo "CAVE and/or gfeclient not installed on this workstation ..exiting"
exit 1
else
- $_GFECLI $_MODULE "$@"
+ CONFDIR=${HOME}/.runProc-$(hostname)-$$
+ cleanup() {
+ rm -rf "$CONFDIR"
+ }
+ mkdir -p "$CONFDIR" || exit 1
+ trap cleanup EXIT
+
+ $_GFECLI -configuration $CONFDIR $_MODULE "$@"
fi
diff --git a/cave/com.raytheon.viz.warngen/src/com/raytheon/viz/warngen/gui/WarngenDialog.java b/cave/com.raytheon.viz.warngen/src/com/raytheon/viz/warngen/gui/WarngenDialog.java
index fe10ca0460..e2b845467a 100644
--- a/cave/com.raytheon.viz.warngen/src/com/raytheon/viz/warngen/gui/WarngenDialog.java
+++ b/cave/com.raytheon.viz.warngen/src/com/raytheon/viz/warngen/gui/WarngenDialog.java
@@ -166,6 +166,7 @@ import com.vividsolutions.jts.geom.Polygon;
* not be as expected if percentage/area is different between the two products. But the
* chance for that to occur is trivial.
* May 7, 2015 ASM #17438 D. Friedman Clean up debug and performance logging.
+ * Jun 05, 2015 DR 17428 D. Friedman Fixed duration-related user interface issues. Added duration logging.
*
*
* @author chammack
@@ -1095,15 +1096,25 @@ public class WarngenDialog extends CaveSWTDialog implements
* @param durations
*/
public void setDurations(int[] durations) {
- String[] durList = new String[durations.length];
+ ArrayList durList = new ArrayList(durations.length);
+ boolean isDefaultDurationInList = false;
durationList.removeAll();
for (int i = 0; i < durations.length; i++) {
+ if (defaultDuration != null
+ && defaultDuration.minutes == durations[i]) {
+ isDefaultDurationInList = true;
+ }
DurationData data = new DurationData(durations[i]);
durationList.setData(data.displayString, data);
- durList[i] = data.displayString;
+ durList.add(data.displayString);
+ }
+ // Add the default duration to the list if what was missing
+ if (! isDefaultDurationInList && defaultDuration != null) {
+ durationList.setData(defaultDuration.displayString, defaultDuration);
+ durList.add(0, defaultDuration.displayString);
}
- durationList.setItems(durList);
+ durationList.setItems(durList.toArray(new String[durList.size()]));
}
/**
@@ -1179,6 +1190,8 @@ public class WarngenDialog extends CaveSWTDialog implements
long t0 = System.currentTimeMillis();
try {
monitor.beginTask("Generating product", 1);
+ statusHandler.debug("using startTime " + startTime.getTime()
+ + " endTime " + endTime.getTime());
String result = TemplateRunner.runTemplate(
warngenLayer, startTime.getTime(),
endTime.getTime(), selectedBullets,
@@ -1328,9 +1341,10 @@ public class WarngenDialog extends CaveSWTDialog implements
* Action for Reset button
*/
private void resetPressed() {
+ statusHandler.debug("resetPressed");
+ int durationToUse = getSelectedDuration();
warngenLayer.resetState();
- warngenLayer.getStormTrackState().duration = ((DurationData) durationList
- .getData(durationList.getItem(durationList.getSelectionIndex()))).minutes;
+ restoreDuration(durationToUse);
durationList.setEnabled(warngenLayer.getConfiguration()
.isEnableDuration());
if (lineOfStorms.getSelection()) {
@@ -1366,6 +1380,7 @@ public class WarngenDialog extends CaveSWTDialog implements
warngenLayer.resetInitialFrame();
warngenLayer.setWarningAction(null);
instructionsLabel.setText("Instructions:");
+ changeStartEndTimes();
warngenLayer.issueRefresh();
}
@@ -1430,8 +1445,11 @@ public class WarngenDialog extends CaveSWTDialog implements
* Select one storm
*/
private void selectOneStorm() {
+ statusHandler.debug("selectOneStorm");
if (warngenLayer.state.followupData == null) {
+ int savedDuration = warngenLayer.getStormTrackState().duration;
warngenLayer.resetState();
+ restoreDuration(savedDuration);
warngenLayer.reset("oneStorm");
warngenLayer.clearWarningGeometries();
warngenLayer.getStormTrackState().dragMeLine = null;
@@ -1447,8 +1465,11 @@ public class WarngenDialog extends CaveSWTDialog implements
* Select line of storms
*/
private void selectLineOfStorms() {
+ statusHandler.debug("selectLineOfStorms");
if (warngenLayer.state.followupData == null) {
+ int savedDuration = warngenLayer.getStormTrackState().duration;
warngenLayer.resetState();
+ restoreDuration(savedDuration);
warngenLayer.reset("lineOfStorms");
warngenLayer.clearWarningGeometries();
warngenLayer.getStormTrackState().dragMeLine = null;
@@ -1596,6 +1617,7 @@ public class WarngenDialog extends CaveSWTDialog implements
* - The button that has been clicked
*/
private void changeTemplate(String templateName) {
+ statusHandler.debug("changeTemplate: " + templateName);
String lastAreaSource = warngenLayer.getConfiguration()
.getHatchedAreaSource().getAreaSource();
@@ -1689,11 +1711,11 @@ public class WarngenDialog extends CaveSWTDialog implements
}
protected void recreateDurations(Combo durList) {
- setDurations(warngenLayer.getConfiguration().getDurations());
if (warngenLayer.getConfiguration().getDefaultDuration() != 0) {
setDefaultDuration(warngenLayer.getConfiguration()
.getDefaultDuration());
}
+ setDurations(warngenLayer.getConfiguration().getDurations());
durList.setText(defaultDuration.displayString);
endTime = DurationUtil.calcEndTime(startTime, defaultDuration.minutes);
end.setText(df.format(endTime.getTime()));
@@ -1754,6 +1776,7 @@ public class WarngenDialog extends CaveSWTDialog implements
FollowupData data = (FollowupData) updateListCbo
.getData(updateListCbo.getItem(updateListCbo
.getSelectionIndex()));
+ statusHandler.debug("updateListSelected: " + (data != null ? data.getDisplayString() : "(null)"));
Mode currMode = warngenLayer.getStormTrackState().mode;
if (data != null) {
// does not refesh if user selected already highlighted option
@@ -1863,6 +1886,8 @@ public class WarngenDialog extends CaveSWTDialog implements
|| (action == WarningAction.EXT)) {
recreateDurations(durationList);
}
+ } else {
+ statusHandler.debug("updateListSelected");
}
updateListCbo.pack(true);
productType.layout();
@@ -1895,6 +1920,7 @@ public class WarngenDialog extends CaveSWTDialog implements
}
private void changeSelected() {
+ statusHandler.debug("changeSelected");
if ((validPeriodDlg == null) || validPeriodDlg.isDisposed()) {
validPeriodDlg = new ValidPeriodDialog(shell, startTime, endTime);
validPeriodDlg.setCloseCallback(new ICloseCallback() {
@@ -1902,6 +1928,7 @@ public class WarngenDialog extends CaveSWTDialog implements
@Override
public void dialogClosed(Object returnValue) {
int duration = (Integer) returnValue;
+ statusHandler.debug("changeSelected.dialogClosed: " + duration);
if (duration != -1) {
durationList.setEnabled(false);
endTime.add(Calendar.MINUTE, duration);
@@ -1926,6 +1953,7 @@ public class WarngenDialog extends CaveSWTDialog implements
private void durationSelected() {
String selection = durationList.getItem(durationList
.getSelectionIndex());
+ statusHandler.debug("durationSelected: " + selection);
endTime = DurationUtil.calcEndTime(extEndTime != null ? extEndTime
: startTime,
((DurationData) durationList.getData(selection)).minutes);
@@ -2292,8 +2320,7 @@ public class WarngenDialog extends CaveSWTDialog implements
updatePolygon(newWarn);
recreateDurations(durationList);
- int duration = ((DurationData) durationList.getData(durationList
- .getItem(durationList.getSelectionIndex()))).minutes;
+ int duration = getSelectedDuration();
warngenLayer.getStormTrackState().duration = duration;
startTime = TimeUtil.newCalendar();
@@ -2615,4 +2642,39 @@ public class WarngenDialog extends CaveSWTDialog implements
return defaultTemplate;
}
+ private void restoreDuration(int duration) {
+ warngenLayer.getStormTrackState().duration =
+ warngenLayer.getStormTrackState().newDuration = duration;
+ warngenLayer.getStormTrackState().geomChanged = true;
+ }
+
+ private int getSelectedDuration() {
+ Exception excToReport= null;
+ DurationData data = null;
+ try {
+ data = (DurationData) durationList.getData(durationList
+ .getItem(durationList.getSelectionIndex()));
+ } catch (RuntimeException e) {
+ excToReport = e;
+ }
+ int duration;
+ if (data != null) {
+ duration = data.minutes;
+ } else {
+ try {
+ duration = warngenLayer.getConfiguration().getDefaultDuration();
+ } catch (RuntimeException e) {
+ if (excToReport == null) {
+ excToReport = e;
+ }
+ duration = 30;
+ }
+ statusHandler.handle(Priority.WARN,
+ "Unable to determine duration from selection in WarnGen dialog. Using default of "
+ + duration + " minutes.", excToReport);
+ }
+ statusHandler.debug("selected duration is " + duration);
+ return duration;
+ }
+
}
diff --git a/crh/gov.noaa.nws.crh.edex.grib.decoderpostprocessor/src/gov/noaa/nws/crh/edex/grib/decoderpostprocessor/GFS20PostProcessor.java b/crh/gov.noaa.nws.crh.edex.grib.decoderpostprocessor/src/gov/noaa/nws/crh/edex/grib/decoderpostprocessor/GFS20PostProcessor.java
new file mode 100644
index 0000000000..6c46264d45
--- /dev/null
+++ b/crh/gov.noaa.nws.crh.edex.grib.decoderpostprocessor/src/gov/noaa/nws/crh/edex/grib/decoderpostprocessor/GFS20PostProcessor.java
@@ -0,0 +1,154 @@
+package gov.noaa.nws.crh.edex.grib.decoderpostprocessor;
+
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+
+import com.raytheon.edex.plugin.grib.decoderpostprocessors.ThreeHrPrecipGridProcessor;
+import com.raytheon.edex.plugin.grib.exception.GribException;
+import com.raytheon.uf.common.dataplugin.PluginException;
+import com.raytheon.uf.common.dataplugin.grid.GridConstants;
+import com.raytheon.uf.common.dataplugin.grid.GridRecord;
+import com.raytheon.uf.edex.database.DataAccessLayerException;
+import com.raytheon.uf.edex.database.query.DatabaseQuery;
+import com.raytheon.uf.edex.plugin.grid.dao.GridDao;
+
+/**
+ * Grib post processor implementation to generate 3-hr precipitation grids from
+ * the alternating (3-hr, 6-hr, 3-hr, 3-hr, 6-hr, etc.) precip grids in the
+ * GFS20 output.
+ *
+ *
+ *
+ * SOFTWARE HISTORY
+ *
+ * Date Ticket# Engineer Description
+ * ------------- -------- ----------- --------------------------
+ * Jun 08, 2015 M. Foster Initial Creation
+ *
+ *
+ *
+ *
+ * @author matthew.foster
+ * @version 1.0
+ */
+
+public class GFS20PostProcessor extends ThreeHrPrecipGridProcessor {
+
+ @Override
+ public GridRecord[] process(GridRecord record) throws GribException {
+ // Post process the data if this is a Total Precipitation grid
+ if (record.getParameter().getAbbreviation().equals("TP6hr")) {
+ return super.process(record);
+ }
+ return new GridRecord[] { record };
+ }
+
+ /**
+ * Retrieves a List of GridRecord via DAO query for the given datasetId, parm
+ * and refTime.
+ *
+ * @param datasetId
+ * The datasetId from which to retrieve the GridRecords
+ * @param parm
+ * The parameter for which to retrieve GridRecords
+ * @param refTime
+ * The reference (cycle) time for the aforementioned datasetId
+ * @return
+ * @throws GribException
+ */
+ @SuppressWarnings("unchecked")
+ protected List getPrecipInventory(String datasetId, String parm,
+ Date refTime) throws GribException {
+ GridDao dao = null;
+ try {
+ dao = new GridDao();
+ } catch (PluginException e) {
+ throw new GribException("Error instantiating grib dao!", e);
+ }
+ DatabaseQuery query = new DatabaseQuery(GridRecord.class);
+ query.addQueryParam(GridConstants.PARAMETER_ABBREVIATION, parm);
+ query.addQueryParam(GridConstants.DATASET_ID, datasetId);
+ query.addQueryParam("dataTime.refTime", refTime);
+ query.addOrder("dataTime.fcstTime", true);
+ try {
+ return (List) dao.queryByCriteria(query);
+ } catch (DataAccessLayerException e) {
+ throw new GribException(
+ "Error getting Precip inventory for "+datasetId, e);
+ }
+ }
+
+ /**
+ * Generates the 3 hour accumulated grid by taking the difference of the
+ * current 6-hr accumulation and the previous 3-hr accumulation.
+ * This function will look in the inventory and generate any 3-hr grids
+ * that can be generated.
+ *
+ * @param record
+ * The grib record for which to generate the 3 hour accumulated
+ * precipitation grid
+ * @return The generated 3-hr precipitation grids
+ * @throws GribException
+ */
+ protected synchronized GridRecord[] generate3hrPrecipGrids(GridRecord record)
+ throws GribException {
+
+ // The current 6-hr precipitation grid inventory in the database
+ List precip6hrInventory = getPrecipInventory(record.getDatasetId(),
+ "TP6hr", record.getDataTime().getRefTime());
+
+ // The current 3-hr precipitation grid inventory in the database
+ List precip3hrInventory = getPrecipInventory(record.getDatasetId(),
+ "TP3hr", record.getDataTime().getRefTime());
+
+ // Make a list of the 3-hr forecast times
+ List precip3hrTimes = new ArrayList();
+ for (int i=0; i < precip3hrInventory.size(); i++) {
+ precip3hrTimes.add(precip3hrInventory.get(i)
+ .getDataTime().getFcstTime());
+ }
+
+ // Adds the current record to the precip inventory
+ float[] currentData = (float[]) record.getMessageData();
+ record.setMessageData(currentData);
+ precip6hrInventory.add(record);
+
+ // Examine each grid in the inventory and generate the 3hr precipitation
+ // grid if possible
+ List generatedRecords = new ArrayList();
+ for (int i = 0; i < precip6hrInventory.size(); i++) {
+ // Check if the 3hr precipitation grid has already been produced
+ if (!precip3hrTimes.contains(precip6hrInventory.get(i)
+ .getDataTime().getFcstTime())) {
+ // If the precipitation grid has not been produced, generate it
+ List generated3hrPrecips = generate3hrPrecip(
+ precip6hrInventory.get(i), precip3hrInventory);
+ for (GridRecord newRecord : generated3hrPrecips) {
+ // Add the generated grid to the current inventory
+ if (newRecord != null) {
+ precip3hrTimes.add(newRecord.getDataTime()
+ .getFcstTime());
+ generatedRecords.add(newRecord);
+ }
+ }
+ }
+ }
+
+ return generatedRecords.toArray(new GridRecord[] {});
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ protected void calculatePrecipValues(float[] inventoryData, float[] newData) {
+ for (int i = 0; i < inventoryData.length; i++) {
+ newData[i] = newData[i] - inventoryData[i];
+ if (newData[i] < 0) {
+ newData[i] = 0;
+ }
+ }
+ }
+
+}
diff --git a/edexOsgi/com.raytheon.edex.plugin.gfe/utility/common_static/base/gfe/editAreas/ISC_NHA.xml b/edexOsgi/com.raytheon.edex.plugin.gfe/utility/common_static/base/gfe/editAreas/ISC_NHA.xml
new file mode 100644
index 0000000000..d8a57e6922
--- /dev/null
+++ b/edexOsgi/com.raytheon.edex.plugin.gfe/utility/common_static/base/gfe/editAreas/ISC_NHA.xml
@@ -0,0 +1,4 @@
+
+
+ MULTIPOLYGON (((-97.87975018815257 27.476685694843408, -97.87899230473352 27.45336279234376, -97.83059131782562 27.45459058757257, -97.82984655402471 27.431268497630246, -97.82910218192919 27.40794761017028, -97.82835820123019 27.384627928680136, -97.82761461161923 27.361309456645632, -97.85178985033734 27.360698929454248, -97.85104030425833 27.337381862708874, -97.85029115198058 27.314066012375086, -97.87445336591108 27.31345067784458, -97.8736982667955 27.29013624136877, -97.87294356418508 27.26682302825311, -97.87218925776763 27.243511041974212, -97.87143534723138 27.220200286006918, -97.77488587285525 27.22262740751006, -97.77415766764581 27.199317119444927, -97.77342984443948 27.176008068676527, -97.77270240293576 27.15270025867431, -97.77197534283458 27.12939369290611, -97.77124866383613 27.10608837483773, -97.77052236564094 27.082784307933323, -97.7697964479498 27.059481495655156, -97.81798339588879 27.058280963375474, -97.8172452492943 27.034979788708853, -97.81650748919844 27.011679875566653, -97.84058786759813 27.011072232547388, -97.83984419611697 26.987773776581225, -97.8391009138184 26.964476589040476, -97.83835802039704 26.94118067337817, -97.83761551554788 26.917886033045473, -97.86167039416512 26.91727399452432, -97.86092199340726 26.893980826757854, -97.86017398389237 26.870688941207025, -97.8594263653138 26.84739834131746, -97.8586791373653 26.82410903053299, -97.83464937578395 26.824720293970604, -97.83390880923162 26.801432081989713, -97.833168629428 26.778145166007047, -97.83242883607035 26.754859549460967, -97.85643979424158 26.754248867220696, -97.85569412575647 26.73096474725795, -97.83168942885615 26.73157523578796, -97.83095040748327 26.708292228422685, -97.8549488463746 26.707681933591786, -97.85420395579159 26.684400429654886, -97.8062192608841 26.685615484070354, -97.80548726203662 26.662334907574547, -97.75751377593367 26.663528990816957, -97.75679465651196 26.64024935177272, -97.75607591196906 26.616971032789664, -97.75535754201198 26.593694037293353, -97.754639546348 26.570418368707355, -97.7539219246848 26.54714403045359, -97.75320467673026 26.52387102595192, -97.72925490189806 26.52445922510465, -97.72854425712728 26.50118737071061, -97.77643103090361 26.500006211352492, -97.77570830320909 26.47673607329253, -97.79964498678754 26.476137981290048, -97.79891641236347 26.452869377526707, -97.79818821694728 26.429602121153906, -97.79746040024341 26.406336215582247, -97.77354237536731 26.406933736697805, -97.77282115019041 26.383668995063264, -97.74890902056745 26.384261199019686, -97.74819438042113 26.360997626385245, -97.74748011165778 26.337735414795514, -97.77137982423689 26.337143588083837, -97.77065972287625 26.313882929547077, -97.74676621398811 26.31447456765364, -97.74605268712304 26.29121508836091, -97.74533953077379 26.26795698031678, -97.74462674465197 26.24470024691873, -97.74391432846939 26.221444891562484, -97.72004528878806 26.222030659782643, -97.71933943013008 26.19877649894745, -97.71863393763083 26.17552372295136, -97.71792881100556 26.152272335184488, -97.67022691247486 26.153427417659284, -97.6695345086906 26.130177052647202, -97.66884246381566 26.106928082661998, -97.62116405713317 26.10806199628412, -97.62048471629804 26.084814062422005, -97.6198057274276 26.061567530376877, -97.76276322942948 26.058106709857082, -97.7620475971755 26.03486268931701, -97.7613323354683 26.011620077282952, -97.66607786783503 26.013946220651757, -97.66538761332865 25.990704276530654, -97.6415793916937 25.99127287761074, -97.6408956510727 25.968032166893032, -97.64021226423354 25.94479287486564, -97.59261954471425 25.945914059863426, -97.59194881264901 25.92267583103429, -97.56815816102241 25.923228601523405, -97.5674939236373 25.89999162117526, -97.54370912862765 25.90053912111467, -97.54305137953062 25.877303394269337, -97.51927244110448 25.877845626817503, -97.51862117390837 25.854611158494578, -97.47107472747886 25.85568000447027, -97.470436074974 25.832446629272667, -97.32782694169529 25.83552999699792, -97.3284287546816 25.858764360429458, -97.32903087886531 25.88200015953386, -97.32963331448788 25.905237390946972, -97.30584575571903 25.905733948953568, -97.30644235285142 25.92897276833687, -97.11608348416075 25.93276302498926, -97.11663115609632 25.956004483514427, -97.11717911155309 25.97924736433329, -97.11772735075127 26.002491664073826, -97.11827587391124 26.02573737936211, -97.11882468125367 26.048984506822368, -97.1193737729994 26.072233043076906, -97.11992314936958 26.09548298474609, -97.1204728105855 26.11873432844849, -97.1210227568687 26.141987070800695, -97.12157298844103 26.165241208417463, -97.12212350552446 26.188496737911695, -97.12267430834125 26.211753655894277, -97.12322539711388 26.23501195897435, -97.12377677206509 26.2582716437591, -97.14765895908627 26.257813656302165, -97.14821682014923 26.281074573284616, -97.14877497105505 26.304336865171496, -97.17266931478025 26.303873462235952, -97.17323396171227 26.327136977864935, -97.17379890216223 26.35040186159061, -97.174364136359 26.373668110010843, -97.17492966453173 26.396935719721668, -97.17549548690977 26.42020468731723, -97.17606160372273 26.443475009389772, -97.19999298175644 26.443005586784892, -97.20056561837228 26.466277110472742, -97.20113855312086 26.489549981807567, -97.22508213169948 26.48907512416981, -97.22566159623251 26.51234918863392, -97.22624136260697 26.535624593907475, -97.22682143105874 26.558901336573506, -97.22740180182393 26.582179413213126, -97.25137006902776 26.58169880854646, -97.25195698654717 26.604978062964054, -97.25254421010565 26.62825864450295, -97.27652470929289 26.627772588551686, -97.277118489639 26.65105433935983, -97.27771257976075 26.67433741042961, -97.27830697990059 26.697621798332992, -97.30230597733598 26.69713012854336, -97.30290694782009 26.720415673760566, -97.30350823207293 26.743702528940666, -97.30410983034022 26.766990690650044, -97.30471174286797 26.790280155453274, -97.30531396990244 26.813570919913033, -97.32934403356724 26.813073310983516, -97.32995285157972 26.836365213890637, -97.3305619878698 26.85965840956525, -97.3311714426871 26.882952894564642, -97.33178121628141 26.90624866544418, -97.33239130890294 26.92954571875743, -97.33300172080203 26.952844051056125, -97.33361245222935 26.976143658890113, -97.33422350343578 26.999444538807477, -97.33483487467255 27.022746687354445, -97.33544656619105 27.04605010107536, -97.33605857824298 27.069354776512895, -97.33667091108035 27.09266071020766, -97.33728356495534 27.1159678986987, -97.33789654012048 27.13927633852308, -97.3385098368285 27.162586026216, -97.33912345533243 27.18589695831099, -97.33973739588559 27.209209131339698, -97.31560018889957 27.209709423557225, -97.31620811946127 27.233022991967378, -97.31681636925795 27.256337794377455, -97.31742493854115 27.279653827313656, -97.29326845361514 27.28014940198065, -97.29387100015613 27.303466818272977, -97.29447386335774 27.32678545814655, -97.29507704346958 27.350105318122043, -97.2709012522066 27.350596165384307, -97.27149839678928 27.373917396673278, -97.2720958554446 27.397239841108195, -97.27269362842034 27.420563495204387, -97.27329171596452 27.44388835547526, -97.24909022699006 27.4443746185549, -97.2496822630843 27.467700834598727, -97.2502746108954 27.49102824984658, -97.22606012154104 27.491509612727377, -97.22664640813994 27.5148383751513, -97.20242528374705 27.51531468137655, -97.20300550246523 27.5386447858598, -97.17877774211206 27.539116032060125, -97.179351886275 27.56244747348383, -97.17992633306271 27.585780100155585, -97.15568555197044 27.586246429533585, -97.15625391439896 27.60958038453286, -97.15682257656584 27.63291551778734, -97.13256876332763 27.633376923719595, -97.13313133131236 27.656713376680816, -97.1088708722389 27.657169709221034, -97.10942733933804 27.680507476759782, -97.08516023352051 27.680958732540986, -97.08571059302459 27.704297809525947, -97.08626124308809 27.727638050765194, -97.03770068273352 27.728525458644945, -97.03823880689444 27.75186713911966, -97.03877721531093 27.775209976840337, -97.01448375182879 27.77564611894357, -97.01501602932507 27.798990247196578, -96.99071591192605 27.799421297447562, -96.99124205176282 27.822766711091006, -96.9917684697504 27.846113271447283, -96.96745527498747 27.84653936001635, -96.96797554539708 27.869887197106536, -96.94365569135994 27.87030818546381, -96.94416980743465 27.893657294139967, -96.94468419552449 27.917007538979203, -96.92035124821545 27.917423554035405, -96.92085947202115 27.940775061792404, -96.92136796486923 27.964127698668044, -96.87267563540402 27.96494452835685, -96.8731715103116 27.98829854648499, -96.87366764786817 28.01165368668614, -96.82494864573343 28.012450051946452, -96.8254321445953 28.035806559812805, -96.82591589969127 28.05916418269894, -96.7771702179361 28.059940056658633, -96.77764131355538 28.083299033613553, -96.7781126589723 28.106659118527446, -96.72934029070647 28.107414474326866, -96.7297989558369 28.130775899703973, -96.70540599563621 28.131145816711765, -96.70585843528946 28.154508458544935, -96.65705896945111 28.15523276055157, -96.6574987042276 28.178596725956364, -96.63309220049794 28.178951105884487, -96.63352569253937 28.202316275761543, -96.58469915021065 28.20300948325688, -96.58511991276733 28.226375959803686, -96.56069987610026 28.226714782305802, -96.56111437863838 28.250082451332, -96.48783370957125 28.251067667586767, -96.48822897061962 28.274436727188593, -96.46379523361524 28.2747547087308, -96.46418421374811 28.29812494717288, -96.39086248966707 28.299047599546892, -96.39123219249173 28.32241920180504, -96.36678478586254 28.32271631506671, -96.367148186853 28.346089082515977, -96.36751178112506 28.36946291898181, -96.34305121020856 28.3697549473871, -96.3434084924589 28.393129940299616, -96.29447385904115 28.393698363600915, -96.29481831320103 28.417074595473824, -96.2458700397361 28.41762210155264, -96.24620165160634 28.44099956227066, -96.22172077602842 28.441265487594887, -96.22204604799698 28.46464408589378, -96.17307082620316 28.465160270984846, -96.1733832311835 28.48854008117123, -96.12439440472461 28.489035311809328, -96.12469392851384 28.512416323759798, -96.05119010979197 28.51311979679879, -96.05147021052811 28.536502071687988, -95.97794566983882 28.5371582227237, -95.97820632586662 28.56054174221491, -95.90466113065513 28.561150540442167, -95.90490232035528 28.58453528619465, -95.85585856976095 28.584914848596565, -95.85608681048288 28.608300745742262, -95.80702956932265 28.608659275757468, -95.80724484688741 28.6320463141583, -95.75817413120194 28.632383798344907, -95.75837643143188 28.655771967860034, -95.7092922573131 28.65608839279293, -95.7094815660319 28.679477683278936, -95.66038394962322 28.679773035549683, -95.66056025265584 28.70316343686044, -95.61144921015216 28.70343770307749, -95.61161249332505 28.726829205064256, -95.56248804097268 28.72708237185275, -95.5626382901138 28.750474964364162, -95.53806939971228 28.75059364029639, -95.53821316492248 28.77398727800484, -95.46448642204496 28.774311619122766, -95.46461056061247 28.7977063622189, -95.4154459767079 28.797896150641673, -95.41555703873684 28.821291953792706, -95.366379110485 28.821460589456485, -95.36647708180982 28.844857442500707, -95.31728582571532 28.8450049121152, -95.31737069217219 28.868402804888373, -95.29276842624063 28.86846860316925, -95.29284675590253 28.891867506763287, -95.26823787221836 28.89192801751549, -95.26830965804731 28.91532792669171, -95.24369415601984 28.915383146615245, -95.2437593909716 28.938784056133034, -95.21913727001447 28.9388339819288, -95.21919594703876 28.962235886545685, -95.19456720656989 28.96228051491548, -95.1946193186102 28.98568340938706, -95.16998395805187 28.985722737033687, -95.1700294980456 29.00912661611368, -95.1453875168244 29.009160639740752, -95.14542647770278 29.032565498181057, -95.12077787524964 29.0325942144932, -95.1208102499378 29.056000047043696, -95.07149978972288 29.056041538954958, -95.0715189604982 29.07944834595507, -95.04685710517302 29.079461116612343, -95.04686967203693 29.102868885572693, -94.99753271885649 29.10287846641033, -94.99753205696523 29.12628719273301, -94.97285696157229 29.126283997977712, -94.97284967802447 29.149693674102615, -94.92348625759482 29.149671304379254, -94.92346572043589 29.173081920770567, -94.89877739788729 29.173062740873025, -94.89875022130278 29.196474294900614, -94.8740552827323 29.196449779720837, -94.87402145960291 29.219862266121314, -94.8246183678073 29.219797227633315, -94.82457125552388 29.243210630285162, -94.77515497860949 29.243124241202935, -94.77509456296306 29.266538549903412, -94.75037982527257 29.266487340645384, -94.7503127345911 29.28990256262659, -94.72559138492659 29.289846001683568, -94.72551761206543 29.313262131674612, -94.70078964993522 29.31320021576788, -94.70070918774356 29.336617248495966, -94.67597461266053 29.336549974347736, -94.67588745398139 29.35996790453825, -94.67580024840069 29.383386749290093, -94.65105240313325 29.383314091248334, -94.65095849028111 29.406733824554106, -94.60144961073274 29.406572431542504, -94.60134231958799 29.429993022454816, -94.55182030827052 29.42981019705291, -94.5516996245958 29.453231635352264, -94.52693203272004 29.453132173581565, -94.52680461313388 29.476554481296994, -94.42770817462308 29.476103022951605, -94.42755398889575 29.499526088169105, -94.35321236603778 29.49913121037145, -94.3530380638942 29.522555046885724, -94.30346401971751 29.522264953916913, -94.3032762611807 29.545689590332902, -94.25368919795957 29.54537799375933, -94.25348796882103 29.568803419846084, -94.15428823246474 29.56811577322785, -94.15406014257245 29.59154186980797, -94.10444751208497 29.591165800593007, -94.10420591630535 29.61459265978956, -94.07939307393731 29.61439653002119, -94.07914465288408 29.63782420347755, -93.85577430162489 29.635817305312855, -93.85546546437996 29.65924523342315, -93.80581568904849 29.658740146002337, -93.8054932829944 29.68216878624857, -93.68133797676619 29.68081183529532, -93.68098187549498 29.704240922653554, -93.60647051174796 29.703362134066406, -93.60609409615695 29.726791811676094, -93.4321934751861 29.72455288871697, -93.43176988463154 29.74798273583666, -93.15844328944341 29.743932065154155, -93.1589406765717 29.720503459990027, -93.05958263904104 29.71887001150823, -93.06010657287112 29.69544276342969, -92.9856106632669 29.694161750210256, -92.98615441285375 29.670735754876553, -92.91168084091045 29.669406892779797, -92.91224438299565 29.645982168622684, -92.86261000938062 29.645069740838338, -92.86318662980771 29.6216461637871, -92.78875712810293 29.620237769110396, -92.78935349866694 29.59681549515816, -92.71494651166081 29.595359342364382, -92.71556260901734 29.57193838993137, -92.61638398008259 29.569922513897655, -92.61702645888377 29.546503058683328, -92.4435220245506 29.542770370005076, -92.44421087144113 29.51935294334705, -92.17166599984449 29.512959650976256, -92.17090377030598 29.53637511249483, -92.09656048180315 29.5345186289813, -92.09577782298042 29.557934401490595, -92.04620406867393 29.556669617263964, -92.04700007168593 29.53325423329235, -91.99744111573581 29.531968446833268, -91.99825002580604 29.50855433939964, -91.97347776822056 29.507903624983015, -91.97429290657655 29.48449060262567, -91.89999837001682 29.482506995959767, -91.90083304865304 29.459095472164904, -91.90166727807821 29.435684840691348, -91.80266650124855 29.43296689461319, -91.80180565162931 29.45637668996831, -91.75229429894318 29.454985250104716, -91.75141967045239 29.478395509823258, -91.72665793398076 29.477691561781274, -91.7257761736698 29.50110249370412, -91.70100817916065 29.500392985017193, -91.70011927981335 29.523804583847145, -91.69922990149104 29.547217064021417, -91.6983400438066 29.57063042189665, -91.69744970637251 29.59404465382795, -91.77183493184114 29.596159744561636, -91.77096415038113 29.619575496317225, -91.82056965453025 29.620959226402483, -91.81971176954241 29.64437626968217, -91.94376576060638 29.647742947809842, -91.9445902245514 29.624324871431618, -91.96939548152638 29.624981939840566, -91.96857770271481 29.648400217908577, -92.01820270640438 29.649698691464714, -92.01739786464515 29.673118231179963, -92.06703772017477 29.674395673525495, -92.06624583072119 29.69781646468703, -92.06545351366046 29.72123811175334, -92.04062001256 29.720601679094624, -92.03982056679043 29.744023983269862, -92.01498073113292 29.743381992985984, -92.01417414937673 29.766804948957255, -91.88994705546226 29.76351355643362, -91.89078715304294 29.740091609070024, -91.89162679703286 29.716670510255366, -91.89246598779918 29.693250263646288, -91.81799461042179 29.691212942027366, -91.81713533553925 29.714632563787976, -91.79230563118307 29.713942528940112, -91.79143919457222 29.737362791310563, -91.64242922277376 29.73310873522644, -91.64333583863169 29.709689776821193, -91.64424196519464 29.686271670554436, -91.64514760285843 29.66285442008069, -91.66996150171184 29.663576166486774, -91.67085996596423 29.64015955404462, -91.67175794570473 29.616743804706935, -91.57255830840248 29.61382647916085, -91.57348251287551 29.590412492035036, -91.5486903289193 29.589670009463127, -91.54962070807727 29.56625712067452, -91.55055058595997 29.54284510589822, -91.55147996297221 29.519433968778884, -91.55240883951846 29.49602371295952, -91.52764374913473 29.49527679905904, -91.5285787837232 29.47186765775716, -91.5295133150784 29.448459405028718, -91.53044734360633 29.425052044511762, -91.50570264279207 29.42430048126172, -91.50664281594325 29.400894247787754, -91.507582483512 29.377488913788596, -91.45812095088996 29.37597070837517, -91.45907339207841 29.35256674476838, -91.43434991466061 29.351799876647583, -91.43530847927671 29.32839705586093, -91.36116058503717 29.326065175356085, -91.36213852777816 29.302663983030452, -91.36311594524585 29.27926370465252, -91.33841412502667 29.27847623552108, -91.33939764088056 29.25507711735533, -91.3147028915406 29.25428456559629, -91.31569249875085 29.230886612891446, -91.26631759259367 29.22928602771043, -91.26731989919793 29.205889493258123, -91.14392374122062 29.201796141035306, -91.1449585621411 29.17840179728527, -91.09561659261406 29.176727727264872, -91.09666406967034 29.153334831881782, -90.97335055874012 29.14905790372332, -90.97443047760768 29.125667263546347, -90.97550981769074 29.10227756251755, -90.97658857945416 29.07888880425076, -90.97766676336245 29.05550099235794, -90.9787443698795 29.032114130449497, -90.24012217577484 29.003706346767864, -90.238847188159 29.027084431310186, -90.2375715178379 29.050463465512877, -90.23629516426347 29.073843445767437, -90.18703185025151 29.0717779578529, -90.18574164724666 29.09515824287892, -90.16110428520987 29.09411721795295, -90.15980680521089 29.11749812048122, -90.11052068176782 29.115399499935027, -90.10920932948278 29.138780690098212, -90.08456057194805 29.137723089993514, -90.08324192541112 29.161104885457398, -90.03393302946536 29.15897309684583, -90.03260048778785 29.182355162801898, -89.98328082772385 29.180201463823312, -89.98193437820846 29.20358379005402, -89.98058720635389 29.22696703691459, -89.95591509758273 29.225881549212826, -89.95456059994325 29.249265378602114, -89.92988250471781 29.24817423895191, -89.92852067415573 29.271558645585543, -89.90383659293346 29.270461850928783, -89.90246742230602 29.29384682952072, -89.68027962261306 29.2837332529062, -89.68170825071267 29.260351388033424, -89.60767705858888 29.25688552783357, -89.60912471956131 29.233505639923816, -89.51045209135907 29.228811519170254, -89.51192535352898 29.20543399046045, -89.48726545742745 29.204247542337285, -89.48874451935932 29.180871295980992, -89.46409188483193 29.179679903796973, -89.46557673960064 29.156304945024814, -89.44093136503143 29.15510861229089, -89.44242200571887 29.13173494633138, -89.44391184802697 29.108362207962635, -89.41928030918389 29.107161308638652, -89.42077592764043 29.083789871910334, -89.3961516414697 29.082584040683045, -89.39765302917615 29.059213910817448, -89.34841964309676 29.05678709138804, -89.34993335841929 29.033418648921273, -89.3745431441191 29.034634333416815, -89.37604948789019 29.011266457633013, -89.40065339489037 29.01247646990466, -89.4021523741856 28.98910916607497, -89.40365055196341 28.9657428114719, -89.42824202381412 28.966946782547407, -89.42973284831142 28.94358100878644, -89.43122287605446 28.920216191473507, -89.35748980124679 28.916590638494025, -89.35598012835962 28.939954334974445, -89.35446964828053 28.963318987860966, -89.32988022235227 28.9620991358358, -89.32836238018665 28.985464364615613, -89.15620996029486 28.976774522941355, -89.15777366662454 28.953411978322876, -89.13318982630695 28.952149788479257, -89.1316195702062 28.975511943105545, -89.13004847428799 28.998875046802937, -89.12847653787915 29.02223909596604, -89.12690376030586 29.045604086987836, -89.02847068625132 29.040496114235676, -89.02687081777607 29.063860466958626, -89.02527009283301 29.08722575426398, -89.02366851073506 29.11059197253998, -89.02206607079437 29.133959118173205, -89.02046277232233 29.157327187548642, -88.99582347137772 29.156034961149512, -88.99421273540652 29.179403552354515, -88.99260113602392 29.202773060052497, -88.99098867253635 29.226143480623545, -89.0403074953537 29.228725013692276, -89.03870734523174 29.252097138554767, -89.06337443899837 29.253380335502357, -89.0617800238716 29.276753761101137, -89.1111295717624 29.27930500468703, -89.10954749669877 29.30268011761169, -89.13422995012056 29.303948158819598, -89.13265362799464 29.327324560389094, -89.15734340134075 29.328587674321607, -89.15577283908802 29.351965359297914, -89.27926540679618 29.358203075901365, -89.27772705884108 29.38158357050218, -89.27618788422298 29.40496495274695, -89.49863748599266 29.415864317823605, -89.49715708725103 29.43924993434176, -89.49567589236075 29.462636431345135, -89.49419390068006 29.486023805195558, -89.49271111156648 29.509412052253445, -89.49122752437688 29.53280116887738, -89.4897431384674 29.556191151424425, -89.48825795319354 29.579581996249992, -89.48677196791007 29.602973699707825, -89.46199951004334 29.60178103484866, -89.46050607091341 29.625173227492546, -89.4357276422611 29.623974856090417, -89.43422674206212 29.64736753261015, -89.38465863331334 29.644954028774336, -89.38314360615945 29.6683468131238, -89.38162776213441 29.69174044145854, -89.38011110057808 29.715134910124455, -89.40491479713127 29.716345445218177, -89.40340398675218 29.739741121328418, -89.4018923610955 29.763137630468165, -89.35225897818576 29.760709727373097, -89.35378394917198 29.73731396143119, -89.254552265814 29.73239546870693, -89.25300061095541 29.755789728602124, -89.25144811869502 29.779184817799674, -89.2266286211693 29.777941065544468, -89.2250686141363 29.801336599756045, -89.22350776476506 29.824732955936685, -89.22194607237394 29.848130130423108, -89.1971072493545 29.846879881443122, -89.195538026395 29.870277488270794, -89.19396795546105 29.89367590606171, -89.19239703586587 29.917075131147786, -89.19082526692198 29.940475159859478, -89.16596039559603 29.939218020520972, -89.16438107595977 29.962618465205345, -89.16280090199761 29.986019706160313, -89.16121987301698 30.00942173971154, -89.15963798832452 30.032824562183126, -89.15805524722609 30.056228169897555, -89.15647164902683 30.079632559175717, -89.18137677834271 30.080892002567218, -89.17979904464568 30.10429755377475, -89.17822045607322 30.127703879193565, -89.17664101193111 30.15111097513969, -89.15171570486433 30.149850379577828, -89.1501286712982 30.173257858288213, -89.12519736072002 30.171991501443163, -89.12360273037494 30.195399357572185, -88.30107695731039 30.150581125371044, -88.29925939715068 30.173976093256282, -88.27434128712028 30.172526194628208, -88.27251602011152 30.195921476517555, -88.27068976362007 30.219317510101785, -88.07126778939723 30.20751782970268, -88.069386735369 30.23091102111735, -88.0675046613443 30.25430495675171, -88.06562156649463 30.27769963291289, -88.11551230125913 30.280684508976947, -88.11364165408969 30.30408082939238, -88.11176999167486 30.327477882967163, -88.10989731318922 30.350875666003564, -88.08493129831807 30.349384557497984, -88.08305085704845 30.372782613369054, -88.08116939442574 30.396181391290444, -88.079286909619 30.419580887559796, -88.07740340179629 30.442981098473275, -88.00242956194066 30.438470011328878, -88.00052475326193 30.461869564456475, -87.99861890898403 30.485269824783153, -87.99671202826356 30.50867078860061, -87.99480411025623 30.53207245219906, -88.06985912367612 30.536589014436544, -88.06797048826341 30.559992742958187, -88.06608082482433 30.583397163868185, -88.04104805976233 30.58189612785814, -88.03915058586409 30.605300782771348, -88.03725207860482 30.628706122631655, -88.01220662354623 30.627198776579288, -88.01030029388643 30.650604341342902, -88.00839292551625 30.674010583606524, -87.98333477179149 30.67249692124748, -87.98524893130174 30.649091136955267, -87.93514886056101 30.646048523426426, -87.93707555049225 30.622644337451227, -87.93900119158639 30.599240832664155, -87.94092578469818 30.57583801278261, -87.94284933068148 30.552435881522303, -87.94477183038923 30.52903444259755, -87.9466932846734 30.50563369972098, -87.94861369438507 30.482233656603846, -87.9505330603744 30.45883431695569, -87.95245138349063 30.43543568448466, -87.95436866458205 30.412037762897192, -87.92938765154578 30.410512982575202, -87.93131064033807 30.387116238333963, -87.88136477045555 30.384051455277476, -87.8833002036317 30.360656359712333, -87.8583353471413 30.3591163625136, -87.86027646942588 30.33572245654527, -87.83531924528792 30.33417754847047, -87.8372660495713 30.310784837409532, -87.78736776028494 30.307679830441078, -87.78932696951351 30.2842887921114, -87.79128511649618 30.2608984867891, -87.9907919685816 30.273181998346175, -87.9926952513026 30.249788695541767, -88.04256732174024 30.252804910461123, -88.04445612214916 30.229411430966266, -88.04634389895179 30.2060186956793, -87.94665703934469 30.19996845326057, -87.9447423785105 30.223359347694192, -87.7204382391231 30.20942797022185, -87.71846206075847 30.232815371208684, -87.59384669915164 30.22488539710521, -87.59183585740664 30.248271126998766, -87.49213331428531 30.2418285569477, -87.49009450776693 30.265213064845074, -87.39038008701506 30.258682612111876, -87.38831329819747 30.282065868101892, -87.28858720520996 30.275447502379084, -87.28649241672755 30.298829476554772, -87.11196191937282 30.287037056950467, -87.10981896177687 30.31041617446662, -87.0100819850563 30.303557456348216, -87.0079109923702 30.326935212640123, -86.95803504590603 30.32347259015992, -86.95584943687226 30.346850013071858, -86.80620550670352 30.336330099791954, -86.80397839374004 30.35970504397147, -86.70420934311979 30.35258222665747, -86.7019541452942 30.375955719958274, -86.25308070497947 30.34283030099201, -86.25545667847969 30.319466855621698, -86.1557812587302 30.311871877687008, -86.15818273137346 30.28851144678899, -86.0834578222723 30.28276067353431, -86.08587806417376 30.259402701678432, -86.01118322103638 30.25360547067409, -86.01362220377652 30.23024997610637, -85.96384459816205 30.22635956277374, -85.96629561686986 30.203005970591047, -85.89165767916083 30.197131994113136, -85.89412738811909 30.173780910828665, -85.81951965508726 30.167860588806434, -85.82200802584775 30.1445120326466, -85.79714772353611 30.1425285012558, -85.79964140981059 30.119181279871004, -85.74993755554722 30.115199394661808, -85.75244320534199 30.091854119413124, -85.7275996530727 30.08985577128896, -85.73011060011231 30.066511842981726, -85.65560680295131 30.06048659330973, -85.65813632955398 30.03714524068667, -85.60848620370602 30.033102951449006, -85.6110276436136 30.009763575307783, -85.5862109620891 30.00773504597112, -85.58875766522969 29.984397037412254, -85.56394878248848 29.98236379452848, -85.56650074200155 29.959027158819662, -85.51689973875874 29.954945924818848, -85.51946357223655 29.931611289445186, -85.42030214758454 29.92338739371667, -85.42289107358819 29.900056024539143, -85.42547860493522 29.876725420124277, -85.42806474274882 29.853395584142316, -85.4306494881509 29.830066520261834, -85.43323284226229 29.80673823214999, -85.43581480620256 29.783410723472123, -85.4383953810901 29.760083997892142, -85.44097456804211 29.736758059072354, -85.41623999478894 29.734693814404245, -85.41882438321575 29.711369296178574, -85.42140738246229 29.68804557201453, -85.42398899364494 29.664722645569483, -85.39927535077545 29.662654984967705, -85.4018621519409 29.63933349163696, -85.32774803339146 29.63310058073535, -85.32514150712099 29.656420169119333, -85.17690596656345 29.64380732363523, -85.17955191723303 29.62049158890901, -85.15485676259266 29.618371536336465, -85.15750785671436 29.595057254378208, -85.08344933396545 29.588667252307975, -85.08611868085926 29.565355732268188, -85.0367655149924 29.561070555644275, -85.03408305594192 29.584380765287698, -84.93536517429354 29.575744241921598, -84.93265504889693 29.59905261963608, -84.907972098579 29.596879587871506, -84.90525396065526 29.62018810608783, -84.88056569028409 29.61800911313358, -84.87783953276218 29.641317766542183, -84.82845359919139 29.63694255490576, -84.82571285352736 29.660250669157872, -84.75162363663638 29.653646106362636, -84.74886172995551 29.6769529973395, -84.72416127362447 29.674740205216896, -84.72139131878043 29.69804721053694, -84.69668556009746 29.695828442571184, -84.69390755000902 29.71913555692052, -84.66919649047804 29.71691081032208, -84.66641041806015 29.740218028385616, -84.6169789731319 29.73575127021947, -84.61417826066614 29.759057904601395, -84.56473878050056 29.7545685707912, -84.56192341706459 29.777874611282936, -84.5591065396239 29.801181423233732, -84.5562881469614 29.824489002979636, -84.55346823785867 29.847797346855003, -84.55064681109599 29.87110645119267, -84.47639856462493 29.864322355061162, -84.47355585719946 29.887630150202497, -84.32505495620123 29.873914452309638, -84.32217120216342 29.89721882476736, -84.3192858956003 29.920523946509107, -84.31639903526266 29.943829813862617, -84.31351061989987 29.967136423154066, -84.31062064825998 29.99044377070808, -84.28584213807922 29.9881357329075, -84.2829440092496 30.011443113337943, -84.2581602239709 30.009129056878553, -84.25525393081539 30.03243646485425, -84.15610569664675 30.023124249711152, -84.15317142505634 30.04642955526914, -84.15023557130614 30.069735584264723, -84.07584885417178 30.062691323473626, -84.07289159889737 30.08599593294353, -84.02329399937446 30.081271734596456, -84.02626446126743 30.05796855939104, -84.02923332235935 30.034666103850626, -83.95488671096194 30.027544245757237, -83.95787375345806 30.00424467696346, -83.88355919774943 29.997077172786188, -83.88656439228534 29.97378050883893, -83.83704138183313 29.968977078562673, -83.8400581200235 29.94568260515813, -83.76580367600249 29.938439852734625, -83.76883851426417 29.915148315530793, -83.69461624932306 29.90786003543604, -83.69766915828203 29.88457145251004, -83.6729377503013 29.88213216363611, -83.67599557992915 29.858845064187065, -83.67905176610482 29.83555870984929, -83.62961937104764 29.830667211390242, -83.63268702201248 29.807383094621944, -83.63575302530658 29.78409973025994, -83.61105202360721 29.78164753129436, -83.61412292548357 29.75836566977607, -83.58942986635367 29.755908927543135, -83.59250566017135 29.732628574102733, -83.56782054084698 29.73016729232059, -83.57090121997302 29.70688845218986, -83.52154825948342 29.70195153169606, -83.52464034748674 29.678674963260764, -83.47530607188354 29.673718414914205, -83.47840955195281 29.650444128192095, -83.45375105353934 29.647958688577422, -83.45685939000333 29.62468593402501, -83.4322088238336 29.622195973999776, -83.43532201009629 29.598924756838695, -83.43843352862194 29.575654321164663, -83.44154338074435 29.552384670628612, -83.4169137625422 29.54989171613903, -83.42002845376136 29.52662361546957, -83.42314147785449 29.50335630721284, -83.39852627694502 29.50085960559818, -83.40164413151444 29.47759385604443, -83.37703684095554 29.475092649946255, -83.3801595194436 29.45182846430404, -83.33096217214954 29.44681178611423, -83.33409615412945 29.423549937016972, -83.2603302533948 29.415987753426116, -83.263482001526 29.39272902308928, -83.2143248297159 29.387662812033394, -83.21748784233357 29.36440644139997, -83.22064916551702 29.341150884819093, -83.22380880061316 29.317896145925687, -83.2269667489674 29.29464222835316, -83.17786704688567 29.28956120739942, -83.18103622698153 29.266309670260018, -83.10741680792546 29.258651106110655, -83.11060365437147 29.235402742709542, -83.1137888013877 29.212155211395963, -83.11697225032671 29.18890851579592, -83.09245466441885 29.186347520408898, -83.09564285669467 29.163102449021263, -83.09882935026218 29.139858220569096, -83.10201414647219 29.116614838673456, -83.10519724667404 29.093372306953725, -83.10837865221572 29.07013062902772, -83.01045136157609 29.05985000959567, -83.0072442604693 29.083088532369302, -83.00403545141751 29.10632790883269, -83.00082493306256 29.129568135368647, -82.95183141549522 29.124391670794786, -82.94860632566734 29.147631156415777, -82.8506110775762 29.137212211015846, -82.85386187510939 29.113975919401124, -82.82937315116872 29.111358896767005, -82.83262863881694 29.088124253939185, -82.83588239394268 29.064890461000918, -82.8391344179217 29.041657521568258, -82.84238471212828 29.018425439255527, -82.8179231165362 29.015806400018423, -82.82117808864096 28.99257598242564, -82.82443133041554 28.969346429149635, -82.82768284323238 28.946117743799732, -82.72992797210135 28.935599029502733, -82.73320333129396 28.912374447351255, -82.73647695110348 28.88915074022887, -82.73974883290806 28.86592791173929, -82.74301897808444 28.842705965484573, -82.74628738800781 28.81948490506516, -82.77069197307694 28.822118361937193, -82.77395227380327 28.798897380770082, -82.77721084530009 28.775677292662706, -82.75281900758958 28.773045456125608, -82.75608221999127 28.749827074798038, -82.73169821762893 28.747190842380697, -82.73496606459807 28.723974172972312, -82.7382321799004 28.700758407347365, -82.7138623699698 28.69811859605224, -82.71713311161399 28.674904551044357, -82.7204021210657 28.65169141696934, -82.72366939969369 28.62847919741407, -82.69932011621654 28.6258366288751, -82.70259201108976 28.602626142181514, -82.70586217461856 28.57941657714621, -82.68152704605244 28.57677044496431, -82.68480181764258 28.55356262146771, -82.6880748573729 28.530355726760625, -82.69134616660983 28.507149764421186, -82.69461574671843 28.48394473802589, -82.7189255426049 28.48658760519653, -82.72218706988573 28.46338270214439, -82.72544687400185 28.44017874221549, -82.72870495631156 28.41697572898144, -82.73196131817174 28.39377366601214, -82.73521596093785 28.370572556875903, -82.75949562024925 28.373206164772295, -82.76274223523048 28.35000519861891, -82.76598713705118 28.32680519346188, -82.76923032706017 28.30360615286459, -82.77247180660486 28.280408080388707, -82.77571157703116 28.25721097959421, -82.79996116629842 28.259835344475935, -82.80319293387736 28.236638406267073, -82.82743767214137 28.239256788294682, -82.82421220077278 28.262454537555936, -82.84846467772456 28.26506855828532, -82.85168385174809 28.24186999957354, -82.85490132899238 28.21867241975578, -82.87914265195504 28.221279651922107, -82.8823521417134 28.198082246770383, -82.88555994057472 28.174885827654556, -82.86133119847973 28.172280211022336, -82.86454359338761 28.14908558921228, -82.84032257100225 28.14647561540869, -82.84353955573826 28.123282795990303, -82.84675484714738 28.10009097319259, -82.84996844655959 28.076900150562206, -82.85318035530346 28.053710331644172, -82.85639057470618 28.030521519981825, -82.85959910609358 28.007333719116723, -82.86280595079009 27.984146932588754, -82.86601111011878 27.96096116393604, -82.86921458540132 27.937776416695055, -82.87241637795803 27.914592694400515, -82.87561648910784 27.891410000585477, -82.87881492016831 27.868228338781147, -82.88201167245565 27.84504771251713, -82.88520674728466 27.821868125321267, -82.88840014596882 27.79868958071965, -82.84015013112794 27.793478484109187, -82.84335431851754 27.770302607964453, -82.84655682604807 27.74712778138915, -82.79833742456208 27.74189938524385, -82.80155069996442 27.71872724035229, -82.77744936219281 27.71610615629259, -82.78066717241416 27.692935884596793, -82.78388329723917 27.669766672917056, -82.78709773798498 27.646598524768283, -82.79031049596736 27.62343144366363, -82.79352157250071 27.60026543311452, -82.79673096889809 27.57710049663058, -82.79993868647117 27.553936637719797, -82.77588223337624 27.551316147904576, -82.77909446864763 27.528154188071156, -82.7823050245743 27.504993312783476, -82.73422116377795 27.499740252066907, -82.73744241620976 27.476582105466548, -82.74066198564879 27.45342505033844, -82.7166345640495 27.450792489974674, -82.71985863114762 27.427637352456976, -82.69583881624112 27.425000503328224, -82.69906737494306 27.401847288437814, -82.67505516402663 27.399206154252873, -82.67828820828423 27.376054867003962, -82.65428359865408 27.373409451471844, -82.65752112242633 27.350260096875918, -82.6335241113775 27.347610403705662, -82.63676610863045 27.32446298677153, -82.6127766934569 27.321809019672322, -82.61602315816374 27.298663545406164, -82.59204133615832 27.296005308087313, -82.59529226229928 27.272861781492537, -82.57131803075379 27.270199277663522, -82.57457341231621 27.24705770374085, -82.55060676852129 27.244390937111167, -82.55386659949957 27.22125132085873, -82.52990754074486 27.21858029513799, -82.53317181514043 27.195442641551065, -82.5364343898915 27.172306117417477, -82.51248905053586 27.16963167452029, -82.51575606094067 27.14649712148106, -82.51902137124995 27.123363704807087, -82.49508973706736 27.120685851509016, -82.49835947528352 27.09755441434917, -82.50162751295805 27.07442412045858, -82.47770956974205 27.071742863532872, -82.48098202759336 27.048614557567074, -82.48425278446175 27.025487401766668, -82.46034851802537 27.022802747984134, -82.46362368735704 26.999677588510167, -82.43972697559614 26.99698870039341, -82.44300655144521 26.973865542218793, -82.446284424124 26.950743544517312, -82.42240136808113 26.948051271570854, -82.42568363959178 26.92493128355628, -82.40180812862579 26.922234785242015, -82.40509479304069 26.8991168118795, -82.38122682444607 26.896416091905266, -82.38451787584452 26.873300138157294, -82.36065744691474 26.870595200230873, -82.3639528793831 26.84748127105715, -82.34009998741062 26.84477211888646, -82.34339979504217 26.821660219243938, -82.34669789213756 26.79854950059002, -82.29902078802886 26.793119421844633, -82.30232932829433 26.77001159612422, -82.30563615457964 26.746904958198723, -82.2818119286886 26.74418404213392, -82.28512311074299 26.721079451993646, -82.28843257842685 26.69797605649126, -82.29174033306401 26.674873859068203, -82.2679357546222 26.672150461273528, -82.27124785573376 26.64905032336845, -82.24745078822446 26.64632273450588, -82.25076722995114 26.623224661055136, -82.25408195654053 26.60012779590426, -82.23029844715819 26.597396880768475, -82.23361750681013 26.57430208839259, -82.23693485094839 26.551208511135567, -82.21316488567615 26.548474276473556, -82.21648655534065 26.525382780302923, -82.21980650911965 26.502292506062034, -82.22312474833504 26.479203457177242, -82.19937434574499 26.476466773765804, -82.20269690127739 26.453379817646017, -82.1552125197793 26.447893077195445, -82.15854541012615 26.424809085872194, -82.1348114299442 26.422059034701668, -82.13814862086038 26.398977147513527, -82.06697350744254 26.39069942735045, -82.06361826271306 26.413778699038325, -82.01616348775016 26.408233329250685, -82.01279447517653 26.43131208451709, -82.00942372365341 26.454392071551332, -81.96195077225443 26.448823074154795, -81.96533356145956 26.425744845276505, -81.94160532250497 26.422953682957257, -81.94499238090627 26.399877567159653, -81.921271636939 26.39708226015116, -81.92466295875481 26.37400826234198, -81.90094970703962 26.371208814354596, -81.90434528649509 26.348136939438806, -81.88063952429584 26.34533335418294, -81.884039355623 26.322263607062634, -81.88743743543056 26.299195105077196, -81.86374515764034 26.29638827382307, -81.8671474819245 26.273321907892893, -81.8705480544013 26.250256793866896, -81.84686924706536 26.247446723346094, -81.85027405663958 26.224383753625638, -81.85367711412304 26.201322042570567, -81.83001176330592 26.198508739511993, -81.83341905052346 26.1754491810033, -81.8368245853712 26.15239088791302, -81.84022836919276 26.12933386364045, -81.84363040333035 26.106278111583013, -81.81999043898081 26.103463366581174, -81.82339669226911 26.08040978199066, -81.82680119559762 26.0573574763524, -81.80317464584624 26.054539515223745, -81.8065833610035 26.031489385265722, -81.80999032592943 26.008440540988918, -81.78637717692119 26.005619370451484, -81.78978834636959 25.982572710058633, -81.76618263493536 25.97974744048207, -81.76959800321846 25.95670296883683, -81.77301161940012 25.933659792924097, -81.7764234848203 25.91061791612589, -81.75283709580985 25.90779034691389, -81.75625315118684 25.884750670378512, -81.75966745554359 25.86171229966196, -81.71252288206146 25.856045798533852, -81.71594730036009 25.833010537080895, -81.64525939652775 25.82447612209008, -81.64181719132414 25.847508671570424, -81.54756389095115 25.836056093473193, -81.55102979602779 25.813027182105262, -81.55449392643851 25.789999582811728, -81.48385527030779 25.781363353804466, -81.48733537274974 25.758339814811265, -81.49081369449313 25.735317594464355, -81.46728231703557 25.732430737994097, -81.47076476643014 25.70941075766063, -81.44724080589243 25.706519850118887, -81.45072737733041 25.683502114630432, -81.38018228179628 25.674802351675524, -81.38368476397375 25.65178871269297, -81.31317101876522 25.643047046224343, -81.31668938524557 25.62003752097631, -81.29319373893092 25.617114638482025, -81.29671619446648 25.59410737864009, -81.30023685138676 25.571101457096283, -81.25327367140918 25.565244545280844, -81.25680428834971 25.542241830700547, -81.23333086706049 25.539306876873447, -81.23686555636402 25.516306442142763, -81.21339953788893 25.513367471957444, -81.21693829400458 25.490369321884984, -81.22047524545918 25.467372523277458, -81.19702249296218 25.464430478442246, -81.20056350418298 25.441435972584408, -81.17711814493347 25.438489920326727, -81.18066321038667 25.415497712018794, -81.15722524162108 25.41254765604733, -81.16077435577941 25.389557750086674, -81.16432166215695 25.366569208780483, -81.16786716212557 25.343582035466156, -81.19128757450366 25.346529268703964, -81.19482542302805 25.323542525927223, -81.19836147074147 25.300557157872575, -81.20189571900968 25.277573167871918, -81.20542816919708 25.254590559255316, -81.20895882266665 25.231609335350925, -81.21248768078001 25.208629499485106, -81.21601474489749 25.185651054982138, -81.1692571722222 25.17976483018708, -81.17279409543264 25.1567896626611, -81.14942341909115 25.153840104189307, -81.152964366628 25.130867277989648, -81.12960103639085 25.127913740545726, -81.13314600278137 25.104943260439207, -81.13668916925097 25.08197418472253, -81.04329764844974 25.07011841401059, -81.04686225132377 25.047154541053914, -81.05042504568087 25.024192078858274, -81.05398603288798 25.001231030733248, -81.0575452143107 24.978271399986564, -81.06110259131316 24.955313189924013, -81.06465816525824 24.932356403849507, -80.8083408770319 24.899410956391275, -80.81195826355763 24.87646615944146, -80.81557381885199 24.85352279235758, -80.8621399650742 24.85955312810304, -80.86574214597599 24.836609259975187, -80.88902176628632 24.83961611645356, -80.89261635309602 24.81667272023412, -80.93916867485444 24.822669816815857, -80.94274990263938 24.799725936027183, -80.98929682837334 24.80570152751472, -80.99286470506983 24.78275717199684, -81.0394062121297 24.78871126609493, -81.04296074568815 24.765766445687298, -81.15931230056775 24.780561237217945, -81.16283618431892 24.75761311564348, -81.16635828562538 24.734666447905575, -81.1896215984224 24.737608824863365, -81.19313615040866 24.714662668818466, -81.23965575697123 24.720530850806007, -81.23615274482911 24.743478892992556, -81.23264795999813 24.766428392499773, -81.229141401141 24.789379346041677, -81.22563306691909 24.81233175033037, -81.22212295599242 24.83528560207604, -81.21861106701967 24.858240897986988, -81.49827070378129 24.893105783527094, -81.50171309001836 24.870139299009868, -81.5051537320576 24.84717425943296, -81.50859263121613 24.824210668090384, -81.51202978880983 24.801248528274314, -81.53532125538335 24.804118337257705, -81.53875088482499 24.781156730366444, -81.58532665567733 24.786879791468877, -81.5887429755082 24.763917803817975, -81.61202727449579 24.76677105953071, -81.61543607957127 24.74380961642802, -81.63871605555057 24.746657052300762, -81.64211735171037 24.723696158735933, -81.68867011079462 24.729374493624995, -81.69205812062414 24.70641324240494, -81.71533089846952 24.70924414502556, -81.71871141277833 24.686283454958502, -81.78852109050182 24.694744026134284, -81.79188255224224 24.671782089133103, -81.81514955003233 24.674591571699594, -81.81850353137987 24.65163020910201, -81.82185581668836 24.628670328356755, -81.84511269369072 24.631473104695484, -81.84845750853546 24.60851380667614, -81.96473446875908 24.622449708363987, -81.96804871232506 24.5994874107751, -81.94479624601851 24.596710922568626, -81.9481145897249 24.573751011429103, -82.01785891792551 24.582063101759047, -82.02115826364498 24.55910200764469, -82.0908979922159 24.567367351883107, -82.08761597721087 24.59033111004179, -82.08433230225228 24.613296363852836, -82.17738454069504 24.624255306152307, -82.18064508189265 24.601286522120052, -82.18390397443366 24.57831923399503, -82.18716121956125 24.555353445047427, -82.19041681851736 24.532389158545495, -81.77227578036552 24.482520927954123, -81.76891636601115 24.505469133194772, -81.74569407965926 24.502651310943584, -81.7423272083734 24.52560010901815, -81.71910060398454 24.52277648890204, -81.71572626996631 24.545725874838656, -81.66926587654584 24.54006214381073, -81.66587831151824 24.563011199336362, -81.61941219768309 24.557326080097457, -81.61601139351319 24.580274795381335, -81.5463058672214 24.57170768696351, -81.54288605319483 24.594655130870418, -81.44994282463385 24.583160170021955, -81.4464982315958 24.606105397053692, -81.33032361278482 24.591622045981584, -81.3268484766137 24.614564091566287, -81.28037751521005 24.608734661226585, -81.27688910411898 24.631676307966423, -81.20717660214932 24.622892682166878, -81.20366914997024 24.645832976640868, -81.15719014209206 24.63995089720099, -81.15366939845765 24.662890769957553, -81.10718490833862 24.656987242041343, -81.10365086527567 24.679926683248922, -80.98743739409677 24.66507756281352, -80.9838727713702 24.68801369355966, -80.96062889289135 24.68502824844455, -80.95705671011983 24.707964879491314, -80.93380860517517 24.7049735859449, -80.9302288565694 24.727910712305366, -80.90697652704291 24.724913567745194, -80.90338920681143 24.747851184431095, -80.8568776432432 24.741840297996813, -80.8532769839258 24.76477743396831, -80.83001775530954 24.76176368857351, -80.8264095111472 24.7847013032524, -80.77988417349185 24.778657201703748, -80.77626257493331 24.80159431920446, -80.72973192396 24.79552870819265, -80.72609696313475 24.81846531867908, -80.67956102158308 24.812378190585502, -80.67591269063482 24.835314284221266, -80.65264130193991 24.832262403970923, -80.64898535810224 24.855198951427056, -80.64532756344597 24.878136928281027, -80.62204620984018 24.87507819467415, -80.61838079230475 24.898016616987018, -80.5950952419909 24.894952006397844, -80.59142219577168 24.917890869168755, -80.54484428551667 24.911744992271288, -80.54115783211711 24.934683305016463, -80.51786547769623 24.931602035220116, -80.51417138239461 24.954540776782277, -80.49087484070144 24.95145362139224, -80.48717309768892 24.974392786766447, -80.46387237069419 24.971299743224762, -80.4601629741599 24.99423932740464, -80.43685806384002 24.99114039315483, -80.43314100797096 25.0140803911326, -80.40983191630794 25.010975563619592, -80.40610719528902 25.03391597038612, -80.40238058557813 25.05685777621972, -80.37906153228468 25.05374605760109, -80.37532724737778 25.076688263834694, -80.37159106811991 25.09963186244387, -80.34826204920576 25.096513246833606, -80.34451818469182 25.119457237447826, -80.34077242015549 25.142402613739215, -80.33702475416051 25.165349372388853, -80.33327518526923 25.18829751007596, -80.3099246061992 25.185169994016228, -80.30616733347917 25.208118508532856, -80.28281257311355 25.20498508083843, -80.27904759072045 25.227933967161874, -80.27528069547861 25.250884222419156, -80.27151188594067 25.2738358432824, -80.26774116065769 25.296788826421793, -80.22099007634044 25.2904992116642, -80.21720581284809 25.313451547489628, -80.21341962506682 25.33640523879728, -80.1900349069923 25.333251044483447, -80.18624097916825 25.356205082328614, -80.18244512131628 25.379160468920052, -80.1786473319742 25.40211720091925, -80.17484760967842 25.425075274985808, -80.17104595296385 25.448034687777426, -80.14763377649594 25.44487053740577, -80.14382435670872 25.467830278081863, -80.14001299673629 25.49079135072973, -80.13619969510711 25.513753752001744, -80.13238445034818 25.53671747854833, -80.12856726098508 25.55968252701817, -80.12474812554181 25.582648894058018, -80.12092704254097 25.605616576312723, -80.11710401050361 25.628585570425393, -80.11327902794936 25.651555873037196, -80.1094520933963 25.674527480787525, -80.10562320536107 25.697500390313795, -80.10179236235881 25.72047459825172, -80.09795956290311 25.743450101235048, -80.09412480550614 25.76642689589576, -80.09028808867855 25.789404978863878, -80.08644941092943 25.812384346767768, -80.08260877076648 25.835364996233807, -80.07876616669581 25.8583469238865, -80.07492159722206 25.881330126348665, -80.07107506084833 25.90431460024118, -80.06722655607628 25.927300342183056, -80.06337608140596 25.950287348791562, -80.05952363533603 25.973275616682056, -80.05566921636351 25.996265142468115, -80.051812822984 26.01925592276147, -80.04795445369153 26.042247954171962, -80.04409410697863 26.06524123330775, -80.04023178133632 26.088235756774996, -80.06380819610317 26.091428140247043, -80.0599497972652 26.114424913837038, -80.05608941936404 26.137422925022893, -80.05222706088819 26.160422170405155, -80.04836272032456 26.183422646582585, -80.04449639615864 26.206424350152105, -80.04062808687426 26.229427277708808, -80.03675779095384 26.25243142584601, -80.06037730282512 26.255625892502422, -80.05651094754808 26.27863226582374, -80.05264260549967 26.301639852962513, -80.04877227515972 26.324648650506354, -80.04489995500653 26.347658655041155, -80.04102564351685 26.3706698631509, -80.03714933916588 26.39368227141784, -80.03327104042728 26.41669587642232, -80.02939074577317 26.439710674743058, -80.0255084536741 26.462726662956776, -80.02162416259912 26.48574383763856, -80.01773787101565 26.50876219536157, -80.01384957738962 26.531781732697258, -80.00995928018538 26.55480244621519, -80.00606697786571 26.577824332483274, -80.00217266889184 26.600847388067482, -79.99827635172345 26.62387160953207, -79.99437802481863 26.6468969934395, -79.99047768663392 26.669923536350442, -79.9865753356243 26.69295123482374, -79.98267097024316 26.715980085416543, -79.97876458894233 26.739010084684118, -80.00251092882893 26.742220715019673, -79.99860852160718 26.765252867082175, -79.99470409831459 26.788286160976043, -79.99079765740034 26.81132059325117, -80.01456369274088 26.81452922502743, -80.01066123437481 26.83756579837734, -80.00675675823844 26.860603503253266, -80.00285026277832 26.883642336199493, -80.02663602556211 26.886848959757142, -80.02273352114447 26.90988992203817, -80.01882899725692 26.93293200552253, -80.01492245234344 26.95597520674902, -80.06253520925708 26.96237938521868, -80.05863868737136 26.985425705740482, -80.05474014729049 27.0084731371749, -80.07856114426359 27.011669676771486, -80.07466661516888 27.034719215894047, -80.07077006774449 27.0577698590421, -80.09460484173447 27.060963358660146, -80.09071231244495 27.08401610112632, -80.08681776469487 27.10706994072292, -80.11066633038769 27.11026039358316, -80.10677580793697 27.133316324118574, -80.10288326689837 27.156373344881438, -80.12674563900136 27.159560744201762, -80.12285713044241 27.182619847514786, -80.11896660317191 27.205680034144375, -80.14284279641372 27.20886437313985, -80.13895630881902 27.231926633921667, -80.13506780239274 27.254989971101296, -80.1589578315234 27.25817124298405, -80.15507337198494 27.281236645908784, -80.17897118016148 27.284413852587303, -80.17509077328951 27.307481316284047, -80.17120834891891 27.330549846008577, -80.19512001519674 27.33372397347717, -80.19124165073184 27.35679455555234, -80.21516110660365 27.359964608735357, -80.21128680784155 27.383037238180293, -80.235214056414 27.38620321330301, -80.23134382915892 27.40927788513406, -80.25527887353823 27.412439778421724, -80.25141272360162 27.435516487652468, -80.24754456044536 27.458594245616283, -80.271493500094 27.461753036971434, -80.26762942154546 27.484832823889302, -80.2637633296872 27.507913652581234, -80.28772617945634 27.51106933520181, -80.28386417951117 27.53415218439301, -80.28000016616996 27.557236068391372, -80.30397694093236 27.560388635472684, -80.30011702682579 27.583474531506422, -80.29625509924062 27.606561455372688, -80.32024581389066 27.609710900107267, -80.31638799287792 27.632799827535838, -80.31252815830787 27.65588977581455, -80.30866630861514 27.678980741428052, -80.33267710711787 27.682128034751123, -80.328819372842 27.70522099196998, -80.32495962336758 27.728314959529815, -80.34898439905787 27.73145911538574, -80.34512877237542 27.75455506605564, -80.34127113042234 27.777652020064952, -80.3653098982721 27.780793031636833, -80.3614563865025 27.803891960251917, -80.35760085939405 27.826991885197103, -80.38165363439698 27.83012974566542, -80.37780224487992 27.85323163670308, -80.37394883995965 27.876334517053824, -80.39801563713125 27.879469219596345, -80.39416637722674 27.90257405751727, -80.41824104519887 27.90570462506335, -80.41439593623622 27.928811415518474, -80.46256272495262 27.935059163381, -80.45872794501996 27.958168868450738, -80.45489115574891 27.981279548855557, -80.47898945490914 27.984397688730485, -80.47515683440253 28.007510306545335, -80.49926301688589 28.010624296302776, -80.49543457109932 28.033738846480897, -80.51954864003513 28.036848682340572, -80.51572437493158 28.059965159832416, -80.51189810351676 28.083082598608257, -80.50806982422263 28.10620099512154, -80.53220417177745 28.109308595296707, -80.52838008221826 28.132428907053043, -80.5525223313608 28.13553234267675, -80.54870243752296 28.158654564616977, -80.544880537324 28.181777733720207, -80.56903689926442 28.18487795897034, -80.56521920233106 28.2080030296792, -80.56139949901771 28.231129040479136, -80.58556998891504 28.234226048515257, -80.58175449642833 28.257353952333755, -80.57793699754681 28.2804827891639, -80.57411749069861 28.303612555444847, -80.57029597431023 28.32674324761424, -80.56647244680656 28.349874862107924, -80.56264690661084 28.373007395360094, -80.55881935214465 28.396140843803362, -80.5346052650227 28.39303713961181, -80.53076945397969 28.416170542939927, -80.50655083927735 28.413060736080837, -80.50270676513061 28.43619408906632, -80.49886066567554 28.45932834646029, -80.49501253932253 28.482463504688948, -80.49116238448038 28.505599560176908, -80.51540598817324 28.50871320067993, -80.51156005837248 28.531851108348036, -80.50771210005007 28.554989906154034, -80.53196993837815 28.558100308238746, -80.52812621272878 28.581240949581947, -80.52428045852935 28.60438247393415, -80.54855254685383 28.607489630740197, -80.54471103297614 28.63063298997798, -80.56899111169385 28.633735940735647, -80.56515384422866 28.65688112975305, -80.5894419165244 28.659979870672537, -80.5856089015701 28.683126884361034, -80.58177386119593 28.706274766811347, -80.60607621429068 28.709370244901027, -80.60224543411726 28.73251994335273, -80.65086786382037 28.738697291136784, -80.64704764306512 28.761849748161165, -80.643225401655 28.785003063265435, -80.6675517777345 28.788085873066972, -80.66373381490222 28.811240988817232, -80.68806820501408 28.81431956827624, -80.68425452690056 28.83747647954888, -80.70859693422916 28.840550824875635, -80.70478754698304 28.86370952654436, -80.72913797471209 28.86677963394925, -80.72533288448966 28.889940120885303, -80.74969133580228 28.893005986578785, -80.74589054876749 28.91616825365073, -80.77025702684615 28.91922987384342, -80.76646054917063 28.94239391591734, -80.79083505719714 28.94545128681994, -80.78704289506024 28.96861709875926, -80.81142543621577 28.971670216582584, -80.80763759580452 28.99483779324822, -80.83202817326956 28.997886654203267, -80.82824466077874 29.02105599045353, -80.85264327773312 29.0241005907514, -80.84886409936514 29.04727168144208, -80.87327075898806 29.050312017293933, -80.86949592095311 29.073484857278242, -80.86571907849623 29.09665851239854, -80.89014013493906 29.0996955090241, -80.8863676406808 29.122870904699337, -80.91079675072643 29.125903627739238, -80.90702861089706 29.149080758815483, -80.93146577772576 29.152109204480873, -80.92770199856325 29.17528806580167, -80.95214722535464 29.17831223030382, -80.94838781310476 29.20149281671022, -80.97284110303768 29.20451269626054, -80.96908606395398 29.227695002591016, -80.96532902715022 29.250878102462714, -80.98979676055042 29.25389461449158, -80.98604410484553 29.27707942552192, -81.01051991234065 29.280091643457066, -81.00677164400838 29.303278160477475, -81.00302137972099 29.32646546020173, -81.05200361932415 29.332477916751714, -81.04826414458958 29.355667830236495, -81.04452267726735 29.378858519208574, -81.04077921577493 29.40204998003028, -81.03703375852807 29.425242209062226, -81.03328630394088 29.44843520266344, -81.08233932358863 29.45443591967039, -81.07860269529114 29.477631502777857, -81.10313815497094 29.480624929036715, -81.09940595063453 29.5038221814025, -81.09567175405103 29.527020187481757, -81.12022174331084 29.5300102025674, -81.11649197873027 29.55320986909276, -81.1127602220253 29.576410282059246, -81.13732475661742 29.57939687906877, -81.13359743997533 29.602598943660837, -81.12986813133622 29.625801747414727, -81.15444722703594 29.62878491944306, -81.15072236653779 29.65198936599382, -81.14699551417463 29.675194544419934, -81.1715891867803 29.678174284559894, -81.16786679065434 29.701381096945976, -81.16414240280008 29.724588633913896, -81.18875066813312 29.727564935256297, -81.18503074463054 29.750774097339033, -81.20964715619894 29.75374605035076, -81.20593170344603 29.77695683233653, -81.202214260841 29.800168327962112, -81.22684528884965 29.803136829901636, -81.22313232513979 29.82634993657261, -81.24777151045167 29.82931408102747, -81.2440630320557 29.852528793525057, -81.24035256570444 29.87574420870407, -81.26500639121423 29.878704889807896, -81.2613004183535 29.901921901943386, -81.25759245769959 29.925139609438205, -81.28226093931735 29.928096820273804, -81.27855748034904 29.951316115846826, -81.2748520337544 29.974536099450134, -81.29953518741354 29.977489833098247, -81.29583425071809 30.000711395893465, -81.29213132656804 30.023933639382907, -81.28842641337219 30.047156559885345, -81.31313076220641 30.050107702709315, -81.30943036890957 30.073332189847545, -81.3057279867427 30.096557346652506, -81.33044704762986 30.099504996888516, -81.32674919361835 30.12273171142321, -81.32304935091737 30.145959088271496, -81.31934751793239 30.16918712374411, -81.31564369306713 30.19241581415026, -81.34039053882955 30.195361745274806, -81.33669125395562 30.218591977153295, -81.33298997738525 30.2418228565987, -81.32928670751969 30.26505437991554, -81.3540548552093 30.26799769015176, -81.35035613542777 30.291230742333727, -81.34665542253893 30.314464431010386, -81.34295271494153 30.337698752481458, -81.36774220031681 30.34063943179506, -81.36404405292733 30.36387526950725, -81.3603439110213 30.387111732627027, -81.35664177299486 30.410348817449442, -81.38145263190206 30.41328685579967, -81.37775506423881 30.436525444222365, -81.3740555006513 30.45976464695085, -81.3703539395332 30.483004460275353, -81.39518620790653 30.485939847615185, -81.39148922733827 30.50918115188243, -81.41632976883635 30.512112113189772, -81.41263737540862 30.5353549031221, -81.40894298646394 30.558598292546208, -81.433798393588 30.56152570491886, -81.43010860020108 30.584770571028685, -81.42641681150839 30.608016029213292, -81.4227230259011 30.63126207575321, -81.4190272417687 30.654508706927682, -81.41532945749888 30.67775591901436, -81.41162967147767 30.701003708289424, -81.40792788208935 30.72425207102758, -81.40422408771649 30.747501003501956, -81.42913403375749 30.75043013629584, -81.42543485434268 30.77368051421668, -81.42173367015464 30.79693145443093, -81.41803047957335 30.820182953207198, -81.3931006584901 30.817251182052317, -81.3893888279699 30.840502356173896, -81.38567498435192 30.86375408137543, -81.38195912600827 30.88700635392119, -81.37824125130938 30.910259170073946, -81.37452135862387 30.93351252609507, -81.37079944631864 30.956766418244435, -81.36707551275883 30.980020842780384, -81.39205183004842 30.98295877062476, -81.3883325297924 31.0062146033875, -81.38461120848477 31.029470961062785, -81.38088786448806 31.052727839904392, -81.37716249616305 31.075985236164662, -81.3734351018688 31.099243146094565, -81.34842546879842 31.0963008202006, -81.34468937328086 31.11955836040041, -81.3409512450155 31.142816406754587, -81.33721108235342 31.166074955509814, -81.28715693534294 31.16016895799304, -81.28340137265248 31.18342624121943, -81.25837021606505 31.180464325329318, -81.25460592530253 31.203721218921014, -81.25083958468876 31.22697860360913, -81.24707119255966 31.250236475635063, -81.24330074724928 31.273494831238818, -81.23952824708995 31.29675366665894, -81.23575369041218 31.32001297813248, -81.23197707554469 31.3432727618951, -81.22819840081438 31.366533014181066, -81.22441766454635 31.389793731223087, -81.1993279807179 31.38681848413706, -81.19553846770634 31.410078775963573, -81.19174688628168 31.43333952499694, -81.18795323476088 31.456600727465876, -81.16284515634095 31.45361744728805, -81.15904271037134 31.476878211585507, -81.15523818740732 31.500139421761514, -81.13011842253819 31.49714898887737, -81.12630509259982 31.520409751702253, -81.12248967875219 31.543670952843783, -81.11867217929773 31.566932588523862, -81.11485259253705 31.590194654962946, -81.11103091676897 31.613457148380178, -81.10720715029042 31.63672006499316, -81.10338129139649 31.659983401018128, -81.09955333838047 31.68324715266996, -81.0957232895338 31.706511316162107, -81.09189114314601 31.72977588770651, -81.06670571603414 31.72677116746187, -81.06286470812823 31.7500352521259, -81.05902159569845 31.773299737254128, -81.03382442627817 31.770287839739815, -81.02997243968431 31.79355182878113, -81.02611834156697 31.81681621069367, -81.00090942446101 31.813797130108586, -80.99704643951448 31.83706100672358, -80.97183254503179 31.834035633251368, -80.96796066586877 31.85729899915841, -80.94274179640443 31.854267330225166, -80.93886101563467 31.877530180013267, -80.9136371735914 31.874492213046942, -80.90974748382159 31.8977545413042, -80.88451867160983 31.894710273734564, -80.88062006544372 31.917972075048443, -80.85538628548153 31.914921504307014, -80.85147875551984 31.938182773264277, -80.82624001023304 31.93512589678435, -80.82232354907346 31.958386627971006, -80.81840493750505 31.98164772158915, -80.81448417376832 32.00490917383435, -80.81056125610183 32.028170980900754, -80.8066361827423 32.05143313898114, -80.83190889434248 32.054494535581135, -80.82798846752264 32.07775794490855, -80.80270895192447 32.0746956442669, -80.7987795618812 32.09795849294817, -80.77349507089907 32.09488987437495, -80.76955671019233 32.118152156989105, -80.7189796221609 32.111996864658664, -80.71502547310318 32.13525766693065, -80.68973288307004 32.13217098965996, -80.68576974638327 32.15543121341767, -80.68180442901586 32.17869176529827, -80.65650006115715 32.17559784940555, -80.65252574333621 32.19885781352848, -80.62721641246218 32.19575756691672, -80.6232330867328 32.219016937857695, -80.61924756776288 32.24227662546068, -80.5686072048395 32.23605621460455, -80.56460584091668 32.25931438290582, -80.51395930284464 32.25307045391096, -80.50994208391178 32.27632709268364, -80.45928940016117 32.27005963798536, -80.4552563161813 32.29331473700368, -80.42992597272111 32.29017195374188, -80.42588383941154 32.31342642924545, -80.42183947863448 32.33668120227448, -80.39649736712092 32.33353114466025, -80.3924439441214 32.356785284918345, -80.38838828639506 32.380039715046856, -80.38433039210669 32.40329443121809, -80.40969301320393 32.4064472682551, -80.40563972425255 32.42970319312001, -80.43101108541211 32.43285152563734, -80.42696240873477 32.45610865377411, -80.35083347526164 32.44664458443436, -80.3467620108623 32.46989920767228, -80.27062967466681 32.46038346303037, -80.26653541312315 32.4836355631562, -80.2411549464267 32.48045185115531, -80.23705157433002 32.503703283686875, -80.1862827062231 32.497317691183405, -80.18216336528872 32.520567513023764, -80.15677497113236 32.51736562906781, -80.15264650261469 32.540614770847576, -80.12725318896682 32.53740651303615, -80.12311558536183 32.56065496932007, -80.07232106537784 32.55422026609577, -80.06816746392724 32.57746708740115, -79.99196971612972 32.56777143622826, -79.98779325284987 32.59101566350248, -79.96239105679798 32.58777196096363, -79.958205429889 32.61101548164719, -79.93279833893052 32.60776539242877, -79.92860354088633 32.631008201085116, -79.87778154339802 32.62448980778302, -79.87357070828446 32.6477309437674, -79.84815580912304 32.64446263626505, -79.84393578586707 32.66770304775364, -79.83971342935313 32.690943687702934, -79.8142867856365 32.68766802669513, -79.81005522793542 32.710907932864956, -79.78462370278666 32.707625872651406, -79.78038293637866 32.73086503960229, -79.75494653251693 32.72757657768334, -79.7506965498794 32.75081499997526, -79.72525527003198 32.74752013385317, -79.72099606363969 32.770757806045445, -79.69554991054196 32.767456533224355, -79.69128147286688 32.79069344987579, -79.66583044926237 32.787385767861764, -79.66155277277385 32.810621923530626, -79.61064300125233 32.80398829149388, -79.60634920222397 32.82722271120096, -79.58089046179315 32.82389675779001, -79.5765874069235 32.847130404039085, -79.57228196878357 32.870364244104195, -79.54681149075024 32.86703090041593, -79.54249678364725 32.89026395772597, -79.53817968571825 32.91349720114151, -79.53386019499169 32.93673062680464, -79.52953830949382 32.95996423085626, -79.52521402724875 32.983198009435974, -79.42321466384871 32.969790634601004, -79.41886039217661 32.993020677116576, -79.34236166730831 32.982904945724925, -79.33798429420627 33.00613220831634, -79.33360449297936 33.02935963386609, -79.3080952402639 33.02597484769171, -79.30370610964741 33.049201446915866, -79.29931454326379 33.07242820137182, -79.27379355526487 33.069035986748545, -79.26939264628244 33.09226190556701, -79.24386682512262 33.08886324544746, -79.23945656596781 33.11208832317849, -79.21392591451723 33.108683215097514, -79.20950629761388 33.131907446290505, -79.15843742422439 33.12507886974029, -79.15400153313193 33.14830125559716, -79.14956317799279 33.17152377736068, -79.14512235677083 33.194746431158904, -79.14067906742771 33.21796921311872, -79.13623330792285 33.241192119365635, -79.13178507621346 33.264415146024014, -79.12733437025449 33.287638289216986, -79.12288118799864 33.310861545066324, -79.11842552739645 33.33408490969266, -79.11396738639613 33.357308379215375, -79.10950676294367 33.38053194975253, -79.10504365498284 33.40375561742103, -79.07942922172217 33.40032120163394, -79.07495667625673 33.42354396767503, -79.04933740515104 33.42010307825638, -79.04485541453532 33.44332493720898, -79.01923130853027 33.43987757170723, -79.01473986511603 33.463098518109774, -79.0102459179301 33.48631954611893, -78.98461002330221 33.48286470246581, -78.9801066099201 33.506084808581136, -78.97560068493839 33.52930498853156, -78.94995299716558 33.52584266112521, -78.94543759257049 33.54906190983484, -78.9409196685294 33.572281224603834, -78.91526018310303 33.568811407846425, -78.91073276601178 33.59202978202459, -78.9062028216097 33.61524821448234, -78.8805315340345 33.61177090277989, -78.8759920831259 33.63498838529361, -78.87145009702303 33.658205918303025, -78.84576700281737 33.65472110606553, -78.84121549673199 33.67793767977464, -78.81552757600737 33.674446368892376, -78.81096654224622 33.697661977832915, -78.78527379802522 33.694164165869886, -78.7807032288925 33.717378804573244, -78.75500566420634 33.71387448909546, -78.75042555200382 33.73708815209255, -78.72472316989227 33.733577330668005, -78.72013350691923 33.75679001248934, -78.69442631043073 33.75327268268792, -78.68982708898392 33.77648437786369, -78.66411508117547 33.7729605372573, -78.65950629354927 33.7961712403172, -78.63378947748656 33.79264088647969, -78.62917111597288 33.815850591953144, -78.55201283688726 33.80522349026706, -78.54737090373285 33.82843015090756, -78.4702114541443 33.81775050615245, -78.46554594152323 33.84095410385421, -78.43982355297148 33.837382201550895, -78.4351484359079 33.860584778957204, -78.40942127131933 33.85700635037497, -78.40473654210986 33.88020790201547, -78.22465983930972 33.85499776153784, -78.2199235422445 33.878192061853476, -77.98849534087438 33.84537406571413, -77.99329443382975 33.822189202296876, -77.94190482148493 33.81483803452531, -77.93709179458675 33.83802078346824, -77.93227607737204 33.86120352860733, -77.92745766760687 33.88438626603467, -77.90174537515809 33.88069927474234, -77.89691729550307 33.90388094097682, -77.89208651516076 33.92706259169219, -77.88725303188708 33.95024422297734, -77.88241684343555 33.973425830919865, -77.85667892408513 33.96972910563215, -77.85183304034935 33.99290962521593, -77.8469844432646 34.01609011364158, -77.84213313057417 34.03927056699342, -77.83727910001893 34.062450981354615, -77.83242234933722 34.08563135280717, -77.80665176214363 34.08192381923166, -77.8017852847544 34.105103081240365, -77.82756287626489 34.10881167743191, -77.8227006785353 34.13199195130851, -77.81783575387938 34.15517217051552, -77.79204414268482 34.151461449133265, -77.78716947345815 34.17464054717379, -77.78229206906852 34.19781958271259, -77.75648874437768 34.194101226170865, -77.75160158172305 34.21727913115907, -77.74671167564979 34.240456965809656, -77.72089663356572 34.236730968626944, -77.71599695551379 34.259907663340144, -77.69017722017985 34.25617508727523, -77.68526776240975 34.279350636575074, -77.65944333715562 34.27561147926456, -77.65452409192568 34.29878587767481, -77.62869498009 34.29504013675732, -77.62376593965642 34.31821337880158, -77.59793214458676 34.31446105191781, -77.59299330120366 34.33763313211926, -77.56715482625654 34.33387421691187, -77.5622061721759 34.35704512979347, -77.53636302071682 34.35327962390721, -77.53140454818853 34.37644936399171, -77.50555672359195 34.37267726507336, -77.50058842486388 34.39584582688318, -77.4956173323616 34.419014283105646, -77.49064344375263 34.442182629805316, -77.46477686533932 34.43840177919026, -77.45979313069992 34.46156893429935, -77.43392188248275 34.457781482833056, -77.42892829404465 34.48094744087213, -77.37717885088063 34.473353808827724, -77.37216835183814 34.496517481492404, -77.34629016544666 34.492711297785846, -77.34126979535317 34.51587376086293, -77.31538695455517 34.51206096848999, -77.3103567056402 34.535222216499776, -77.25858412674245 34.527577885474365, -77.25353693909115 34.55073682386513, -77.22764720959485 34.546905282098116, -77.22259012588215 34.57006299290521, -77.19669575748921 34.56622483468586, -77.19162876994265 34.58938131242938, -77.16572976612699 34.58553653542691, -77.16065286697221 34.60869177462661, -77.10884802387397 34.60098345182736, -77.10375414847468 34.62413635013529, -77.07784831785783 34.620272801241384, -77.07274451362332 34.643424448490435, -76.99502049132919 34.631797341106925, -76.98989263621071 34.654945527147134, -76.88626669171066 34.639360933230314, -76.88110772789847 34.66250453069036, -76.80339297519443 34.65075474263019, -76.79820995068323 34.67389483823265, -76.59102338679958 34.642310142629285, -76.59626272960945 34.61917901623604, -76.60149912474051 34.59604772574726, -76.57562608442115 34.59207705495666, -76.58086655741677 34.568946732572165, -76.50328350691538 34.557005032624204, -76.49802197717803 34.58013196082977, -76.49275748756375 34.60325872896529, -76.48749003560351 34.626385333087114, -76.48221961882554 34.64951176925042, -76.45633553183623 34.645515643251116, -76.45105511838157 34.66864077306261, -76.44577173148825 34.691765727043844, -76.41987610519533 34.687761813469535, -76.41458270776224 34.71088545169985, -76.40928632825002 34.73400890622461, -76.38337915951513 34.72999719972254, -76.37807275558114 34.753119329094865, -76.37276336090797 34.776241266882884, -76.34684464661073 34.77222176210477, -76.34152521361486 34.79534236533663, -76.33620278120013 34.818462769101906, -76.31027251823811 34.814435460703905, -76.30494003358083 34.837554520506906, -76.27900527073503 34.833520545235594, -76.27366272609426 34.85663825560045, -76.22178676685428 34.84855144054989, -76.21642710321726 34.87166665080509, -76.21106441538015 34.89478164586571, -76.20569870081356 34.91789642177462, -76.1797434041023 34.91384128554856, -76.17436760010406 34.93695469165666, -76.1484078168565 34.93289287794228, -76.14302191567336 34.95600490877258, -76.11705764963695 34.95193641530738, -76.11166164351401 34.97504706538281, -76.08569289844549 34.97097188990639, -76.08028677962632 34.99408115374976, -76.07487760662553 35.01719017873828, -76.04889732001843 35.01310716613783, -76.04347802031864 35.036214795479246, -76.01749326070625 35.032125094813416, -76.01206382654203 35.05523132302966, -75.98607459771355 35.051134932044945, -75.98063502131791 35.07423975365793, -75.95464132707197 35.070136670102855, -75.94919160067639 35.09324007963431, -75.92319344482098 35.08913030125962, -75.91773356065545 35.112232293231244, -75.86573095469095 35.103993805121455, -75.86025382968845 35.12709321196968, -75.83424938873088 35.12296449928326, -75.82876208892549 35.1460624760781, -75.80275320316875 35.14192706113226, -75.79725572079043 35.16502360239557, -75.74523170782608 35.15673382502704, -75.73971695756906 35.17982775702466, -75.687689370465 35.17151348798885, -75.68215734383587 35.19460480061102, -75.65614045221079 35.190438186568976, -75.65059821676307 35.213528044156455, -75.52051832393637 35.192606031244445, -75.51493757543757 35.21568971502981, -75.50935366901807 35.238773108891486, -75.50376660203166 35.261856208857154, -75.49817637182916 35.28493901095348, -75.4925829757585 35.30802151120616, -75.48698641116465 35.33110370563977, -75.4813866753897 35.35418559027795, -75.47578376577277 35.37726716114328, -75.47017767965005 35.40034841425739, -75.46456841435483 35.423429345640784, -75.45895596721735 35.44650995131304, -75.45334033556502 35.46959022729268, -75.44772151672221 35.49267016959728, -75.4420995080104 35.51574977424336, -75.43647430674807 35.538829037246515, -75.43084591025071 35.561907954621155, -75.42521431583091 35.58498652238091, -75.41957952079822 35.608064736538324, -75.41394152245925 35.631142593104904, -75.4400871388688 35.635360497483404, -75.43445307560891 35.65843917256278, -75.42881580737553 35.68151748203936, -75.45497842930227 35.6857321775786, -75.44934510422883 35.70881129592978, -75.44370857251633 35.73189004066144, -75.4698882208857 35.73610152011776, -75.46425564043444 35.75918106408017, -75.49044516956616 35.76338814495716, -75.48481654745407 35.78646848252993, -75.51101596250196 35.79067116080054, -75.50539130581754 35.81375228636148, -75.49976344292324 35.83683302222221, -75.52597992777903 35.841032465924336, -75.52035603846578 35.86411398011768, -75.54658242560456 35.868309011566524, -75.54096251698722 35.891391298465685, -75.5671988115719 35.89558191363488, -75.56158289077608 35.918664967611235, -75.58782909797065 35.92285116247478, -75.58221717213264 35.945934977898105, -75.57660204162525 35.96901838348354, -75.60286537336906 35.97320131966876, -75.59725424604105 35.99628547703106, -75.59163991240784 36.01936921651221, -75.61792038982361 36.02354888676855, -75.6123100676123 36.046633368351046, -75.6386004853195 36.0508086030342, -75.63299418170892 36.073893821080134, -75.65929454488732 36.07806461616486, -75.653692267067 36.10115056503466, -75.6800025808974 36.105316916496164, -75.67440433606775 36.128403590548665, -75.66880288656851 36.15148982653901, -75.6951304011043 36.15565288795481, -75.68953299290725 36.17873983943804, -75.71587047458168 36.18289844758452, -75.71027711491405 36.20598610891486, -75.70468055006523 36.22907332007386, -75.73103526501679 36.23322862529807, -75.7254427570462 36.256316536606036, -75.75180745565528 36.26046737891495, -75.74621901181715 36.28355598472166, -75.77259369928136 36.28770236009167, -75.76700932684075 36.31079165474515, -75.76142174984592 36.333880483053136, -75.78781371459169 36.338023536999835, -75.7822302173969 36.3611130444454, -75.77664351405004 36.38420207746954, -75.80305277745418 36.38834180273455, -75.79747016233128 36.41143150518184, -75.82388944252743 36.41556674823986, -75.81831092293702 36.43865711445107, -75.81272919673553 36.46174699410008, -75.83916580839993 36.4658788955937, -75.83358818619267 36.48896942928413, -75.82800735578573 36.51205946832527, -75.85446132038766 36.5161880209933, -75.84888460245828 36.53927870434815, -75.84330467474261 36.56236888496226, -75.8377215345035 36.585458558807396, -75.83213517900076 36.60854772185431, -75.8265456054911 36.6316363700729, -75.85303895673665 36.635764990587475, -75.84745350766693 36.658854261181204, -75.873956933844 36.66297837379032, -75.86837561659922 36.68606826108627, -75.86279108091094 36.70915762138019, -75.88931194493547 36.71327836009066, -75.88373154963128 36.736368327339065, -75.8781479342968 36.759457759477144, -75.90468625782799 36.76357511702153, -75.89910679145868 36.786665146361386, -75.89352410347433 36.80975463247831, -75.9200799082093 36.813868601588105, -75.91450137779317 36.83695867514904, -75.90891962417948 36.860048197370325, -75.93549293185328 36.86415877077585, -75.92991534443287 36.8872488706784, -75.95649877838457 36.891354909652456, -75.95092536462022 36.91444558155085, -75.9453487272623 36.93753568990632, -76.05176898746286 36.95391217403117, -76.0573159918976 36.930817555655516, -76.24360416916504 36.95925005527163, -76.23810911203665 36.982352505918215, -76.26473995071271 36.98639269405512, -76.25924914515595 37.00949568926363, -76.25375515812004 37.03259811235704, -76.24825798687232 37.055699959288496, -76.24275762867701 37.07880122601024, -76.23725408079534 37.10190190847371, -76.26392483756337 37.10594196969956, -76.25842555383767 37.12904317467732, -76.2851064728237 37.13307865485536, -76.2796114608416 37.15618037664837, -76.3063025473046 37.160211271765064, -76.30081181466507 37.18331350467289, -76.35421703314623 37.19136041923966, -76.34873806537615 37.21446426199111, -76.34325591426439 37.23756750002146, -76.3377705770689 37.260670129276164, -76.33228205104444 37.283772145699764, -76.35901865211655 37.28779146707529, -76.35353443087217 37.31089396930863, -76.38028123318966 37.31490868635498, -76.37480132438156 37.33801166868965, -76.36931822657387 37.36111402593777, -76.34255641475806 37.35709710675818, -76.34804701933649 37.333995850555624, -76.32129542151226 37.32997432382801, -76.32679033344272 37.30687354523607, -76.24657430470236 37.294778039225584, -76.24105690561088 37.31787550045032, -76.23553629733053 37.340972336799766, -76.2300124770943 37.3640685442157, -76.22448544213206 37.38716411863919, -76.21895518967051 37.410259056010354, -76.21342171693325 37.43335335226861, -76.20788502114067 37.45644700335249, -76.23467352183194 37.46049229407866, -76.22914112187479 37.48358640298133, -76.22360549734796 37.506679858540615, -76.2504117817535 37.51072164472058, -76.24488046202097 37.53381554827425, -76.27169701380924 37.537852718836085, -76.26617000657315 37.56094706466504, -76.29299683108704 37.56497961559269, -76.28747414406111 37.58807439797647, -76.28194823351912 37.61116851062303, -76.25510631490663 37.607133755377525, -76.2495696248946 37.630226092126605, -76.24402970170367 37.65331775104658, -76.2708867307268 37.65735471043243, -76.26535113288844 37.680446789457285, -76.25981230035791 37.70353818246885, -76.2542702303332 37.72662888539617, -76.24872492000917 37.74971889416743, -76.24317636657734 37.77280820471009, -76.23762456722619 37.79589681295079, -76.23206951914088 37.818984714815386, -76.22651121950335 37.84207190622894, -76.22094966549238 37.865158383115855, -76.21538485428351 37.88824414139959, -76.209816783049 37.911329177002955, -76.26370593676525 37.9194100907347, -76.25814982281271 37.94249659788141, -76.2525904514223 37.96558237409752, -76.36046279848166 37.98168395704991, -76.35493066893827 38.0047733756905, -76.43588672016378 38.01679239534232, -76.43037425824755 38.03988434118904, -76.48437396307881 38.04787039225674, -76.47887356063099 38.070963764328475, -76.4518646883968 38.06697253590513, -76.44635340101306 38.09006407626593, -76.39232858995817 38.08206215564053, -76.39785517725846 38.058972788047285, -76.3708545454105 38.05496427027581, -76.37638553104101 38.03187524392634, -76.29542308492046 38.019818400990076, -76.28986918703986 38.042904151594094, -76.28431202866732 38.06598915484876, -76.31131202757363 38.07001604790339, -76.3057592491898 38.09310139311263, -76.3002032087909 38.11618598275768, -76.2946439035361 38.13926981275365, -76.28908133058124 38.16235287901489, -76.31611470063841 38.16637837771957, -76.31055651951188 38.18946176778936, -76.33760032375852 38.19348258810832, -76.33204654236864 38.21656629623696, -76.35910078626826 38.2205824341535, -76.35355141253538 38.24366645458997, -76.38061610155232 38.24767790608803, -76.37507114340882 38.27076223308008, -76.34799877223405 38.26674969479622, -76.34244286251358 38.28983215068235, -76.33688368051989 38.312913818157746, -76.36397142858083 38.31692852986756, -76.35841666619154 38.340010491480705, -76.35285863001003 38.36309165645078, -76.34729731717576 38.38617202068473, -76.34173272482478 38.40925158008895, -76.39597817457397 38.41727233534751, -76.39042573023774 38.44035325401428, -76.41756033947912 38.444356031374724, -76.41201234138428 38.46743721861712, -76.46630533371929 38.47542755914081, -76.46076952202321 38.498510087707395, -76.48792790945576 38.502497644459204, -76.48239656669635 38.52558042845916, -76.50956546412937 38.52956326422926, -76.50403859834827 38.55264629789785, -76.4985084654526 38.57572850180924, -76.49297506257847 38.598809871863615, -76.48743838685866 38.62189040396045, -76.4818984354227 38.64497009399854, -76.50910888245872 38.64895249911365, -76.5035734216035 38.67203241645021, -76.49803468354551 38.69511148347293, -76.52526345420254 38.6990902249533, -76.51972921620954 38.72216950934938, -76.51419169953003 38.74524793517314, -76.50865090128357 38.76832549831956, -76.50310681858643 38.791402194682945, -76.47584690169332 38.78741916634535, -76.47029173439797 38.81049392023296, -76.46473327258714 38.83356779917565, -76.45917151336361 38.856640799065836, -76.45360645382692 38.87971291579533, -76.44803809107319 38.90278414525523, -76.44246642219514 38.92585448333596, -76.43689144428217 38.94892392592726, -76.43131315442032 38.97199246891829, -76.37667675918041 38.96399178268469, -76.38227069630359 38.940925386837314, -76.38786131287137 38.917858091494864, -76.39344861180447 38.89478990076785, -76.39903259602029 38.87172081876618, -76.40461326843278 38.84865084959908, -76.41019063195259 38.82557999737518, -76.38292351428771 38.82157736869392, -76.38850536599216 38.79850671375553, -76.39408391033629 38.77543518402717, -76.39965915022398 38.752362783615176, -76.40523108855577 38.72928951662528, -76.41079972822882 38.706215387162516, -76.35635173564727 38.698203465266246, -76.36193261782013 38.67513063511709, -76.36751019860303 38.65205695080507, -76.34030592946048 38.64804443999894, -76.34588796869276 38.624970986919045, -76.3514667080725 38.60189668793169, -76.37865546757081 38.605907036102316, -76.38422316153328 38.58283081391482, -76.38978756566104 38.55975375397085, -76.3953486828345 38.53667586037027, -76.40090651593086 38.5135971372123, -76.40646106782394 38.49051758859532, -76.37931100823207 38.48651264789647, -76.3848700090795 38.46343335956266, -76.33059369010064 38.45540826802973, -76.33616485008992 38.432330330568995, -76.30903858633292 38.42831018615172, -76.31461417261787 38.405232522114495, -76.32018647231023 38.38215404920262, -76.29307841154802 38.378130293503226, -76.29865512822323 38.35505210391878, -76.27155755339886 38.351023654512204, -76.27713867909449 38.32794575401316, -76.28271651840961 38.30486705701821, -76.22856049200232 38.296797184495645, -76.2341504118998 38.273719879436534, -76.20708426185752 38.269677373020805, -76.21267856696069 38.24660037431376, -76.1856228808386 38.24255319026766, -76.19122156323334 38.219476503665696, -76.11009426666087 38.20730362469322, -76.11571263317128 38.18422945623469, -76.12132769844257 38.16115451207155, -76.09430616759275 38.15708755512791, -76.09992557989797 38.134012941934884, -76.10554169255904 38.11093756125873, -76.07853824352995 38.106867049381314, -76.08415869409266 38.0837920095566, -76.05716567598778 38.079716844180936, -76.0627904566101 38.056642150953174, -76.06841193791917 38.033566702591784, -76.07403012278147 38.010490503179405, -76.07964501406018 37.987413556797826, -76.08525661461525 37.96433586752819, -76.09086492730333 37.941257439450844, -76.06392040110093 37.93718316245285, -76.06953302971411 37.91410510736037, -76.07514237205255 37.8910263216657, -76.0482158274674 37.88694851660287, -76.05382947668677 37.86387011375564, -76.05943984122605 37.840790988508004, -76.06504692393193 37.81771114493617, -76.01124769573224 37.80954497817862, -76.01686664823826 37.78646664407521, -75.85558135152462 37.76183720853953, -75.86124238360114 37.738764873320186, -75.86690010974714 37.715691832371796, -75.87255453282141 37.69261808976606, -75.87820565567947 37.66954364957374, -75.90504935121217 37.67365839597004, -75.91068963835941 37.650582140006115, -75.91632663504693 37.627505194549016, -75.94315804534659 37.63161197529517, -75.94878422176991 37.608533223630324, -75.9756108809854 37.61263316320961, -75.98122624568525 37.589552610877774, -75.98683833654364 37.566471381165734, -75.99244715638739 37.543389478140185, -75.9980527080401 37.5203069058669, -76.00365499432219 37.49722366841097, -76.00925401805083 37.47413976983653, -76.01484978204002 37.45105521420709, -76.02044228910056 37.42797000558519, -76.02603154204006 37.40488414803267, -76.03161754366297 37.38179764561049, -76.03720029677054 37.35871050237885, -76.01045625621774 37.35462287717125, -76.01604325021142 37.331536216941934, -76.02162699726541 37.30844892406425, -76.0272075001745 37.28536100259574, -76.0327847617303 37.262272456593024, -76.03835878472131 37.23918329011205, -76.04392957193285 37.21609350720781, -76.04949712614709 37.1930031119345, -76.02280814630177 37.188917633670734, -76.02837992649066 37.16582775169788, -76.00170114261056 37.161737705239226, -76.00727714121008 37.13864834226814, -76.01284990716219 37.11555837916924, -76.01841944324259 37.09246781999299, -76.02398575222384 37.06937666878901, -75.94405514296588 37.057085916027646, -75.93846653440485 37.08017368780025, -75.93287468681623 37.103260867669924, -75.87957161046681 37.0950341088703, -75.87396165057292 37.11811843218043, -75.84730681197024 37.11399539735405, -75.84168616385976 37.13707798813956, -75.83606225643568 37.160159974999466, -75.80939530829812 37.15602898960198, -75.80376069751347 37.17910923440015, -75.77708907966122 37.17497142881352, -75.77144375713894 37.19804992602096, -75.7657951589339 37.22112780723328, -75.76014328223039 37.24420506839733, -75.75448812420947 37.267281705459126, -75.72778949556232 37.26313366621712, -75.72212359702361 37.28620853812786, -75.71645440753247 37.30928277786976, -75.71078192425733 37.33235638138652, -75.7051061443635 37.355429344620994, -75.67838046370905 37.351271060786665, -75.67269391442042 37.374342241301854, -75.66700405883691 37.39741277346279, -75.66131089411111 37.420482653210094, -75.63456559972076 37.41631525367119, -75.62886164348326 37.439383337138814, -75.62315436839552 37.46245076011693, -75.61744377159737 37.48551751854391, -75.61172985022539 37.50858360835734, -75.58495743489719 37.50440594378728, -75.57923269296724 37.52747021973951, -75.57350461671405 37.550533818997, -75.5677732032614 37.57359673749516, -75.56203844972983 37.59665897116847, -75.55630035323655 37.61972051595074, -75.55055891089557 37.642781367774866, -75.54481411981762 37.66584152257307, -75.53906597711006 37.68890097627668, -75.53331447987703 37.71195972481631, -75.5275596252194 37.73501776412176, -75.52180141023469 37.75807509012207, -75.51603983201713 37.78113169874548, -75.48918008774005 37.7769346191121, -75.48340760437594 37.79998936410784, -75.47763174791069 37.823043383629226, -75.45075978393545 37.8188382935025, -75.44497300682632 37.84189043983494, -75.31061855646792 37.82077338543897, -75.30479069029191 37.843819056852645, -75.29895941797115 37.86686399086349, -75.29312473655844 37.88990818339641, -75.28728664310317 37.91295163037558, -75.28144513465145 37.9359943277244, -75.27560020824596 37.9590362713655, -75.24869269765883 37.954788772593304, -75.24283679233768 37.977828805803824, -75.23697745908335 38.00086807720028, -75.23111469492532 38.02390658270311, -75.2041874095799 38.01964989052398, -75.198313643894 38.04268647200338, -75.19243643729219 38.06572227947934, -75.18655578679068 38.08875730887038, -75.15960870875038 38.08449141528388, -75.15371703405475 38.1075245070553, -75.14782190541429 38.13055681262842, -75.14192331983193 38.15358832791967, -75.13602127430718 38.17661904884483, -75.13011576583615 38.19964897131886, -75.1242067914115 38.222678091256036, -75.09721712961452 38.21839951787134, -75.0912970870226 38.24142667449046, -75.08537356836895 38.26445302045207, -75.07944657063284 38.28747855166857, -75.07351609079005 38.31050326405142, -75.04649896254102 38.30621431100583, -75.04055738457983 38.32923704242862, -75.03461231436056 38.352258946892526, -75.02866374884553 38.37528002030722, -75.02271168499355 38.398300258581536, -75.01675611975998 38.42131965762368, -75.01079705009666 38.44433821334108, -75.004834472952 38.467355921640575, -74.99886838527085 38.49037277842815, -75.02594653215996 38.49467099425528, -75.01998457669596 38.51768815303805, -75.01401910869234 38.540704452063665, -75.00805012508658 38.563719887235926, -75.03515420507047 38.5680158053936, -75.02918936357344 38.59103152849615, -75.02322100446874 38.61404637949517, -75.01724912468647 38.63706035429213, -75.04437918700573 38.641353964058965, -75.03841145925747 38.66436821271278, -75.03244020882372 38.687381576909374, -75.05958861617286 38.69167171506984, -75.05362152666137 38.714685343199164, -75.04765091245793 38.737698078612745, -75.04167677048136 38.760709917208416, -75.03569909764686 38.783720854883306, -75.06288127291523 38.78800981568998, -75.05690777206704 38.81102099904936, -75.11129651696434 38.81958385292623, -75.11725459809406 38.79657037281449, -75.17163986589476 38.80510777136695, -75.16569721493681 38.82812354200912, -75.19290203747207 38.8323846975365, -75.186963593525 38.855400701640136, -75.2141791194887 38.85965720463047, -75.20824489045565 38.88267343642013, -75.23547112570176 38.886925282820776, -75.22954111949822 38.90994173651979, -75.25677806988223 38.91418892227872, -75.25085229443616 38.93720559210927, -75.27809996581499 38.94144811317497, -75.27217842906671 38.96446499335805, -75.26625338173798 38.98748094330552, -75.29351953720108 38.99171993043516, -75.28759873765875 39.014736080787785, -75.31487563266445 39.01897039350898, -75.3089590888797 39.041986738484574, -75.36353734325299 39.0504401945369, -75.35763284094841 39.073457858317354, -75.3849342052072 39.077676995165035, -75.37903398148909 39.100694840385955, -75.37313025292929 39.123711734526054, -75.4004501647989 39.12792730911926, -75.39455072400655 39.15094437474227, -75.3886477764554 39.1739604809979, -75.38274131905904 39.19697562377077, -75.37683134872748 39.21998979894479, -75.37091786236716 39.24300300240332, -75.39827977893435 39.24721838224503, -75.39237059305958 39.27023173470014, -75.38645788922926 39.293244107145895, -75.41383843461772 39.29745590503906, -75.40793004052001 39.32046841651146, -75.43532140102774 39.32467550357914, -75.42941732475202 39.34768814828386, -75.37462191529433 39.339265895533686, -75.38054166434239 39.316255495463494, -75.32577387949259 39.30781215492616, -75.33170575805828 39.28480301758911, -75.24960001463843 39.27209766197889, -75.25555181153341 39.24909092895368, -75.20084527907761 39.240593821281585, -75.20680914692664 39.21758837532152, -75.1794681920347 39.213332221008855, -75.18543631211882 39.19032693535171, -75.1581061604323 39.18606609697707, -75.16407852473966 39.16306097741267, -75.10944282674731 39.154524124128024, -75.10345489034162 39.17752696423176, -74.91227067114338 39.14745680489193, -74.91831302625381 39.124461991868436, -74.92435179645521 39.10146621224819, -74.93038698489293 39.07846947014439, -74.95766663268753 39.08277919284465, -74.96369048900829 39.05978034080382, -74.96971077404474 39.03678053444469, -74.97572749092811 39.01377977787861, -74.98174064278606 38.99077807521637, -74.98775023274267 38.96777543056805, -74.99375626391833 38.94477184804316, -74.99975873942994 38.921767331750495, -74.86366162352846 38.90020108406189, -74.8576205327395 38.92319982522649, -74.83040246948505 38.9188680369298, -74.82435008286936 38.94186468499124, -74.81829411239787 38.96486039552777, -74.79106364765484 38.960520492446236, -74.78499636523145 38.98351410028724, -74.77892548849468 39.006506762445156, -74.75168261977264 39.00215873950499, -74.74560041493697 39.02514928937449, -74.73951460530616 39.04813888540086, -74.71225933013969 39.04378273753341, -74.7061621762411 39.06677021167791, -74.7000614070414 39.089756723817516, -74.67279372299022 39.085392445959144, -74.666681593332 39.10837682662298, -74.66056583784254 39.13136023711841, -74.65444645334037 39.154342673332586, -74.64832343664041 39.17732413115209, -74.62102784178452 39.17294938472724, -74.61489343366051 39.19592869337126, -74.60875538276318 39.218907015453205, -74.6026136858932 39.24188434685788, -74.57529790429182 39.237500289378865, -74.56914479233505 39.260475457958016, -74.54182434505601 39.25608442056723, -74.53565980912894 39.279057420778365, -74.50833470098249 39.27465940134855, -74.50215873220039 39.29763022764954, -74.49597909199937 39.32060004699377, -74.44130714208181 39.3117818810245, -74.43510828093116 39.33474834288048, -74.40776921916095 39.33032936459316, -74.40155889849449 39.3532936359151, -74.37421519521499 39.348867667102866, -74.36799340614358 39.37182974235029, -74.36176791589833 39.394790794420246, -74.3344117998571 39.39035665453037, -74.3281748248606 39.41331550093018, -74.321934137972 39.4362733159771, -74.29456560697847 39.431830999992265, -74.28831341897045 39.45478659977308, -74.28205750832745 39.477741160023996, -74.2757978717729 39.500694676623525, -74.2484091320649 39.49624299832053, -74.24213797050992 39.5191942860006, -74.23586307226506 39.54214452184967, -74.20846190766902 39.537684656015394, -74.2021754679978 39.56063265334798, -74.19588528083364 39.58357959066838, -74.16847168924124 39.57911153230201, -74.16216994420286 39.602056221508576, -74.15586444084367 39.62499984252033, -74.14955517585082 39.647942391212275, -74.12212134247008 39.64346494992653, -74.11580049559335 39.66640523684788, -74.10947587621939 39.68934444326424, -74.10314748102059 39.712282565049065, -74.09681530666552 39.73521959807527, -74.06935338716484 39.73073157945079, -74.06300959929122 39.7536663329875, -74.05666202135097 39.776599989577, -74.05031064999788 39.79953254509069, -74.0439554818818 39.82246399539938, -74.03759651364872 39.845394336373325, -74.03123374194075 39.86832356388232, -74.05874271120581 39.872818701112735, -74.05238398915168 39.89574799722258, -74.04602146115035 39.9186761715369, -74.03965512383549 39.941603219923564, -74.0332849738368 39.964529138249965, -74.02691100778011 39.987453922382905, -74.02053322228731 40.01037756818869, -74.01415161397637 40.03330007153309, -74.00776617946129 40.056221428281326, -74.0013769153522 40.079141634298054, -73.99498381825526 40.102060685447476, -73.98858688477266 40.12497857759322, -74.01618576556558 40.12948089650702, -74.00979289865874 40.152398809404154, -73.98218611150266 40.147895306598386, -73.97578149503956 40.17081086832562, -73.96937303197369 40.193725258636945, -73.96296071889142 40.21663847339394, -73.95654455237514 40.23955050845769, -73.95012452900322 40.2624613596887, -73.9437006453501 40.28537102294702, -73.93727289798623 40.30827949409217, -73.930841283478 40.33118676898316, -73.92440579838785 40.354092843478504, -73.95208393644505 40.35860699813647, -73.94565252678409 40.3815130512775, -73.939217243981 40.40441789566668, -73.9327780845895 40.42732152716085, -73.96048337367951 40.431833347465854, -73.95404829962165 40.45473694334639, -73.94760934641091 40.47763931797201, -74.03079275540257 40.491146537239224, -74.03720778190969 40.46824062781177, -74.1758724274071 40.490628976941835, -74.16949733712107 40.513540746836505, -74.11400569160294 40.50460074195343, -74.10761076161386 40.527508946461516, -74.10121197171131 40.55041592099185, -74.07345506407758 40.54593473417209, -74.06704441046881 40.56883930270001, -73.95601763735635 40.55085090724129, -73.96246026307914 40.52795104165782, -73.9069826120714 40.518923841307895, -73.90052401790163 40.54182134616307, -73.87278216288155 40.53729772805799, -73.86631168719936 40.56019281254472, -73.78308205043874 40.546583062154475, -73.77658372175769 40.56947334796108, -73.69336006235743 40.55580702421871, -73.68683387777318 40.578692493771946, -73.54815471804129 40.55579156070693, -73.54158474274372 40.57866979932886, -73.4583936305178 40.56485500841463, -73.451795803229 40.5877283865856, -73.39633600170704 40.57848669520398, -73.38971827517213 40.60135640379276, -73.33425609303059 40.59208876210152, -73.32761845849811 40.614954791114776, -73.21670303166827 40.59634406929094, -73.21002958009052 40.61920397840345, -73.15457642147625 40.6098608954022, -73.14788304806822 40.63271709897438, -73.09242768448667 40.62334805393361, -73.08571438066275 40.64620054198657, -73.03025685701542 40.63680553054016, -73.02352361423094 40.65965429309867, -72.99579207122902 40.65494674182212, -72.98904682238685 40.67779299681885, -72.93357820200622 40.66835779898415, -72.92681299537105 40.69120031153556, -72.89907593018737 40.68647266240863, -72.89229869805331 40.70931265489566, -72.86455715641176 40.70457789364861, -72.85776788966612 40.72741536054877, -72.80227934221665 40.71792572892446, -72.79547008863479 40.74075942946318, -72.73997958958748 40.73124380315986, -72.73315034080645 40.754073727380096, -72.67765793542034 40.7445321021819, -72.67080868311871 40.76735824013048, -72.61531441670539 40.75779061184806, -72.60844515260345 40.78061295357558, -72.58069535200949 40.77581907536265, -72.57381400313889 40.798638858101, -72.51830909549128 40.789030969473515, -72.51140771637068 40.81184693908089, -72.48365262168878 40.80703292614729, -72.47673913850728 40.82984632428623, -72.42122369582385 40.82019815714858, -72.41429016403092 40.84300772525632, -72.35877304620024 40.83333353259401, -72.3518194576817 40.85613926073748, -72.32405830214387 40.85129208899889, -72.31709258014702 40.874095226242865, -72.26156510434876 40.86438072796501, -72.25457930741611 40.88718000836055, -72.22681299963682 40.882312679333005, -72.21981505002745 40.905109356364505, -72.19204439284492 40.90023488512866, -72.1850342814988 40.92302895328714, -72.15725928064646 40.918147337882594, -72.15023699850357 40.94093879165975, -72.12245765972762 40.936050030128605, -72.11542319772806 40.958838864016876, -72.05985946388527 40.94904116392828, -72.0528048785382 40.97182610324777, -71.99723973200302 40.96200234084697, -71.99016501542319 40.98478337568807, -71.9623799443939 40.979861401306316, -71.95529301875233 41.002639796861864, -71.92750364655103 40.99771066753331, -71.92040450280234 41.02048641829977, -71.89261083525108 41.01555013208237, -71.8854994643501 41.03832323255682, -71.85770150728379 41.0333797875109, -71.8505779001856 41.056150232191214, -71.8434499850571 41.078919294899514, -71.98255564011642 41.10359043414529, -71.98964382044778 41.080814997654514, -71.99672771395797 41.058038178763226, -72.02454386371853 41.06295220172634, -72.03161552603842 41.04017273422842, -72.05942735212534 41.04507960088833, -72.05236364122055 41.06786033722047, -72.04529565581497 41.090639695133866, -72.07312701635132 41.09554320936962, -72.06606271579476 41.11832245185201, -72.14960243431642 41.13300143665674, -72.15664282601294 41.11021840189954, -72.16367895646366 41.08743398423136, -72.13584470409354 41.082549408748186, -72.14288454140271 41.059764875058555, -72.28205201011116 41.08412251865675, -72.27505202646982 41.10691335077576, -72.24720335714079 41.102052351463115, -72.24019115172513 41.12484054793623, -72.23317469790206 41.147627361244695, -72.17745624422946 41.13788264177849, -72.17041956783473 41.160665550428774, -72.16337862686728 41.18344706777594, -72.10764269965676 41.17367371524299, -72.10058151570956 41.19645131403362, -72.09351605099643 41.21922751338274, -72.14928393597799 41.22900591194283, -72.15633341751916 41.20622718966553, -72.18421480350929 41.21110627624003, -72.19125202070799 41.18832489508792, -72.24700965067838 41.198062846759996, -72.2540266183894 41.1752775559458, -72.28190284970663 41.180136423520736, -72.28890757248053 41.15734848629305, -72.3446548388529 41.1670460088824, -72.35163933050406 41.1442541788651, -72.37951035293948 41.14909283636862, -72.38648261909353 41.12629837240482, -72.4143492278765 41.13112987889535, -72.42130927771194 41.10833278649887, -72.4491714671065 41.11315714394778, -72.45611930980172 41.09035742863315, -72.48397707408483 41.09517463901429, -72.49091271881818 41.07237230629668, -72.51876605227974 41.077182371586304, -72.52568950822949 41.0543774269816, -72.55353840517233 41.059180349158396, -72.56044968151657 41.036372798183116, -72.58829413625642 41.04116857922825, -72.59519324217317 41.01835842739965, -72.62303324903864 41.02314706929665, -72.62992019370571 41.00033432213258, -72.6855948295733 41.009891433779266, -72.69246163378753 40.98707485944779, -72.77597603605186 41.001362580499205, -72.7828147146956 40.97854095610728, -72.89418438869696 40.99750372689319, -72.90098694150443 40.974675843091084, -73.06809811250857 41.00293557226031, -73.07484849901704 40.9800990201795, -73.18629326940878 40.99881585829236, -73.19300749118737 40.97597311498333, -73.19971764679495 40.95312903997797, -73.20642373986365 40.93028363742947, -73.42928586797439 40.96740469115945, -73.43592370414605 40.94454832563617, -73.51952927315261 40.95836760354249, -73.52613897743034 40.935506328435814, -73.554006257232 40.940099734784425, -73.56060391898308 40.91723595016319, -73.61633256041797 40.926402640044465, -73.62291014842481 40.90353516087094, -73.65077149792508 40.90810844704367, -73.65733706340116 40.88523847089491, -73.68519374429424 40.88980465661469, -73.67863622099956 40.91267582033766, -73.67207472312165 40.935545676046345, -73.66550924710259 40.958414219587134, -73.63762842648353 40.953844471373195, -73.63105091339126 40.97671051124665, -73.6031654200456 40.972133658191986, -73.59657586053817 40.99499718885809, -73.54079893230994 40.985823351826284, -73.53418926197531 41.00868317593877, -73.50629783926469 41.00408618932447, -73.49967610247573 41.0269434916911, -73.4717800300227 41.02233939350067, -73.46514621744197 41.045194168583976, -73.40934820110847 41.03596582702657, -73.4026942473506 41.05881687156643, -73.37479231570529 41.054192625578054, -73.36812626615207 41.0770411303032, -73.3402197079013 41.072409766037026, -73.33354155322006 41.09525572541254, -73.27772263575778 41.08597283754296, -73.27102430969155 41.10881504240278, -73.24311196277841 41.10416351619381, -73.23640151161692 41.127003163179886, -73.18057106978664 41.117679941977016, -73.17384042778433 41.140515817479255, -73.09009659125351 41.12648297019929, -73.08333769815228 41.149313851643385, -73.07657470090919 41.17214336831081, -73.04865093584664 41.16745148995853, -73.041875773668 41.19027842372033, -72.98602260197063 41.180874479487144, -72.97922721030142 41.20369760785766, -72.9724276903033 41.226519359223175, -72.88862586311453 41.212361738635614, -72.88179803795403 41.23517844926228, -72.7421584389803 41.21145793064205, -72.73528621761513 41.23426712668453, -72.65152075145038 41.219960131631986, -72.64462023220392 41.24276424303246, -72.53295054567032 41.22360051516387, -72.52601369773942 41.24639828499855, -72.35856817775527 41.21746791012986, -72.35157898118209 41.2402568148231, -72.2957764964231 41.23056359073541, -72.28876702939705 41.25334859364767, -72.23296294494581 41.24362923709603, -72.22593319931401 41.26641032830691, -72.19802856977351 41.26154053491712, -72.19098654570251 41.28431896199195, -72.13517214104445 41.274559141039546, -72.128109820005 41.29733363954745, -72.07229393400723 41.28754767323101, -72.06521130795389 41.310318233261995, -72.03730082290679 41.30541512833295, -72.04439145283979 41.28264583170839, -72.05147778239396 41.25987511910693, -72.05855981540904 41.2371029946844, -71.97492220848645 41.22236964831888, -71.96781620910419 41.24513797286431, -71.9399363205955 41.24021379011765, -71.93281802527818 41.26297943351561, -71.90493381082511 41.25804808102384, -71.89780321043727 41.28081103777006, -71.842029812543 41.27092808977727, -71.83487891267127 41.293687080390384, -71.77910425304096 41.28377798539927, -71.77193304586395 41.30653299998723, -71.71615717119712 41.2965977541953, -71.70896564893738 41.319348782870094, -71.65318860598462 41.30938738250159, -71.64597676090867 41.33213441537934, -71.59019859647145 41.32214685668539, -71.58296642088997 41.344889883886296, -71.52718718182045 41.33487616314481, -71.51993466808838 41.35761517479317, -71.4641544012892 41.34757528830886, -71.45688154180577 41.3703102745331, -71.44960426974231 41.3930438132063, -71.4217038015185 41.388012440072735, -71.41441413665568 41.41074323401734, -71.40712004708142 41.43347257218866, -71.35129846514577 41.423386953847356, -71.34398398741939 41.44611224185652, -71.28816150758762 41.436000433938474, -71.28082663421661 41.4587216619262, -71.16919510569848 41.43842207107292, -71.16182389322321 41.461136621126634, -71.13391751496805 41.45604567681112, -71.12653386085273 41.47875744898596, -71.09862331610182 41.473659301412674, -71.09122721129047 41.4963682902221, -71.06331250618707 41.49126293750789, -71.07071657559285 41.468555257843214, -71.01491452160712 41.45832948693269, -71.00749453321124 41.4810345437672, -71.00007004122543 41.50373812108093, -70.94425142792647 41.493483521268864, -70.93680650611628 41.516182986394966, -70.92935706424356 41.538880963873545, -70.90143758301001 41.533742189874154, -70.89397565263629 41.55643735921166, -70.88650918991124 41.579131032681175, -70.8027260385393 41.56367142483437, -70.79523114153007 41.58635964076428, -70.78773169143257 41.60904635279437, -70.78022768418126 41.631731556766894, -70.75228378623146 41.62656259536427, -70.74476724605385 41.64924496521256, -70.73724613636341 41.67192581878218, -70.68133808196691 41.661564903537396, -70.68887513310138 41.63888669812447, -70.66093489693556 41.633698716485505, -70.66847533146387 41.61102032142318, -70.67601118794977 41.588340414526336, -70.68354247047554 41.56565899995234, -70.69106918311867 41.54297608185819, -70.71897759917664 41.54815875717148, -70.72649180146438 41.52547301289463, -70.75439613709935 41.5306484705648, -70.76189783803044 41.50795990558235, -70.78979808699334 41.5131281474673, -70.79728729556746 41.490436767257044, -70.82518345162252 41.49559779521712, -70.83266017684018 41.47290360525771, -70.86055223376475 41.47805742115579, -70.86801648462732 41.45536042692666, -70.95169183370423 41.47078257265175, -70.95912772747486 41.44808014469996, -70.96655911325908 41.42537624156934, -70.97398599507288 41.40267086741552, -70.83466530328005 41.376957641638, -70.84212732604017 41.35425740068599, -70.84958483193401 41.33155569748462, -70.85703782497849 41.308852536187494, -70.86448630918582 41.28614792094784, -70.8719302885636 41.26344185591846, -70.84411718325951 41.25828818304756, -70.85156455894777 41.23558199739494, -70.76817184547953 41.22008972461135, -70.7607007987446 41.242791926151085, -70.75322523457024 41.2654926824241, -70.74574514894181 41.28819198927858, -70.71793156343028 41.283012165930685, -70.71043905633721 41.30570868843348, -70.68262141868864 41.30052166028203, -70.67511648122085 41.32321539295702, -70.61947696836518 41.312821049943544, -70.61195169758909 41.335510652191246, -70.52849770924085 41.31987108355307, -70.52094421039699 41.342555206001755, -70.43750142508068 41.32685877425318, -70.42991970027786 41.34953739974089, -70.42233338837535 41.37221455183868, -70.41474248529656 41.39489022639393, -70.40714698696014 41.41756441925368, -70.54639557291574 41.44372259666155, -70.53883500080178 41.46640200662246, -70.56670429350493 41.47161734159157, -70.55914705834536 41.49429659704154, -70.58702815606874 41.49950738359077, -70.57947426556935 41.522186478675295, -70.55158524057092 41.51697435776004, -70.5440188360988 41.53965061959159, -70.46035133468251 41.52397493390162, -70.45275655340183 41.54664568111744, -70.42486726561303 41.541407342563886, -70.41725995107001 41.56407524275929, -70.38936665077443 41.55882967798926, -70.38174679402653 41.58149472569443, -70.35384948756523 41.57624193287295, -70.34621707967099 41.59890412261883, -70.26252495718204 41.583106397983116, -70.25486414394625 41.60576303110544, -70.22696672367296 41.600484005197835, -70.21929334012783 41.62313776660975, -70.16349450560429 41.61255936151836, -70.15580062420462 41.63520889408472, -70.10000178515499 41.62460424740282, -70.09228739927651 41.647249541343754, -70.00859516911346 41.63129438066116, -70.01633328091346 41.60865315948044, -70.02406670252326 41.586010407823856, -70.03179543811311 41.563366129846614, -70.03951949184851 41.54072032970366, -70.0472388678901 41.51807301154953, -69.99154285816354 41.50742044652837, -69.98380771544251 41.53006504120219, -69.97606788680962 41.55270811806232, -69.96832336809855 41.57534967295455, -69.96057415513818 41.597989701724295, -69.95282024375247 41.62062820021665, -69.89706126680365 41.609938504707806, -69.88928685918059 41.63257274026926, -69.88150773653567 41.65520543744227, -69.87372389467266 41.677836592071266, -69.86593532939054 41.70046620000037, -69.85814203648333 41.72309425707339, -69.85034401174019 41.74572075913375, -69.84254125094544 41.76834570202459, -69.87047409587558 41.77370304150792, -69.86267451869911 41.79632778536908, -69.85487020115784 41.81895096164487, -69.8470611390242 41.84157256617731, -69.90298647238933 41.852277751178505, -69.89518854480193 41.87490050329304, -69.92316518920386 41.88024561350672, -69.91537046807215 41.902868144746975, -69.90757100209402 41.92548909146323, -69.93556757960866 41.93083101986177, -69.92777132768242 41.95345173557904, -69.95577989491001 41.958789118568085, -69.94798686472537 41.98140959742177, -69.97600742949311 41.98674243079636, -69.96821762875362 42.009362666921184, -69.99625019889326 42.014690946477046, -69.98846363531639 42.03731093400693, -70.01650821866421 42.04263465554035, -70.00872489998129 42.065254388608665, -70.23329018584218 42.107641993147574, -70.241009421006 42.085011503994, -70.26909008468716 42.09028197818686, -70.27679658601421 42.06764854454383, -70.28449838430853 42.04501350831979, -70.22837312539465 42.034471993790135, -70.2360862491101 42.01183803674477, -70.15195231212977 41.995985420557254, -70.14421517885066 42.01861534992692, -70.11617052877637 42.013317973780346, -70.12391565808703 41.990689389976374, -70.09588300579125 41.98538744862242, -70.10363140347816 41.96275861833454, -70.11137508131527 41.94012819865521, -70.0833623994802 41.93482304506744, -70.09110933798326 41.91219238903141, -70.09885156088498 41.88956015202589, -70.10658907239676 41.86692633821107, -70.0506235179114 41.85630642276423, -70.04287008123313 41.87893753392087, -70.01488534208224 41.873617373746214, -70.02264673598792 41.85098761617283, -70.0304034102031 41.82835628625087, -70.03815536893808 41.80572338813937, -70.06611624889844 41.81103948726315, -70.07385555161709 41.78840367123682, -70.12977338063263 41.79901547750776, -70.13749208860045 41.77637539805114, -70.19340993282128 41.786960920641434, -70.20110805268578 41.7643165875301, -70.22906497694264 41.76959915694769, -70.23675046892244 41.74695192512004, -70.48846897078488 41.79421751020176, -70.48085518745886 41.816876794250184, -70.5088515781641 41.82210034658772, -70.50124114827068 41.84475940910504, -70.49362608244532 41.86741691432755, -70.48600637653932 41.89007285809451, -70.51403068580376 41.89529449247791, -70.50641434127584 41.91795020033273, -70.49879335258342 41.94060433831123, -70.55488582167105 41.9510351758169, -70.54727622338818 41.97369039425204, -70.57533638523165 41.97889826089732, -70.56773017184364 42.00155322582344, -70.56011931453158 42.02420660809134, -70.58819947931536 42.02941120039616, -70.58059201485572 42.05206431902643, -70.57297990239515 42.07471584657297, -70.6291842336673 42.085112538325355, -70.62158357858509 42.107765112075285, -70.64969971177297 42.11295588157171, -70.64210247324387 42.13560817407757, -70.6702306113459 42.140794327599025, -70.6626367972983 42.16344633299073, -70.69077694804456 42.16862786635217, -70.68318656642097 42.191279578758916, -70.67559153732078 42.21392967876397, -70.70375179630281 42.219107901326296, -70.6961602077043 42.241757698209945, -70.7525087377546 42.25209893841438, -70.74492870119975 42.27474973663528, -70.82950534278694 42.290220923348635, -70.82194500407432 42.31287401801599, -70.85015320297504 42.318020485031155, -70.84259635236886 42.3406732541348, -70.87081661012192 42.34581507074811, -70.86326325566759 42.368467508413225, -70.89149558002315 42.37360467044572, -70.8839457297804 42.396256770796825, -70.87639124172739 42.418907228683935, -70.86883211167591 42.44155603993736, -70.86126833543271 42.46420320038722, -70.83300341617564 42.459060835418285, -70.8254268299146 42.481705040407526, -70.79715770112831 42.476555410334576, -70.78956829548217 42.49919665438239, -70.78197422229825 42.52183623531414, -70.75369272924455 42.51667803497671, -70.7460858187246 42.539314645416255, -70.71780012832575 42.534149174858875, -70.7101803710973 42.5567828093273, -70.6818904898646 42.55161006670062, -70.6742578765561 42.5742407197199, -70.64596381101487 42.56906070317708, -70.63831833225575 42.591688369270116, -70.61002008894525 42.58650107696686, -70.60236173536593 42.60912575065742, -70.57405932083935 42.60393118075204, -70.56638808307129 42.62655285656475, -70.55871212188502 42.64917284066813, -70.5510314330074 42.6717911288908, -70.60768931292831 42.682182156236145, -70.60002026070181 42.70480136276811, -70.65671054209469 42.71517110501543, -70.66436321119558 42.69254928614644, -70.69270615792807 42.69772388688805, -70.70034591995173 42.67509906355087, -70.72868466390297 42.680266384222996, -70.72105309810263 42.70289251006283, -70.74940402799687 42.70805515460397, -70.7417759607344 42.73068088067779, -70.77013908446445 42.73583884490656, -70.76251452388821 42.75846416533202, -70.75488525789306 42.78108777654887, -70.78326880362414 42.78624235396221, -70.77564305262287 42.808865549373344, -70.76801259207733 42.83148702712732, -70.796416588197 42.8366382102268, -70.7887896509769 42.859259262016, -70.78115800008399 42.88187858769817, -70.77352163123632 42.904496183098445, -70.76588054014685 42.92711204404198, -70.75823472252344 42.94972616635355, -70.7505841740689 42.972338545857795, -70.72213068861795 42.96717958908208, -70.71446714127765 42.98978892634729, -70.70679885005069 43.01239651255609, -70.6991258106213 43.03500234353263, -70.67065154999891 43.0298334983689, -70.66296548461462 43.052436273482186, -70.6344869874284 43.04726012849815, -70.62678788653587 43.069859842271995, -70.61908401555863 43.09245778849099, -70.61137537015397 43.11505396297888, -70.60366194597403 43.137648361559094, -70.57515438061832 43.132461017445515, -70.56742788497816 43.15505233699218, -70.55969659739308 43.177641872381386, -70.55196051349647 43.20022961943628, -70.54421962891651 43.22281557397974, -70.57276037436341 43.22800811326662, -70.56502299090816 43.25059356965432, -70.55728080248176 43.273177225071414, -70.54953380470002 43.295759075340094, -70.54178199317356 43.318339116282395, -70.51320799614588 43.31314138349076, -70.50544304239045 43.335718312814166, -70.4197206497737 43.3200850996964, -70.41192590570971 43.34265630839517, -70.40412631677829 43.36522569565413, -70.37554375711532 43.35999998013018, -70.36773099634357 43.382566237961925, -70.35991337737651 43.405130666103574, -70.35209089577715 43.427693260376884, -70.32348748158223 43.42245760975441, -70.31565180069161 43.4450170609886, -70.30781124379759 43.467574670104085, -70.33643132690712 43.472812930604846, -70.32859423073597 43.49536999820228, -70.29996580644405 43.49013043292236, -70.29211548416959 43.5126843452647, -70.26348285967407 43.507437446400225, -70.25561930164257 43.52998819802184, -70.22698248384233 43.52473396376126, -70.21910568040138 43.54728154919742, -70.19046467620996 43.542019977731925, -70.18257461770844 43.564564391519, -70.17467964291255 43.587106938436975, -70.20333734707567 43.59237112749693, -70.19544580820725 43.614913112002114, -70.16677974732458 43.609647614306844, -70.15887492644143 43.63218641494946, -70.15096517575466 43.654723336185555, -70.06494192894188 43.638882779673864, -70.05700215630974 43.66141388340074, -70.04905743135909 43.68394309968868, -69.99169614797137 43.67334730242615, -69.9837297423407 43.69587199742698, -69.97575836633982 43.71839479684924, -69.80367549949699 43.68644678214669, -69.79564901601877 43.70895975820234, -69.73830526611428 43.69825951423065, -69.73025708753697 43.7207679340653, -69.72220388911553 43.74327444666864, -69.71414566625681 43.76577904786224, -69.57073574265814 43.738902969027244, -69.56263077025456 43.76139899779314, -69.55452074193737 43.78389310735224, -69.54640565308128 43.806385293526446, -69.51771149108984 43.80098798110803, -69.50958299137083 43.82347690420976, -69.48088478589347 43.81807222308849, -69.47274286571329 43.84055787767331, -69.46459586218349 43.86304159656446, -69.32108613379211 43.835914319037215, -69.31289232604009 43.85838939238304, -69.25550207833484 43.84749357453513, -69.24728648810702 43.8699640119283, -69.23906576947896 43.892432501892486, -69.21036049984895 43.88697285250749, -69.20212631143899 43.909438042624764, -69.19388698081299 43.931901277072804, -69.1651693971946 43.92643289777586, -69.15691657809597 43.9488928228788, -69.14865860293557 43.97135078407256, -69.06248205791216 43.95490134167908, -69.05419389479593 43.977353278059695, -69.02546881405716 43.97185670985769, -69.01716713338003 43.99430531922216, -69.00886026476293 44.01675195260952, -69.00054820345626 44.03919660584235, -69.02929831379042 44.04469723899417, -69.02098940708102 44.067141262644505, -69.01267530259273 44.08958329766805, -69.04144653241293 44.09508059927568, -69.03313559032483 44.1175219945239, -69.06191959634346 44.12301460561556, -69.05361182480783 44.145455355190045, -69.0452988500723 44.16789410336943, -69.03698066736234 44.19033084597537, -69.02865727189783 44.21276557882942, -69.02032865889285 44.23519829775309, -68.96268125514858 44.22419351268074, -68.97102664654409 44.20176349715583, -68.99983974548697 44.20726756273712, -69.00817152772433 44.18483418095723, -69.01649809275523 44.16239878954287, -68.95890983994562 44.15139002347079, -68.96724793614295 44.128955333675755, -68.97558081581754 44.10651864283753, -68.91804371641402 44.0954911260388, -68.9263880940008 44.07305515182314, -68.93472725576957 44.050617185154856, -68.94306120649308 44.0281772302114, -68.77070627449488 43.99497431052835, -68.76232234493936 44.017406087955884, -68.75393317793576 44.039835877815705, -68.74553876869324 44.06226367593123, -68.73713911241524 44.08468947812573, -68.76588716989951 44.090243839823806, -68.75749059903302 44.112669008077084, -68.74908877592134 44.13509217193688, -68.74068169575382 44.15751332722606, -68.71190861331749 44.15195486741496, -68.72032403953816 44.1295350780445, -68.72873420429953 44.10711328022243, -68.6999822664122 44.10155151723814, -68.7083955077007 44.079129082781314, -68.71680349275891 44.05670464834551, -68.65934630186766 44.04556850126571, -68.66776567207158 44.02314481123222, -68.67617978689127 44.00071912981068, -68.59007729418346 43.983977939839136, -68.58163826817332 44.00639949947634, -68.55293806237783 44.00080567976897, -68.54448546794461 44.023223871602774, -68.5360275958503 44.04564006835008, -68.52756444127182 44.06805426583511, -68.47012765613012 44.05684028639341, -68.46164260048295 44.07924972316995, -68.45315224396394 44.10165715257308, -68.25214906405687 44.06219911150294, -68.24359532229688 44.08459483398276, -68.23503623954448 44.10698854158704, -68.32120313363505 44.12394359927085, -68.31266359752564 44.14633945113005, -68.30411872368803 44.16873327939789, -68.29556850724121 44.19112507989897, -68.28701294329838 44.21351484845767, -68.25825288624127 44.20786364264819, -68.24968365086295 44.23024998928694, -68.1921605399578 44.2189267103504, -68.18356930860665 44.24130824102557, -68.17497270199415 44.26368772759931, -68.20374861718169 44.26935515977854, -68.19515495417755 44.291733986464536, -68.16637071520152 44.28606516589616, -68.15776334330405 44.30844055174078, -68.14915058137127 44.33081388095761, -68.12035425586843 44.32513624663379, -68.11172776628419 44.34750612555153, -68.08292769011554 44.34182106407758, -68.09156250818681 44.31945257613172, -68.00521476895926 44.30236535925778, -67.99655499060796 44.32472966543421, -67.98788979058565 44.34709190725166, -68.01668441880337 44.352796469938866, -68.00802211672728 44.37515803837213, -67.95042081631522 44.36374008678115, -67.94173643334767 44.38609679085616, -67.88413693163314 44.37465190287717, -67.8754304623122 44.39700373302195, -67.84662932390465 44.3912708368552, -67.8379090792927 44.4136191856461, -67.82918337076421 44.43596544970441, -67.80037022343362 44.430223715221054, -67.79163072085265 44.452566488480585, -67.59001067189214 44.41219555316466, -67.58120750403522 44.43452637990351, -67.55241499677655 44.428733564029635, -67.5435980157396 44.45106088111871, -67.51480189137989 44.44526062099849, -67.50597108779944 44.46758442305, -67.49713475200159 44.48990612076807, -67.48829287892453 44.51222570997929, -67.47944546350037 44.53454318651019, -67.450620817998 44.528731232637696, -67.44175954256654 44.55104517660929, -67.38410776404747 44.539400331263266, -67.37522431097143 44.56170931877851, -67.3463971938876 44.555876425424124, -67.33749986208049 44.57818186827452, -67.30866916767324 44.57234151993204, -67.29975794777492 44.594643412736445, -67.24209416284857 44.582941768667176, -67.23316074169112 44.60523868205405, -67.22422171754333 44.62753345862778, -67.1953803392751 44.621670735710325, -67.18642739897587 44.64396194610183, -67.15758247550819 44.638091761798165, -67.14861560971096 44.66037940063101, -67.11976714911322 44.65450175334835, -67.11078634847489 44.676785815247364, -67.10179991143129 44.69906772403601, -67.07293961401281 44.69318118298685, -67.06393922334725 44.71545950542703, -67.05493318166401 44.73773566654411, -67.04592148378586 44.760009662165785, -67.01704103735456 44.75411279296484, -67.00801535758995 44.77638318878571, -66.97913139868196 44.77047884785048, -66.9700917276792 44.79274563850022, -66.94120426445541 44.78683382425113, -66.93215059286642 44.80909700436072, -66.92309123145694 44.83135800268463, -66.95199533946632 44.837272682387585, -66.94293861183542 44.85953292728137, -66.9338761882307 44.88179098191266, -66.9248080634263 44.90404684210953, -66.98268078900345 44.91586664718384, -66.97362365444762 44.938123168643955, -67.00257562041783 44.94402542214616, -66.99352114210038 44.96628116816998, -67.02248630350657 44.97217879355446, -67.01343448925749 44.994433758241314, -67.04241285563859 45.00032675123843, -67.03336371330343 45.02258092868748, -67.0623552942054 45.02846928502831, -67.0533088316453 45.050722669338576, -67.08231363662121 45.05660638475492, -67.0732698617129 45.078858970025344, -67.1022879003229 45.08473804024961, -67.09324682095884 45.10698982057901, -67.12227810277015 45.112864241344425, -67.11323972685842 45.13511521083143, -67.10419564148793 45.15736394713432, -67.1332485969098 45.163235130615135, -67.12420722202097 45.1854830458684, -67.29867714146947 45.22059100866865, -67.30766787144849 45.19833462630077, -67.31665291739827 45.176076005649016, -67.32563228456213 45.153815150887134, -67.33460597817711 45.13155206618889, -67.24745055266588 45.11404235282905, -67.23845155606656 45.13630120936904, -67.22944687274958 45.15855783636816, -67.17133363309435 45.146848671945044, -67.18035517161334 45.12459487077513, -67.15131422088805 45.11873259181193, -67.16033848049202 45.09647797660803, -67.13131077448006 45.09061104284626, -67.14033774723883 45.068355619509816, -67.14935902629094 45.04609797550804, -67.12035295438 45.04022780964709, -67.1293769395613 45.01796936771959, -67.10038408446451 45.012094557186984, -67.10941076788089 44.98983532323497, -67.11843176460428 44.96757388140124, -67.17638875355776 44.97931176124073, -67.18538731010271 44.95704527630768, -67.21436463494581 44.96290370705558, -67.2233491422695 44.94063360469134, -67.25232288262944 44.94648455801551, -67.2612933502129 44.924210843594615, -67.23232799156287 44.91836130656836, -67.24130118802408 44.8960868168598, -67.21234899509189 44.89023263939974, -67.22132491254285 44.867957380304446, -67.1923858758678 44.862098566675115, -67.20136450643611 44.83982254409384, -67.21033749107609 44.81754434270919, -67.18141995239318 44.81168231839388, -67.19039564315656 44.78940336372812, -67.13259160852748 44.77766401682836, -67.1235992371858 44.7999401244016, -67.11460121216216 44.82221405773904, -67.05678299924148 44.810444825293374, -67.04776263514478 44.83271372780137, -67.01885240111761 44.82681861433688, -67.02788109870524 44.804551140234366, -67.03690412452944 44.782281488119956, -67.0946960679669 44.794059957138266, -67.1036967730095 44.771785275307614, -67.11269182525366 44.749508423545436, -67.14157833136838 44.75538573919189, -67.15055941088364 44.73310529566478, -67.12168122987721 44.727229406024236, -67.1306649920519 44.704948226916486, -67.15953485224225 44.710822690419604, -67.16850466060701 44.688537927629035, -67.1973709758315 44.69440492574358, -67.20632683975225 44.67211658464525, -67.23518960192715 44.67797611896436, -67.22624205897796 44.70026588353226, -67.28399851445934 44.711969673314385, -67.27506201589904 44.73426012652851, -67.3328541803803 44.74594257698279, -67.34177399785263 44.723649287351684, -67.37066886587253 44.72948002546382, -67.36175739548233 44.75177473110376, -67.39066536093665 44.7576008362214, -67.39956847988911 44.735304716039515, -67.45738193122993 44.74693594979239, -67.46626274956395 44.72463485025305, -67.47513798833486 44.70233160021227, -67.44624560060898 44.696521831904136, -67.4551236120684 44.67421784753129, -67.48400765265926 44.68002620384401, -67.49287174764763 44.65771866532217, -67.60842167836672 44.68088597762102, -67.61724681200869 44.65857066679424, -67.62606640386578 44.63625322164806, -67.63488045901893 44.61393364635693, -67.66375464103967 44.61970613725562, -67.67255481753762 44.59738303070264, -67.68134947181682 44.57505780222591, -67.71021164184859 44.58082143856057, -67.70142533454445 44.603148070985455, -67.69263350936798 44.62547258135917, -67.68383616125595 44.647794965507124, -67.67503328513918 44.670115219254605, -67.76174816973976 44.687386663067905, -67.77052593997934 44.6650622074475, -67.7994318894671 44.670805850331064, -67.80819577194113 44.64847786611917, -67.81695414892776 44.62614775517302, -67.84584802063306 44.631882551070035, -67.8545925287946 44.609548920974255, -67.88348268767189 44.61527626933173, -67.89221333652158 44.592939125481124, -67.94999085673864 44.60437287856686, -67.95869928334973 44.58203083393313, -67.92981657374692 44.576318375730246, -67.93852790058905 44.55397561310919, -67.90965819440945 44.54825849857168, -67.91837241349742 44.52591502386351, -68.00497034333767 44.543044041620945, -68.01365401793124 44.52069428657526, -68.02233224409638 44.49834243339395, -68.05119074181665 44.50403722819618, -68.05985516550564 44.48168189095269, -68.11756926097321 44.4930505596599, -68.10892156805107 44.515408672682696, -68.1955523285963 44.532420459075716, -68.18692434639239 44.55478062999421, -68.17829094211405 44.57713870203003, -68.16965211077766 44.599494671006674, -68.25639978396819 44.61646438871048, -68.26501340981727 44.594104281533, -68.29393008423627 44.599747355715394, -68.30252989043117 44.577383768536244, -68.31112429222162 44.55501808197966, -68.34002873727881 44.56065234442177, -68.34860933842242 44.53828318732473, -68.35718454951123 44.51591193908126, -68.36575437549617 44.49353860386844, -68.39463819176498 44.49916268472007, -68.38607676233568 44.521537394040784, -68.41497353716694 44.52715679116273, -68.40641513223666 44.54953078589835, -68.4353248746872 44.55514549505432, -68.44387487024814 44.53277012929025, -68.45241949399843 44.510392676189184, -68.51021899744288 44.52159843297442, -68.51874144078067 44.49921615860509, -68.48984782464561 44.49361767843988, -68.49837331933158 44.47123469328113, -68.50689346142933 44.44884963319573, -68.51540825585417 44.426462502361176, -68.57314961433865 44.43764519628428, -68.5816422796137 44.415253262756245, -68.61051134482821 44.42083416013844, -68.61899028611904 44.39843879801261, -68.64785546663153 44.40401227503635, -68.63938492447096 44.4264090016422, -68.66826301477514 44.431977786119496, -68.67672515366309 44.40957969651489, -68.70559934344529 44.41514106130167, -68.69714561196972 44.43754051242349, -68.68868656927629 44.45993790042586, -68.68022221047954 44.48233322113055, -68.73803459166906 44.49344593109287, -68.72958176589036 44.515841898188384, -68.72112362315849 44.53823578938861, -68.71266015857663 44.56062760051499, -68.68372641351048 44.555070203031626, -68.67524917967035 44.577458572075074, -68.66676660968795 44.599844852808424, -68.65827869864573 44.62222904105319, -68.74516953928325 44.63889523136569, -68.75363208340117 44.616506974798604, -68.76208929992647 44.594116625380295, -68.77054119376741 44.5717241872897, -68.79948847628621 44.57726337429533, -68.79104503742816 44.59965716577142, -68.78259628038168 44.62204886845481, -68.81156499054623 44.62758468670378, -68.80311937854782 44.64997564807801, -68.79466844305186 44.672364512180984, -68.78621217914457 44.694751274833415, -68.77775058190622 44.71713593185615, -68.8067577177327 44.722671073556654, -68.79829927260771 44.74505497046871, -68.7692836464112 44.73951847906992, -68.760811367728 44.76189891229546, -68.75233374091916 44.784277227353535, -68.72330565900432 44.778731950001315, -68.71481417936953 44.80110679189619, -68.70631733718746 44.823479507386416, -68.79346623220263 44.840105173191525, -68.80193754892564 44.817728410059125, -68.8104035167034 44.79534952015837, -68.83944520288557 44.800876533330005, -68.84789731886421 44.77849417434723, -68.87693502012769 44.78401375216849, -68.88537329414166 44.761627929524145, -68.89380624309592 44.73923999240915, -68.86478555216746 44.73372310497159, -68.8732216793422 44.71133440293803, -68.88165248675595 44.688943594913475, -68.85265329421176 44.68342331541316, -68.86108727191424 44.661031752672386, -68.8695159351484 44.638638092419804, -68.89849816193589 44.64415567760968, -68.90691303950508 44.62175857668963, -68.87793928881594 44.61624233883482, -68.88635733781267 44.59384449609687, -68.89477008702855 44.57144456838531, -68.90317754134767 44.54904255987956, -68.8742336770125 44.54352429185591, -68.88264429523588 44.521121556032114, -68.85371336964765 44.51559856703341, -68.86212714352216 44.49319510979315, -68.8910496238148 44.498716747892104, -68.89944966761898 44.476309871615, -68.92836818367797 44.4818240913899, -68.93675450713432 44.459413801500034, -68.96566905140304 44.46492060466331, -68.97404166423641 44.44250690658596, -69.0029522291736 44.448006294852746, -68.99458806050816 44.47042133973516, -69.052439457966 44.48140460107235, -69.06078672597998 44.45898686703442, -69.06912874627226 44.4365670768037, -69.01131114111104 44.42558919401421, -69.01966480115763 44.40317004139889, -69.0280132141447 44.38074884118607, -68.97024714378476 44.36975208475188, -68.97860716285595 44.34733153716294, -68.98696193555125 44.32490895057124, -69.01582590676523 44.330407662219145, -69.02416702474426 44.30798169180359, -69.03250291045437 44.28555369062505, -69.06135449192301 44.29104364794422, -69.06967674188095 44.26861227243168, -69.0779937736465 44.246178874396385, -69.08630559201076 44.22374345801722, -69.0946122017591 44.20130602747302, -69.10291360767123 44.17886658694256, -69.11120981452109 44.1564251406046, -69.11950082707699 44.13398169263773, -69.12778665010154 44.11153624722051, -69.21416633095728 44.12793748612744, -69.22242182722191 44.105486010305015, -69.23067215683055 44.08303254504088, -69.23891732451953 44.06057709451369, -69.24715733501952 44.03811966290215, -69.2759258081082 44.04356927474517, -69.28415229528052 44.02110852303023, -69.31291675824451 44.02655074916587, -69.3046986459346 44.049012842589356, -69.29647539007746 44.07147295887645, -69.35405091545749 44.08234463680115, -69.3458392909226 44.104805450261786, -69.4034490413882 44.1156556053163, -69.41164387033356 44.09319211932503, -69.41983356891608 44.070726651558616, -69.42801814184205 44.04825920619643, -69.45680435172933 44.0536712029831, -69.46497541336456 44.031200449830756, -69.49375756694097 44.03660506451311, -69.48559489961866 44.05907715054837, -69.47742712030808 44.08154726293871, -69.53503802441035 44.092343667013246, -69.54318899418507 44.069870893558445, -69.55133486095811 44.04739614623085, -69.58012999378488 44.05278261104159, -69.57199253324285 44.07525868677802, -69.56384997419954 44.09773278852803, -69.5557023119701 44.120204912111525, -69.6133560303305 44.13096764042854, -69.62148685016219 44.108492864957306, -69.62961257582916 44.086016111092455, -69.63773321200993 44.06353738301417, -69.66654128977017 44.06890568795864, -69.67464842752423 44.046423665801626, -69.6827504896406 44.023939677678435, -69.6908474807778 44.00145372776926, -69.71963462670317 44.0068120092133, -69.7277181474757 43.98432277880747, -69.73579661107296 43.96183159486317, -69.76457123721696 43.96718118127077, -69.7565011770878 43.98967368672439, -69.78528849060292 43.995018542901455, -69.77722178971769 44.01751041460763, -69.7691500360402 44.04000032837068, -69.7610732249271 44.06248828001016, -69.73226066212742 44.057139464460185, -69.72417036346096 44.07962413022941, -69.71607499352974 44.102106825626564, -69.68724987889172 44.096749311849344, -69.6791410024677 44.11922871186005, -69.67102704091944 44.141706133250516, -69.66290798956915 44.164181571840146, -69.6547838437336 44.186655023448274, -69.74137339056593 44.202725216107915, -69.73326950356584 44.22520063321869, -69.72516052633188 44.24767405464611, -69.75404926310124 44.25302128392256, -69.74594366067276 44.27549402116169, -69.73783296318481 44.297964754241484, -69.72971716593892 44.32043347898036, -69.7586356534013 44.325778578991574, -69.7667429678038 44.30330854029585, -69.7956572923779 44.3086462507869, -69.80375102933617 44.28617289105988, -69.81183968037122 44.26369752694721, -69.78294231573712 44.258362441723406, -69.79103435865277 44.23588639020998, -69.7991213204483 44.21340834278714, -69.77024520154553 44.208069813692134, -69.7783355469302 44.18559108906362, -69.78642081599305 44.16311037700123, -69.79450101340457 44.14062768168624, -69.8025761438295 44.11814300729977, -69.8106462119271 44.09565635802286, -69.81871122235101 44.073167738036375, -69.84753664929455 44.07849837831021, -69.85558817392985 44.05600647659871, -69.8636346547154 44.03351261242746, -69.92126460026772 44.044150457958786, -69.92928918266884 44.02165200915346, -69.93730873955003 43.999151606027176, -69.94532327552749 43.97664925276081, -69.9533327952119 43.95414495353525, -69.96133730320845 43.93163871253117, -69.99011654317637 43.936941990316186, -69.99810763129372 43.91443250022516, -69.94057021830369 43.903822516777765, -69.94857312109379 43.8813137178544, -70.00609372144183 43.891921076606266, -70.01407481820614 43.869407723640066, -70.04283306312857 43.87470101767076, -70.05080076798417 43.85218442921446, -70.07955483184764 43.85747036437149, -70.07159553397271 43.8799882616538, -70.10036222689989 43.885269454498555, -70.10831311392114 43.86275024988764, -70.13707561036475 43.868024084673735, -70.1450131165394 43.845501652806576, -70.1737714094561 43.85076813133239, -70.18169554454589 43.828242477669235, -70.18961472715148 43.805714910833075, -70.19752896181478 43.78318543500456, -70.20543825307237 43.760654054364295, -70.23416712251725 43.7659092686193, -70.24206307965216 43.743374683860004, -70.29951656346242 43.753864369323196, -70.30739079783557 43.7313252853114, -70.31526011595395 43.708784308704544, -70.34397631800765 43.714017482935134, -70.35183233123483 43.69147331860171, -70.35968344173939 43.66892726992659, -70.36752965401253 43.646379341090125, -70.33883861780527 43.641150065117934, -70.34668831590244 43.61860155993452, -70.40405777454028 43.62905147337401, -70.411885824956 43.60649849851549, -70.4197089951003 43.583943655929104, -70.42752728943964 43.561386949794915, -70.4353407124352 43.53882838429269, -70.44314926854284 43.516267963602175, -70.50045153841424 43.526680753781044, -70.50823850820969 43.504115889043355, -70.51602062903136 43.48154917726448, -70.43012355303699 43.465928726191265, -70.43792588244659 43.44336406399743, -70.44572335824262 43.42079756343846, -70.47433491302517 43.42600781254593, -70.48211920134517 43.403438178604205, -70.56795345846609 43.41902887228944, -70.57570788263723 43.39645351934755, -70.5471007111694 43.39126394332588, -70.55485865351798 43.36868805903122, -70.58345748444857 43.37387634015565, -70.59120226830396 43.35129733889269, -70.59894223860198 43.328716519737355, -70.60667739973599 43.30613388686827, -70.61440775609414 43.28354944446381, -70.6221333120593 43.260963196702214, -70.6298540720092 43.238375147761566, -70.60130518999163 43.2331946382174, -70.60902946742951 43.210606087903805, -70.63757004031632 43.21578530181981, -70.64528122134799 43.19319366305457, -70.65298761946626 43.1706002356435, -70.71004770625632 43.18093544339051, -70.70235791959057 43.20353145795728, -70.73090234201167 43.2086913325421, -70.738583817417 43.186094026655994, -70.7671239686911 43.191246594762504, -70.77479236850654 43.168646214181656, -70.80332824195156 43.17379147765551, -70.7956681562762 43.196393146646336, -70.78800331444627 43.21899303065294, -70.78033371212109 43.241591125497244, -70.83746748658693 43.251871320331496, -70.84512043161777 43.22927065359831, -70.85276862515128 43.206668197497265, -70.88132489881791 43.211796694342986, -70.88896002002888 43.18919116916316, -70.89659040290464 43.166583862869714, -70.92513404448502 43.17170377438423, -70.93275137352262 43.149093408569335, -70.94036397735778 43.126481269895066, -70.94797186029756 43.103867362539305, -70.95557502664383 43.081251690679785, -70.9631734806934 43.058634258494074, -70.97076722673795 43.036015070159465, -70.97835626906405 43.01339412985312, -70.98594061195318 42.99077144175197, -70.92899017909988 42.98054614040191, -70.92138926300979 43.00316626040237, -70.9137836385327 43.02578463281015, -70.82833823299987 43.010393924345166, -70.82070303649267 43.03300668212893, -70.81306310960525 43.0556176842717, -70.78457275394216 43.05047285720338, -70.79222096445069 43.02786314559197, -70.7998644401169 43.005251678441525, -70.80750318524693 42.98263845992828, -70.81513720414169 42.96002349422837, -70.9005209433393 42.97542448270601, -70.90812543201498 42.95280390570364, -70.91572521640236 42.9301815895623, -70.88727651446371 42.925056504541665, -70.89487986298651 42.90243374156193, -70.90247851131669 42.87980924789565, -70.93091068941125 42.884931756566054, -70.93849638656953 42.86230424806239, -70.94607739651316 42.83967501712204, -71.00292064816695 42.849896897244044, -71.0104804716186 42.82726337551554, -71.01803562525164 42.80462813950022, -71.04644668744012 42.80972751749637, -71.0539889272272 42.78708928717067, -71.08239568950145 42.79218138811536, -71.0748617015682 42.814820901129266, -71.10328066386104 42.81990828934712, -71.11080639635603 42.79726749515539, -71.13922104401529 42.80234760724046, -71.14673387394934 42.77970382704709, -71.15424206455867 42.75705834469422, -71.16174562005456 42.73441116435664, -71.1692445446432 42.71176229020893, -71.19763012351612 42.716831292677014, -71.20511618107564 42.69417945024398, -71.1483654231703 42.684038014159654, -71.15586333086752 42.661387045174195, -71.12750206323928 42.65630862728011, -71.11999592677427 42.67895831449446, -71.11248515892142 42.70160631644413, -71.10496975547792 42.724252628955206, -71.09744971223611 42.74689724785369, -70.98391228678707 42.72650317198962, -70.9763546491809 42.74914095249187, -71.00474131844877 42.75424974151841, -70.99718725150414 42.77688710777492, -70.98962851877391 42.7995227681938, -70.96122537177449 42.79441140463138, -70.9687923455886 42.77177703143051, -70.94040139931988 42.76666096539497, -70.94797193596868 42.7440261752837, -70.95553780220263 42.72138968370864, -70.92716727383902 42.71627020981155, -70.91959318256697 42.73890541095001, -70.89121839272708 42.73377866054807, -70.89880070544484 42.71114475135542, -70.87043810076504 42.70601330939845, -70.87802395190137 42.683378996670186, -70.8856051278441 42.66074299112471, -70.85726290590327 42.655608156953484, -70.86484761192267 42.632971758027104, -70.7798693266161 42.61753528442038, -70.7874739299064 42.59490109626423, -70.81578787250422 42.60005126266285, -70.82337961423237 42.577414094617275, -70.8516893360265 42.582556989312124, -70.84410577937913 42.60519545583838, -70.90075347107744 42.615465918273365, -70.90832064681992 42.592824859312486, -70.93664222837428 42.59794983249818, -70.94419655440502 42.57530580335736, -70.9725138867703 42.5804235080458, -70.98005537252462 42.5577765142085, -70.95174623075305 42.55266010216214, -70.95929126162365 42.53001273308432, -70.96683165121719 42.50736370029541, -70.93854280900112 42.50224390391495, -70.94608673537935 42.47959450603472, -71.03094052069885 42.49493210556231, -71.03845529070546 42.47227717330257, -71.04596544077457 42.44962058964859, -71.07424152609872 42.45471860307417, -71.08173888905863 42.432059081986, -71.11001070925917 42.43714983816711, -71.10252152117741 42.459810647954576, -71.09502772611083 42.482469810323174, -71.08752931989156 42.505127321101696, -71.14413377149269 42.515298646163636, -71.151615799773 42.492638562912056, -71.17991569162463 42.497713979918835, -71.18738492769126 42.47505096081574, -71.15909322570216 42.469976827875136, -71.16656605344166 42.44731344522432, -71.17403428714806 42.42464841913087, -71.14576284320601 42.419570885942726, -71.15323466017581 42.396905506447624, -71.20976508978463 42.40705203392464, -71.21721597560843 42.38438244900403, -71.24547884293341 42.38944547801513, -71.25291698017517 42.36677297902912, -71.26035054874093 42.34409885308973, -71.2038613646025 42.33397196374544, -71.1964114655608 42.35664352190269, -71.13992147492367 42.34649020824242, -71.14738769042765 42.32382122391876, -71.11915667885943 42.31873691269426, -71.12662646087986 42.2960675952554, -71.09840748302459 42.29097861535084, -71.10588082345372 42.26830897067165, -71.11334958133692 42.24563771212634, -71.05695582892075 42.23544705546559, -71.04947080881976 42.25811572749893, -71.02127163870215 42.25301017544445, -71.02876478465267 42.2303427989348, -71.00057763325906 42.22523259167528, -71.00807430574027 42.202564902890146, -70.9517279217664 42.19232923920471, -70.94421502381766 42.21499432919199, -70.88786803000647 42.20473227647122, -70.88033430750845 42.227393152695875, -70.76765488629667 42.20679248304718, -70.77522100663387 42.18413683423476, -70.78278249657369 42.16147957689193, -70.81093028287532 42.16663604268007, -70.81847906102954 42.143975871659904, -70.82602322140994 42.12131410034391, -70.83356276816643 42.098650732897845, -70.84109770544411 42.075985773487346, -70.84862803738318 42.05331922627758, -70.82052063583832 42.0481693080304, -70.81298223554138 42.07083454553728, -70.7567630242009 42.06051428977571, -70.74920387950988 42.08317531584016, -70.72109208323731 42.07800497602476, -70.72865929003342 42.055345264094505, -70.73622187434096 42.032683964754476, -70.74377984030754 42.01002108216903, -70.77186746310575 42.0151874792894, -70.77941276560385 41.99252170319614, -70.69518577455545 41.97700867843017, -70.70275059574462 41.95434527542066, -70.6746907934636 41.94916373722953, -70.68225903042057 41.92650008280835, -70.59812720343693 41.9109239117978, -70.60571488268994 41.888262657865646, -70.57768679402974 41.8830600917528, -70.5852778578174 41.860398601351584, -70.5572616966919 41.85519144822611, -70.56485613718237 41.832529727220106, -70.59286429834269 41.8377355533629, -70.6004461197405 41.81507095194774, -70.68447007861418 41.830648988605695, -70.69202328948023 41.807978865445, -70.7480427638971 41.81833202128709, -70.75557537056665 41.795657711763845, -70.81159439062482 41.805984579815465, -70.81910640023685 41.78330609374526, -70.8471137222136 41.788459342252885, -70.85461315210406 41.76577800333452, -70.88261633757897 41.77092402457224, -70.89010319686031 41.74823983828638, -70.8975854997622 41.72555412267245, -70.92557653734143 41.730691605946916, -70.9330462870655 41.7080030525124, -70.94051149279464 41.68531297797534, -70.94797215859059 41.662621386495395, -70.95542828851035 41.63992828223196, -70.96287988660617 41.617233669344095, -70.99083480107393 41.622358684989386, -70.99827388826651 41.59966125602376, -71.02622465146813 41.60477905709126, -71.01879355082754 41.62747779615633, -71.046756132275 41.63259100178795, -71.03932850654255 41.65528954469249, -71.06730291372762 41.660398150712844, -71.07472254182086 41.637698300828525, -71.08213765909228 41.614996946103744, -71.08954826957259 41.59229409069746, -71.09695437728774 41.56958973876839, -71.18080457471386 41.58486444855218, -71.17342244218841 41.60757271317743, -71.16603581963736 41.630279481001125, -71.19400949850618 41.6353618421256, -71.18662638896139 41.65806841000647, -71.17923878561318 41.68077347267404, -71.15124908838634 41.67568850960674, -71.14384897163862 41.69839076206922, -71.11585507935294 41.693298584339786, -71.108442440066 41.71599802110968, -71.05245010892938 41.705793319322126, -71.04501692413943 41.72848862972728, -71.07301918794961 41.73359524242607, -71.0655894942536 41.75629033644242, -71.03757921235777 41.75118241865241, -71.03013696953012 41.773874681936746, -71.02269019159742 41.796565415419266, -71.01523887449594 41.819254614938565, -71.0077830141571 41.841942276332965, -71.00032260650762 41.86462839544039, -70.97227602905798 41.85950803083747, -70.96480302976641 41.88219129746003, -70.95732547072508 41.90487301356595, -70.94984334784327 41.92755317499242, -70.89371354814828 41.917286832451374, -70.88621076156757 41.9399628190031, -70.87870339438793 41.962637242740755, -70.87119144249809 41.98531009950092, -70.86367490178206 42.00798138511984, -70.94797208510455 42.02338769547982, -70.95546443838185 42.000712488944735, -70.9629522157016 41.97803571097959, -70.97043542117066 41.95535736574865, -70.977914058891 41.93267745741576, -71.00598863922998 41.93779581252996, -71.01345466101604 41.91511304092596, -71.04152505126042 41.92022416485345, -71.03406708522424 41.94290823927828, -71.06214939323432 41.94801473660506, -71.06959930005613 41.92532936087181, -71.09767740376293 41.93042862792678, -71.10511470551522 41.90774039724197, -71.1331885986555 41.91283243590282, -71.14061330455439 41.8901413557534, -71.14803348050124 41.86744872868072, -71.15544913055868 41.84475455884795, -71.16286025878456 41.822058850417946, -71.19090577794091 41.827139771121466, -71.19830434458362 41.804441230920915, -71.2263456432657 41.80951493125288, -71.21895512385761 41.8322147672751, -71.24700829289381 41.83728383783078, -71.23962131925157 41.85998343344421, -71.29575523230523 41.87010637745851, -71.28837987854081 41.89280701788896, -71.28100002040898 41.915506115089336, -71.42148229755642 41.9407225424853, -71.42882175209073 41.918017013027125, -71.43615672388012 41.895309939872064, -71.44348721695123 41.87260132718454, -71.45081323532595 41.84989117912873, -71.45813478302153 41.82717949986842, -71.46545186405044 41.804466293567174, -71.47276448242043 41.78175156438816, -71.48007264213462 41.75903531649422, -71.48737634719137 41.73631755404791, -71.49467560158443 41.71359828121134, -71.50197040930286 41.69087750214647, -71.473955056412 41.68586021220317, -71.4812534615213 41.66313921550723, -71.48854742362202 41.64041672099701, -71.49583694669232 41.61769273283313, -71.4678494614164 41.61267338025467, -71.47514257326131 41.58994918882433, -71.48243124973345 41.567223512151585, -71.48971549480024 41.54449635439593, -71.49699531242435 41.52176771971645, -71.4690436472292 41.516747603481065, -71.47632704472802 41.49401878414405, -71.48360601842735 41.471288496290775, -71.51154168117229 41.476306036220656, -71.51880824019844 41.45357299572078, -71.52607038758657 41.43083849492992, -71.53332812727635 41.40810253800543, -71.56124355205803 41.413110311281166, -71.56848890260378 41.39037161534037, -71.68015589195146 41.410338539604545, -71.68736488919251 41.387593262428226, -71.69456951183406 41.364846541142626, -71.75039330591463 41.37478946116249, -71.75757757618901 41.35203874202487, -71.78548702692153 41.357000069614706, -71.77831075243884 41.37975206542137, -71.80623189378423 41.38470876447834, -71.79905926480244 41.40746059512728, -71.85492863407946 41.41735881909609, -71.86208524641492 41.394604442890014, -71.89001745043012 41.399543420199464, -71.89716170877489 41.37678633292709, -71.95302112619096 41.38664402204571, -71.94589289566068 41.40940364592109, -71.97383612958636 41.41432489229514, -71.98095634128236 41.391564002401594, -72.00889522243443 41.396478071932016, -72.01600309237006 41.37371448078109, -72.07187579281043 41.383522358706884, -72.0647839683161 41.40628847445428, -72.05768783279893 41.429053153265855, -72.0505873823985 41.45181639098314, -72.04348261324985 41.47457818344737, -72.01551231197011 41.46967215452668, -72.00839517857612 41.49243123639079, -72.06435553260624 41.50223989664578, -72.05725016359001 41.52500004570334, -72.02926010322548 41.52009741597949, -72.0221423545972 41.54285484772794, -72.10614770609439 41.55754874229158, -72.11324128413297 41.534787536643066, -72.12033054481113 41.51202487300025, -72.12741549199781 41.48926075552353, -72.09943420693344 41.48437248495826, -72.10652289163234 41.461608174512975, -72.13449612955749 41.46649518837298, -72.14157246135002 41.443728175708216, -72.11360726623325 41.4388424186404, -72.12068733459472 41.4160752214997, -72.12776310057086 41.39330658724964, -72.1348345680112 41.37053652004858, -72.21866875505712 41.38516473599133, -72.22571184149841 41.362389473156185, -72.23275065004567 41.33961278542782, -72.34451606882882 41.3590242439445, -72.33750940349186 41.381805933119765, -72.33049847758896 41.40458619705947, -72.38643504690985 41.41426141229085, -72.37943596501952 41.43704273806308, -72.43540308842333 41.446696750869094, -72.4284158770797 41.46947912786776, -72.45641291655882 41.47429848684001, -72.44942952485428 41.497080665883566, -72.47743824537895 41.50189533549562, -72.47045868147282 41.52467731072588, -72.49847909017925 41.52948728684267, -72.50545056899573 41.50670407465124, -72.5334664919934 41.511506882355754, -72.52650310149971 41.53429132998116, -72.51953546627234 41.55707433088793, -72.60365337624484 41.57145454938287, -72.61059671395692 41.54866785159497, -72.58256191711061 41.54388161334927, -72.58950912127032 41.52109469943857, -72.56148601065748 41.51630375761563, -72.56843707305921 41.493516633441715, -72.54042564156346 41.48872099217331, -72.54738055401556 41.465933663594996, -72.49138462795771 41.456327062035726, -72.49835145425018 41.43354077212748, -72.47036695305907 41.4287298184912, -72.47733760547217 41.4059433375062, -72.48430401906474 41.383155430860434, -72.42837804116152 41.37352071459153, -72.43535632140421 41.35073386902163, -72.44233036172041 41.327945606278114, -72.47027545938668 41.33276344063799, -72.47723722303384 41.30997252265759, -72.70086241985946 41.34829219141689, -72.70775555068793 41.32548998106059, -72.71464449212733 41.30268636525097, -72.74259755323544 41.30744721825685, -72.73571667239108 41.33025206269869, -72.79164955689097 41.33975845409805, -72.79851430701142 41.3169511569817, -72.88241596093974 41.33116263211106, -72.87557543069804 41.3539735967611, -72.84759660477572 41.34924114310684, -72.84074383057279 41.37204948090883, -72.83388688512963 41.39485640868368, -72.82702576470123 41.41766192227136, -72.88303546722047 41.42712822133924, -72.88988040519536 41.40432026781728, -72.89672117698008 41.38151089994266, -72.90355778631303 41.35870012187569, -72.93154366789625 41.36342071747251, -72.93836803572273 41.34060731545501, -72.94518825295424 41.317792511482544, -72.973161489279 41.32250474372957, -72.9799694824799 41.299687325411064, -72.98677333691563 41.276868513374126, -72.99357305629601 41.25404831177749, -73.04948159690869 41.26344770407523, -73.04269802371114 41.28627033450189, -73.03591032424332 41.30909157520613, -73.02911849480198 41.331911422028924, -73.05710225654056 41.336605866134285, -73.0503143844192 41.35942552678821, -73.10630859861055 41.36879903919744, -73.1130802792993 41.345976959397746, -73.11984783953207 41.323153481313035, -73.12661128300654 41.30032860910322, -73.09863670433403 41.29564844647606, -73.10540411880424 41.272823393350414, -73.11216741949625 41.24999695449905, -73.118926610098 41.227169134080484, -73.14687694979105 41.23184566931621, -73.15362396312166 41.20901526219694, -73.20951892137055 41.218348140925805, -73.216245694085 41.19551394633311, -73.24419030024535 41.200170292416324, -73.25090491568167 41.177333523640314, -73.30678835359721 41.1866260334721, -73.31348274791331 41.16378549418692, -73.3693638298087 41.1730519016476, -73.37603801190005 41.15020760183497, -73.38270814107085 41.12736194476378, -73.43857067081132 41.136599861022155, -73.4452206091386 41.11375045740901, -73.45186651060955 41.09089970469401, -73.47978676956791 41.095507386832914, -73.48642057122937 41.07265409460092, -73.57017761018207 41.086438025193054, -73.57678318179134 41.06357981736962, -73.60470092853679 41.06816142519255, -73.61129442177936 41.04530069184858, -73.63920749030845 41.04987518898419, -73.64578891455571 41.02701193565965, -73.67369729946468 41.031579324160305, -73.68026666408723 41.00871355639574, -73.70817035998516 41.01327383831616, -73.71472767435286 40.99040556165282, -73.74262667586167 40.994958739050105, -73.74917194934359 40.972087959029736, -73.77706625109813 40.97663403396351, -73.78359949306255 40.95376075612854, -73.79012877450579 40.9308861658217, -73.81801030952474 40.93542396055407, -73.82452757677295 40.91254688205434, -73.85240440275727 40.91707757991432, -73.85890966516966 40.89419801876529, -73.88678177679911 40.89872162182022, -73.88028457318582 40.921602359838545, -73.87378342936812 40.944481793467205, -73.86727834181576 40.96735991855199, -73.86076930699434 40.99023673093809, -73.85425632136531 41.01311222647044, -73.84773938138596 41.035986400993394, -73.84121848350938 41.058859250351006, -73.83469362418454 41.08173077038681, -73.86263369171974 41.08625785662459, -73.85611296461624 41.10912921790502, -73.84958827339463 41.13199924147321, -73.84305961449468 41.15486792317134, -73.836526984352 41.1777352588411, -73.86450283751245 41.182261106756684, -73.85797435061225 41.205128265116485, -73.88596169111578 41.209649346674524, -73.87943735583926 41.23251632187155, -73.93543838973581 41.241543001436895, -73.928926350551 41.26441095572011, -73.92241034372088 41.28727754702998, -73.89439186777804 41.28276484244272, -73.88786374469518 41.30562889866953, -73.88133164233287 41.328491583677874, -73.9374045563976 41.33751571474926, -73.9308847822358 41.360379358426265, -73.92436103061358 41.38324162240665, -73.91783329794583 41.406102502527766, -73.91130158064313 41.428961994626555, -73.96745331860609 41.43797163360535, -73.96093397234407 41.46083206078636, -73.9544106432883 41.4836910914624, -73.94788332784364 41.50654872146902, -73.94135202241064 41.529404946641336, -73.93481672338561 41.55225976281412, -73.9282774271606 41.57511316582183, -73.92173413012333 41.59796515149845, -73.97801415351722 41.60696720012813, -73.9845410247189 41.584112894280054, -73.99106390419057 41.56125717094437, -74.01919256851387 41.56574692306682, -74.02570325144056 41.54288862847842, -74.03220995438292 41.520028924656835, -74.03871268093413 41.497167815767774, -74.01060862825628 41.492681537672794, -74.01711557681739 41.46982018604582, -74.04521143468308 41.47430530597648, -74.05170621921447 41.451441399447916, -74.02361855163196 41.4469574377589, -74.03011755628387 41.4240932969764, -73.97396868566531 41.41510981408347, -73.98048007710841 41.39224660638448, -73.9869874965178 41.369382014671615, -73.9934909474717 41.34651604310788, -73.99999043354404 41.323648695855795, -74.00648595830462 41.30077997707752, -74.01297752531895 41.277909890934815, -73.98495710943268 41.27341619254124, -73.99145286740037 41.25054590667523, -73.99794467025333 41.22767426184343, -74.00443252154798 41.2048012622062, -73.97643987493575 41.20030511211577, -73.98293190690407 41.177431927082914, -73.9269729191306 41.168424138658274, -73.9334772415559 41.14555194249095, -73.9399776096689 41.12267840422475, -73.94647402701956 41.09980352801801, -73.91852389690742 41.09529423637634, -73.92502446885052 41.07241919656407, -73.93152109266998 41.04954282720228, -73.93801377190668 41.0266651324479, -73.91009127529456 41.022153423719836, -73.91658809896352 40.99927557967436, -73.923080980684 40.97639641862414, -73.92956992398783 40.95351594472461, -73.93605493240254 40.930634162130794, -73.94253600945166 40.907751074997314, -73.9983035629967 40.916756851362834, -73.9918386244472 40.93964228144533, -73.98536976338494 40.96252640683855, -73.95746817746601 40.95802413739174, -73.95098731077424 40.98090578338679, -73.94450251009725 41.003786116457384, -74.0282657589649 41.01728216525402, -74.03472629857379 40.994398325371975, -74.04118291751293 40.971513172340565, -74.04763561929629 40.9486267103155, -74.07553909587713 40.95311003850589, -74.0819798043486 40.930221105565465, -74.1098785127148 40.93469734381926, -74.11630723728472 40.91180594551256, -74.12273206408322 40.888913250528454, -74.094849507675 40.88443934156538, -74.1012785095222 40.86154651881433, -74.12915299660104 40.86601926302115, -74.13557003832473 40.843123987144445, -74.16343975635927 40.847589647906844, -74.16984484734638 40.82469192445412, -74.17624605892543 40.80179292086495, -74.18264339456731 40.77889264129193, -74.18903685773884 40.755991089887225, -74.19542645190276 40.73308827080251, -74.22325917443546 40.73754220221352, -74.22963685878842 40.71463695741955, -74.23601068545875 40.69173045317524, -74.26383059169183 40.69617615049823, -74.27019252576521 40.67326723017364, -74.27655061345456 40.65035705862727, -74.30435770561598 40.65479452683122, -74.31070391789909 40.63188194883371, -74.31704629507047 40.6089681278418, -74.32338484055441 40.5860530680044, -74.35117109434898 40.5904811540871, -74.35749778941582 40.56756370150523, -74.36382066402987 40.5446450183034, -74.37013972160001 40.52172510862923, -74.39790515552899 40.52614382030705, -74.40421238761091 40.50322153159413, -74.43197303647732 40.50763318713885, -74.42567381912515 40.530556631018925, -74.48122082040048 40.539364545886365, -74.47493384509828 40.56228907285393, -74.46864307036492 40.585212373067044, -74.52423507114605 40.59400127169765, -74.53050977865539 40.57107567225951, -74.6138977735947 40.58421126602735, -74.62014458138914 40.56128100225282, -74.62638761521848 40.5383495155221, -74.63262687845297 40.51541680998333, -74.60485177696471 40.51104762032477, -74.61109529895073 40.48811484460021, -74.55557073647246 40.47936104703689, -74.5493111710902 40.502291529167735, -74.54304782524497 40.525220796846654, -74.51527430652129 40.52083274811494, -74.52154567418167 40.49790462948501, -74.4382684523774 40.484708524939705, -74.44456007021557 40.461782648568, -74.45084789337801 40.43885556216986, -74.39537784947946 40.43003328814582, -74.40167787282371 40.407107308308156, -74.42940329138635 40.411520235715834, -74.43569152813005 40.38859189721784, -74.44197597595499 40.36566236119802, -74.4482566382349 40.34273163180034, -74.420555176331 40.33832217579273, -74.4142665328704 40.3612517479876, -74.38656030306562 40.35683524555293, -74.392856924847 40.33390683210782, -74.33747006793725 40.32505848536897, -74.33115749810553 40.34798457667479, -74.32484112526444 40.37090947488095, -74.29713658342537 40.36647414695314, -74.2908084257451 40.38939668466705, -74.2353930903638 40.38050603729559, -74.22904516156431 40.403425042697734, -74.20133437970246 40.39896972053092, -74.19497464611504 40.4218863528683, -74.11183788394052 40.408481553016635, -74.11822153569331 40.3855684331825, -74.12460134375999 40.362654108311546, -74.13097731155901 40.33973858254695, -74.13734944250487 40.31682186003136, -74.10967554870517 40.31234651591363, -74.11605179577394 40.28942977499527, -74.03307348354993 40.27597200372506, -74.03946971461889 40.25305760650505, -74.04586210176427 40.23014202524026, -74.05225064839784 40.20722526407066, -74.07988303198388 40.211713526882086, -74.08625981789245 40.188794410826986, -74.05863535792739 40.18430732713565, -74.06501623375672 40.16138821857422, -74.14787558366992 40.1748283272617, -74.15422887554497 40.151904518066196, -74.16057835342866 40.128979545311985, -74.18818877178217 40.133445493820126, -74.19452652404534 40.110518186880725, -74.24974120000961 40.119430135117575, -74.25605931936113 40.096499327795726, -74.22845828746998 40.09204745893595, -74.23478052799057 40.06911667207191, -74.17960393693306 40.06019768707291, -74.18593819263313 40.037268101457265, -74.19226865121313 40.014337372967006, -74.19859531603554 39.9914055057375, -74.22615830882286 39.995864404627916, -74.21983953752216 40.01879744696519, -74.24741363672956 40.023251661037, -74.25372451166376 40.0003174451379, -74.26003160477848 39.977382094497905, -74.28759311912064 39.98182810362055, -74.29388854314158 39.958890450222704, -74.26633491942181 39.95444561325161, -74.27263445893807 39.93150800553293, -74.24509191946136 39.927058486116366, -74.25139556641142 39.904120929892024, -74.2576954406329 39.881182255529076, -74.23017185119794 39.87672923319667, -74.2364758238688 39.853790620341655, -74.24277602621049 39.83085089767906, -74.24907246155433 39.807910069339805, -74.25536513322793 39.784968139454264, -74.22787617777233 39.78051397604039, -74.234172937072 39.75757212606695, -74.24046593509259 39.734629182872865, -74.26793919885507 39.739080991563036, -74.27422059944443 39.71613578181531, -74.28049824963512 39.69318948703718, -74.33542295507665 39.70207088145522, -74.34168118780885 39.67912115522772, -74.34793568524361 39.65617035209287, -74.37538711990663 39.660599944998594, -74.3816300544534 39.63764689599989, -74.40907681602316 39.6420694803512, -74.40284171514817 39.665023700885364, -74.48522442830422 39.67825993726543, -74.47900913439757 39.701216590009686, -74.56144371839214 39.7144037514521, -74.5676354568092 39.691443607524704, -74.57382349728033 39.66848239029579, -74.58000784306991 39.64552010389292, -74.60746875939599 39.64990065357766, -74.6012922624418 39.67286410073906, -74.62876415651951 39.67723996840814, -74.62259182502088 39.70020350547524, -74.65007470302409 39.704574687056876, -74.64390654503494 39.72753830822288, -74.6714004131393 39.73190479964589, -74.66523643672653 39.754868499102926, -74.69274130110955 39.759230296296764, -74.6988974048032 39.73626544247486, -74.7263975163913 39.74062023580534, -74.73254206908915 39.717653151351485, -74.73868294951902 39.69468499320926, -74.71119857602001 39.69033250570065, -74.71734365004298 39.66736443100578, -74.72348505400251 39.644395290942974, -74.72962279113914 39.62142508963955, -74.6747105162937 39.612709508717, -74.68086028118398 39.58974056134917, -74.6534166536201 39.58537516838079, -74.65957058691386 39.56240632606658, -74.63213790817136 39.558036255081916, -74.63829600184447 39.53506752362402, -74.58345564571945 39.52631220119696, -74.57728189971003 39.54927860894755, -74.54985857719873 39.544891035614235, -74.55604014525078 39.5219257920421, -74.56221802964026 39.498959504176604, -74.50741202922042 39.49017152766586, -74.5136018520679 39.46720653289062, -74.56839223361169 39.47599217614097, -74.57456276040581 39.45302381205773, -74.60195482018852 39.45740672829571, -74.6081138679502 39.43443616785466, -74.58072961325962 39.43005441604889, -74.58689279540641 39.4070839922359, -74.61426924923435 39.411464579546404, -74.62042096726731 39.38849196749194, -74.67516758753156 39.39723334501771, -74.66903147096527 39.42020828153707, -74.66289169960984 39.4431821941848, -74.69028526939887 39.447546466895105, -74.6841496533342 39.47052051133092, -74.67801038027928 39.49349352358895, -74.73283808787475 39.50220921326677, -74.7267108063877 39.52518350388214, -74.80899907769258 39.53821674834846, -74.81510286102964 39.515238997380486, -74.82120300542738 39.492260209797976, -74.79378615546713 39.48792393497829, -74.79989049105717 39.46494526692922, -74.80599118986494 39.44196557057438, -74.81208825509398 39.418984850035955, -74.78469795116031 39.41464620279368, -74.79079919746997 39.39166561595608, -74.7968968123551 39.36868401323931, -74.8029907990115 39.34570139876354, -74.83035768128936 39.350036584531765, -74.83644024416552 39.32705180846867, -74.86380239489523 39.331380017815036, -74.86987354294641 39.308393085713256, -74.87594108079479 39.285405154087236, -74.82125102151011 39.27674752597536, -74.82733052713503 39.253760905653536, -74.79999787714395 39.24942451912666, -74.80608154960711 39.22643806338257, -74.86073435130383 39.23510270958126, -74.85466623981868 39.25809147526251, -74.90934683894115 39.26673516013377, -74.90329069955739 39.289725238192155, -74.93064337295036 39.29403950113424, -74.92459142912725 39.317029733137936, -74.89723095737726 39.31271432078351, -74.89116760922947 39.335702403789554, -74.94590721433482 39.34432970203706, -74.93985587341017 39.36731907836658, -74.93380092865691 39.390307446749986, -75.04337929081896 39.40750127398902, -75.03735203810244 39.430493205232295, -75.09217516179947 39.43905740416046, -75.09818674887684 39.41606319477683, -75.07078149977944 39.411785151193804, -75.07679733531529 39.38879106773123, -75.04940295356678 39.38450833043465, -75.05542302950859 39.3615143786903, -75.06143952180338 39.338519422876544, -75.06745243360653 39.31552346711324, -75.17695429853173 39.33260576797563, -75.17097266046028 39.3556062747703, -75.19836350733107 39.35986341091615, -75.19238613517561 39.382864051330564, -75.1649874589431 39.3786057813744, -75.15899869083802 39.40160428366731, -75.18640520070471 39.40586368737356, -75.18042070077585 39.42886231492381, -75.20783807419309 39.43311701515402, -75.20185785051973 39.45611576216357, -75.22928609347436 39.460365754863744, -75.22331015414858 39.483364615533546, -75.25074927262897 39.48760989665025, -75.25671735747055 39.46460990707767, -75.26268188342391 39.4416089005862, -75.26864285362893 39.41860688129886, -75.35090761527184 39.431297530932106, -75.34497019872242 39.454302927953826, -75.33902923930835 39.47730731199936, -75.33308473389967 39.50031067894511, -75.36053591077713 39.504532583095816, -75.35459572567602 39.527536051435995, -75.38205778012201 39.53175323021315, -75.37612192347284 39.55475679414579, -75.3211850725606 39.54631434504002, -75.31522991035216 39.56931463593902, -75.30927118959298 39.592313893238014, -75.33675387009112 39.59654028749905, -75.33079947433176 39.619539629447154, -75.32484151804582 39.6425379294805, -75.31887999808113 39.66553518347119, -75.37390177396723 39.67397713301673, -75.36795249456392 39.696975576552376, -75.31291491128191 39.688531387290816, -75.30694625448865 39.711526536810304, -75.3344714412563 39.71575268189659, -75.32850712234392 39.73874789349929, -75.2734439589183 39.73028750030462, -75.26746023994978 39.75327940682779, -75.26147293714234 39.7762702467224, -75.1237891527835 39.755005443186676, -75.11775869654554 39.77798957958638, -75.11172462840142 39.800972641408, -75.08418122110648 39.796699835361686, -75.0902231987423 39.77371790468724, -75.06269076696618 39.76944036930534, -75.05664088255625 39.7924211672789, -75.05058737437037 39.8154008866692, -75.0230421998551 39.81111522324667, -75.01697715196545 39.8340927257944, -75.04453023919618 39.83837952334459, -75.03846947381761 39.86135707317277, -75.03240507501482 39.88433353202092, -75.00483614934205 39.88004446640647, -74.99876018815817 39.90301869620493, -74.99268058275312 39.92599182682021, -74.98659732989246 39.94896385411794, -74.95900770921871 39.94466551575718, -74.9529128696315 39.96763530030655, -74.98051042633789 39.9719347739633, -74.97441986884739 39.994904582220826, -74.96832565417513 40.01787327475465, -74.9131018777002 40.0092639117509, -74.91921197909802 39.986297491102064, -74.89161269456577 39.981985136422075, -74.89772706494553 39.95901873851479, -74.90383776834031 39.936051229214094, -74.876257455503 39.93173528281897, -74.870138824339 39.95470165216747, -74.81497168501093 39.94604987304792, -74.82110616343006 39.92308578825854, -74.76596734065816 39.91441283065422, -74.7598170260473 39.937374624679826, -74.75366302276736 39.96033530763786, -74.74750532754564 39.98329487539368, -74.74134393710571 40.006253323812146, -74.8517608898365 40.02359407570052, -74.84562755378852 40.046555974921276, -74.79039693860433 40.0378950588711, -74.78424402746161 40.06085354631438, -74.77808741994568 40.083810901879204, -74.75046092057691 40.07946934463963, -74.74429266351697 40.10242442004218, -74.7166613574999 40.09807584138933, -74.71048144168746 40.121028631074154, -74.68284533394849 40.11667302887628, -74.67665375017384 40.13962352728819, -74.67045844378096 40.162572877468385, -74.64280958470371 40.15820910100044, -74.63660259346966 40.18115615028107, -74.71958252925344 40.19423327938523, -74.71339570267203 40.21718261295743, -74.76874738441998 40.225873569272146, -74.76257278898063 40.24882402799893, -74.8179530362067 40.25749371677596, -74.811790697344 40.28044529004671, -74.83949353228975 40.28477243710943, -74.83333547658964 40.30772397845189, -74.86104945468664 40.31204636875782, -74.85489569044046 40.33499787234404, -74.91034908789821 40.34362723380176, -74.91648683717249 40.32067346328354, -74.92262088783012 40.297718519015504, -74.89490863126231 40.29340905248964, -74.9010469866748 40.27045407143964, -74.90718164565847 40.24749792499298, -74.7964279518849 40.2302102176503, -74.80259085494023 40.20725745729103, -74.80875005060508 40.1843035400856, -74.81490554217704 40.16134847017464, -74.84256532855709 40.16567581314823, -74.84870915235008 40.14271845531027, -74.93168338308055 40.15566176807743, -74.93779960921822 40.13269985677126, -74.9439121586194 40.10973680491437, -74.95002103455276 40.0867726166459, -74.97766144856442 40.09107188536507, -74.98375869369902 40.06810543140485, -75.03903291275749 40.07668406176461, -75.04511057459413 40.05371421729352, -75.05118458585443 40.03074324863016, -75.10643934176441 40.03929384040919, -75.11249379145725 40.01631949533295, -75.11854460579787 39.9933440342101, -75.17377985995874 40.00186660464581, -75.1677449620615 40.02484431604139, -75.1953751614357 40.029097906166406, -75.20140209701206 40.0061190719654, -75.22902740243181 40.010365659509056, -75.23504275834262 39.987384591891015, -75.24105450284918 39.964402416244084, -75.21344511438747 39.96015807139419, -75.21946120261258 39.93717591329685, -75.27466713219829 39.94565648411888, -75.28066371325902 39.922670984871665, -75.28665669689877 39.89968438993973, -75.31424834116075 39.90391362362699, -75.32022978635067 39.88092481862358, -75.4029991173952 39.89357392210765, -75.40895314017402 39.870580683207464, -75.41490359257566 39.84758636077585, -75.42085047776848 39.82459095894652, -75.44842248063533 39.82879223925137, -75.45435786427453 39.805794649611016, -75.48192494502405 39.80998894701249, -75.4878488363296 39.78698917512727, -75.49376917863859 39.76398833611951, -75.5764408423641 39.77652934967602, -75.58233384158176 39.753524123499446, -75.5882233111896 39.73051783828079, -75.64332098854342 39.73884474506624, -75.64919107104375 39.715835196364566, -75.70428480725465 39.724136423493285, -75.71013551267458 39.70112362143231, -75.71598271532626 39.67810977248065, -75.72182641831432 39.65509488076848, -75.7276666247398 39.63207895042534, -75.67263628595877 39.62378653384904, -75.67848882646433 39.60077177194054, -75.68433786788724 39.57775597977721, -75.69018341332455 39.55473916148652, -75.77266216968775 39.56715908516204, -75.76684034337174 39.59017920587428, -75.79434707945143 39.59430856038887, -75.78852968617664 39.61732875242502, -75.81604729013662 39.62145334115268, -75.81023433816006 39.644473598706625, -75.83776281589329 39.64859341761167, -75.8435678423093 39.62557206560797, -75.87109133899011 39.62968492493555, -75.87688496869427 39.60666144937343, -75.88267513293165 39.58363694727097, -75.91018572197522 39.587741757782425, -75.90440347977098 39.610767351331305, -75.93192492533635 39.614867388015035, -75.92614715104501 39.63789304479182, -75.9536794589971 39.641988303615676, -75.959449301681 39.61896155857303, -75.98697660509303 39.623049862154865, -75.99273506561218 39.600021003633145, -75.99849008122652 39.57699112246564, -76.08104191985481 39.58921432085642, -76.07531069609189 39.61224745311687, -76.13037567066559 39.62036907683227, -76.1246568980657 39.643403345741305, -76.11893469945606 39.666436587585345, -76.17404307793414 39.67453903565889, -76.17974937452091 39.65150364071248, -76.1854522538994 39.62846721858553, -76.19115171910111 39.60542977340769, -76.13609102029422 39.59733378498768, -76.14180294998653 39.5742974743364, -76.11428488207576 39.570241755381886, -76.12000132444322 39.54720550917805, -76.12571434855121 39.524168252480756, -76.15321656168409 39.52822181312621, -76.15891824974153 39.50518247082203, -76.16461652996698 39.48214212622065, -76.19210579260928 39.48618766721526, -76.18641543138543 39.5092290895508, -76.21391549864693 39.51326984476251, -76.21959793831394 39.49022734625617, -76.27459086406023 39.4982891151208, -76.28025406566255 39.47524347056615, -76.30774691345476 39.47926448717902, -76.31339881032535 39.45621677676055, -76.34088660080441 39.460230859606334, -76.34652720216502 39.43718108890168, -76.40149551285016 39.44518952925987, -76.4071169086559 39.422136636837465, -76.4127349466534 39.39908276229473, -76.44020753882513 39.40307605728234, -76.44581430896537 39.380020139188424, -76.4514177316161 39.3569632471667, -76.45701780973916 39.333905385340195, -76.51192403795473 39.34186801249388, -76.51750496719968 39.31880705824322, -76.54495441435263 39.32277852456289, -76.55052411069822 39.2997155475667, -76.63286563038695 39.31159162725113, -76.63840829327928 39.288524518663046, -76.66585317463851 39.2924704422705, -76.6713846268206 39.26940132512355, -76.64394764968138 39.265456456432034, -76.649483702517 39.24238744467895, -76.70434465185419 39.25026921807814, -76.70986161063651 39.22719715244525, -76.73728837330368 39.231128205371654, -76.74279414707112 39.20805414640991, -76.71537528043376 39.20412414542374, -76.72088566415266 39.18105020113287, -76.6934774728118 39.17711540198043, -76.68795919989746 39.200188292709996, -76.6331354119458 39.19229903537414, -76.63866945585454 39.16922825647075, -76.64420020349739 39.14615654457554, -76.56203277272306 39.13428515025992, -76.56758383884726 39.11121568930412, -76.57313160147845 39.08814530374952, -76.62787562264971 39.09606116867281, -76.63340436332547 39.07298774098059, -76.60603881730317 39.06903378924027, -76.61157212656909 39.04596050517108, -76.61710214540834 39.02288630879599, -76.56241084066392 39.01496513666824, -76.56795326241955 38.99189215720547, -76.62262887672118 38.999811204229, -76.62815232340456 38.97673519558346, -76.633672488352 38.953658286972015, -76.63918937445371 38.930580482506734, -76.61187368642949 38.926627061743794, -76.61739512573124 38.903549427512004, -76.59009004560048 38.89959124073286, -76.59561602991195 38.87651378251614, -76.56832155212328 38.872550833730635, -76.57385207326674 38.849473557309466, -76.57937931417722 38.826395401629654, -76.58490327773836 38.803316370799436, -76.5904239668305 38.78023646892632, -76.59594138433062 38.75715570011719, -76.60145553311233 38.734074068478215, -76.57421065368908 38.730111696374856, -76.5797293240771 38.7070302730996, -76.58524472720514 38.683947995255195, -76.59075686594028 38.660864866945694, -76.59626574314618 38.6377808922743, -76.56905475074208 38.63381698054874, -76.56353810133373 38.65689988641328, -76.53632210563408 38.65292909686078, -76.5418465248168 38.629847261370905, -76.54736767680147 38.60676458372185, -76.55288556445188 38.58368106801516, -76.52569563052894 38.57970768624503, -76.53121801127777 38.55662440867383, -76.55840019062853 38.56059671835172, -76.56391155818869 38.53751153883169, -76.56941966998623 38.5144255335545, -76.5965891109216 38.51838990011103, -76.6020862255622 38.49530200250271, -76.62925067422181 38.49925950034249, -76.62376130623744 38.52234846705529, -76.61826869383702 38.5454366120112, -76.61277283417657 38.56852393111123, -76.58558513279684 38.564563226105726, -76.58007826361482 38.5876486462936, -76.63447194322269 38.5955663890773, -76.62897734659046 38.61865311150397, -76.62347949841208 38.64173899572345, -76.65069601292049 38.64569129007335, -76.64520268739224 38.66877739765428, -76.67242973699092 38.67272494618542, -76.66694094222811 38.69581127135662, -76.63970610888204 38.691862658773196, -76.63420627453286 38.7149470693265, -76.66144889590745 38.7188967459121, -76.65595359517208 38.74198136574738, -76.65045503716168 38.76506512675738, -76.67771601155842 38.76901111261241, -76.67222199673246 38.79209507297382, -76.66672472319851 38.81517816624693, -76.66122418808976 38.83826038832434, -76.68851135311068 38.842203736765505, -76.68301537221895 38.865286144101, -76.65572038853605 38.86134173509808, -76.65021332166391 38.884422202459405, -76.70482170395168 38.892307313420595, -76.71031312244263 38.86922472660623, -76.71580128223898 38.84614126027734, -76.74309397182051 38.85007295804129, -76.74857105657577 38.82698755883142, -76.7540448926758 38.80390128827376, -76.7595154829772 38.78081415047618, -76.73224623811053 38.77688562529044, -76.73772139176202 38.753798681986915, -76.74319330101912 38.730710879707246, -76.7159424127868 38.72677865192185, -76.72141887578641 38.703691054067704, -76.74866196873195 38.70762222255699, -76.75412739774734 38.684532714641165, -76.72689209579899 38.68060260549782, -76.73236207567143 38.65751331031629, -76.73782881824734 38.63442317262656, -76.7432923263671 38.61133219653132, -76.71608311163443 38.60739945648296, -76.72155115960506 38.58430870719735, -76.6943524574879 38.58037122140834, -76.69982503720061 38.55728070470115, -76.75420965058291 38.5651477455316, -76.75966347234325 38.54205427882908, -76.70529438242805 38.53418936199045, -76.71076049600416 38.51109719737574, -76.73793591651716 38.51503149482339, -76.74339104925653 38.49193744952553, -76.71622338075957 38.48800421495603, -76.7216830395217 38.464910418829334, -76.69452585155048 38.46097244899682, -76.69999002826363 38.43787890780512, -76.64569934006892 38.429987710643395, -76.65117575876307 38.40689549787997, -76.6240422543016 38.4029422769467, -76.62952316820983 38.37985033225918, -76.57527983365236 38.371928659306285, -76.58077295118339 38.348838060987816, -76.55366311683034 38.34486961536878, -76.5591607069112 38.32177929826122, -76.50496469909938 38.3138272023688, -76.51047445453864 38.29073824956337, -76.45630485326355 38.28276518128282, -76.46182675045922 38.25967760333482, -76.43475377406672 38.255683481292515, -76.44028010665198 38.232596205054485, -76.49441344198732 38.240576508293145, -76.48890248220138 38.26366594722969, -76.51598096573487 38.267648512148, -76.52148423551917 38.24455799421365, -76.5269842667194 38.22146669985045, -76.60819003629595 38.233373257159265, -76.60271307686948 38.25646777925054, -76.59723289146463 38.27956152477008, -76.59174947726339 38.30265448962723, -76.64594653132625 38.31056973179746, -76.64047530389936 38.333664055591, -76.66758564466743 38.337614068336066, -76.67304915931315 38.31451867505053, -76.70015451650116 38.31846183198708, -76.69469871702293 38.341558293195575, -76.74893304216361 38.349429375978595, -76.75437340415891 38.32633078363214, -76.75981055986163 38.30323140624598, -76.81402488280492 38.31107507784744, -76.80860316563319 38.33417658018756, -76.7814869274621 38.330256576704386, -76.77605428777653 38.35335623226537, -76.77061844322748 38.376455098645955, -76.85202166304089 38.388204097373425, -76.84660581743786 38.41130535041797, -76.87375338678616 38.41521115090676, -76.86834208798241 38.43831266323025, -76.86292759289421 38.4614133738975, -76.89009336791612 38.46531548722571, -76.89550011183742 38.442213721385244, -76.92266084205204 38.44610897960375, -76.91726185166955 38.46921179904674, -76.9716069309091 38.476987014927204, -76.97699040710965 38.45388209299192, -77.00415923472168 38.457759946544925, -76.99878351915855 38.480865917369535, -76.99340462584158 38.503971082202526, -76.98802255198346 38.52707543694547, -77.04241489000151 38.534820012643436, -77.04778141839593 38.51171356502666, -77.05314477480766 38.48860630722459, -77.16189950115019 38.50401740430133, -77.16722860341851 38.48090517314939, -77.17255455638464 38.45779213982062, -77.19973437833924 38.461628316381855, -77.20504941623449 38.43851344699609, -77.23222413148743 38.44234277994277, -77.22691686445646 38.46545868573355, -77.22160645945463 38.48857379335207, -77.21629291372817 38.51168809870007, -77.21097622452007 38.53480159767861, -77.18377040007604 38.53096811939243, -77.1784427765945 38.55407977168431, -77.15123183764855 38.55023944367946, -77.14589327087805 38.57334924370619, -77.0914638552382 38.56564907018646, -77.08610654658764 38.588755971529665, -77.08074606618318 38.61186205029126, -77.07538241123815 38.63496730236944, -77.0700155789627 38.65807172366157, -77.06464556656367 38.68117531006444, -76.98290470163109 38.66956579843342, -76.97750808725891 38.69266541461626, -76.95025874501145 38.688782893211254, -76.94485112609287 38.71188061960698, -76.93944030140165 38.734977498995384, -76.96670525974817 38.73886211402257, -76.96129904098014 38.76195918903565, -76.98857453298163 38.76583902639857, -76.98317292833768 38.78893629126059, -76.9777681180921 38.81203269669806, -76.97236009942218 38.8351282386031, -76.9996617907222 38.83900538124773, -76.99425839739958 38.86210109890946, -76.9396420666612 38.85433889533373, -76.93421978413072 38.877431652930035, -76.92879428035282 38.90052353471682, -76.90147452965724 38.8966315935724, -76.89603795699841 38.91972154905143, -76.92336555248822 38.923614536583734, -76.9179335976943 38.946704654419875, -76.91249841312512 38.969793884113585, -76.93984445200473 38.97368312573471, -76.94527178068202 38.95059285132446, -76.97261269834988 38.95447521045543, -76.97802894764106 38.93138300465529, -76.9834419786898 38.90828991472353, -77.0927700600666 38.9237526430219, -77.08738845147735 38.94684989023369, -77.14208450112567 38.95454829487351, -77.14745038411816 38.93144897844986, -77.12010886822118 38.92760373046424, -77.12547942154897 38.90450456759031, -77.07082022878151 38.896798626504754, -77.07620329467234 38.87370066002616, -77.08158316383826 38.85060182159848, -77.08695983909482 38.82750211533146, -77.09233332325427 38.804401545334215, -77.09770361912561 38.78130011571508, -77.10307072951458 38.75819783058183, -77.13035193343488 38.7620474965481, -77.13570803665667 38.73894332264956, -77.16298410848407 38.74278612517679, -77.1683292136202 38.71968006809422, -77.22287376762752 38.727346124757894, -77.22820006083029 38.70423715733491, -77.2827396779989 38.71187784563265, -77.28804716994021 38.68876597807383, -77.29335151630826 38.66565327524133, -77.26609601350752 38.66183790348241, -77.27140503171925 38.63872539921593, -77.27671090556444 38.61561206793163, -77.30395078338418 38.61942538017257, -77.30924570961382 38.596310196143335, -77.33648043903233 38.60011665950271, -77.34176442670109 38.5769996283103, -77.36899400370736 38.58079924509667, -77.37426706186747 38.55768037232301, -77.37953699962414 38.53456068879892, -77.384803819717 38.511440198625074, -77.35759763591201 38.50764366230752, -77.36286913019421 38.484523396499746, -77.41726855824419 38.49210860254035, -77.42252136408737 38.46898548597851, -77.42777106476895 38.44586157501858, -77.40058560136228 38.44207392920073, -77.40583997813351 38.41895025342006, -77.37866492499134 38.41515782504269, -77.38392396967534 38.39203439020452, -77.38917990877799 38.36891017335109, -77.4163394223582 38.372700547483326, -77.42158449524996 38.34957452551924, -77.4268264722816 38.326447729684816, -77.23687381019991 38.29980769944699, -77.23157756812678 38.3229272715665, -77.1501857084014 38.31142003745299, -77.15550517219515 38.28830358481838, -77.07416046251066 38.27674732596981, -77.07949997851013 38.25363323779173, -77.02529896063493 38.245902203943366, -77.03065076936079 38.22278944781176, -77.05774222480622 38.22665680989158, -77.0630831681228 38.20354224344711, -77.06842096688361 38.18042692013543, -77.12258101852123 38.18814009287539, -77.1172586460179 38.21125751036435, -77.17144475962631 38.21894962734831, -77.1767516965826 38.195830121973145, -77.2038410115415 38.199666455655695, -77.19854179583524 38.222787002614226, -77.19323945677114 38.24590679247872, -77.22034686893006 38.2497394178273, -77.21504913583834 38.27285948642662, -77.29641044906656 38.28432571608836, -77.30168497208399 38.26120253717208, -77.43730114960671 38.280191832780844, -77.44253385531337 38.25706273989742, -77.44776347598639 38.23393288951595, -77.2851248169696 38.21114072366384, -77.29039774716587 38.188016308257076, -77.2362213480829 38.18037466101147, -77.24150661017896 38.15725157203333, -77.18735619861359 38.1495888564338, -77.19265376914379 38.12646710444656, -77.11147110846836 38.114932784910906, -77.11678866137026 38.09181342695681, -77.0897407712382 38.08795813998383, -77.0950628883444 38.064839093655046, -77.06802534124017 38.06097907833864, -77.06269553560378 38.084097074994695, -77.00861304212016 38.076357614181944, -77.01395821786166 38.05324172158864, -77.01930025284814 38.03012509678447, -76.96525913343002 38.02236675435268, -76.97061337440846 37.99925151195162, -76.97596447171111 37.976135545595774, -76.9813124280751 37.953018859367226, -76.95431886111155 37.949134204482206, -76.95967133522704 37.926017860218344, -76.90570750262516 37.91823337552096, -76.91107213368437 37.89511843990602, -76.91643361946981 37.87200279679194, -76.88947099042808 37.86810403591701, -76.8948369701557 37.844988751985454, -76.81398800028374 37.83326112078829, -76.80859912503355 37.8563732074831, -76.7816471889082 37.85245141877977, -76.78704369134938 37.82934040097227, -76.79243703318866 37.8062286840414, -76.76550302468088 37.80230328137684, -76.77090082522578 37.77919193994449, -76.6901377349074 37.76738445050069, -76.69555519949174 37.74427563933096, -76.70096949514954 37.721166141438424, -76.67406904065975 37.717220970440735, -76.6794877649866 37.6941118668563, -76.68490332175551 37.67100208473791, -76.65802073612346 37.66705332786155, -76.66344071235757 37.64394394989496, -76.66885752240525 37.6208339015794, -76.67427116900828 37.59772318698438, -76.64741400367362 37.593771931773674, -76.65283205919425 37.57066163528135, -76.59914091413883 37.56274409056171, -76.60457093166734 37.539635301390696, -76.57773694782799 37.535669018279464, -76.58317135229075 37.51256066026812, -76.4758925367494 37.49664261345321, -76.48135395058446 37.47353796189248, -76.48681218196496 37.45043266472732, -76.54041604162907 37.4583987747912, -76.54585602513072 37.43529065463218, -76.57265445262958 37.43926403943063, -76.57808373381245 37.41615419329304, -76.58350985298017 37.39304371361216, -76.610295896155 37.39700920390283, -76.6048773087282 37.42012077047185, -76.6316735611046 37.42408162762145, -76.62625935386413 37.44719364588201, -76.6208419900312 37.47030502645297, -76.61542146687628 37.493415765270974, -76.64224302682517 37.497374152563175, -76.63682689430993 37.520485329144734, -76.66365868675122 37.52443907206335, -76.66906726425552 37.50132681347068, -76.72272375768567 37.50921495284498, -76.71733029714271 37.532329370750034, -76.74417010814443 37.536265924877185, -76.73878106523829 37.55938076998908, -76.68508898283163 37.55149977522988, -76.67968165490522 37.57461181017857, -76.73338887530102 37.58249496094024, -76.72799353560661 37.60560849366325, -76.8085971230412 37.617393432034866, -76.80322137986126 37.64050952443144, -76.83010215934479 37.644427432362136, -76.82473086505112 37.66754392907048, -76.85162189976398 37.671457165451926, -76.8462550621982 37.6945740607449, -76.9000603113549 37.70238543685813, -76.89470554530807 37.72550379101382, -77.0293031431922 37.74493696219967, -77.02398333262057 37.7680599437164, -77.05091841112116 37.771930381776166, -77.04560311315323 37.79505373661282, -77.07254846174565 37.79891947523188, -77.06723768429889 37.82204319765468, -77.09419330820529 37.825904232840394, -77.08888705920893 37.84902831711442, -77.14282150311087 37.85673521115003, -77.14811246127314 37.83360902508064, -77.15340031843621 37.8104821474763, -77.1264470679239 37.80663368146609, -77.13173946499214 37.783507166600245, -77.10479648083871 37.77965399402152, -77.11009340987742 37.75652784762864, -77.11538723766004 37.73340102201349, -77.06153967290959 37.72568162654252, -77.06684564213236 37.70255623429373, -76.98611690292448 37.69093718358593, -76.99144259836604 37.66781429504149, -76.93765185402617 37.66004164811283, -76.9429896360738 37.63692021718648, -76.9161058297219 37.63302634183267, -76.92144808496258 37.60990531287491, -77.02896878103817 37.62544210730796, -77.02365691031748 37.64856738525378, -77.1043478936518 37.66016284938141, -77.09905574065884 37.68329063466732, -77.12596560022627 37.68714534941175, -77.12067796687965 37.710273521250116, -77.17452079096657 37.71796780323201, -77.17979318350916 37.69483752908803, -77.20671090017434 37.69867499241944, -77.20144613144403 37.72180631535564, -77.25530465161081 37.72946607787493, -77.2605541659099 37.70633266207634, -77.26580060783111 37.68319857906608, -77.21197258819572 37.67554300235499, -77.21723119818223 37.652410349234536, -77.16342884610737 37.644733869868084, -77.1686996011395 37.621602657171344, -77.17396727517463 37.59847078964319, -77.120205795447 37.590775532471355, -77.12548558592073 37.56764512005022, -77.0986163637558 37.5637899324954, -77.10390066014112 37.54065992879916, -77.07704164377459 37.536800057953855, -77.07174975981064 37.55992900474079, -77.04488577758893 37.55606233758965, -77.05018524686078 37.532934449285136, -76.86226410675658 37.50571459725314, -76.86761348690906 37.48259352022418, -76.81396063030934 37.47476696904565, -76.81932200607908 37.45164739780812, -76.82468025658692 37.42852719265204, -76.79787290902843 37.424607473031465, -76.80323558304293 37.40148771238765, -76.74964392944784 37.393633254812656, -76.75501855660558 37.37051502194737, -76.72823424653544 37.3665802903803, -76.73361327531113 37.34346251506838, -76.70683915070978 37.339523145628505, -76.71222257336703 37.31640583358229, -76.7176028638714 37.29328790812741, -76.72298002492444 37.270169373321814, -76.77648579809414 37.27803591498898, -76.77112367239678 37.301156609934935, -76.79788804799877 37.30508238917958, -76.79253032615514 37.32820355236707, -76.78716948437024 37.35132410202371, -76.84073628353448 37.35916281429784, -76.83538739261816 37.38228489683519, -76.83003538453396 37.40540635764036, -76.85683783120022 37.409319279449356, -76.85149025160815 37.43244118725767, -76.84613955354888 37.455562465169194, -76.87295974729807 37.459471805129816, -76.87830289062137 37.43634945603427, -77.11973504761154 37.47126607896012, -77.12500701843622 37.44813352964923, -77.09817831112447 37.44427788685066, -77.10345477418852 37.421145768411414, -77.04982032139309 37.41341940797275, -77.05510882721333 37.39028878642251, -76.9479015414428 37.374771588733246, -76.95321715985898 37.351644606277844, -76.98000750468177 37.355531426411396, -76.98531248655605 37.33240276351052, -77.03888594677407 37.340157105991125, -77.03359605387566 37.36328789751776, -77.08719505931668 37.37102147103252, -77.09246985420624 37.34788855717197, -77.19966889951958 37.36328275991488, -77.19442432765997 37.38641989956109, -77.18917669726623 37.40955642507331, -77.26964859224574 37.42104824525009, -77.2644206162044 37.44418730513863, -77.31809663161312 37.4518219478754, -77.32330945276627 37.42868079414538, -77.350143751694 37.432488466841875, -77.35534595561407 37.40934565011934, -77.38217525009159 37.41314654423574, -77.37698062506483 37.43629040398062, -77.40382006937467 37.44008660477033, -77.39862999729745 37.46323088744853, -77.39343689442657 37.486374547549254, -77.3882407581346 37.50951758100755, -77.38304158579106 37.53265998375764, -77.46366646031805 37.54402661848898, -77.46884282623591 37.520881101329856, -77.44197290194882 37.51709900440383, -77.44715384448322 37.49395389301713, -77.45233176188809 37.47080815490856, -77.45750665678435 37.447661794143386, -77.46267853178995 37.42451481478608, -77.40900711328275 37.41694170357875, -77.41419113164316 37.393796187937056, -77.41937212707437 37.37065006190775, -77.39255541372717 37.36685698557591, -77.39774095757642 37.34371129478473, -77.40292347960198 37.32056500176718, -77.40810298241661 37.29741811058307, -77.4132794686301 37.27427062529131, -77.41845294084922 37.2511225499501, -77.42362340167789 37.227973888616695, -77.34332463341558 37.216579079671384, -77.33813154137427 37.23972460628001, -77.33293542562872 37.26286954701112, -77.32773628356549 37.28601389780792, -77.30095251546604 37.28220104345182, -77.3061592050461 37.25905774063764, -77.2526144753818 37.25141696222873, -77.24739269743404 37.27455816435245, -77.19384319347444 37.266892396707476, -77.19908005088384 37.2437533015731, -77.17231671175105 37.23991289239559, -77.17755805464859 37.216774263415104, -77.1508048322798 37.21292919353884, -77.14555595932013 37.23606676505013, -77.11879779705673 37.232214920337036, -77.11353833720109 37.25535084318063, -77.08677523889632 37.251492221323524, -77.09204222842423 37.228357359057824, -77.09730615480103 37.20522190720654, -77.10256702066891 37.18208586982482, -76.9956308952113 37.166606991674676, -76.99033996570434 37.18973877070014, -76.8834155152014 37.17416425872266, -76.8887364723736 37.15103676321705, -76.8085931551217 37.13929917440175, -76.8139335067939 37.11617432699409, -76.7071425413851 37.10044868807216, -76.71250972517029 37.0773275915064, -76.71787379561471 37.054205922151674, -76.69119760111523 37.0502624350046, -76.69656603016203 37.02714128287439, -76.70193134719685 37.004019566091486, -76.707293554894 36.98089728870302, -76.6806423901141 36.97695136936552, -76.68600894608981 36.95382962306877, -76.65936787137991 36.94987910357339, -76.66473876801851 36.92675789406081, -76.67010655531122 36.903636136155626, -76.64348300793604 36.8996821113709, -76.63810777823895 36.92280277840811, -76.58485372102739 36.914875494143836, -76.59024382873568 36.891757013552265, -76.61686209794793 36.895722403561905, -76.62224165311045 36.87260228468957, -76.59563081777564 36.86863798872588, -76.60101469082178 36.84551842370659, -76.65422413796763 36.8534391484052, -76.65959004363596 36.83031686056057, -76.63299143009661 36.82636043029353, -76.63836165725415 36.80323870285155, -76.61177309961589 36.79927768925291, -76.61714764069787 36.77615652789805, -76.6437287804056 36.780116447299875, -76.64909280221045 36.75699366767723, -76.67566915519077 36.76094682006415, -76.6810226660803 36.73782242770722, -76.62788740954423 36.729912637124755, -76.63325264262458 36.706789915780526, -76.60669635893913 36.70282761037456, -76.60132372210612 36.725949235840716, -76.57476266637713 36.72198016499361, -76.58014270471045 36.69885963697528, -76.55359168330016 36.694885996408, -76.55897601162812 36.6717660555938, -76.56435723336496 36.64864560700074, -76.56973535116728 36.6255246546623, -76.57511036768875 36.60240320261095, -76.54859153084035 36.59842829841629, -76.55397082595094 36.57530745145318, -76.55934702113434 36.55218611287565, -76.56472011903824 36.5290642867133, -76.5912168360596 36.5330358884919, -76.59657947393431 36.50991247789671, -76.57009012230738 36.50594197699495, -76.57545703358353 36.48281918774845, -76.58082085550544 36.459695923000695, -76.55434883993735 36.455721974138655, -76.55971692650523 36.432599340467945, -76.56508192506345 36.409476239381995, -76.53862722423628 36.40549884980481, -76.54399647870719 36.38237638951905, -76.57044383824496 36.38635267490488, -76.5758026686796 36.363228651059714, -76.54936264651566 36.35925346989978, -76.55472573029172 36.336130094968965, -76.56008573266234 36.3130062687477, -76.56544265625165 36.28988199525601, -76.57079650368071 36.26675727851315, -76.57614727756774 36.243632122537356, -76.60255067149201 36.24760178205572, -76.5972072154456 36.27072804242744, -76.59186068975781 36.29385386353263, -76.58651109181348 36.3169792413528, -76.6129390579967 36.32094657438195, -76.60759371695154 36.34407260762255, -76.63403162084614 36.34803540140543, -76.62869054412559 36.37116208440797, -76.70804188526665 36.38301989963364, -76.70271977505966 36.406149421060015, -76.64980158580703 36.398247662050615, -76.64446170986237 36.42137452968358, -76.63911876031173 36.44450093382137, -76.63377273453123 36.467626870439446, -76.6602525913234 36.47158386736652, -76.66559125905037 36.448456832905926, -76.71854406773511 36.456351678086165, -76.72386494825612 36.43322198502795, -76.8032915502545 36.44501858323433, -76.80858729179577 36.421885151691285, -76.88801507020875 36.433627609929694, -76.88274142569612 36.456764302215134, -76.90922987377826 36.46066823157671, -76.90396056513559 36.483805543793586, -76.89868821969125 36.50694238814539, -76.87218501959727 36.50303629134623, -76.86690225281467 36.52617158013846, -76.86161644007416 36.549306393044674, -76.83510105686418 36.54539246696587, -76.82980480790859 36.56852571478754, -76.85632757877023 36.57244072603585, -76.85103566629444 36.59557457508209, -76.87756841792111 36.59948500634097, -76.87228084946072 36.62261945093878, -76.86699022857502 36.6457534034937, -76.9200930982394 36.653561591992435, -76.9148142404611 36.67669721066816, -76.94137696457726 36.68059387800412, -76.94664840996015 36.65745718058859, -76.99976677029446 36.665231342421706, -76.99451015633332 36.688370192598846, -77.04765365023323 36.696123808365755, -77.05289542394878 36.67298281171907, -77.0581341705222 36.6498413187489, -77.031575975953 36.645969493554254, -77.03681911121892 36.62282858081315, -77.01027089543976 36.618952157342314, -77.01551841181879 36.59581183050658, -77.0207629008604 36.572671019516385, -77.02600436515472 36.54952972840265, -76.97296004245426 36.54176633143156, -76.97821326826318 36.518626717405105, -76.95170234738235 36.51473760198582, -76.95695993025882 36.49159859494782, -77.14253842498792 36.51869595111004, -77.14774126872284 36.49554895605084, -77.1529411139196 36.47240149684801, -77.09993547650657 36.464691991242, -77.10514709512324 36.44154621278555, -77.02567988667012 36.42994272510804, -77.0309106298271 36.406799713826786, -77.03613836233181 36.38365625064687, -76.85090752252454 36.356398654942375, -76.85618374234842 36.33326232020939, -76.90907931850172 36.34107628323571, -76.91433781106815 36.31793733228928, -76.91959328099472 36.294797941676514, -76.92484573085777 36.27165811541716, -76.89841869140494 36.26775721404313, -76.90367546017758 36.24461804176499, -76.82443172144899 36.232884753347086, -76.81915295657956 36.25602065936516, -76.84557230094168 36.25993848520368, -76.84029783666254 36.28307505001754, -76.81387115853744 36.279156133886524, -76.80858632473718 36.30229117289305, -76.75572602463012 36.29443423192102, -76.76102552721007 36.271301378147996, -76.76632198619927 36.24816808892636, -76.77161540418928 36.22503436827375, -76.77690578376858 36.201900220206994, -76.78219312752287 36.1787656487419, -76.78747743803491 36.1556306578934, -76.79275871788457 36.132495251675394, -76.76638367581342 36.1285659842333, -76.77166923134394 36.1054312618605, -76.745304061518 36.10149746163999, -76.75059388533757 36.07836342875937, -76.75588067844197 36.05522899260873, -76.78223125677005 36.05916059918791, -76.7875077318111 36.03602466690901, -76.79278118516302 36.01288833934732, -76.76644518279944 36.00895892653538, -76.7717228991924 35.98582330462935, -76.77699759514998 35.962687295486525, -76.8033190370587 35.96661451440676, -76.80858344072496 35.94347702504105, -76.83490016146753 35.947397529989125, -76.82964303438787 35.970536114775285, -76.82438289718102 35.99367431626919, -76.85071672927444 35.99759139108812, -76.84546086589121 36.02073029907072, -76.898150759347 36.02854976548981, -76.8929064718902 36.05169046493217, -76.91926253704844 36.05559285015791, -76.91402254423375 36.0787342432016, -77.01950145117907 36.09429184293138, -77.0247122192269 36.07114610957917, -76.99834599205923 36.06726623856562, -77.00356107897882 36.044121192399466, -77.0087731778815 36.020975754711266, -76.95607753487323 36.01320346468587, -76.96130123731025 35.99005980982337, -76.96652194902606 35.96691577151587, -77.15089876737306 35.9940051691242, -77.1457291275152 36.01715677629516, -77.17208604567317 36.021005261654416, -77.16692075080947 36.04415756010855, -77.29877948827448 36.06332087393574, -77.30390820893521 36.04016322440275, -77.27753877767361 36.036342896386806, -77.2826718735282 36.01318593011187, -77.25631225130873 36.009361037702774, -77.26144971490905 35.986204760329535, -77.23509989689151 35.98237530750404, -77.24024172080024 35.9592197246746, -77.21390170214494 35.955385715409896, -77.21904787893558 35.93223083276465, -77.22419111011985 35.909075582428144, -77.17154774261219 35.901394984006544, -77.17670260293018 35.87824151864455, -77.1503919533284 35.874393863929996, -77.15555114431334 35.851241115663804, -77.12925027472001 35.84738892042333, -77.12408380680743 35.87054059039319, -77.07147503617341 35.862817190062394, -77.07665605156102 35.83966768140748, -77.08183410555242 35.816517817243884, -77.08700920065809 35.79336760157168, -77.09218133938575 35.77021703838989, -77.09735052424028 35.747066131696556, -76.96605409527766 35.727686513334376, -76.96084865633567 35.75083198862692, -76.93458966904733 35.746938157193156, -76.92937400866056 35.77008219814589, -76.90311029929865 35.76618166889648, -76.89788440937934 35.78932426999745, -76.87161598164016 35.78541704062801, -76.86637985409858 35.80855819636519, -76.76130253928979 35.792868827163, -76.75603441875002 35.81600523579262, -76.72976421232849 35.812067776813144, -76.73503957764457 35.78893247006999, -76.74031193140902 35.76579680819852, -76.74558127617057 35.74266079519635, -76.77182975979134 35.74659494842813, -76.77708886484191 35.723457486317365, -76.7823449698135 35.700319681039026, -76.78759807724333 35.67718153658791, -76.79284818966595 35.654043056957754, -76.81907030043887 35.65796720644731, -76.8243102003102 35.63482729511342, -76.82954711406046 35.61168705655693, -76.8557573181508 35.61560341163824, -76.86098403373907 35.592461750848386, -76.86620777207199 35.569319770789214, -76.87142853566418 35.546177475449845, -76.87664632702737 35.52303486881848, -76.92901661493451 35.530842022206784, -76.9238132361624 35.55398682229024, -77.00240913024733 35.56565890750534, -76.99722443316222 35.5888066745448, -77.04964866170712 35.59656227621379, -77.04447545812441 35.61971190545153, -77.07069855086594 35.62358239810763, -77.06552962842011 35.64673279430348, -77.06035775688844 35.669882867018224, -77.1653329881322 35.685317498723826, -77.16018714323039 35.708471573685735, -77.15503835967002 35.73162531706866, -77.20756993622595 35.73931331435228, -77.21270421028817 35.71615741561032, -77.2178355534178 35.69300118523395, -77.22296396809678 35.66984462721799, -77.32796985377809 35.68514041752367, -77.33306634463452 35.661979243714846, -77.43808268186679 35.67718102895673, -77.43301522229477 35.70034646969919, -77.45928270899716 35.70413395521721, -77.4542196213096 35.72730013486181, -77.50677648523208 35.734860388141584, -77.51182503287329 35.7116920876974, -77.5168706971383 35.68852346330922, -77.5219134804709 35.665354518971995, -77.46940021339678 35.65780062825229, -77.47445463500551 35.634633488920024, -77.42196566481752 35.62705928772725, -77.42703170336519 35.60389396380651, -77.3745670319793 35.59629947111676, -77.37964466615146 35.573135973010686, -77.24856220140639 35.55405706229418, -77.25367309734742 35.53089862227651, -77.25878108213402 35.50773988255514, -77.23258643317061 35.50390945874737, -77.22747122725181 35.52706712133392, -77.12268849418382 35.51168517353857, -77.1278325637256 35.48853183523905, -77.10165029421077 35.484673451294384, -77.10679864273374 35.4615209024422, -77.11194406204567 35.43836806201435, -77.0857786838248 35.43450626168883, -77.09092837350164 35.41135422032852, -77.06477267496123 35.407487922565835, -77.05961579027631 35.43063887569272, -77.03345538463518 35.42676590483108, -77.02828836885476 35.44991548063655, -77.00212325973435 35.44603583436115, -77.00729747013445 35.4228873499101, -77.0124687385379 35.39973857797057, -77.01763706742548 35.376589522524334, -77.02280245927523 35.35344018755222, -77.0489388127705 35.35731546825511, -77.05409409066407 35.33416476627988, -76.89735639999208 35.31083599258424, -76.90255177170177 35.28769159150434, -76.9077441948439 35.264546922960186, -76.88164430702972 35.26064148595737, -76.88684093951744 35.2374976548933, -76.86075070607428 35.23358775147842, -76.86595154073115 35.21044476349075, -76.87114942671101 35.1873015200119, -76.84507598653678 35.18338825832942, -76.85027806623229 35.16024586751815, -76.9024131625875 35.16806462065871, -76.90759802039982 35.14491977547436, -76.93366216879413 35.148819707387815, -76.92848445132377 35.1719656536388, -76.92330379766534 35.19511135229359, -76.94938472205288 35.199007921267345, -76.94420827971395 35.22215446780017, -76.97029884451588 35.22604656878733, -76.96512662067245 35.249193957603985, -76.95995146078192 35.272341086857196, -77.14275520272032 35.299445119368976, -77.1376273068605 35.322599625630744, -77.11149787603915 35.3187432588578, -77.10635988389708 35.34189641066921, -77.13249649657998 35.34575386420318, -77.12736276942054 35.368907831107805, -77.20580900251582 35.38044995819648, -77.20069393697071 35.40360690014053, -77.25301815611058 35.41127589134308, -77.2479145855712 35.43443471278371, -77.300263062627 35.44208350758113, -77.30535221949201 35.418922533240426, -77.35769610115626 35.42654681946411, -77.36276794866089 35.40338341867013, -77.33660199035474 35.39957514295098, -77.34167815726394 35.37641253884502, -77.44632782372588 35.391607824186885, -77.44128048662327 35.41477470908014, -77.46745620945488 35.41856062433201, -77.462413215342 35.44172829950828, -77.45736734919319 35.464895694728945, -77.48355994585933 35.468678147172966, -77.47851843143367 35.49184632305774, -77.47347404396285 35.51501421099241, -77.52589546039259 35.522566575899475, -77.53092538160729 35.49939656353909, -77.5359524374843 35.47622626317802, -77.50975497637765 35.472455003584834, -77.51478639578976 35.44928548068334, -77.48859858966799 35.44550968732332, -77.49363436528512 35.42234094749317, -77.62456152535374 35.44115865442389, -77.62955833120293 35.41798433886411, -77.47249633395751 35.39539267318316, -77.47753359127294 35.37222445004374, -77.48256798382144 35.34905595889474, -77.48759951402062 35.32588720371609, -77.53990057603343 35.333433745746134, -77.5449148456198 35.31026260254225, -77.54992626533983 35.28709120321787, -77.55493483759722 35.263919551750256, -77.6856217013912 35.28267223708386, -77.690591448724 35.25949504476977, -77.69555837252877 35.23631760814815, -77.70052247518647 35.213139931193936, -77.64828369017643 35.205661948335475, -77.64330520480891 35.22883751286038, -77.51271431420501 35.21003960660401, -77.5076970595823 35.23320962226788, -77.50267695465804 35.25637939378631, -77.47655163956793 35.25260094283403, -77.47152149231137 35.27576939983179, -77.44539141154165 35.271984300637456, -77.44035121394819 35.29515143760919, -77.4142163710088 35.29135968783125, -77.40916611507166 35.31452549927146, -77.35688934965597 35.30692311124353, -77.36195398578225 35.283759443545144, -77.33582644996675 35.27995095061963, -77.34089539266743 35.25678810122705, -77.3147774801669 35.25297510467175, -77.31985072219032 35.22981307918438, -77.29374242830966 35.225995582968565, -77.29881996241447 35.202834386984, -77.32492108482514 35.20665080574183, -77.32998857049591 35.18348828831756, -77.27780310141435 35.17585203419151, -77.27272128245905 35.19901239507727, -77.26763657894234 35.22217251202838, -77.2154322266346 35.21450964916031, -77.2205312627909 35.1913516950015, -77.22562740679761 35.16819349695521, -77.25171403068995 35.17202555056391, -77.25680012727521 35.14886603037101, -77.26188334036222 35.125706274209556, -77.23581102809321 35.12187638508542, -77.24089851024083 35.09871747920201, -77.39732602881652 35.12160682554321, -77.39228147823076 35.14477220145696, -77.44445774241282 35.15235958229849, -77.44948796611864 35.1291920623153, -77.47557256362997 35.13297632488909, -77.4805927725221 35.109807507024236, -77.48561013549349 35.08663846491668, -77.4906246549382 35.06346920253458, -77.49563633324759 35.04029972384485, -77.50064517281034 35.01713003281351, -77.44854993689613 35.00956664211369, -77.4435268043042 35.03273419200645, -77.43850082539187 35.05590152960127, -77.38638665697368 35.04831159552563, -77.39142692836833 35.0251464053319, -77.33933673109516 35.017536370142075, -77.34438842539097 34.99437312144355, -77.31835409959967 34.99056084187403, -77.32341006642416 34.96739846418911, -77.14128779099433 34.940564521832286, -77.13618196040126 34.963719300593674, -77.16219922851998 34.96757047065174, -77.15709762978598 34.990726131604006, -77.10505130315609 34.98301605680354, -77.09993256913687 35.0061693236461, -77.07390596579305 35.00230486242151, -77.0790318204561 34.979152688966636, -77.08415477603535 34.95600030352278, -77.03213741537117 34.94825910253739, -77.03727169439448 34.92510870065071, -76.95928544309281 34.913458580113556, -76.96443812384071 34.890311273444574, -76.96958789409888 34.86716376677738, -76.97473475630521 34.8440160640696, -76.97987871289496 34.82086816927764, -76.9850197663007 34.79772008635698, -76.99015791895232 34.77457181926189, -77.068016517601 34.7862021433883, -77.06289961242463 34.80935371004455, -77.05777981766965 34.832505092463386, -77.08375176077458 34.8363729849312, -77.08886446520341 34.81322050582583, -77.11483176474881 34.8170817608739, -77.10972615269672 34.84023533509231, -77.10461765611188 34.86338872107623, -77.13060159184681 34.867246621644775, -77.12549731021267 34.89040090893479, -77.09950627257582 34.886541914869255, -77.09439199966737 34.90969491251391, -77.14639073486372 34.91740953896064, -77.15149079443026 34.89425435593877, -77.22948589480596 34.905781406564174, -77.22440717062304 34.92893985584596, -77.3544832392705 34.9480460032695, -77.35952636365289 34.92488214171822, -77.28149480303065 34.91343835699497, -77.28655643027957 34.89027754178171, -77.26055787499249 34.88645292614768, -77.26562375193144 34.86329300266687, -77.29161519680392 34.86711653422924, -77.29667110500225 34.84395533829536, -77.27068676679384 34.840132890825565, -77.27574692197845 34.81697259458026, -77.24977210923218 34.81314568646206, -77.25483650427726 34.789986295477036, -77.25989804069442 34.766826728018124, -77.28585866289639 34.770651464698304, -77.28080421988146 34.793812117886404, -77.30677435600215 34.79763239710915, -77.30172415727054 34.82079395793679, -77.37967036666105 34.83222477148444, -77.38469925572645 34.809059967708, -77.38972530488545 34.7858949873562, -77.41569798781227 34.78969200803683, -77.41067904216695 34.81285806624024, -77.40565726036624 34.83602394784806, -77.4316465607227 34.83981757548255, -77.42662905342537 34.86298435277436, -77.50463271375388 34.874335154653586, -77.49963373179621 34.89750496660168, -77.5776803359212 34.90880899234238, -77.58265793727311 34.88563597540278, -77.58763272406782 34.862462773812425, -77.56162905074657 34.85870245510483, -77.5666081466808 34.835530139615365, -77.57158442901245 34.81235764740965, -77.51961271390152 34.804824627100594, -77.52460040660183 34.7816541005337, -77.52958528290097 34.75848340519965, -77.55555573125118 34.76225055011445, -77.56053069121357 34.73907861993847, -77.58649641797388 34.74283915004379, -77.59146146946425 34.719665990516326, -77.53954659573311 34.71214152404035, -77.54452303697836 34.688970346117536, -77.49263187441063 34.68142585482505, -77.4976196848044 34.65825666884114, -77.47168476636264 34.654477188710246, -77.47667684598444 34.63130892858466, -77.48166611212139 34.60814052344827, -77.48665256712643 34.5849719772468, -77.49163621334989 34.56180329392477, -77.49661705313956 34.538634477425695, -77.50159508884055 34.51546553169187, -77.55338243390541 34.523006065154036, -77.55834354792087 34.49983484581717, -77.56330186996395 34.47666350509211, -77.58918497564329 34.4804233350919, -77.59413345254356 34.457250805094375, -77.64589262996317 34.46475174545401, -77.6508242137827 34.441576962980015, -77.65575302375908 34.418402070882465, -77.66067906220799 34.395227073097985, -77.71240532497016 34.40269950891466, -77.71731449915752 34.37952227664204, -77.72222091386266 34.356344946520146, -77.74807346199157 34.3600707516153, -77.752970076486 34.33689226354483, -77.77881791416448 34.340611485109854, -77.77392834464845 34.363791035634655, -77.76903602537718 34.38697049221206, -77.74317409402852 34.38324914575418, -77.73827197029728 34.40642744202778, -77.7641409540539 34.41014985090802, -77.75924312837937 34.4333291077874, -77.78512150549088 34.437047052486605, -77.7802279849658 34.46022726442406, -77.80611575990174 34.463940740993365, -77.80122655162891 34.48712190243932, -77.79633458955324 34.51030295022279, -77.791439871371 34.533483880403715, -77.78654239477585 34.556664689040964, -77.781642157459 34.57984537219229, -77.77673915710902 34.60302592591423, -77.85454391959155 34.61415218250301, -77.85942564966888 34.590968460867636, -77.86430462795565 34.567784609750326, -77.89023003888956 34.57148017431924, -77.89509918118607 34.54829514481706, -77.8999655800413 34.52510999370259, -77.84814542394565 34.51771754079785, -77.8530232377347 34.49453437935471, -77.8789250750882 34.49823231894075, -77.88379306921564 34.47504798932418, -77.88865832304127 34.45186354993437, -77.86277062861006 34.44816771931964, -77.86764021028492 34.424984228605254, -77.91940378690882 34.43236825194448, -77.9242565029302 34.40918255187557, -77.97601521088923 34.416542355509314, -77.9711766288076 34.43973015673119, -77.96633532220396 34.46291785600711, -78.01813155318258 34.470259730903145, -78.01330167640143 34.493449419061704, -78.00846907802764 34.5166389973646, -78.03438481962533 34.52030372377767, -78.03921033304344 34.49711310047911, -78.06512129400943 34.50077124526879, -78.06993700644861 34.47757946866714, -78.09584318349947 34.48123103421687, -78.09103455611961 34.50442385266829, -78.14286797104455 34.51171245225253, -78.14766242254119 34.48851755484619, -78.22540844571303 34.49940579823203, -78.22063527241595 34.52260380220609, -78.27249155545073 34.529836993730704, -78.27725053372676 34.50663692662371, -78.28200683023535 34.48343675343909, -78.25609174246449 34.479824990590885, -78.26085245038865 34.45662574607577, -78.23494672667499 34.45300947608709, -78.2397118388382 34.42981116579457, -78.26561047727354 34.43342640337782, -78.2703658253617 34.41022696643475, -78.27511849689321 34.38702743918305, -78.27986849410573 34.363827825558225, -78.25399108899474 34.36021568528342, -78.2587454844042 34.337017021685924, -78.26349720622028 34.313818279597484, -78.185921003493 34.30295489044412, -78.18114809343079 34.32615052559447, -78.17637249856114 34.34934608229811, -78.12463815740088 34.34207203606332, -78.1294278757346 34.3188785585327, -78.1342149017953 34.29568500258504, -78.13899923783029 34.272491372151215, -78.11315665792307 34.26884918395469, -78.10836527047255 34.292041772399976, -78.10357118926956 34.31523428637377, -78.07771678861 34.31158448947531, -78.08251792304748 34.28839301905683, -78.05667286267807 34.2847387433161, -78.06147834724001 34.26154824359199, -78.06628113285562 34.238357673354905, -78.07108122177578 34.215167036532826, -78.09690515049668 34.218818176776644, -78.10169550851897 34.195626432102344, -78.17915984934781 34.20654361777845, -78.18392640927247 34.18334868822244, -78.18869029408587 34.16015370380378, -78.19345150601774 34.13695866844672, -78.16764888904147 34.13332824532404, -78.16288064610444 34.1565222401904, -78.13707326747237 34.15288526214966, -78.14184853952378 34.129692309355676, -78.14662113350494 34.10649930957292, -78.12083007810506 34.1028589051842, -78.12560701606073 34.07966690601461, -78.22875674677695 34.094191292271574, -78.2335029316493 34.070995088684946, -78.28507730480334 34.07822214452663, -78.28980678762822 34.05502383249979, -78.34137610847819 34.06222677702527, -78.34608889879843 34.039026366757504, -78.35079904806958 34.01582592901079, -78.35550655849016 33.99262546770216, -78.38127352206301 33.99621558056776, -78.37657302795132 34.01941707296048, -78.40234924204135 34.023002708289894, -78.40704271798458 33.99980018639643, -78.43281414311471 34.00337928444067, -78.43749797348879 33.980175714948416, -78.48903346060996 33.98731533359267, -78.49370063684188 33.96410969720424, -78.51946469070676 33.96767022105562, -78.5241222387135 33.94446354959198, -78.52877717882896 33.92125687015534, -78.63179935466327 33.93543572825478, -78.63642364249847 33.91222496771429, -78.61067181002771 33.90868952930166, -78.61530051980066 33.8854797854626, -78.66679235641922 33.89254312428708, -78.66217766983539 33.91575490032929, -78.65756039821535 33.93896667616799, -78.70908906281583 33.9460120469009, -78.70448324933784 33.969225844442015, -78.73025788948983 33.97274127632239, -78.73485667756715 33.949526468250966, -78.73945288959897 33.9263116560312, -78.81674774988748 33.93681883311527, -78.81217261380733 33.9600366674415, -78.83794894603453 33.963529043115614, -78.84251705317246 33.94031020459361, -78.84708260128409 33.91709136579313, -78.89861365784897 33.924055569401254, -78.90316260065052 33.9008347305616, -78.92892434593196 33.90430756598918, -78.92438243003836 33.92752940428443, -79.0274790711346 33.94136961411248, -79.03199286144849 33.918143793871955, -79.0577653581262 33.92158906877685, -79.06226958760215 33.89836226448311, -79.08803719115275 33.90180103518436, -79.09253186757338 33.878573252317075, -79.11829457500275 33.88200552126433, -79.12277970614811 33.85877676530276, -79.12726232607976 33.83554802851521, -79.07576714723993 33.82868193548633, -79.0802612978507 33.80545520014541, -79.10600080299712 33.80889001099762, -79.11048542383655 33.785662312678454, -79.16195678130704 33.79251343734197, -79.15748619636857 33.81574311086637, -79.15301310811822 33.83897281137063, -79.28179881807739 33.85601406050112, -79.28623676706692 33.83277944984394, -79.31199321373366 33.836170184400295, -79.3164216486626 33.81293462340692, -79.34217316764095 33.81631886954974, -79.3465920962925 33.793082363699384, -79.35100855187287 33.76984589257774, -79.3252710839869 33.766463597821044, -79.3296920885068 33.743228141039054, -79.30396373703655 33.73984131561618, -79.30838928335763 33.71660687868472, -79.3598340520509 33.723373070138784, -79.3642431007583 33.700136726627456, -79.36864968461401 33.676900433456936, -79.34294027419726 33.67352204157446, -79.34735140031884 33.65028677838346, -79.32165108447043 33.646903862229095, -79.32606674574112 33.62366963452224, -79.35176006197109 33.62705157333975, -79.35616626120161 33.60381643034075, -79.38185466755206 33.60719189498415, -79.37745546596504 33.63042801373708, -79.37305380566725 33.6536641945272, -79.47588425906083 33.66711884491216, -79.48025789662877 33.64387877704479, -79.48462909034895 33.62063877118459, -79.48899784225236 33.597398831228666, -79.46330812407825 33.5940463303368, -79.46768143332092 33.57080742958565, -79.47205230109215 33.547568602536266, -79.49772802872184 33.55091916461205, -79.50208946733878 33.5276794457394, -79.50644847224076 33.50443980834731, -79.53211228586687 33.50778293919554, -79.52776026868327 33.53102354442102, -79.52340582149085 33.55426423112044, -79.57476758986665 33.560937874642605, -79.57910804907638 33.53769525706476, -79.63046404544129 33.5443449854408, -79.62613758104291 33.56758952752882, -79.67751576981752 33.57421918422337, -79.6818282325954 33.5509727239949, -79.68613828764072 33.52772634520114, -79.66046216973272 33.52441618327868, -79.66477681327363 33.50117084809867, -79.61344469251965 33.49453595663026, -79.6177709045619 33.47129263203799, -79.64342895566386 33.47461186342957, -79.64774577142511 33.45136767047904, -79.65206018003 33.42812357453651, -79.60077404645487 33.42148346890047, -79.60510000024483 33.39824139843618, -79.5794669727478 33.394914077790844, -79.5837974849185 33.37167307680353, -79.58812558484131 33.34843218449733, -79.5625085350574 33.34510131059181, -79.5668411845981 33.32186149713708, -79.61806340626852 33.328515831328595, -79.61374467815465 33.35175757576669, -79.60942354347873 33.37499943276353, -79.71194816736651 33.38825000044783, -79.70765251679668 33.41149580893891, -79.75894097511743 33.418090081259294, -79.75465689263532 33.44133790636209, -79.88294835943898 33.45773224033329, -79.88719750290345 33.43447966351109, -79.89144427655447 33.411227191420814, -79.89568868235868 33.387974827948575, -79.7931352873818 33.3748817426518, -79.7974052373813 33.351633289933524, -79.82303359124354 33.35491384325616, -79.82729419119983 33.33166455498565, -79.83155241809689 33.30841538699822, -79.83580827390136 33.28516634317446, -79.8102008229025 33.281888645740715, -79.80593800317112 33.305136737596904, -79.78032560170726 33.30185260481612, -79.78459538369756 33.27860546652096, -79.78886278918071 33.25535845627755, -79.73767187079311 33.24877756713454, -79.73339055317736 33.27202266546753, -79.68219380734108 33.265417945513725, -79.68648903039592 33.242174765462735, -79.6353142929454 33.23555005677815, -79.63962101811136 33.21230893333384, -79.64392534864498 33.189067945719586, -79.6694978169188 33.19238111183626, -79.67379281729362 33.16913930079208, -79.64822728652693 33.165827097809576, -79.65252683373572 33.14258639347675, -79.65682399224767 33.11934583659273, -79.68237565899612 33.12265611329613, -79.68666350426867 33.09941474458676, -79.69094896844841 33.07617353106269, -79.7675745110118 33.08606579004204, -79.76330982540604 33.109309883454294, -79.73775903805678 33.10601697148941, -79.73348505082419 33.1292602617107, -79.75904276969186 33.13255413204258, -79.7547733419085 33.15579853193698, -79.75050154009308 33.1790430792664, -79.82722839328282 33.18889759756362, -79.83147936855117 33.16565018471163, -79.85705205521482 33.168923122246085, -79.86129372564172 33.14567490482788, -79.88686146918822 33.14894141746287, -79.89109384242194 33.125692400937226, -79.89532386389085 33.10244353957219, -79.92087972379144 33.105702681, -79.91665664010539 33.12895249117472, -79.91243120832863 33.15220245650698, -79.90820342651742 33.17545257312578, -79.88262674224305 33.17219058527832, -79.87838965963772 33.195439900511566, -79.87415021942134 33.2186893592893, -79.86990841964092 33.24193895773694, -79.86566425834133 33.26518869197875, -79.89126875997816 33.26845447500339, -79.8870291987636 33.291705289946606, -79.88278727580716 33.31495623292425, -79.93403014976879 33.32147513712928, -79.93825813323434 33.29822230137395, -79.91264266636448 33.29496653791915, -79.91687526235866 33.271714775785604, -79.94248376235164 33.27496959364434, -79.94670703907153 33.251717017819416, -79.97231056871006 33.25496540806899, -79.9765245338408 33.23171202401652, -80.00212309038668 33.23495398916344, -80.00632775161056 33.21169980234682, -80.01053007365479 33.188445759056606, -80.03611669733031 33.19168036078164, -80.04030972877257 33.168425524060915, -80.0445004285923 33.14517083861053, -80.04868879871904 33.121916308302254, -80.05287484108025 33.098661937006675, -80.05705855760122 33.075407728593156, -80.08261242164596 33.07863215485079, -80.08678687766357 33.05537717393682, -80.09095901535882 33.03212236363734, -80.09512883664787 33.008867727818014, -80.12066386429322 33.012083869147936, -80.12482444389485 32.98882847401138, -80.15035450195676 32.99203821143364, -80.1462008511691 33.015294542636646, -80.17173979416266 33.0184997476133, -80.1758865145201 32.99524248193943, -80.22695639070203 33.00163461952445, -80.23108695113139 32.97837567189502, -80.25661787693272 32.98156260795377, -80.25249424809232 33.00482248526798, -80.24836832869914 33.02808254477892, -80.29946374184313 33.03444372141371, -80.29534941271106 33.05770581382986, -80.26979379371603 33.054527034949196, -80.2656702317649 33.07778837534223, -80.24010961067253 33.074603194933104, -80.23597680824302 33.09786377784411, -80.21041118771211 33.0946721933816, -80.20626913714199 33.11793201335107, -80.18069851983957 33.11473402231214, -80.17654721346364 33.13799307388007, -80.22770430704568 33.1443854399938, -80.2318417076685 33.121124527487424, -80.25741622829062 33.12431156405404, -80.26154437725587 33.10104988633324, -80.28711389162314 33.10423051818326, -80.2912327966022 33.08096808070873, -80.34236374500354 33.087311063657076, -80.34646646461437 33.064046948596875, -80.35056690462338 33.040783007995046, -80.35466506691613 33.017519245717814, -80.35876095337613 32.994255665629986, -80.33322228451344 32.99109060552226, -80.33732283133637 32.967828134787396, -80.38838822680921 32.974150939355965, -80.38430155020808 32.99741525509348, -80.38021260333721 33.020679756882394, -80.37612138431803 33.04394444085893, -80.42723612468517 33.05025088242948, -80.43131345237613 33.026984359846395, -80.43538851529274 33.00371801944731, -80.46093487729827 33.00686119302035, -80.46500073664 32.983594121759005, -80.54163047148174 32.99298805903908, -80.5456732530255 32.969718436539566, -80.59675538251241 32.975951874820346, -80.60078203882782 32.952680626645424, -80.60480645994315 32.92940957609655, -80.73247548045701 32.94488833557696, -80.73646297572161 32.92161296587845, -80.74044825791026 32.898337801520746, -80.71492456501124 32.89525479567499, -80.7189145701914 32.871980741446464, -80.7229023622682 32.848706900274614, -80.72688794306968 32.825433276015076, -80.75239084430275 32.82851357906969, -80.7563672924598 32.805239274645885, -80.78186513911629 32.80831321297988, -80.78583246226113 32.78503823384455, -80.83681990221602 32.79116792271083, -80.83286642581348 32.814444695708715, -80.82891075649707 32.83772169332633, -80.90544741586996 32.84688060175647, -80.90938229251414 32.82360092534692, -80.93489128536419 32.82664206748435, -80.93881704987959 32.803361725965324, -80.94274063801846 32.78008161291923, -80.89175221285213 32.77399742313362, -80.89568747068826 32.75071932347052, -80.89962054838512 32.72744145998144, -80.97606442690741 32.73655420901194, -80.97215210687435 32.75983474168556, -81.02313773156871 32.76588436773765, -81.0270362055651 32.74260206361286, -81.03093251960748 32.719319999514475, -81.0348266754786 32.69603817929073, -81.03871867495923 32.67275660678875, -80.98778839027759 32.66671406653162, -80.9916920517797 32.64343451704068, -81.01714937160823 32.64645762980923, -81.02104396904447 32.62317744920633, -81.02493641175468 32.59989752785685, -80.97405120882986 32.59384939551168, -80.9779552902199 32.57057151189384, -80.98185721311754 32.54729389520746, -81.00728511387217 32.550318911588825, -81.0111779923051 32.52704067755767, -80.96033779336054 32.52098697357127, -80.964242287199 32.49771079197592, -81.01506871945067 32.50376271813615, -81.01895729707987 32.480485037160406, -80.96814462422519 32.47443488882152, -80.97204480621384 32.45115926794254, -80.97594283493773 32.42788393317204, -81.00133451237122 32.430909950053106, -80.9974433553089 32.45418617452933, -81.0990557463723 32.46623936805321, -81.09518995588147 32.48951942146461, -81.12060446964603 32.49251999019095, -81.11674342879026 32.51580120759564, -81.16759165632504 32.52178776082288, -81.16374226521776 32.54507101529227, -81.1891759809093 32.54805699373755, -81.18533135868019 32.571341399733605, -81.21077377633733 32.57432280099847, -81.2069339300502 32.59760835308446, -81.28329269341342 32.60652244243762, -81.28711182067147 32.583234274056665, -81.36346598667825 32.592096637972524, -81.35966759175295 32.6153874082213, -81.38512946219865 32.618331477579524, -81.38892094340136 32.59503984324831, -81.392710326556 32.571748479719325, -81.34181601367696 32.565858340506026, -81.34561711178169 32.542568981379524, -81.2947437386683 32.536658753517194, -81.29855653288828 32.51337140903598, -81.247704105315 32.50744111029133, -81.25152857683048 32.48415579069445, -81.22611194131922 32.48118333891999, -81.22994118625937 32.45789917915086, -81.23376831616527 32.434615309350875, -81.2375933327775 32.411331733352185, -81.2414162378348 32.38804845498566, -81.24523703307395 32.36476547808071, -81.29600329594865 32.37069620388913, -81.29980824504206 32.347411786529456, -81.17294033473713 32.332548547800826, -81.17677750069824 32.30926881592526, -81.2021406446057 32.312251461316656, -81.20596883843021 32.28897116389887, -81.23132691481868 32.29194749658313, -81.23514614403544 32.26866663905678, -81.23896326845923 32.2453861021151, -81.26430942265428 32.248355249417635, -81.26811759535211 32.22507416162596, -81.29345867943172 32.22803700300102, -81.29725790792017 32.20475536979068, -81.32259391951736 32.20771190782772, -81.32638421130984 32.18442973462922, -81.40238231774399 32.1932641579173, -81.39861256764718 32.21654893762431, -81.42395564454849 32.21948375073054, -81.42771854451769 32.19619810539351, -81.43147937196456 32.17291279595172, -81.48214339667521 32.17876267034915, -81.4858884632355 32.15547597418922, -81.48963146792488 32.132189621567264, -81.46431226711205 32.129269124278444, -81.46806005012444 32.10598398141201, -81.44274943617319 32.103058921160155, -81.44650199052347 32.07977499345505, -81.47180577102701 32.082699189705885, -81.47554943151071 32.05941475297173, -81.47929103326463 32.03613067501984, -81.50458290178202 32.039047722729975, -81.50831562245722 32.01576314498905, -81.53360240651233 32.018673910756476, -81.53732625358803 31.99538883864991, -81.562607950881 31.998293325078986, -81.56632293183324 31.975007764029332, -81.5700358716099 31.951722577008663, -81.57374677188255 31.92843776782091, -81.57745563432097 31.90515334026861, -81.58116246059305 31.881869298152843, -81.60641182055399 31.884764077689024, -81.61010980925663 31.861479567286658, -81.61380576871785 31.838195449926218, -81.61749970059742 31.814911729404834, -81.62119160655323 31.791628409518253, -81.62488148824141 31.768345494060803, -81.62856934731633 31.745062986825488, -81.63225518543051 31.72178089160378, -81.6070533715675 31.718892114570483, -81.610743968338 31.69561129262142, -81.61443254387245 31.672330890256507, -81.61811909982082 31.64905091126286, -81.62180363783129 31.62577135942633, -81.72251275840719 31.637280381140368, -81.72616821705219 31.61399784013199, -81.75134297904896 31.61686075623603, -81.74769428964085 31.64014414826232, -81.77287751525397 31.643002518861014, -81.76923360159685 31.666287191295165, -81.79442529413463 31.669141012589705, -81.79078616313328 31.69242696005912, -81.86639171252375 31.70095855946444, -81.8700104977865 31.677670078146956, -81.87362730087386 31.654382024072998, -81.82324903749571 31.64870306809634, -81.82687741090656 31.625417132644206, -81.83050379822427 31.602131631988374, -81.80533073612595 31.599285748628823, -81.80896190520293 31.576001532738008, -81.81259108785757 31.552717759198558, -81.68681872448195 31.538415946667666, -81.69047969719033 31.51513687416327, -81.71562403389844 31.518007161492086, -81.71927625697083 31.4947276846695, -81.72292648424788 31.471448661494332, -81.69779564130097 31.468580082514848, -81.70145061596199 31.44530237092176, -81.67632820695607 31.44242926421182, -81.67998792215187 31.41915286955773, -81.75534000930881 31.427753480968438, -81.75897752311253 31.40447498884421, -81.76261305115706 31.38119696546903, -81.76624659505845 31.357919414612297, -81.79134713046089 31.360772970149235, -81.79497196525432 31.337495044679773, -81.79859482266835 31.3142175992741, -81.80221570431107 31.29094063769754, -81.80583461178875 31.26766416371375, -81.83090993452096 31.270508944867416, -81.83452015563168 31.247232112988858, -81.85959043264263 31.25007067504768, -81.85598692669511 31.273348354571894, -81.85238145524912 31.29662652547415, -81.87746683392166 31.299461409187515, -81.88106558531689 31.276182392232673, -81.88466237474684 31.25290386666733, -81.88825720380619 31.22962583625282, -81.8918500740879 31.206348304749152, -81.89544098718324 31.1830712759148, -81.87038917345996 31.180240622348474, -81.87398483337054 31.15696494593429, -81.92407671269915 31.16261919646535, -81.9276570159512 31.139342339862207, -81.97774210566281 31.14497344563323, -81.98130706255128 31.121695419063453, -81.98487007915229 31.09841791021999, -81.95984010487855 31.09560672172763, -81.96340787513127 31.072330575492188, -81.96697370473095 31.049054954472226, -81.97053759525141 31.02577986241639, -81.97409954826493 31.00250530307176, -81.97765956534194 30.979231280184138, -81.95266465784168 30.976418944254412, -81.95622941404896 30.95314630423678, -81.95979223395764 30.92987420814941, -81.96335311913586 30.90660265973336, -81.9669120711501 30.883331662728338, -81.97046909156516 30.860061220872453, -81.97402418194409 30.836791337902408, -82.07385363845547 30.847988396078314, -82.07738018224839 30.824715715019895, -82.08090481306267 30.80144360037483, -82.05595831621405 30.79865402752441, -82.05948768513088 30.77538332076648, -82.06301514068124 30.752113187871245, -82.06654068441193 30.728843632568434, -82.07006431786797 30.705574658586368, -82.0735860425928 30.682306269651733, -82.07710586012811 30.659038469489833, -82.02729740657234 30.65345338181601, -82.02376432864348 30.67671950183502, -82.02022933658911 30.699986210595462, -81.99531428078282 30.69718398575171, -81.99177073788893 30.720450437019583, -81.98822527430245 30.74371746956222, -81.9632985744668 30.740908223359796, -81.95974454784078 30.764174989305538, -81.95618859393916 30.787442329053963, -81.93125024440278 30.784626055603898, -81.93481284125158 30.761359561618427, -81.93837350735103 30.73809364142054, -81.94193224426125 30.714828298739096, -81.94548905354064 30.691563537301608, -81.89567035838391 30.685921761093073, -81.89923849576788 30.662659280839602, -81.90280470171089 30.639397389248813, -81.9063689777717 30.616136090043327, -81.88148195201177 30.613309756994692, -81.88505091448482 30.590049904359727, -81.88861794673721 30.566790651534347, -81.89218305032536 30.54353200223652, -81.8673174923271 30.54070289998376, -81.87088727188157 30.517445709947424, -81.87445512243796 30.49418913085302, -81.84960440133301 30.49135641586913, -81.85317691932461 30.468101305016273, -81.8567475079897 30.44484681251299, -81.83191160767043 30.442010491733367, -81.83548685525876 30.418757476443872, -81.83906017319741 30.39550508690487, -81.81423907757961 30.39266516726318, -81.81781704594877 30.369414263902343, -81.79300416518134 30.366569894025616, -81.79658677737301 30.343320482114272, -81.80016745773148 30.320071707032902, -81.77536935771465 30.31722375059094, -81.77895467343515 30.293976475911457, -81.78253805701566 30.27072984544561, -81.75775472172123 30.267878309367752, -81.76134273222236 30.244633188248333, -81.76492881028196 30.221388718719428, -81.7896990339639 30.224238531948192, -81.79327663043112 30.200993856309452, -81.79685230095735 30.177749839669985, -81.82161105823226 30.180592637175156, -81.82517825914744 30.157348423472005, -81.8287435406066 30.13410487617142, -81.80399787036757 30.131263798157693, -81.8075677723379 30.10802178066539, -81.83230690414945 30.110861998963074, -81.83586835131415 30.087619795535108, -81.88533841248417 30.09328265072336, -81.88179003929996 30.11652656873889, -81.90653403688663 30.119350919030953, -81.90299029644194 30.142596365777905, -81.92774245383005 30.145416278859532, -81.93127965064409 30.122169978803502, -81.93481494465455 30.09892435260747, -81.91007587113202 30.096106146124182, -81.9136158007069 30.072862050744664, -81.86415557095874 30.067211482960744, -81.86770666041035 30.043969780097605, -81.8924294361954 30.04679685089923, -81.89597208978016 30.023554976459852, -81.84654120989586 30.01789726479153, -81.84298550265332 30.041137424765093, -81.8182659657933 30.03829978549475, -81.81470181851253 30.061539770648263, -81.78997737845488 30.058695986777614, -81.79354805269813 30.03545686288073, -81.76883176623447 30.032608657518306, -81.77240704421907 30.009371081252787, -81.7759804018261 29.986134193442478, -81.7512787834304 29.98328243478271, -81.74769890822573 30.006518458176064, -81.72299240328638 30.003660555145295, -81.72657879478282 29.980425397769427, -81.73016326069443 29.95719093248655, -81.68078120599509 29.951462762586914, -81.68437676304644 29.9282307298261, -81.6596946954128 29.9253596029181, -81.66329482549669 29.90212914031571, -81.66689302453035 29.878899380770687, -81.64222559400008 29.8760247257935, -81.6458283577683 29.85279654528848, -81.64942919021904 29.82956907516264, -81.62477638097586 29.82669089902858, -81.62838176988173 29.80346501681637, -81.60373708455761 29.80058245099412, -81.6073470234584 29.777358161917576, -81.63198522720786 29.780239852298262, -81.63558675449679 29.757015409140408, -81.61095502897884 29.754134594178574, -81.61456110266232 29.730911751441536, -81.6884417530231 29.73953579326955, -81.6848551079255 29.762761257397234, -81.73412997898242 29.768486059423804, -81.73770366518222 29.745258855698935, -81.76233705633642 29.748112495477926, -81.7659023508952 29.72488515315657, -81.76946573673249 29.701658543300137, -81.77302721537163 29.67843266956932, -81.77658678833431 29.655207535623415, -81.75197928933487 29.652357365210644, -81.75554342283661 29.62913384199032, -81.73094400450911 29.626279285701955, -81.72737340760156 29.649501940039627, -81.653565494255 29.640904141961286, -81.65715547362113 29.617684103866704, -81.70634620498228 29.623419476852572, -81.7099213513734 29.60019844002405, -81.71349458665836 29.57697815387674, -81.73807947194307 29.579836221833823, -81.74164434551172 29.556615819609977, -81.7170659123601 29.553758622062904, -81.72063532999977 29.53053984823334, -81.74520731434026 29.533396175394728, -81.74876837994589 29.510177292837444, -81.79790429191749 29.515872472145542, -81.8014505676177 29.49265261901818, -81.80499494975732 29.469433534892275, -81.7313321497347 29.460888111133922, -81.73489395030637 29.437672405717183, -81.71034933936238 29.434814320680676, -81.71391567041132 29.41160026333819, -81.71748009918637 29.388386985825704, -81.7420118515215 29.391243327167537, -81.74556795518662 29.368029961315447, -81.7491221629019 29.34481738259635, -81.75267447617418 29.321605594646677, -81.6791418345643 29.313028725526376, -81.68271149442832 29.289820351968817, -81.65821024739799 29.28695181255675, -81.66178441328034 29.2637451134563, -81.6653566760762 29.240539215918552, -81.66892703729599 29.217334123572826, -81.6934090722004 29.220200033568585, -81.6969711358776 29.19699487362416, -81.67249549844854 29.19412984004671, -81.6760620610411 29.170926368966267, -81.55374002665884 29.156527307120875, -81.55733662762367 29.133329057886325, -81.56093131668706 29.110131628206165, -81.51203936339618 29.1043390328846, -81.51564489420123 29.08114419975394, -81.3690463542905 29.06364670906743, -81.365402598058 29.08683618377594, -81.36175690536678 29.110026481433128, -81.3581092746825 29.133217598420106, -81.35445970446918 29.15640953111647, -81.45228753106556 29.16810967446644, -81.45591158372633 29.144914162768558, -81.50482254952803 29.150731164881517, -81.50121126342395 29.173928456506285, -81.49759805584318 29.19712656038488, -81.49398292526125 29.220325472892483, -81.49036587015203 29.243525190402693, -81.48674688898781 29.26672570928752, -81.48312598023928 29.289927025917326, -81.47950314237552 29.313129136660866, -81.38150877400692 29.301449311471426, -81.37785838589885 29.324648645698314, -81.35335750529092 29.321714732885486, -81.34969876695483 29.344913958087105, -81.30068915898684 29.339028662718086, -81.30436070320665 29.315831233835027, -81.27986478728894 29.312881648828707, -81.27618684210137 29.336078177159457, -81.27250693692969 29.35927548848963, -81.26882507021679 29.38247357918296, -81.26514124040389 29.405672445601727, -81.26145544593058 29.428872084106484, -81.25776768523477 29.452072491056217, -81.23323498267142 29.449112269938663, -81.2369291594262 29.425912765267533, -81.24062136667155 29.40271402901551, -81.16707176773848 29.39380741018069, -81.17078122754269 29.37061216223827, -81.14627444876888 29.367633743611275, -81.1499883332517 29.34444017986834, -81.15370023980955 29.321247395355925, -81.15741017001186 29.298055393709365, -81.16111812542643 29.274864178562325, -81.16482410761937 29.251673753546925, -81.16852811815517 29.228484122293626, -81.14406136605469 29.225505939792843, -81.1477697864638 29.20231801594124, -81.12331108611363 29.199335530721406, -81.12702391011715 29.176149319436927, -81.10257325836969 29.173162535281502, -81.10629047969648 29.149978041726975, -81.11000572585287 29.12679435635575, -81.08556948579009 29.123804191755383, -81.08928912132362 29.10062223286784, -81.11371899840242 29.103611482789702, -81.11743029890708 29.080429424649076, -81.09300678156825 29.07744108937703, -81.09672246808675 29.054260764901414, -81.07230697934622 29.051268142953845, -81.0760270456368 29.028089557294937, -81.07974513808645 29.004911797853953, -81.00654681792714 28.995908246628787, -81.00280968731752 29.01908324804913, -80.97840726104387 29.016070749741807, -80.98215073505156 28.99289667084588, -80.98589222386076 28.969723421662753, -80.9615041629765 28.96670757499486, -80.96525000377295 28.94353608319198, -80.9689938592846 28.92036542829225, -80.9446201483087 28.917346240141264, -80.94836834795294 28.8941773513395, -80.95211456223045 28.871009306623797, -80.92775518570438 28.86798678386491, -80.93150573627734 28.844820513956403, -80.9352543014061 28.821655095309563, -80.95960104094965 28.824675763865397, -80.96334130851939 28.80151027302607, -80.93900088265625 28.798490531525033, -80.94274548159176 28.775326826201884, -80.94648809977491 28.752163982937518, -80.92216196972012 28.749140918285704, -80.9259089114652 28.72597986922648, -80.92965387238218 28.702819689383826, -80.9053420227612 28.699793308448328, -80.90909129945358 28.676634931491183, -80.91283859524647 28.653477430901127, -80.88854101070706 28.65044774054657, -80.89229261450619 28.6272920515138, -80.89604223733873 28.604137245991122, -80.89978988076275 28.580983327563825, -80.90353554633467 28.557830299815574, -80.87926476769546 28.55479917312105, -80.88301473028089 28.531647972691996, -80.85875190192887 28.528612618731486, -80.86250615541844 28.505463250723693, -80.83825127423277 28.502423673276656, -80.84200981252472 28.479276142789622, -80.84576636967468 28.45612951719717, -80.8215256923839 28.45308665776624, -80.82528652663595 28.429941878331686, -80.82904537969611 28.406798010904847, -80.80481889105899 28.4037518763428, -80.80858201353807 28.38060986370238, -80.8123431547796 28.357468770175366, -80.78813083957695 28.354419367332603, -80.7918962425713 28.331280137211664, -80.76769184863258 28.328226530659038, -80.7714615073213 28.305089169026807, -80.77522918314041 28.28195273713457, -80.77899487764323 28.258817238544605, -80.70644788220177 28.249634067412316, -80.7102302716977 28.22650234171542, -80.68605753166037 28.22343195810732, -80.68984415269162 28.2003021212031, -80.6936287845346 28.177173228130904, -80.66947016488338 28.174099609735286, -80.67325902067181 28.150972614042804, -80.69741142874541 28.154045282445594, -80.70119208687866 28.13091828770028, -80.65290137286597 28.124769722909072, -80.65669245582667 28.10164558407714, -80.66048154957939 28.078522403210865, -80.63635112533537 28.075442335755437, -80.64014442790432 28.052321069416397, -80.64393574126157 28.02920076809844, -80.66805377567655 28.03227892956442, -80.67183691112483 28.009158643874564, -80.62361490671643 28.00299910813544, -80.62740843213909 27.979881701974097, -80.60330614296149 27.976795212795764, -80.60710386213809 27.953679738273646, -80.6108995921078 27.930565242860578, -80.58681134789022 27.927475553065722, -80.59061126410772 27.90436299783457, -80.59440919112679 27.88125142874496, -80.5703349768495 27.87815854516009, -80.57413708262682 27.85504892478613, -80.57793719921818 27.83194029757856, -80.58173532817322 27.808832667067087, -80.53362893386357 27.80263734427751, -80.537437387098 27.77953263658121, -80.541243849634 27.756428932553725, -80.51720548821444 27.753325544943362, -80.52101610866335 27.730223811697627, -80.4969855820977 27.727116290946707, -80.50080035455088 27.704016533505694, -80.42873734776852 27.69466630226629, -80.43256853896844 27.67157046374109, -80.43639773033483 27.64847564276182, -80.41239238399312 27.645350655856657, -80.41622570530555 27.622257827274137, -80.42005702683514 27.59916602322606, -80.39606562808693 27.5960378933861, -80.3999010721868 27.572948090216045, -80.40373451655833 27.549859318561143, -80.35578128120429 27.54359170553987, -80.35962495285693 27.520505919142447, -80.40756596275382 27.526771581930312, -80.41139541232387 27.503684883830992, -80.36346662179653 27.497421171189565, -80.36730628957658 27.474337465186345, -80.37114395774891 27.45125480463626, -80.34719431252405 27.44811728683622, -80.35103608123696 27.42503665255355, -80.3749796278639 27.42817319304099, -80.37881330147019 27.405092633900583, -80.40275244396004 27.408223126169446, -80.40657802876015 27.38514264733891, -80.35871362158721 27.378878544717562, -80.36254939632163 27.355801078158613, -80.36638317615758 27.332724674498998, -80.3702149626397 27.30964933723156, -80.34630355230887 27.306512618662495, -80.35013942610644 27.28343932990145, -80.35397330661613 27.26036711446731, -80.3578051953799 27.237295975847534, -80.36163509393818 27.214225917527717, -80.33774966810181 27.211088056175456, -80.34158364375591 27.188020061658076, -80.31770597101996 27.18487812555854, -80.32154401798654 27.161812199811685, -80.2976740952825 27.158666192732817, -80.30151620778538 27.13560234072184, -80.3253800733485 27.13874736471769, -80.3292141386443 27.115683623754656, -80.3053563272208 27.112539582794746, -80.30919445512784 27.089477922427864, -80.26149599874213 27.083176665730587, -80.26534422903666 27.060118077015275, -80.2415035822438 27.05696086728152, -80.23764930771809 27.080018468321427, -80.21380431152376 27.0768552257515, -80.20994199210914 27.099912938382, -80.20607766918289 27.122971748382593, -80.18222227815394 27.11980147950795, -80.18609264867683 27.0967436604337, -80.1899610126956 27.073686938681725, -80.1938273717586 27.050631317725504, -80.19769172741258 27.027576801036872, -80.20155408120273 27.004523392085723, -80.20541443467265 26.98147109434033, -80.20927278936435 26.95841991126717, -80.18546136210331 26.955251541914638, -80.18932374494719 26.932202469143046, -80.14171802745582 26.92585261428942, -80.14559045253496 26.902806652028705, -80.12179616045059 26.899625172534126, -80.12567259797322 26.876581331980496, -80.12954703099102 26.853538619748058, -80.1057664651956 26.85035410679861, -80.10964490353392 26.827313524614578, -80.11352133748913 26.804274077613133, -80.11739576860293 26.78123576924734, -80.1212681984155 26.758198602968424, -80.09751334348479 26.755013062769354, -80.10138976867832 26.731978041669443, -80.07764260558965 26.72878848332552, -80.08152302049282 26.70575561232446, -80.08540143280678 26.68272389365027, -80.06166794513534 26.679531323614846, -80.06555034008734 26.65650176334829, -80.06943073258151 26.633473362242192, -80.07330912415496 26.610446123736434, -80.0771855163433 26.587420051269223, -80.08105991068055 26.564395148276954, -80.08493230869917 26.541371418194196, -80.08880271193001 26.51834886445373, -80.0926711219025 26.495327490486595, -80.09653754014441 26.472307299721933, -80.12021728039663 26.4754908479178, -80.12407575115924 26.452470841622585, -80.12793223616663 26.42945202543686, -80.13178673693986 26.406434402784715, -80.13563925499847 26.383417977088268, -80.11198332630809 26.38023843720959, -80.11583980876001 26.35722421383264, -80.16314145343244 26.363576297765036, -80.16698406665589 26.340561275924156, -80.11969430861568 26.334211194195586, -80.12354682739212 26.311199381715085, -80.09991040509848 26.308017859373113, -80.10376687987568 26.285008260814926, -80.10762137369457 26.261999876185524, -80.11147388806963 26.23899270889585, -80.15871281124258 26.245344750396644, -80.16255149271645 26.222336799060646, -80.20978524405628 26.22866690576395, -80.21361010064535 26.20565818030364, -80.2174329939333 26.182650682629877, -80.24104051443491 26.18580626695923, -80.24485552268428 26.162799003751708, -80.33927848295171 26.17536754996213, -80.34306783979687 26.15235755046225, -80.46110399473854 26.167951196336954, -80.46486177597616 26.144937507126297, -80.46861762893147 26.121925059872805, -80.44501897041813 26.1188182610849, -80.44877881951935 26.09580804152473, -80.40159825544227 26.0895814731712, -80.40536801265642 26.066574471592137, -80.38178610535972 26.063454707993152, -80.38555984340587 26.04044994533948, -80.3893316474607 26.017446438001652, -80.36576320255475 26.014323676210026, -80.36953898045527 25.991322415984033, -80.32241882486996 25.985063960458746, -80.3262044720262 25.96206594368478, -80.30265275959864 25.958930255919316, -80.30644236535217 25.935934497463272, -80.31023003146802 25.912940007644387, -80.3337699531202 25.916073709452963, -80.33754979001111 25.893079498763342, -80.361085460174 25.896207245476464, -80.36485747382547 25.87321331898671, -80.36862755802348 25.850220671395196, -80.37239571423734 25.827229306079847, -80.39591535812426 25.830349121047945, -80.39215308683566 25.853341475933572, -80.38838889044025 25.87633511315417, -80.41192194050066 25.879451945383888, -80.40816170945845 25.90244784967653, -80.50233377541971 25.914869482941487, -80.50607042633506 25.891869641918174, -80.71799912211476 25.919518933162497, -80.72168075944755 25.896511606339608, -80.79233480870634 25.905635689165603, -80.79599684754902 25.88262675232934, -80.91375582763324 25.897729332351293, -80.91012333602104 25.920743059602835, -80.93368578612623 25.92374961286073, -80.93731236467292 25.900734932256068, -81.00799141353309 25.90972188845272, -81.00438258138993 25.93273941965323, -81.0279513199082 25.93572606883551, -81.0243465586792 25.95874583096501, -81.04792278510516 25.961728448086365, -81.04432210040017 25.98475043629533, -81.06790581756958 25.987729017631608, -81.06430921500511 26.010753227067518, -81.087900425753 26.013727768894583, -81.08430791095238 26.036754194702052, -81.10790661811316 26.039724693295643, -81.10431819670637 26.06275333061632, -81.1515321690532 26.068681245302628, -81.14795378922479 26.091713027178383, -81.17156905595286 26.094670437347744, -81.16799478492207 26.117704419485882, -81.19161755526784 26.120657773050155, -81.18804739868771 26.143693950583014, -81.2116776754795 26.14664324381828, -81.20811163900983 26.1696816118753, -81.23174942507534 26.17262684105751, -81.22818751438265 26.19566739476525, -81.25183281254886 26.19860855617033, -81.2482750333065 26.221651290652485, -81.27192784639968 26.22458838055634, -81.26837420428778 26.247633290933656, -81.29203453513354 26.250566305612118, -81.28848503583902 26.273613387002495, -81.31215288726224 26.276542322731324, -81.30860753647883 26.29959157024982, -81.3322829113037 26.302516423304823, -81.32874171473193 26.325567832063506, -81.3524246157819 26.328488598720377, -81.34888757912914 26.35154216382852, -81.37257800922694 26.354458840363012, -81.36904513820734 26.377514556926986, -81.36551044633134 26.40057150049125, -81.41291989716841 26.406393487854697, -81.40939537458505 26.429453492638082, -81.43310840875553 26.43235787645921, -81.42958806898888 26.45542001800043, -81.45330864349084 26.45832029680166, -81.44979249228247 26.48138457019568, -81.47352060993497 26.484280740252586, -81.47000865303328 26.507347140591506, -81.46649488317358 26.530414751073295, -81.49023655981483 26.533307720552756, -81.48672699160919 26.556377449690334, -81.53422698521757 26.562150122918702, -81.53072764579512 26.585222874616445, -81.55448596422494 26.588102572451678, -81.55099084217154 26.6111774314343, -81.57475671783561 26.61405300190301, -81.57126581893417 26.637129963248434, -81.5677731150765 26.66020811782233, -81.61533358326211 26.665947765971634, -81.6118511480406 26.68902891726502, -81.6083669110927 26.712111255005365, -81.60488087102834 26.735194775750895, -81.60139302645595 26.758279476058075, -81.62519972654688 26.761145345620815, -81.62171612738229 26.784232123319068, -81.66934621689124 26.789950519922822, -81.66587292564556 26.81304026821958, -81.68969631650002 26.815892789349274, -81.68622728651685 26.838984603613213, -81.68275645854196 26.862077583832697, -81.70659349980716 26.86492684350821, -81.70312694057412 26.88802188134147, -81.69965858359996 26.91111807826793, -81.7473615182946 26.9168050021016, -81.75081772942383 26.893707019625026, -81.75427214887883 26.870610196333203, -81.84964764120501 26.881916219247568, -81.84621751537779 26.905016594394088, -81.84278561002462 26.928118128907492, -81.81892731573978 26.925297438795646, -81.81548754824244 26.948399243546785, -81.79162468640388 26.945572604720567, -81.78817705046905 26.968674674570305, -81.78472762478289 26.991777893317565, -81.78127640795964 27.01488225749925, -81.80515752827156 27.017711558375844, -81.80860265589116 26.994606306799252, -81.83247920303177 26.997429654058973, -81.82904016579005 27.020535791441112, -81.82559934212293 27.043643070881867, -81.82215673064628 27.066751488914228, -81.94165357048078 27.0808054274381, -81.93823968508427 27.103919386434004, -81.93482402440776 27.127034477300647, -82.00657685265791 27.135411199794902, -82.00997418096149 27.112293484381635, -82.03388867780212 27.11507469540628, -82.03049746261578 27.138193282485798, -82.10226825767374 27.146509047982057, -82.09889363362292 27.169631369208588, -82.12282633250767 27.172393993588653, -82.11945607582312 27.195518305421363, -82.16733818223528 27.20103002773267, -82.16397842815289 27.224157187426485, -82.25978493985262 27.235123020078348, -82.26312016529195 27.211992427352126, -82.28706934793391 27.214720306198487, -82.28374025752063 27.2378517531991, -82.28040943253212 27.26098431879881, -82.25644797674829 27.25825473136211, -82.25310927462802 27.281387557720716, -82.24976883213958 27.304521495669544, -82.2977177888206 27.309978992111052, -82.30104594155885 27.286843346959298, -82.32501648182085 27.28956359948378, -82.32833675688568 27.266428214835482, -82.33165530221427 27.243293945385865, -82.45146851283414 27.256810300653296, -82.44818068656302 27.279948801824634, -82.42420898326877 27.27725487562158, -82.42091329357193 27.300393649000867, -82.3969368982838 27.297693781843968, -82.3936333387563 27.32083282226884, -82.39032805610445 27.34397297104254, -82.51028612773597 27.357429740211753, -82.50700991874976 27.380575202450892, -82.50373199950867 27.403721766258986, -82.47972514991852 27.4010389394794, -82.48300923416389 27.377893214240935, -82.43501222566687 27.372513925676106, -82.43171581481008 27.39565796898769, -82.40771333457143 27.392959826402755, -82.40440903806973 27.416104124273726, -82.38040185598331 27.413400032557007, -82.37708966740757 27.436544579817557, -82.44913410311398 27.44464406750701, -82.4458386975286 27.46779223608165, -82.3737757489873 27.45969021796389, -82.37046009937424 27.482836943498178, -82.34643587680779 27.48012520661126, -82.34311231975583 27.503272169287598, -82.33978702568943 27.526420212311702, -82.36382360117 27.52913364273028, -82.36050274987541 27.5522836094236, -82.33645999325391 27.549569332180557, -82.33313122109313 27.572719525389495, -82.32980070784956 27.595870788432094, -82.35385583613231 27.59858675944058, -82.35052977097202 27.621739935749254, -82.30240861183887 27.616301180890325, -82.2990684198484 27.63945372449917, -82.2957264795603 27.662607327373667, -82.2923827896091 27.685761986000642, -82.3405411260357 27.6912058277498, -82.33720809003574 27.714363234396277, -82.33387330792029 27.737521689839003, -82.33053677832429 27.76068119055917, -82.32719849988126 27.783841733036304, -82.32385847122332 27.80700331374817, -82.32051669098115 27.83016592917085, -82.22405693603648 27.819237363021116, -82.22068852201134 27.842397610784978, -82.21731834104187 27.865558886059652, -82.21394639174511 27.88872118531675, -82.26221061920013 27.894200841966345, -82.25884935720356 27.917365864510316, -82.28298994517631 27.9200988358272, -82.27963315182792 27.943265724422755, -82.30378146798171 27.945994403487585, -82.30042914939906 27.96916315307576, -82.29707506960713 27.992332912658945, -82.29371922722522 28.01550367869942, -82.29036162087117 28.03867544765777, -82.31453640384376 28.04140236865561, -82.31118328375548 28.064575983032874, -82.30782840010502 28.08775059327906, -82.40459249479102 28.098613519670444, -82.4079223475259 28.075435541094407, -82.45630079687756 28.08083440610785, -82.45961638268928 28.057655749033884, -82.48380156749688 28.06034661619904, -82.4871091536118 28.037168123925998, -82.51128955584595 28.039853005058394, -82.50798822748835 28.063032330553128, -82.53217635996249 28.065712891533526, -82.52887955697865 28.088894048376176, -82.60147155548421 28.096907290840164, -82.59819182039116 28.120091929341985, -82.64660634559316 28.125409954837064, -82.64333743115857 28.148597235130143, -82.64006679508734 28.17178550467857, -82.63679443602607 28.19497475993194, -82.63352035261988 28.218164997337976, -82.60928724320775 28.215505269165114, -82.6060051470415 28.238695661309002, -82.60272132060643 28.26188702846312, -82.57847710202915 28.259220483563105, -82.57518525163802 28.282411996643134, -82.57189166503996 28.305604477584755, -82.56859634086824 28.328797922827633, -82.54433471003227 28.32612372803353, -82.54103134610611 28.34931730679031, -82.53772623864877 28.37251184269038, -82.56200047432951 28.375187691967472, -82.5586999292218 28.398384008735267, -82.55539764105902 28.421581275546167, -82.55209360846723 28.44477948883136, -82.54878783007108 28.46797864502036, -82.52448834601633 28.46529948639334, -82.52117450027204 28.48849875449759, -82.51785890273408 28.511698958328505, -82.5145415520203 28.534900094310768, -82.51122244674717 28.55810215886736, -82.50790158552961 28.58130514841969, -82.5045789669812 28.604509059387336, -82.50125458971397 28.62771388818841, -82.49792845233858 28.650919631239162, -82.52227858842448 28.653605410064063, -82.51895703565938 28.676812891441095, -82.5156337232568 28.70002127992545, -82.51230864982546 28.723230571928276, -82.50898181397254 28.7464407638591, -82.50565321430388 28.769651852125822, -82.5023228494238 28.792863833134557, -82.49899071793514 28.816076703289944, -82.47459609066753 28.81338513020933, -82.47125582223389 28.836598058046366, -82.46791378112188 28.859811867805465, -82.49232114953615 28.862505096650462, -82.48898370982421 28.885720612656467, -82.48564449790044 28.908937003410756, -82.51006612431598 28.911626674888666, -82.5067315220049 28.934844763167277, -82.53116103381909 28.937530045613386, -82.5278310474704 28.960749826264713, -82.52449929126267 28.983970470903973, -82.52116576379197 29.007191975922176, -82.51783046365281 29.03041433770871, -82.5422870501524 29.033097697158258, -82.5389563779934 29.05632173541384, -82.63682332972323 29.067006215361175, -82.63351651869979 29.09023438051493, -82.60904112662331 29.08757028238672, -82.60572614179976 29.110798476647233, -82.60240939188772 29.134027513323982, -82.59909087548438 29.157257388797504, -82.59577059118546 29.180488099446748, -82.62027165678624 29.18315546554888, -82.61695602984771 29.206387824810122, -82.61363863551793 29.22962101202592, -82.66267097620971 29.234943297915375, -82.65936468325872 29.258178938868404, -82.63484132879952 29.255519601307864, -82.63152683328315 29.278755249084885, -82.62821056947853 29.301991713958696, -82.70182376690704 29.309958877896214, -82.69852507398127 29.33319859335599, -82.77217105035027 29.341120974481203, -82.76888995760581 29.364363922599352, -82.76560711237333 29.38760767706379, -82.81473769156145 29.392866238132036, -82.81146601926656 29.416112402543696, -82.8360399975013 29.418734605613725, -82.8327730451541 29.441982370378646, -82.82950434617695 29.465230930645916, -82.87868262683263 29.47046276721998, -82.87542513386545 29.493713717092334, -82.8721658981982 29.516965455227837, -82.86890491843901 29.540217977980756, -82.89351572119068 29.542828397354313, -82.89025948482515 29.56608249760968, -82.8870015049488 29.589337375209062, -82.88374178016784 29.61259302650177, -82.88048030908709 29.63584944783547, -82.87721709030981 29.65910663555621, -82.87395212243783 29.682364586008646, -82.89860339321201 29.684974510811163, -82.89534318516755 29.708234015398336, -82.92000244873711 29.71083945900134, -82.91674700707833 29.734100512501005, -82.91348981890008 29.757362317799732, -82.88881752215036 29.754755287225667, -82.88555206437604 29.778017047143454, -82.88228485388771 29.801279551513115, -82.87901588928084 29.824542796669558, -82.95309595892437 29.832355175167397, -82.95634533455168 29.809089554152994, -82.95959296625773 29.785824673988728, -82.98427622552414 29.788416651560212, -82.98751558947247 29.765151727217027, -82.99075321568779 29.741887551074928, -82.99398910556121 29.71862412679659, -82.99722326048237 29.69536145804299, -83.02188190898636 29.6979450041349, -83.02510781750452 29.67468230756506, -83.02833199723254 29.65142037385922, -83.031554449553 29.62815920667378, -83.2287198524424 29.64861883100453, -83.22554949062992 29.67188623594239, -83.22237742853143 29.695154407575675, -83.21920366478511 29.718423342246727, -83.21602819802774 29.741693036296194, -83.19135136909685 29.739150950092274, -83.18816766899666 29.762420625685035, -83.2128510268947 29.76496348606332, -83.20967215001981 29.788234687885605, -83.20649156603551 29.811506638099015, -83.20330927357276 29.834779333038036, -83.25271955024328 29.83985382942536, -83.24954863662448 29.863128809109295, -83.24637601861946 29.886404526223615, -83.34526627186808 29.896496161644958, -83.3484126849162 29.873217376396866, -83.49675170307931 29.88819138185172, -83.49364463195242 29.911474720979328, -83.59259192074117 29.921354449146033, -83.58950944260523 29.944641526002552, -83.58642530539935 29.967929333222667, -83.56167322857125 29.96546585480641, -83.5585808562599 29.98875364015105, -83.55548681876365 30.012042148486714, -83.5523911147431 30.03533137613456, -83.54929374285737 30.058621319414133, -83.54619470176421 30.08191197464344, -83.57097968658364 30.084379196065115, -83.56788556689594 30.107671308217768, -83.56478977877097 30.13096412496985, -83.6143903673899 30.135885614456036, -83.61130611065828 30.15918062467035, -83.71055059855568 30.16896276286792, -83.70749110747359 30.19226143615716, -83.7323123451398 30.194694408076074, -83.72925781617522 30.21799451244396, -83.77891771166517 30.22284595783906, -83.77587477106623 30.246148222241906, -83.800713429845 30.24856668987616, -83.79767546948564 30.27187037321602, -83.79463586742285 30.295174739183402, -83.86919994525272 30.30240255207308, -83.86617860014489 30.325709785277347, -83.89104270058839 30.328109118812904, -83.88802636067516 30.35141775352083, -84.0372797457756 30.365706040913548, -84.03430165296378 30.389019670731816, -84.10896677557871 30.396093886172977, -84.11192491405596 30.37277811641093, -84.38572771628256 30.398297751087938, -84.38861104341956 30.374974931274238, -84.39149281038402 30.351652787081804, -84.39437301843712 30.328331322213078, -84.3972516688387 30.305010540369153, -84.40012876284725 30.281690445249478, -84.40300430171986 30.258371040551996, -84.40587828671235 30.235052329973012, -84.4087507190791 30.211734317207473, -84.4335966880019 30.214016681575778, -84.43646093506322 30.190698678170328, -84.43932363550388 30.167381379980185, -84.41449093094649 30.16510039988808, -84.4173587129493 30.14178450271615, -84.42022494733065 30.11846931812143, -84.44504440151269 30.120748914005404, -84.44790246957216 30.09743375359672, -84.47271661088354 30.099707332232217, -84.46986516382675 30.12302318310156, -84.46701217738152 30.14633975026963, -84.516670866707 30.150873682292765, -84.5195106010031 30.127555739022373, -84.52234880290048 30.104238512085107, -84.62162874158845 30.113236948828067, -84.61881704256129 30.136556908484, -84.61600382512836 30.15987758454125, -84.61318908806382 30.183198973311697, -84.63803219146463 30.18543729990911, -84.63522257237156 30.20876007688702, -84.66007360212875 30.210993747236984, -84.65726910783748 30.234317907145236, -84.68212806656238 30.236546917557618, -84.67932870391131 30.25987245511692, -84.70419559421343 30.262096801901844, -84.70698830789563 30.238770589982817, -84.73184982885672 30.240988923954127, -84.73463438678974 30.217662741015598, -84.73741744019291 30.19433726349153, -84.71256920869186 30.192120274952174, -84.71535739824219 30.16879617922576, -84.71814408218265 30.145472796279513, -84.72092926172809 30.122150129802062, -84.696102212564 30.11992982892874, -84.69889251684603 30.096608556867398, -84.70168131566004 30.073288008630485, -84.67686879421494 30.07106372960636, -84.6796627086697 30.04774458472246, -84.65485808443451 30.045515656974704, -84.65765710772868 30.022197920710024, -84.73205496021184 30.028866702300043, -84.72927578612368 30.052186466046326, -84.72649511248699 30.07550696100068, -84.77612652042868 30.07992888391742, -84.77889394914479 30.056607045368636, -84.82851717402683 30.061006318977597, -84.82576299431524 30.084329494643736, -84.90022715185737 30.090890442297926, -84.90296145044555 30.06756527310276, -84.9056942739696 30.044240835235833, -84.8808848851255 30.042060508185152, -84.88362285582892 30.018737468183943, -84.85882133962026 30.01655247895731, -84.86156445069145 29.993230842087158, -84.78718728475285 29.98664593190085, -84.78994875044755 29.963327040403065, -84.81473327060597 29.965526663352986, -84.81748664200933 29.94220784853201, -84.8670462385701 29.946589799025862, -84.86430608327777 29.96990994755104, -84.963466715232 29.978612656280994, -84.96075154091477 30.00193619886104, -84.9580349020861 30.025260483844782, -84.93322964002598 30.02309147108473, -84.93050491243834 30.04641583517744, -84.92777871447512 30.06974093429728, -85.02706021752375 30.078390282666664, -85.02435907429734 30.10171874200909, -85.0491891810091 30.103868405897437, -85.04649321664817 30.127198246153302, -85.0713311957404 30.12934322853187, -85.06864041709045 30.152674444427653, -85.06594818439625 30.176006380712106, -85.0632544964828 30.199339033696155, -85.06055935217385 30.22267239968935, -85.03569478358753 30.22052481089187, -85.03299152552611 30.243858234557095, -85.03028680518496 30.267192363829825, -85.12980575791717 30.275755861214396, -85.12712623306548 30.299093289377144, -85.12444525770731 30.322431415817668, -85.17423879693996 30.326683666544934, -85.17690642976896 30.303344251314243, -85.17957261916807 30.280005534392085, -85.18223736630468 30.256667519475798, -85.20711596698712 30.258783693690116, -85.2044578855256 30.28212235053783, -85.25423207471026 30.286339939720833, -85.25687682186482 30.263000003876364, -85.23199578650632 30.260894521971363, -85.23464576727973 30.237555930547074, -85.20977261088663 30.23544574255973, -85.21242781838629 30.2121085008411, -85.21508159064697 30.188771972227126, -85.23994143138282 30.190880879673717, -85.24258711702748 30.16754442760913, -85.24523137327546 30.14420869604633, -85.24787420128116 30.12087368867365, -85.22303430758541 30.118766701918585, -85.2256823504742 30.09543306262089, -85.22832896390982 30.072100154868863, -85.20350356162635 30.06998911553509, -85.2061553807284 30.046657584799025, -85.28061531272446 30.052972782987407, -85.27798339844935 30.07630623421876, -85.35247408049712 30.082575348333602, -85.34986066907553 30.1059114407747, -85.37469993587483 30.107991107818567, -85.37209175942225 30.13132856397455, -85.36948217348979 30.154666748088253, -85.3943359334703 30.156742338861, -85.39173159176829 30.18008187774192, -85.41659320056537 30.182152756490673, -85.41919088645312 30.158812588735472, -85.54348344165503 30.169083709456633, -85.54091904922538 30.192426997237888, -85.5657877589143 30.194465811767095, -85.5683454897915 30.17112190485057, -85.64293865445299 30.177204425816292, -85.64040091391227 30.20055018039637, -85.6378618005043 30.223896655728918, -85.61298291292009 30.221873264826066, -85.61552869425849 30.198527403772875, -85.5906576415921 30.19649928075446, -85.58810519326765 30.219844525904357, -85.58555136387874 30.243190488084327, -85.48602555203169 30.23501958083684, -85.48344365367612 30.258363776381483, -85.53321754530043 30.26246116995949, -85.53064759803534 30.285807318349384, -85.5057533865318 30.283760675517637, -85.50317536943271 30.30710690898831, -85.42847981461804 30.3009330029027, -85.42588036149168 30.324278066285576, -85.45078436996141 30.32634201278378, -85.44819019138187 30.34968840036169, -85.52292940260767 30.355849984222207, -85.52035388249335 30.379198934083597, -85.51777696634299 30.402548575061072, -85.51519865302461 30.425898903450758, -85.56507087605175 30.42998355509526, -85.5676357943002 30.406631989760733, -85.57019932250762 30.38328111186712, -85.57276146180034 30.359930925118498, -85.59767925786103 30.361963359776148, -85.59512381041121 30.38531416253231, -85.62004947288573 30.387341853810046, -85.62259822754116 30.363990436670562, -85.62514560152677 30.340639714407573, -85.62769159596081 30.317289690722326, -85.67750628860219 30.321325321819277, -85.68003753752272 30.2979747766052, -85.70493994441121 30.299983949216678, -85.70241538044334 30.3233351038973, -85.69988944871142 30.34668696089925, -85.69736214810686 30.370039516522535, -85.69483347751984 30.393392767065563, -85.71976380805866 30.395399016546026, -85.72228578206908 30.37204515811775, -85.74721057454859 30.374045439832148, -85.74972448819038 30.350691670091813, -85.87433223876401 30.360609658931146, -85.87681132473796 30.337253581058082, -85.97649126391586 30.345089104808732, -85.97403896730951 30.36844755884993, -85.92418333625727 30.364539332059863, -85.92171630634884 30.387897300018388, -85.89678348894039 30.38593454917131, -85.89430841714007 30.409292617293953, -85.84443279208477 30.405349832974927, -85.84194296532861 30.42870739775566, -85.83945178780277 30.452065650132234, -85.86440244476373 30.454040920607515, -85.86191662827845 30.47740045504889, -85.85942946241138 30.500760669684325, -85.90936106709074 30.504697491411815, -85.91183479719558 30.481336085274744, -85.91430718508532 30.457975359358784, -85.98917281602448 30.463836755797082, -85.98672057794732 30.48719925672998, -86.0116847666713 30.489142905869407, -86.01413028630876 30.46577981651667, -86.03908888151345 30.467717507508333, -86.03665008122941 30.4910811836545, -86.08658407567614 30.494941623534064, -86.08415739973022 30.518307148701982, -86.08172940561369 30.54167335047347, -86.13169477856064 30.545514624542577, -86.1341093132381 30.522147260518675, -86.15908693878809 30.524059254119148, -86.15667913518676 30.547427196828664, -86.15427002313876 30.570795812467804, -86.20425553349254 30.574605978048957, -86.20665117348538 30.551236209894686, -86.28161749774773 30.556909394734724, -86.28399163249941 30.533538583008042, -86.30897586307117 30.535418318174706, -86.31134197559216 30.51204761424764, -86.36130023579264 30.515789817871905, -86.35894759161482 30.539161654730435, -86.35659366886067 30.562534168334523, -86.40658321264426 30.566257117011016, -86.40892365632071 30.542883476962654, -86.50888869637873 30.550262565961336, -86.50657522136049 30.573638439356422, -86.55657763730183 30.5772968068209, -86.55887762277862 30.55391982652513, -86.56117635854757 30.530543523075213, -86.53618810562534 30.528718136066118, -86.53849233068449 30.505343065786256, -86.63842472526895 30.512610131304186, -86.64070075639333 30.489233544663787, -86.6429755516693 30.46585764604253, -86.6452491121008 30.442482439149472, -86.67021463748071 30.444284119352993, -86.67248023708352 30.420909061851987, -86.72240095745445 30.424495209505228, -86.72014881436412 30.447871354205546, -86.86997613401572 30.458504027285983, -86.86776317919582 30.481884090021182, -86.96769542930421 30.488867098527972, -86.96550824403273 30.512249968923896, -86.89053730477781 30.507019198561935, -86.88832868958761 30.530401172681874, -86.91332473574865 30.532150674751836, -86.91112166964886 30.55553386309779, -86.86111709657123 30.55202841443084, -86.86333366145215 30.52864628730439, -86.83833965440975 30.526886018988254, -86.83611634138359 30.55026761305939, -86.83389181942488 30.573649887824775, -86.83166608754959 30.597032839569923, -86.80665285187155 30.595265584592273, -86.80441915091677 30.61864867487958, -86.77940018763594 30.616875496462107, -86.77715851019953 30.64025871992021, -86.77491561262738 30.66364260918192, -86.82498162256691 30.667185719515654, -86.82721099010735 30.64380075913371, -86.87726758335917 30.64732123546735, -86.87948221190466 30.623935876337104, -86.90450527902723 30.625687497656553, -86.90671194226411 30.602302278265757, -86.9817669539191 30.607523219864603, -86.97958057768167 30.63091001896118, -86.97739301134166 30.65429748767376, -86.92732826531973 30.65082014596129, -86.92512596787887 30.674207229017643, -86.92292247111756 30.697594974226217, -86.94796788050263 30.699337394558086, -86.94576996032355 30.722726324810623, -86.97082316200222 30.724463874302074, -86.9730143044734 30.70107441906624, -87.02311018382011 30.704532279152122, -87.02528658267411 30.681142437317785, -87.02746179676534 30.65775325768095, -87.05249769654338 30.659473052386385, -87.05466495758644 30.63608401861272, -87.10472621490625 30.63950639040213, -87.10687876308253 30.616116991084212, -87.10903014028955 30.59272826515814, -87.05899594303924 30.589307963735003, -87.06115966936814 30.565920950066474, -87.13619217486098 30.571041767345736, -87.13404872845116 30.59443033128985, -87.18408886844776 30.59781829260457, -87.18195778689694 30.62120855905159, -87.20698609939346 30.62289496376577, -87.20486062824439 30.646286413893545, -87.20273399973084 30.669678533739464, -87.20060621290915 30.693071319582927, -87.22565583058947 30.694753857302985, -87.22353366671057 30.718147814077753, -87.32376904103931 30.724825998281908, -87.32586406816759 30.701430023205994, -87.32795795429062 30.67803471045985, -87.30291121778278 30.676374269549427, -87.305010741909 30.652980124960692, -87.30710912324369 30.62958665013461, -87.30920636271776 30.60619384879065, -87.28418091684985 30.6045295214913, -87.28628378175668 30.58113790105139, -87.26126607188516 30.579468686767544, -87.26337455509295 30.556078252557562, -87.238364579083 30.554404154893056, -87.24047867346775 30.53101491223687, -87.19047516218014 30.527651570986876, -87.1926016129258 30.50426403540349, -87.16760807778545 30.50257479740881, -87.16974012106344 30.47918846564062, -87.219714674349 30.48256053524487, -87.22183207028296 30.45917387719408, -87.22394831636487 30.435787918571517, -87.27389979469106 30.43913642487756, -87.27179703385947 30.462523398927956, -87.34675173728587 30.467507314324603, -87.34466807847907 30.490896498765217, -87.34258328700119 30.514286378984654, -87.34049736193023 30.537676951272537, -87.36550444648921 30.53932899159876, -87.36758361452772 30.515937918905912, -87.41758714062378 30.519224837891148, -87.41552148898809 30.54261690649668, -87.39051248986846 30.540975643455575, -87.38843895239056 30.564367903300404, -87.38636428674253 30.587760847810976, -87.38428849200515 30.611154473271995, -87.38221156725828 30.63454877596674, -87.38013351158074 30.65794375217692, -87.40517635820987 30.65958750108743, -87.40724763710136 30.63619202768119, -87.40931778870718 30.612797227801348, -87.4343480403997 30.614434588271887, -87.43641029536141 30.591039970095608, -87.46143472790382 30.592671442254634, -87.46348909364431 30.569277011153872, -87.48850770604348 30.57090259793518, -87.48646010848597 30.594297521300366, -87.4844113964008 30.617693125660605, -87.53447853529067 30.620930082697495, -87.5365137014182 30.597533498685426, -87.53854776030397 30.574137595690495, -87.54058071284967 30.550742377428502, -87.54261255995598 30.527347847613758, -87.5446433025226 30.503954009958974, -87.54667294144829 30.48056086817534, -87.49668696913282 30.477329788714624, -87.49872900764524 30.453938326028343, -87.50076993706035 30.430547566607792, -87.4508147204872 30.42729691805763, -87.45286802648604 30.403907851609848, -87.52778203394057 30.408774275015976, -87.52981400794799 30.38538444270485, -87.55478047868256 30.386995333922435, -87.55275524535261 30.41038565514031, -87.65265738711831 30.416777361554182, -87.6546556501842 30.393385101039065, -87.65665282856513 30.36999355497508, -87.65864892314248 30.346602727064464, -87.68360654479218 30.34818575627796, -87.68161718741754 30.371577064906493, -87.73154864955868 30.374727945992106, -87.72957169587279 30.398120929345062, -87.72759366836807 30.421514627184056, -87.77755575021261 30.424645887766513, -87.77559014935102 30.448041246458565, -87.77362348018222 30.471437312249503, -87.74862847950371 30.46987342538018, -87.74665398285742 30.49326972032135, -87.74467841252758 30.516666714933866, -87.84471793171778 30.522893711442244, -87.8466664498768 30.499494829623945, -87.82166197843017 30.49794663641053, -87.82361619796251 30.47454892364731, -87.8736125170966 30.47763898307791, -87.87555216024674 30.454241036706215, -87.85056030965362 30.452699168843765, -87.85250565299417 30.429302397298812, -87.90247673896232 30.432379812284335, -87.90054490428555 30.455777517560907, -87.89861201946489 30.47917592999247, -87.89667808364518 30.502575045871044, -87.89474309597051 30.5259748614873, -87.89280705558392 30.549375373130164, -87.89086996162753 30.572776577087136, -87.8889318132426 30.5961784696442, -87.88699260956939 30.61958104708575, -87.88505234974724 30.642984305694583, -87.88311103291458 30.66638824175207, -87.85805733272751 30.664847565969282, -87.85610816685261 30.68825170959936, -87.83104857625204 30.68670516430893, -87.82909155387968 30.71010951013486, -87.8271334645742 30.733514522223974, -87.8251743074644 30.756920196851606, -87.87533517821429 30.76001068604125, -87.87338856337247 30.783417953508177, -87.87144088633093 30.806825876079596, -87.86949214622149 30.830234450026072, -87.86754234217506 30.853643671616787, -87.86559147332157 30.877053537119238, -87.84047652047538 30.87550866557451, -87.83851776169618 30.898918705010566, -87.83655793267677 30.922329380879674, -87.83459703254127 30.94574068944498, -87.83263506041284 30.96915262696815, -87.8306720154137 30.992565189709318, -87.82870789666511 31.01597837392708, -87.82674270328735 31.039392175878582, -87.82477643439975 31.062806591819477, -87.84994608472013 31.064355193576084, -87.84798559329404 31.08777068607718, -87.82280908912075 31.086221618003805, -87.8208406665677 31.10963725068426, -87.81887116585708 31.13305348611194, -87.81690058610434 31.156470320536485, -87.99329925342948 31.16720941481667, -87.9952217625292 31.143789350341347, -87.99714321864485 31.12036988492146, -88.02233289091305 31.1218813807983, -88.02424643216852 31.09846206330848, -88.0746147125373 31.10146784383543, -88.07651348603372 31.078048228082046, -88.05133576382197 31.076548506432406, -88.05324035482914 31.053129952595828, -88.02807037292291 31.0516252517699, -88.02998077413798 31.028207765215875, -88.03189013038751 31.00479089646594, -88.03379844252726 30.981374649263774, -88.035705711412 30.957959027351425, -88.01056400031037 30.956450715428847, -88.01247706355822 30.93303617736244, -88.0627476953096 30.93604646930819, -88.06464604645734 30.912631656025006, -88.08977584930336 30.914128216744395, -88.09166633264128 30.890713588451476, -88.09355578352216 30.867299600420118, -88.09544420279018 30.84388625638496, -88.09733159128866 30.820473560079297, -88.14753921135264 30.823446824947695, -88.14566546446643 30.846860419342413, -88.17077739839094 30.84833937550515, -88.17264432340602 30.824925334519776, -88.17451022955488 30.801511945023595, -88.1763751176701 30.7780992107471, -88.1512836382987 30.776621594328336, -88.15315432002863 30.75320996556288, -88.10298758058593 30.75023939484846, -88.10487085442078 30.72682932676243, -88.12994698443497 30.728316867358334, -88.1318224296541 30.704907015830447, -88.13369685281556 30.681497834409278, -88.13557025475332 30.658089326817414, -88.13744263630042 30.634681496775986, -88.21259464197702 30.639106308034233, -88.21444563760384 30.61569781975198, -88.21629562548667 30.592290016488153, -88.1662205773066 30.58934732740176, -88.16808312190271 30.565941104204143, -88.16994465308571 30.54253557343641, -88.14492197521093 30.541057026483298, -88.14678926726849 30.517652639957056, -88.19682193391684 30.520603443585347, -88.19867467023747 30.4971988623642, -88.20052639926543 30.473794984719376, -88.2023771218207 30.450391814359914, -88.25237259993543 30.453318376493, -88.25420879559539 30.42991502919198, -88.32918806653326 30.43426312623894, -88.32737215789523 30.45766779317454, -88.35237368906918 30.459106817109145, -88.3505635603431 30.48251263170767, -88.32555526181758 30.481073171155934, -88.32373737749586 30.50447925647526, -88.32191850412475 30.527886045423127, -88.32009864089812 30.55129353428859, -88.39518701573446 30.55559965179482, -88.3933865097733 30.579009141931596, -88.39158502332299 30.602419324589448, -88.36654115997055 30.600988483369395, -88.36473190158229 30.62439892142668, -88.36292165743698 30.64781004456206, -88.41303738741613 30.650668055634156, -88.41123975336173 30.674080725342847, -88.43630566460024 30.675502053215133, -88.43451385354439 30.698915830743765, -88.43272106534512 30.722330282217893, -88.45780141544678 30.723747059903744, -88.45958739627275 30.700332179894986, -88.46137240363349 30.67691797384116, -88.46315643832357 30.65350444546448, -88.46493950113666 30.630091598485667, -88.46672159286557 30.606679436623928, -88.54186556636365 30.610890924958415, -88.54010385668833 30.634304362489114, -88.56516027401612 30.63569780723573, -88.56340440329022 30.65911235187113, -88.56164757538366 30.682527577942448, -88.53657755633813 30.68113328926873, -88.53481296409454 30.70454877107728, -88.5598897895147 30.705943481728653, -88.55813104490063 30.729360059507123, -88.6083007533368 30.732134088495943, -88.60655467866634 30.755552175623297, -88.631647561105 30.7569314884746, -88.62990735291443 30.780350659255937, -88.78052236946428 30.78851528975619, -88.78222164742277 30.76509365080457, -88.80732009787644 30.766435056058718, -88.80901162846155 30.743013678109577, -88.81070223639828 30.71959297051867, -88.73545015301397 30.715554949883163, -88.73716027582165 30.692136138097165, -88.71208463684081 30.69077971658925, -88.71380063473671 30.667361993089674, -88.68873259587617 30.66600057326601, -88.69045446161397 30.642583943393674, -88.66539402101657 30.641217528806482, -88.66712174735753 30.617801997900187, -88.69217538932389 30.61916799872388, -88.69389537977123 30.59575274297506, -88.69561443372051 30.57233817986402, -88.74569692213755 30.575052320268124, -88.7439914527048 30.598467705956068, -88.7940906767779 30.601161052157142, -88.79578255912442 30.577744850442297, -88.79747352041107 30.55432934511858, -88.74740146317171 30.55163763095232, -88.7491050765642 30.52822364172269, -88.75080776307107 30.50481035629151, -88.77582983188124 30.506158096359876, -88.77752481369279 30.48274510964423, -88.8025408854172 30.48408704462719, -88.8008526828077 30.50750043849923, -88.79916356138877 30.53091453990003, -88.82419397482589 30.532251889356424, -88.82251072101083 30.555667100113048, -88.87258745062354 30.55832640451735, -88.8709168637272 30.581743121570497, -88.97110672415504 30.58699849293905, -88.97275013640099 30.56358018317755, -88.97439265402434 30.54016257358679, -88.97603427775448 30.51674566787988, -88.95100603895364 30.515441119088543, -88.95265355311112 30.492025316669032, -89.00269722018136 30.494628224349015, -89.0010632738248 30.518044816514426, -89.02609302405614 30.51933856471877, -89.02446497669176 30.54275625691398, -89.0495022670784 30.54404499520263, -89.04788012593374 30.56746378209613, -89.07292495825776 30.568747506930382, -89.07130873056795 30.592167383188723, -89.14646808618808 30.59598728716207, -89.14806391905704 30.572566253235507, -89.14965888302262 30.549145919543353, -89.15125297879351 30.525726289799117, -89.1262195044033 30.524459547806586, -89.12781952054618 30.501041009946107, -89.10279357202324 30.49976925203569, -89.1043995013094 30.47635181138956, -89.1544385685818 30.47888915700159, -89.15603006401268 30.455471661367817, -89.20605850563858 30.457986648409268, -89.20448057305451 30.481404907537456, -89.25452548986675 30.483899060879416, -89.25296027109259 30.507318792063394, -89.27799060101552 30.508558145150374, -89.27643132096853 30.531978963770882, -89.32650771915615 30.534442211656643, -89.32805341578211 30.511020645894373, -89.3295982713172 30.487599791565998, -89.30457329414895 30.486371614927947, -89.30612409394095 30.462951848476447, -89.28110661649984 30.461718645866803, -89.28266335331944 30.438299972621007, -89.25765337387956 30.43706174756823, -89.25921604050497 30.413644172855, -89.30922316405334 30.41611447580688, -89.30767405034673 30.439532800867305, -89.3326854618564 30.440760232047666, -89.331142286447 30.464179652381127, -89.3561611909099 30.46540205732245, -89.35769758474292 30.441982265903725, -89.38271041590016 30.44319890217837, -89.38118080422105 30.466619063043154, -89.43122214495098 30.469036875799365, -89.4327381905998 30.445615980960216, -89.45775312792739 30.44681642295868, -89.45624386614992 30.470237682325983, -89.53131319575243 30.47380769947054, -89.52982347861236 30.497230761507637, -89.5548547565734 30.498410323554374, -89.55633768391596 30.474986903538728, -89.60638870901106 30.477329107714304, -89.60785725573176 30.45390569560956, -89.65789741562833 30.45622558840198, -89.65644244503896 30.4796497049674, -89.68147032186657 30.480801900386737, -89.6800213518312 30.50422708569654, -89.70505669015537 30.505374226792622, -89.70361372792847 30.52880047551455, -89.67857159281864 30.52765298627145, -89.6771210441849 30.551079598400957, -89.6756697052853 30.57450691837299, -89.80095504713373 30.58019375113865, -89.7995369619374 30.603623499693644, -89.82460281817337 30.60474497650841, -89.82319077410637 30.62817576549426, -89.87333807053611 30.630403157630777, -89.87473648454386 30.60697169361342, -89.87613413653004 30.58354093007361, -89.87753102711677 30.560110870727005, -89.85247748883641 30.559000891707278, -89.85388042286705 30.535571876939716, -89.85528259305546 30.512143573784137, -89.83024330662911 30.51102886233115, -89.8316515099255 30.487601612794663, -89.83305894694672 30.464175082282434, -89.80803389865272 30.46305564516084, -89.80944735846747 30.439630177300813, -89.81086004958384 30.41620543587072, -89.83587152466178 30.417324193160397, -89.83727666660307 30.393899841961616, -89.91229462151881 30.39722270919749, -89.91367866421446 30.373798082003272, -89.98868202317458 30.377071371893418, -89.98731832062269 30.40049699416401, -90.03733726976729 30.402652857591452, -90.03598639544515 30.426079868955306, -90.03463478609233 30.449507610528382, -90.03328244110924 30.472936078605418, -90.00825228684502 30.471859866007318, -90.00689240934582 30.495288730079462, -90.05696693516786 30.497436403141872, -90.05561991760096 30.520866638273763, -90.10571053229762 30.522993332897602, -90.10704394738848 30.499562452351597, -90.15712342102103 30.501666875918332, -90.15580361041586 30.52509839531312, -90.18085106544139 30.52614281388806, -90.18216407305643 30.502710977531102, -90.20720533107148 30.503749672070033, -90.20851082416267 30.480318239535613, -90.28361780049309 30.48340094243873, -90.28233270973823 30.506833311062554, -90.30737636041334 30.507850375130683, -90.30609737512036 30.531283771674214, -90.35620005670881 30.533302287711997, -90.35493399426446 30.55673701231511, -90.40505263574629 30.558734493491976, -90.4063050765746 30.53529916286017, -90.4075568353165 30.511864547720425, -90.38251084201649 30.51086911754909, -90.38376872289021 30.487435523790968, -90.53401245862916 30.49332517721237, -90.53279540674596 30.516760559410532, -90.58289479251792 30.518681095299048, -90.58409823104054 30.495245130092613, -90.65923104783042 30.49808449296213, -90.65804803274482 30.52152132036215, -90.73320619166498 30.524312846124218, -90.73436877929923 30.500875171314682, -90.7355307339426 30.47743821950968, -90.76057091563419 30.47835734675153, -90.75941576732708 30.501794577733946, -90.78446328890391 30.50270857398046, -90.78561163043939 30.479271065463532, -90.86073694223299 30.481979768502008, -90.8618642468541 30.458542163986195, -90.96201138119572 30.462076963112775, -90.9609112982734 30.48551564159308, -90.95981061611607 30.508955046846722, -90.95870933423424 30.532395175164737, -90.95760745213789 30.55583602283659, -90.9826727607208 30.55670725966686, -90.98376782525403 30.53326614759257, -91.00882682202722 30.53413170651316, -91.00991447577297 30.510691051046496, -91.06002034424671 30.512405407063067, -91.06109378328739 30.48896495411161, -91.03604741090942 30.488110741676184, -91.03712707319588 30.464671274976748, -91.0120880067672 30.463811913053988, -91.01317388498208 30.44037343794476, -91.18841007006108 30.446273584288544, -91.18737182546165 30.469713852513788, -91.18633301536505 30.493154851277357, -91.18529363930938 30.516596576871308, -91.18425369683223 30.54003902558625, -91.23438003387078 30.541678099272236, -91.2333531672824 30.565121764972105, -91.25842387086587 30.565933425304593, -91.25740327002615 30.58937805304131, -91.28248127126605 30.59018454096357, -91.28146694352795 30.613630125390475, -91.28045206237452 30.637076418108435, -91.27943662735296 30.660523415400014, -91.27842063800996 30.68397111354629, -91.30352645103301 30.684773154775403, -91.30453559905716 30.661325213567018, -91.30554419648222 30.637877973219, -91.3306367970335 30.63867410596489, -91.32963503758677 30.6621215877251, -91.35473493978542 30.662912537706497, -91.35373947554298 30.686360960106033, -91.37884668071173 30.68714672387319, -91.37785751905574 30.710596081558062, -91.37686781708626 30.734046132677058, -91.57785126658857 30.74014057942197, -91.5769158663444 30.76359316620429, -91.62717983777598 30.765062918839412, -91.62625764793435 30.788516636697665, -91.62533495386006 30.811971036865042, -91.72592290745658 30.814847089491543, -91.72681813897171 30.791391818947407, -91.75195930670994 30.792097027558583, -91.7510709416916 30.81555251158376, -91.75018209076201 30.83900867421308, -91.74929275352251 30.862465511715996, -91.82478055215165 30.864550418239368, -91.82564926538542 30.841092950138073, -91.92627778889161 30.84379584072043, -91.92711853879145 30.820338229764396, -91.95226977986857 30.82100015399597, -91.95310320097641 30.797543021358923, -92.00339310039843 30.7988501603711, -92.00421233426182 30.775393314415588, -92.07962942463945 30.777312667646235, -92.08042762218008 30.753855926621046, -92.10556053312435 30.7544846502559, -92.10635143483319 30.73102840864702, -92.10714190455523 30.707572860613205, -92.10793194264423 30.68411800987786, -92.1087215494535 30.660663860162874, -92.10951072533602 30.637210415188633, -92.11029947064435 30.61375767867391, -92.08520766214005 30.613130097550147, -92.0860028145773 30.589678263615117, -92.06091821104509 30.589045450799706, -92.0617197632183 30.565594524796474, -92.06252087843495 30.542144318390637, -92.0633215570521 30.51869483529476, -92.11345015317374 30.51995389153205, -92.11423675088626 30.49650475304279, -92.11502292013198 30.473056345293287, -92.11580866126077 30.449608671991527, -92.11659397462215 30.426161736843913, -92.11737886056527 30.402715543555207, -92.0923484544782 30.402089675890473, -92.09313971731281 30.37864441852451, -92.06811648011495 30.37801333393389, -92.06891411250206 30.354569017827693, -92.04389804303325 30.35393271972947, -92.0447020376409 30.3304893502182, -92.04550559515732 30.307046737354455, -92.04630871593878 30.28360488483507, -92.04711140034105 30.260163796355332, -92.09708958225939 30.26142944455748, -92.09630046799884 30.284870918643417, -92.19628831201382 30.2873381767416, -92.1955259272912 30.31078116636986, -92.19476312794984 30.334224916372417, -92.1939999136515 30.357669423052208, -92.26905564468491 30.35946479329185, -92.26831242023606 30.382910599338178, -92.31836489787955 30.384080836374707, -92.31909451749537 30.360634674296655, -92.4692191104645 30.36401455059917, -92.4685303118574 30.38746174127959, -92.41847386877386 30.386356408304152, -92.41777107974114 30.409804012018835, -92.41706790803804 30.43325236135073, -92.41636435335198 30.456701452596157, -92.41566041537007 30.48015128204991, -92.46577136476364 30.481257960251384, -92.46508068829039 30.50470886053421, -92.51520655964468 30.505794205572755, -92.51588358995724 30.482342975545897, -92.5165602515061 30.458892480037186, -92.54161001490777 30.45942670140893, -92.54094017311188 30.482877359316692, -92.56599706577548 30.483406327019306, -92.56666008756564 30.4599555083585, -92.59171046633476 30.46047890077448, -92.59105426480055 30.48392987854236, -92.59039770563966 30.507381590840332, -92.64052665886115 30.508412758191433, -92.64116956934384 30.484960732609686, -92.66622766856592 30.485468034936797, -92.66686340785687 30.462016589724094, -92.64181212962589 30.461509441565823, -92.64245433999331 30.43805888876697, -92.66749880094356 30.43856588276022, -92.66813384810867 30.41511591775077, -92.66876854963459 30.391666698399774, -92.71883109994499 30.392663839555258, -92.71945184306423 30.369215066196624, -92.72007224850547 30.345767045907593, -92.74509034497675 30.34625720275138, -92.74447674271313 30.369705372251815, -92.769501925526 30.370190269609978, -92.77010872438106 30.346741952544207, -92.77071519322588 30.323294392255182, -92.79572705248891 30.32377358897942, -92.79512738358451 30.347221295183996, -92.82014631945297 30.347695230569645, -92.8195531280977 30.371143837827955, -92.81895961386219 30.394593198171087, -92.89405888705008 30.395983405707852, -92.89348548479956 30.419433938399543, -92.91852592130992 30.419886656858505, -92.91795902262261 30.443338072941426, -92.86786478288813 30.442426946393297, -92.86728393645953 30.465878827415477, -92.86670277351894 30.489331446715966, -92.86612129380758 30.512784800587443, -92.86553949706645 30.53623888532095, -92.94076315260858 30.53759910619529, -92.94132445722354 30.514144608322617, -92.9914612014278 30.515024050168574, -92.99200854512645 30.491570015981306, -93.04213264556893 30.49242751904402, -93.04159895774055 30.51588181383192, -93.09173770093008 30.516717898589857, -93.09225773208176 30.49326334978767, -93.11732063723525 30.493673137819066, -93.11783356014881 30.470219199083576, -93.11834620368698 30.446765998659536, -93.14339569939685 30.447170122576715, -93.14390124610425 30.42371754128894, -93.16894415746775 30.424116128837127, -93.16844542863463 30.44756883135953, -93.19349538825296 30.447962124924018, -93.19398729902377 30.424509302813572, -93.24407426013373 30.42527940972099, -93.24359598604163 30.448732466067554, -93.26864661791656 30.44910951348435, -93.26817490556255 30.47256342651449, -93.29323257772946 30.47293517139252, -93.29369746758137 30.44948114535819, -93.31874853188792 30.449847361610793, -93.31920634961538 30.4263939662602, -93.34425080627842 30.426754657106496, -93.34379980768801 30.450208162164955, -93.36885129183318 30.450563546944725, -93.36929547111643 30.427109933825164, -93.36973940857746 30.40365706645703, -93.39477746268047 30.404006822561595, -93.39521434646045 30.380554598239204, -93.42024579006059 30.380898836952205, -93.41981571850147 30.40435116603673, -93.49493166483401 30.405351719965754, -93.49534129876848 30.38189908647546, -93.54540592141478 30.382538863278192, -93.54580171399897 30.359086788259354, -93.62087958160963 30.360005588100325, -93.62050421780901 30.38345794281513, -93.67057062036292 30.384043604641917, -93.67020867950265 30.407496890772773, -93.69524894670207 30.407781690786727, -93.69489362629317 30.431235813051085, -93.66984654152155 30.430950926388206, -93.66948420625853 30.45440570778484, -93.69453811231506 30.45469068109885, -93.69418240460958 30.47814629122506, -93.66912167355238 30.4778612312577, -93.66875894324163 30.501317493100274, -93.66839601516473 30.524774489604493, -93.74361968262558 30.5256139244063, -93.74396211297739 30.50215667287068, -93.76903015684827 30.502425559278638, -93.76936557148483 30.478968960696974, -93.76970080339284 30.45551310049345, -93.79475534755268 30.455776406583286, -93.79508357507542 30.432321208401678, -93.79541162388135 30.408866756011932, -93.82045267954372 30.40912448832477, -93.82077373527264 30.3856707070186, -93.87084265884519 30.386169778585927, -93.87114991789886 30.36271659860074, -93.87145700978641 30.339264175519126, -93.8464360938758 30.3390174960216, -93.84674982236531 30.315565908654005, -93.84706338026274 30.29211508558406, -93.89707814633955 30.292602738558443, -93.89677818842377 30.316053710200876, -93.99683655582812 30.316964425597785, -93.99710931244721 30.29351317657368, -94.0721340180275 30.294139244141544, -94.07188166346712 30.317590683908602, -94.07162917160606 30.341042887989616, -94.04660721064984 30.340839480825675, -94.04634777318945 30.364292383586033, -94.04608819449854 30.387746043262425, -94.04582847446179 30.41120045615442, -94.04556861296369 30.434655618559898, -94.04530860988868 30.458111526775298, -94.04504846512103 30.4815681770954, -94.14530061784592 30.482350777395748, -94.14553345507176 30.45889388917888, -94.1705899430619 30.459075935868874, -94.1708158300727 30.43561973440829, -94.1710415940807 30.412164278765083, -94.17126723518633 30.388709572642895, -94.17149275348997 30.365255619743888, -94.17171814909179 30.34180242376858, -94.19674066118147 30.341978784294078, -94.19652207421628 30.365432033970944, -94.24658101519829 30.365768629116342, -94.24637593416725 30.38922273818259, -94.2964488788123 30.389537784557163, -94.29664033460433 30.366083579615587, -94.27161062916949 30.365928809963744, -94.27180878974124 30.342475409065273, -94.2467859846459 30.34231527697788, -94.2469908426011 30.318862685466172, -94.2471955891548 30.295410858278654, -94.22218648507913 30.295245417487063, -94.22239791802042 30.271794408722798, -94.27240262507313 30.272119784926296, -94.2726003550154 30.248669448718307, -94.32259183834837 30.24897311392626, -94.32277587985305 30.225523460560538, -94.37275412123776 30.225805427695658, -94.37292448886947 30.202356467456205, -94.42288947013239 30.202616749459054, -94.42304617845889 30.179168492627895, -94.42320280170443 30.15572102228081, -94.42335933993826 30.132274342104296, -94.47328393101355 30.13251280634368, -94.47342683936438 30.109066847230718, -94.4735696701893 30.085621685658428, -94.47371242355139 30.062177325308426, -94.47385509951366 30.038733769860862, -94.47399769813903 30.015291022994134, -94.47414021949037 29.991849088385145, -94.47428266363043 29.968407969709194, -94.474425030622 29.944967670639922, -94.49933334867968 29.945078538963156, -94.49946889534071 29.921639029254855, -94.62397764065341 29.922112498492712, -94.62407941526065 29.898673670846858, -94.69876502834956 29.898893122284484, -94.69868347342594 29.92233201710592, -94.6737814875911 29.922264224518933, -94.67369314491744 29.945703925550877, -94.6736047543831 29.969144449868285, -94.69852023102867 29.96921228394797, -94.69843854348314 29.99265364862596, -94.69835681165837 30.016095829244158, -94.7482148854343 30.01621541971135, -94.74814662580323 30.03965844915133, -94.74807832915148 30.063102287180335, -94.7480099954489 30.086546930119827, -94.74794162466533 30.109992374289693, -94.74787321677059 30.133438616008217, -94.74780477173445 30.156885651592024, -94.74773628952664 30.180333477356296, -94.74766777011689 30.203782089614496, -94.74759921347489 30.227231484678516, -94.74753061957023 30.25068165885872, -94.74746198837259 30.27413260846388, -94.87248038618037 30.274338001871747, -94.87251504176167 30.25088698967406, -94.89751198662066 30.250911845584216, -94.89753983189044 30.22746160123637, -94.89756766203362 30.204012136006618, -94.89759547706251 30.180563453584647, -94.8976232769894 30.15711555765851, -94.89765106182664 30.133668451914794, -94.89767883158646 30.11022214003837, -94.89770658628116 30.086776625712517, -94.89773432592295 30.063331912619102, -94.89776205052414 30.039888004438154, -94.87282609642105 30.03986321671165, -94.87286056437752 30.016420124696634, -94.87289501365534 29.99297784494942, -94.87292944426969 29.9695363811453, -94.87296385623577 29.946095736958032, -94.87299824956868 29.922655916059785, -94.8730326242836 29.899216922121045, -94.9726145227053 29.89928361884466, -94.9726219329513 29.875845435118688, -94.99751068731354 29.875848661469288, -94.99751136071538 29.852411311051853, -95.04727540160867 29.852401635436106, -95.04728819387509 29.87583898289015, -95.04730099306633 29.899277164640484, -95.04731379918799 29.92271617701985, -95.07221602180044 29.922703264189288, -95.07223557862926 29.9461430995771, -95.09714453602963 29.946124800766636, -95.09711823543702 29.92268497097693, -95.14692262340198 29.922632243423646, -95.14688285685203 29.899193256729042, -95.17177828491388 29.899158832936536, -95.17173180345605 29.875720687407224, -95.19662047376747 29.875680897085108, -95.1966736916367 29.899119030430963, -95.2464644286949 29.899023289315416, -95.24639773806486 29.875585185275654, -95.27128632587078 29.87552926380849, -95.27121293862255 29.852092011184844, -95.29609476007406 29.852030731459855, -95.29601468348882 29.82859433556329, -95.27113959106833 29.828655596520363, -95.2710662831759 29.805220023479094, -95.2709930149131 29.781785295723484, -95.34557783768877 29.781585514183774, -95.34567127113027 29.805020180700474, -95.34576475510819 29.828455692501002, -95.37063972813722 29.828378310424988, -95.3705395188637 29.804942822330535, -95.39540772066742 29.804860091931577, -95.39530084394296 29.78142547447173, -95.44502365430802 29.781243953299292, -95.44490339948506 29.757810240422323, -95.39519402497908 29.75799170595493, -95.39508726372897 29.73455879004044, -95.39498056014583 29.711126730385793, -95.44466308470493 29.710945376127594, -95.44454302464256 29.68751423202332, -95.34520460846831 29.687855374146945, -95.3451114270953 29.664424988929106, -95.34501829601358 29.640995470935707, -95.29537562667579 29.641133774247788, -95.29545535783905 29.664563334705278, -95.27062726692039 29.6646244643032, -95.27055423576194 29.641194885082523, -95.22091135676955 29.64130102504488, -95.22085175787468 29.617872284113883, -95.24566651610199 29.61782190989212, -95.24560025652723 29.59439405895958, -95.27040829162962 29.594338342923, -95.27033537859198 29.570911387281445, -95.27026250486428 29.547485313460836, -95.27018967041471 29.524060125105763, -95.27011687521156 29.500635825859103, -95.27004411922307 29.477212419362132, -95.2452694940633 29.477268049826122, -95.24520344845067 29.453845522605704, -95.24513743839759 29.430423895413185, -95.22037612190684 29.430474145885803, -95.22031681142113 29.407053406891265, -95.22025753285159 29.383633575196182, -95.24500552485539 29.383583355655603, -95.24507146387539 29.40700317188492, -95.29458067544198 29.406886669521143, -95.29450141559636 29.383466889159244, -95.36874497297276 29.383252121069102, -95.36864578550252 29.359833317776374, -95.3685466513779 29.336415429043527, -95.39328110756595 29.336333205519466, -95.39317537721611 29.312916260311006, -95.4426308429464 29.312735851591718, -95.44251187764225 29.289319883802907, -95.44239297626878 29.26590484145536, -95.4918216489256 29.265703207440758, -95.4916895340972 29.242289156337705, -95.51639714302661 29.24218037175227, -95.51653589645053 29.265594389298716, -95.51667472445861 29.28900933590768, -95.51681362711093 29.31242520795449, -95.51695260446779 29.33584200181274, -95.59115476619925 29.335483211485244, -95.59099584123197 29.312066528177855, -95.6157231051219 29.31193629366963, -95.61555762006479 29.28852057230874, -95.61539222393601 29.265105776380416, -95.64010612502763 29.264970288192014, -95.63993417943902 29.241556463101823, -95.63976232620055 29.218143570690362, -95.68916334452018 29.217856769548725, -95.68897832137068 29.19444490192745, -95.73836574066993 29.19413687354378, -95.7381675620432 29.17072604090459, -95.76285451054542 29.17056408339334, -95.76264981453646 29.14715424428315, -95.76244522834767 29.12374535231856, -95.73777152376161 29.123907209835874, -95.73757366393568 29.100499218637317, -95.7622407518907 29.10033741111423, -95.76203638507727 29.076930424283088, -95.81135705315549 29.07659094742157, -95.8111395770463 29.05318502348893, -95.81092221748789 29.02978006114644, -95.83556918961055 29.029602451732, -95.83534534428208 29.00619850950693, -95.93390577731864 29.00543513621651, -95.93365565796516 28.98203239890351, -95.98292200816402 28.9816189475586, -95.98318532394168 29.00502155695236, -95.98344878083233 29.028425135134626, -96.00809497778299 29.028210306069276, -96.00836518104258 29.05161478300325, -96.00863552918315 29.075020221509273, -96.00890602232126 29.098426617977864, -96.03357192228992 29.09820626775968, -96.03329481702356 29.074799939370912, -96.05795397892332 29.074574337069834, -96.05767041371482 29.051169036362662, -96.05738700046884 29.027764697222405, -96.03274105199505 29.02799016008306, -96.03246439199424 29.004586716401185, -96.0321878801768 28.981184241502753, -96.03191151642373 28.957782738992176, -96.03163530061614 28.934382212472254, -96.03135923263528 28.910982665544065, -96.0559722094072 28.910757551238394, -96.05568970537647 28.88735905720426, -96.15411396639237 28.88640580964841, -96.15442280440223 28.90980400843348, -96.15473180773753 28.933203190395535, -96.2039694495277 28.932694410858403, -96.20364727282191 28.909295386388965, -96.47437075912167 28.90611843416994, -96.47397634890032 28.882721376563584, -96.44937253980908 28.88303663218453, -96.44898491869868 28.85964046366827, -96.47358214962526 28.8593253056876, -96.47318816112735 28.8359302251377, -96.52236893501221 28.835284196418353, -96.52277607237554 28.85867907676539, -96.52318342754718 28.882074947430695, -96.523591000702 28.90547180481864, -96.52399879201496 28.928869645331808, -96.59784751352623 28.927859582617227, -96.59827528758747 28.951258089979614, -96.64751997869276 28.95055795343019, -96.64707902913034 28.927159662736447, -96.6716944883496 28.926801739594307, -96.67124719075031 28.903404539201656, -96.67080013243273 28.88000832190953, -96.64619783766882 28.88036602346561, -96.64575759539129 28.856970682084672, -96.62116167800771 28.857322969007566, -96.6207282447094 28.83392850878516, -96.69449567486592 28.832856068898966, -96.69494882846894 28.856250196774575, -96.6954022244844 28.87964531493909, -96.74460578852297 28.878903385062173, -96.74413923942943 28.8555084966867, -96.76873412916706 28.85512969129581, -96.76826125674228 28.831735910554947, -96.79284935941263 28.83135192070314, -96.79237017065041 28.80795925282444, -96.76778863706913 28.808343123683223, -96.76731626994507 28.78495133427271, -96.71816569506029 28.785702942344862, -96.71770670494641 28.762311920947237, -96.76684415516772 28.761560545913717, -96.76637229253494 28.73817076219495, -96.79093413988585 28.73778724828692, -96.79045597412188 28.714398591769402, -96.78997806359565 28.691010947059514, -96.76542932289568 28.691394223024123, -96.764958215486 28.66800747474087, -96.76448735941449 28.64462174543541, -96.78902300743955 28.64423870739497, -96.78854586140174 28.620854119602285, -96.78806896978584 28.597470557941065, -96.78759233238844 28.574088025988015, -96.83662375367523 28.57330681269075, -96.83711345882334 28.596689101826925, -96.8376034251551 28.620072420661288, -96.83809365287946 28.643456765617145, -96.86262864437948 28.643057862044568, -96.86213187607673 28.61967364097065, -96.88666010242183 28.619269574578308, -96.88716341112324 28.642653670127892, -96.91169795015374 28.64224418995231, -96.91220807113652 28.6656291808631, -96.96128954108214 28.664794096810994, -96.96181302817915 28.688179847388366, -96.93726586329107 28.688600164739942, -96.9377830795594 28.711987061139997, -96.96233679476236 28.711566613321374, -96.96286084105557 28.73495439102664, -96.96338516728287 28.758343176919148, -97.01251810436139 28.757485870845688, -97.01198066408996 28.734097350835878, -97.0610995140303 28.7332191331038, -97.06054925441957 28.709831893712394, -97.05999928849859 28.68644566607159, -97.03545308922547 28.686887148005738, -97.03490996280887 28.663501798667763, -97.0343671261232 28.640117468250732, -97.03382457893667 28.61673416033452, -97.00929776209256 28.61716994510997, -97.00876203996064 28.593787527900517, -96.95972075447305 28.594642973020438, -96.9591983830869 28.571261319664906, -97.08176711209805 28.56908374994054, -97.08121237495449 28.545703806636563, -97.08065793333569 28.522324900124236, -97.05615773065419 28.522770702380384, -97.05561010581124 28.499392697597646, -97.03111617739795 28.49983308344079, -97.0305753623537 28.476455985610578, -96.93262331013432 28.478164217821025, -96.93210884389214 28.45478763599978, -96.90762675837846 28.455201374026228, -96.90711907816603 28.431825714539652, -96.90661166806866 28.408451109723636, -96.95554956531744 28.407618877057505, -96.95502941468028 28.384245589626147, -96.97949150778041 28.383821697920748, -96.97896513225727 28.36044960430494, -97.02787560079875 28.35958628043366, -97.02733650961602 28.336215521131937, -97.07623301100122 28.33533140071145, -97.07568121851251 28.311961985822887, -97.14900461729616 28.310596734569877, -97.14843364809387 28.287228817693613, -97.14786298216593 28.263861976779076, -97.14729261927086 28.24049621537846, -97.17171378308299 28.24003103837814, -97.17229062864948 28.263396654647504, -97.1967180152892 28.262926071629337, -97.19730165323482 28.286292620627655, -97.19788560134201 28.309660245574875, -97.19846985985812 28.333028942917196, -97.3207001239746 28.330594842420975, -97.32008340467789 28.30722690365069, -97.31946701301788 28.283860037242327, -97.31885094873367 28.260494246749587, -97.31823521156448 28.23712953572438, -97.39149222397876 28.235607791446714, -97.3908573811216 28.21224463818959, -97.39022287516008 28.18888257147752, -97.3414110506349 28.18990168988813, -97.34078982237679 28.16654039515541, -97.34016892362222 28.14318019407359, -97.36456203926286 28.142673578903462, -97.3651894052395 28.166033621756423, -97.46278488486548 28.163953994242654, -97.46213165226844 28.14059460070784, -97.46147876603808 28.11723630433063, -97.43709325891386 28.11776376150638, -97.43644717823875 28.094406401053163, -97.43580143996078 28.071050144845834, -97.43515604380794 28.047694996422315, -97.4345109895084 28.02434095931865, -97.38579074402533 28.025378825451728, -97.38642289920728 28.048733187140517, -97.36205589938297 28.049244414766388, -97.36268193627735 28.072600047630118, -97.33830820176063 28.07310618815658, -97.33768861840254 28.049750397092826, -97.33706936324054 28.026395717378417, -97.336450436014 28.003042152547884, -97.36080482016315 28.002536486599848, -97.36017977731127 27.97918419836409, -97.35955506528092 27.955833032068416, -97.35893068380953 27.932482991242093, -97.33459561934468 27.932988182677704, -97.3339780012589 27.90963911269203, -97.38263498419091 27.9086238106716, -97.38200483358254 27.885276191152222, -97.43064782744793 27.884240272212807, -97.43129083631868 27.907587567238032, -97.52859905597643 27.905452259643106, -97.52926813242615 27.92880001847577, -97.57793331612778 27.927700611932547, -97.57861561572945 27.951049155509548, -97.72464233223101 27.947624201518533, -97.72536361467849 27.970972798508168, -97.82273406955497 27.96858400660132, -97.82198704443925 27.94523615705295, -97.82124041450815 27.921889432818592, -97.82049417944826 27.898543837424995, -97.81974833894647 27.875199374397056, -97.69816306767676 27.878168547415576, -97.69744973249391 27.854824290248047, -97.6245139778287 27.85654247011215, -97.62382027916996 27.833198814074063, -97.55090098718799 27.83486939191468, -97.55022690664724 27.81152635532697, -97.47732414911339 27.81314935750143, -97.47666966824065 27.789806958682405, -97.42807918886126 27.790862487555195, -97.42743787709337 27.76752090784831, -97.40314861705602 27.768040668903488, -97.40251405259039 27.744700079792295, -97.40187982309212 27.721360647817683, -97.45043242853346 27.720316555748532, -97.45107946842245 27.743655660060416, -97.45172685003652 27.76699592149295, -97.5003039231728 27.765930273325257, -97.49964372532845 27.742590346126807, -97.54820680039361 27.741504138889503, -97.54753414249288 27.71816570956809, -97.5468618395486 27.694828440845704, -97.4497857300991 27.696978612068683, -97.4491393728492 27.673641832530397, -97.44849335651388 27.65030622064149, -97.49700641601292 27.64924224348089, -97.49634795782272 27.625908136899408, -97.49568984673833 27.602575204960914, -97.51993315768688 27.6020357302253, -97.51926900925885 27.578704145948894, -97.56774196992697 27.577609900395924, -97.56706541048966 27.554279841687705, -97.56638920740541 27.530950968098363, -97.59061247874838 27.530396376830982, -97.59129505858255 27.553725076006646, -97.63975343698529 27.552599915489193, -97.63905810437602 27.52927157005452, -97.63836313789768 27.505944413208976, -97.6625791138286 27.50537437725513, -97.66187814387399 27.48204859180278, -97.61345862071434 27.483183100484776, -97.61277075184657 27.459858153638265, -97.61208324489861 27.436534405869597, -97.58788575082603 27.437093501139955, -97.58720496528248 27.413770779932076, -97.63558692751765 27.412647741591012, -97.63628043235953 27.435970109148002, -97.70887012673619 27.434246011470268, -97.70958308369163 27.457569038800937, -97.75798735177847 27.45639326525878, -97.75871341422608 27.479717121568047, -97.7594398589607 27.50304217340813, -97.76016668628424 27.526368417285955, -97.80860786650054 27.525170704417143, -97.80786829661704 27.50184483718953, -97.80712911601941 27.478520161980608, -97.87975018815257 27.476685694843408), (-76.34030592946048 38.64804443999894, -76.33472058748185 38.67111704306957, -76.30751135983293 38.66709764550697, -76.30191494922073 38.69016831170979, -76.27470076733698 38.68614202514569, -76.26909327914757 38.70921074891474, -76.24187414731185 38.705177571106475, -76.24748939781286 38.68210993317302, -76.22028084425028 38.67807203662965, -76.22590052904948 38.65500462808798, -76.1987025481732 38.65096201683038, -76.2043266592292 38.627894843451045, -76.34030592946048 38.64804443999894), (-70.90247851131669 42.87980924789565, -70.87405031466015 42.874680743045985, -70.88165251869988 42.85205581270329, -70.91007246372334 42.857183027718136, -70.90247851131669 42.87980924789565), (-76.5269842667194 38.22146669985045, -76.49992115899279 38.21748629297555, -76.50542563604573 38.19439530536619, -76.53248106216019 38.19837463314788, -76.5269842667194 38.22146669985045), (-76.58350985298017 37.39304371361216, -76.5567264884052 37.38907250568637, -76.56215697364654 37.36596248502266, -76.58893281286224 37.3699326044493, -76.58350985298017 37.39304371361216), (-77.24089851024083 35.09871747920201, -77.21483579197525 35.094883107896194, -77.21992753598904 35.07172505788007, -77.22501639621711 35.04856678384657, -77.25106482966243 35.05239898738035, -77.24598310995636 35.075558345311194, -77.24089851024083 35.09871747920201), (-77.13060159184681 34.867246621644775, -77.1357029902696 34.844092142142564, -77.16168227032472 34.847943405279054, -77.15658797211208 34.871098976725605, -77.13060159184681 34.867246621644775), (-77.77881791416448 34.340611485109854, -77.78370473621946 34.31743184457059, -77.80954786012157 34.3211444849723, -77.81442489750619 34.29796369744365, -77.81929919571763 34.274782827747636, -77.84513056479602 34.278487830011954, -77.84026330431486 34.30166975905084, -77.86610403038628 34.30537030199788, -77.87096425120319 34.28218731519541, -77.92263856342512 34.28956973123711, -77.91779242772905 34.31275482882798, -77.91294356770935 34.33593984419061, -77.86124107781671 34.32855320660248, -77.8563753912138 34.35173602507806, -77.77881791416448 34.340611485109854), (-78.12560701606073 34.07966690601461, -78.04826854158716 34.068715777934926, -78.05306383923144 34.04552688019883, -78.05785645071634 34.022337947286076, -78.06264637827624 33.99914898311387, -78.06743362414305 33.97595999159828, -78.09318282082361 33.97961168070014, -78.0979603915308 33.9564216172692, -78.14945159070547 33.96370640151889, -78.14468801704527 33.986898557180275, -78.11893428616547 33.98325786948083, -78.11416104094205 34.00644895636473, -78.10938512139674 34.02964001588045, -78.10460652530328 34.052831044111564, -78.13038127670542 34.05647486771099, -78.12560701606073 34.07966690601461), (-78.04826854158716 34.068715777934926, -78.04347055554672 34.091904636575926, -78.01768860635853 34.08824219776296, -78.02249360463328 34.065054389126594, -78.04826854158716 34.068715777934926), (-78.66679235641922 33.89254312428708, -78.67140446011744 33.869331351952276, -78.69714665422214 33.87285375057581, -78.69254156114789 33.89606653664465, -78.66679235641922 33.89254312428708), (-81.47950314237552 29.313129136660866, -81.52851015908716 29.31893769484039, -81.52489820818664 29.3421423699852, -81.54941057567989 29.345039692905523, -81.54580311321395 29.36824603954044, -81.5421937269029 29.39145316946405, -81.64031081871207 29.40299720436249, -81.63672520250242 29.426208636534454, -81.6331376725886 29.44942084481926, -81.62954822744742 29.472633825574853, -81.65410085171615 29.475509377915824, -81.65051592684193 29.498724004229214, -81.64692908700059 29.521939395749225, -81.67149621351723 29.52481145781096, -81.66791390212272 29.548028486072504, -81.66432967602631 29.57124627226956, -81.6397496563128 29.568372459819447, -81.6433403306666 29.545155548828827, -81.59419806914478 29.539393938851845, -81.59779971147124 29.516179540931137, -81.57323746807697 29.513291749380546, -81.57684362502155 29.490078992921795, -81.55228945138889 29.48718684096544, -81.55590011656624 29.463975731163053, -81.5313540095916 29.461079222576707, -81.53496917662409 29.437869764622743, -81.51043113320313 29.434968903182344, -81.51405079572108 29.41176110226638, -81.51766852803522 29.3885540773354, -81.49314496438996 29.385649753057212, -81.4967671840684 29.362444393964953, -81.47225167317052 29.35953572595616, -81.47587837386398 29.3363320378853, -81.47950314237552 29.313129136660866), (-81.25776768523477 29.452072491056217, -81.28230205618536 29.455027479771054, -81.2786187483789 29.478229552232122, -81.32770532960464 29.484125626611867, -81.33137579208683 29.46092175751999, -81.35591515145393 29.463861045320538, -81.35957723467698 29.440657045211744, -81.40864807562647 29.446518128585623, -81.40499883905258 29.469723915698104, -81.42954316169332 29.47264749704806, -81.42589840569347 29.49585494024862, -81.47500485579629 29.50168816968611, -81.4713710212589 29.524898151747088, -81.46773524551493 29.548108891546264, -81.54144588048341 29.556824746426443, -81.53782749326656 29.58003889477162, -81.56240743251938 29.582934573074777, -81.558793560638 29.606150353579856, -81.58338158811992 29.60904166518392, -81.57977223797849 29.63225907264643, -81.57616095704076 29.65547722336172, -81.55156001759727 29.652584151585593, -81.547940343354 29.67580216177581, -81.49873047273306 29.669998499162848, -81.50236306498391 29.646782254010354, -81.47776705745099 29.643873429425753, -81.48140416110266 29.62065880869027, -81.4850393206711 29.597444931111642, -81.4604578642205 29.594532629761634, -81.4640975270181 29.571320385434625, -81.43952416480633 29.56840372620754, -81.43587805755881 29.591615082496375, -81.43223000114659 29.614827185547345, -81.42857999401603 29.638040031706897, -81.42492803461177 29.66125361731987, -81.42127412137685 29.684467938729536, -81.44587973900703 29.687389038389032, -81.44223033142971 29.710604980095184, -81.4668440664854 29.713521714010444, -81.46319917098138 29.736739270802616, -81.45955232362618 29.759957552458392, -81.45590352286132 29.783176555314384, -81.48053832252064 29.786090689744924, -81.47689404380601 29.809311295191453, -81.4732478118995 29.83253261452941, -81.46959962524014 29.8557546440906, -81.51891307987161 29.86157242867771, -81.51527591496757 29.88479693024274, -81.49061187004204 29.881889788683097, -81.48696626090965 29.905114111226172, -81.46229738141079 29.90220081920175, -81.45864332111064 29.925424957407408, -81.45498729979731 29.948649791147655, -81.47966917279693 29.951564850330577, -81.47601769068487 29.974791259541004, -81.5253994247803 29.98060732458398, -81.52175899615045 30.003836184466692, -81.51811661188343 30.027065728914625, -81.51447227041268 30.05029595424656, -81.48976104005597 30.047387917315977, -81.48610822190979 30.070617939350754, -81.46139213858426 30.06770374160491, -81.4577308367834 30.090933555018204, -81.40829064049684 30.08508755198483, -81.41196497816668 30.061859507603433, -81.41563734201515 30.038632136656396, -81.41930773362239 30.015405442827372, -81.39460968399356 30.012477181559866, -81.39828461077062 29.989252055381836, -81.40195756510302 29.9660276136631, -81.37727419478 29.963095854598166, -81.38095167602698 29.93987298942377, -81.38462718463079 29.916650816043067, -81.35995847768713 29.913715566100112, -81.36363850496889 29.890494978149103, -81.33897796043894 29.887555352709697, -81.3426624999462 29.864336355415634, -81.3673165594138 29.867275089319122, -81.37099264259793 29.84405590328247, -81.37466675609566 29.82083742370976, -81.37833890147971 29.79761965427013, -81.3537042771588 29.794683594839878, -81.35738092771072 29.77146743064647, -81.36105560995775 29.74825198389666, -81.33643559322195 29.745312452076355, -81.34011477245413 29.72209861943082, -81.34379198319502 29.698885511532303, -81.31918655822805 29.69594251423215, -81.32286825778975 29.672731029287842, -81.34746722701405 29.67567313204167, -81.35114050547901 29.652461484618318, -81.35481182015603 29.629250572919958, -81.3302257524631 29.62631025918707, -81.3339015507104 29.603100981344177, -81.28474730517841 29.59720641010081, -81.28843402043925 29.57399966895821, -81.29211876667839 29.55079367443064, -81.24299694892768 29.544881730429427, -81.24669259016704 29.521678286141544, -81.25038625891918 29.49847559571873, -81.25407795675275 29.475273662808373, -81.25776768523477 29.452072491056217), (-81.51447227041268 30.05029595424656, -81.53918516151397 30.053198711850463, -81.53554538050568 30.076430493282857, -81.5108259701699 30.073526856779715, -81.51447227041268 30.05029595424656), (-85.97649126391586 30.345089104808732, -85.97894223196072 30.32173135324688, -86.00385834430837 30.32367624329732, -86.00630129237298 30.30031860796558, -86.0312118338001 30.30225755013041, -86.02877557913986 30.3256157737851, -86.078613404153 30.329478754444, -86.07618922580845 30.35283885610191, -85.97649126391586 30.345089104808732), (-86.08658407567614 30.494941623534064, -86.0890094345218 30.471576778680838, -86.1139713862422 30.47349835805087, -86.11155274947666 30.496863784817464, -86.08658407567614 30.494941623534064), (-87.73154864955868 30.374727945992106, -87.73352453029841 30.35133568082768, -87.75848488802218 30.352902575501492, -87.75651574670974 30.376295316483613, -87.73154864955868 30.374727945992106), (-88.8025408854172 30.48408704462719, -88.80422816996578 30.460674361993338, -88.8292382438899 30.462010494893185, -88.82755773551945 30.48542358303621, -88.8025408854172 30.48408704462719), (-94.99751136071538 29.852411311051853, -94.97262933918813 29.852408085689085, -94.97263674141902 29.828971574221598, -94.99751203375297 29.828974798596537, -94.99751136071538 29.852411311051853), (-95.17173180345605 29.875720687407224, -95.12195440195818 29.87578413684425, -95.12192141123136 29.8523468061831, -95.17168534714622 29.85228337617313, -95.17173180345605 29.875720687407224), (-97.3339780012589 27.90963911269203, -97.3096490929444 27.91013891040414, -97.30903823140493 27.88679081643925, -97.33336070980945 27.886291175236156, -97.3339780012589 27.90963911269203), (-78.72748654056815 33.85315685448074, -78.73207947668504 33.829943075365215, -78.78354673859279 33.83695631005065, -78.77896781797877 33.86017210874609, -78.72748654056815 33.85315685448074), (-78.78354673859279 33.83695631005065, -78.78812309756428 33.81374052674831, -78.81385298116298 33.817237882352025, -78.80928362894947 33.84045467307488, -78.78354673859279 33.83695631005065), (-78.81385298116298 33.817237882352025, -78.81841977756727 33.79402111091944, -78.84414482325256 33.79751195841345, -78.83958503170419 33.82072973568977, -78.81385298116298 33.817237882352025), (-78.84414482325256 33.79751195841345, -78.84870206481901 33.77429420432369, -78.92586914708828 33.7847307274132, -78.92133291975412 33.80795148954146, -78.84414482325256 33.79751195841345), (-78.92586914708828 33.7847307274132, -78.93040283767117 33.76150999234837, -78.98184430731497 33.768438168183984, -78.98636145964296 33.74521546662742, -79.01207840562614 33.748670305772976, -79.00756825777705 33.77189400367766, -79.00305558640564 33.79511773252265, -78.9985403894118 33.818341488403114, -78.97280241886291 33.81488366024072, -78.97732462775595 33.79166090068994, -78.92586914708828 33.7847307274132), (-81.81306651066572 31.221112693572607, -81.81667950526898 31.197837704935584, -81.82029053211524 31.174563218932, -81.82389959280218 31.1512892393185, -81.82750668892575 31.128015769850116, -81.83111182208023 31.10474281428052, -81.83471499385817 31.081470376361814, -81.85973670475657 31.08430836385081, -81.85614022214956 31.107581650934538, -81.85254178167725 31.13085545568183, -81.84894138174977 31.154129774340348, -81.84533902077558 31.17740460315628, -81.84173469716143 31.200679938374424, -81.86679155443024 31.203516805176935, -81.8631919746891 31.226793490662754, -81.81306651066572 31.221112693572607), (-81.85973670475657 31.08430836385081, -81.86333123108638 31.061035598181572, -81.86692380272541 31.037763357676134, -81.89193380174558 31.040594291466427, -81.88834791360672 31.06386737950699, -81.88476007428436 31.087140992724407, -81.85973670475657 31.08430836385081), (-81.49537828348261 30.332023730817582, -81.49903967771611 30.308784743459643, -81.50269909921569 30.285546392709595, -81.50635654956542 30.26230868226724, -81.53112990533253 30.2652140563589, -81.53477883848102 30.241976112463707, -81.5384258070356 30.218738816290553, -81.56318773527195 30.221637143745816, -81.55954731229497 30.24487531575882, -81.55590492811834 30.268114135513077, -81.55226058116654 30.29135359931149, -81.54861426986227 30.314593703455355, -81.52382613893968 30.31169187252609, -81.52017130253394 30.33493173739957, -81.49537828348261 30.332023730817582), (-81.5384258070356 30.218738816290553, -81.48890694646947 30.21292628677407, -81.4925650323708 30.18969139845837, -81.49622115005562 30.16645716521482, -81.54571385666736 30.172266181890738, -81.5420708125728 30.195502171534955, -81.5384258070356 30.218738816290553), (-75.74680931749194 39.44378014239198, -75.75262607412911 39.420756151262275, -75.72518344322917 39.41661693413241, -75.73100460318118 39.393593048469924, -75.70357278885048 39.389449088174366, -75.70939834393664 39.366425313777775, -75.68197734031511 39.36227661435455, -75.68780728236752 39.339252957021486, -75.66039708359627 39.33509952250927, -75.66623140445977 39.31207598803624, -75.67206225024559 39.28905147297167, -75.64467069621347 39.2848944166568, -75.65050591143404 39.261870034425144, -75.65633765340698 39.238844679898385, -75.66216592519267 39.21581835719477, -75.60743866250743 39.20749340686575, -75.61327911654192 39.18446834373498, -75.58592772448785 39.18029823751786, -75.59177252240856 39.15727332877135, -75.5644318921844 39.15309851090038, -75.57028102591178 39.13007376232753, -75.57612668457581 39.107048062272476, -75.54880461314686 39.10286965423369, -75.5546545983468 39.07984412431201, -75.52734327022297 39.075661014319444, -75.53319757391054 39.05263566031743, -75.53904840318867 39.02960936728808, -75.54489576110936 39.00658213934378, -75.550739650721 38.98355398059605, -75.52346240192917 38.979369535058396, -75.52931059841613 38.956341570519534, -75.47478046580315 38.94795749234644, -75.48064072390592 38.92493085187262, -75.48649751014044 38.901903293094314, -75.43201018938541 38.893500487953744, -75.43787900765751 38.87047426802851, -75.44374435171852 38.84744713812679, -75.36208194215475 38.83480619038225, -75.36796702172856 38.81178154620556, -75.34075985162333 38.80755743427631, -75.3466491766681 38.78453302220614, -75.35253501984131 38.76150771270031, -75.35841738418904 38.73848150986292, -75.24971087272839 38.72154077129783, -75.25562059004106 38.69851823028483, -75.26152681791507 38.675494804367986, -75.26742955939878 38.65247049764873, -75.27332881753708 38.629445314227794, -75.30047022434103 38.63368462077677, -75.29457865701697 38.65671094446246, -75.28868361051039 38.67973639139139, -75.31584335550902 38.68397219369165, -75.32173070445958 38.66094560811031, -75.34888569819462 38.66517448771309, -75.35476187616507 38.642145888169864, -75.36063458631939 38.61911641586043, -75.3665038316859 38.59608607488467, -75.37236961528947 38.57305486934183, -75.2638903060264 38.556122883269424, -75.26978333278979 38.53309537607639, -75.27567288723581 38.51006701272942, -75.2214815607801 38.50157094273076, -75.22738296492827 38.47854401629639, -75.23328089454334 38.455516242008486, -75.23917535265186 38.43248762396161, -75.26624658116013 38.43673510859843, -75.2721299249581 38.41370450546125, -75.27800980741452 38.390673066698774, -75.22390086109743 38.38217691672024, -75.2297925578421 38.35914693904721, -75.23568079103862 38.33611613404017, -75.24156556369937 38.313084505790144, -75.24744687883329 38.29005205838737, -75.32852312130554 38.3027738913603, -75.3343781185003 38.27973719166212, -75.3884282899982 38.288187341192724, -75.39426460123609 38.26514754655925, -75.40009748446974 38.24210694477824, -75.40592694267876 38.21906553993804, -75.41175297883932 38.196023336126096, -75.4387519457573 38.20023521540121, -75.4329335244394 38.22327855893274, -75.48695537818415 38.23168733272947, -75.492758562266 38.20864171443575, -75.4985583395884 38.185595301102936, -75.47156120114948 38.181396065115614, -75.47736518633452 38.15834999753434, -75.50435471311128 38.16254809681768, -75.51014768579125 38.13950010566584, -75.53713248590819 38.14369131824633, -75.53134712329224 38.16674044459356, -75.52555836393823 38.18978878402331, -75.552561270716 38.19397651300582, -75.55834241339706 38.17092703999137, -75.58534057994298 38.17510788214163, -75.59111071492995 38.15205649008338, -75.59687746434098 38.12900431509178, -75.60264083111646 38.1059513612518, -75.65660009141519 38.11428900362543, -75.65085194581162 38.13734421713687, -75.62386327283389 38.13317714204526, -75.6181041368722 38.15623044760261, -75.61234161944486 38.179282970176075, -75.63934552841512 38.1834523032276, -75.63358725075065 38.2065051676355, -75.6606016523618 38.21066987218157, -75.65484762225135 38.23372307267509, -75.64909021009139 38.25677547782308, -75.64332941293753 38.27982708353708, -75.63756522784198 38.30287788572795, -75.58347820728378 38.29453369525444, -75.57769533919155 38.31758143409578, -75.5719090689785 38.340628361336805, -75.56611939368037 38.36367447288653, -75.56032631032947 38.386719764653236, -75.58739898538849 38.39089925599857, -75.58161015237208 38.413944852330566, -75.60869337983051 38.418119700664384, -75.61447454896934 38.39507297745173, -75.62025231537692 38.372025430259384, -75.67439676703741 38.38035331083899, -75.68015581497826 38.35730269447149, -75.70722469264307 38.36145685649802, -75.70147330781163 38.38450859516849, -75.72855272052097 38.388658107706696, -75.72280561814193 38.411710147025055, -75.7170551296513 38.43476136215592, -75.71130125209379 38.4578117490051, -75.7055439825107 38.48086130347771, -75.7326569777005 38.48500951956792, -75.72690400206834 38.508059356489426, -75.6997833179399 38.5039100214782, -75.69401925541592 38.5269578989103, -75.66689376164523 38.52280166301136, -75.66111860342744 38.54584757540138, -75.55261477999014 38.529160331786976, -75.54680544318295 38.55220089856969, -75.5409926786259 38.575240612757035, -75.59526956585603 38.583600299566044, -75.58946876744243 38.60664140841463, -75.58366454364098 38.62968165636336, -75.52935685427771 38.62131746695202, -75.5235337884857 38.644354598761225, -75.51770728294208 38.667390861578035, -75.51187733463779 38.69042625130157, -75.50604394056028 38.71346076383018, -75.56041333459068 38.72183395715091, -75.56623128993517 38.69879719380774, -75.62059690279733 38.70714496869817, -75.62639598020438 38.684105083366035, -75.63219163161314 38.661064324724094, -75.6593633567565 38.66522728208619, -75.66514786946651 38.64218453412563, -75.69231477501404 38.64634058155521, -75.69808815786918 38.62329584983026, -75.7038581320835 38.60025025699168, -75.78532988780056 38.6126769586707, -75.77958305826886 38.635725898115034, -75.80675378849674 38.63985766527701, -75.8010112870512 38.662906855807954, -75.74665726018422 38.65463530349692, -75.74089590976077 38.677681402426046, -75.73513115313139 38.70072663193246, -75.72936298731294 38.7237709879139, -75.72359140931881 38.74681446626726, -75.69638780383823 38.74266553967655, -75.69060507055289 38.76570702108449, -75.68481891489182 38.78874761671051, -75.67902933385484 38.81178732244974, -75.67323632443826 38.83482613419661, -75.7004709157325 38.83897952131623, -75.70625617236443 38.815939594518795, -75.71203800483977 38.792898773674416, -75.73925999541449 38.79704412886554, -75.74503065985073 38.77400130448112, -75.75079791034713 38.75095759420646, -75.77800730334859 38.755094922633646, -75.7837634019156 38.732049218427335, -75.81096793980379 38.73617963589839, -75.81671289533313 38.71313194331814, -75.78951609673558 38.70900263648546, -75.79526539078854 38.68595518091147, -75.8224544543109 38.6900833770523, -75.82819261971049 38.66703394120367, -75.83392739450187 38.643983639874484, -75.86110387271847 38.64810382105036, -75.85537682709645 38.671155231616055, -75.88256390563812 38.67527072618904, -75.87684120951612 38.698322378842654, -75.87111512824896 38.7213731618072, -75.95274001323996 38.73369148876978, -75.94703379196663 38.756744711114834, -75.91981487844772 38.75264330054, -75.91409752266753 38.775694542053564, -75.85965279840833 38.767472102255525, -75.85391654389092 38.790520251530886, -75.84817689234039 38.813567514700296, -75.82094333508515 38.80944537519822, -75.8151925222676 38.83249064085558, -75.78795409258295 38.82836158728228, -75.7821921095748 38.851404849867855, -75.77642671210256 38.87444721413652, -75.8036806719358 38.87857848527028, -75.79791962843659 38.90162105581288, -75.79215516871945 38.924662719768, -75.78638728978325 38.947703473026564, -75.78061598862337 38.97074331147887, -75.835194839365 38.97899727340483, -75.84095056451999 38.955955222567994, -75.8467028759625 38.932912256815015, -75.85245177669057 38.90986838025593, -75.85819726969868 38.88682359700012, -75.86393935797791 38.86377791115635, -75.91845195040196 38.87199756988721, -75.91272541425458 38.89504546230629, -75.93999380756979 38.899147675414916, -75.93427165931108 38.92219576602782, -75.92854611610142 38.945242949780784, -75.92281717495618 38.96828922256392, -75.95011181686831 38.97238891932765, -75.95583296284389 38.9493415473251, -75.98312268690901 38.9534343267272, -75.98883264578271 38.93038494598893, -75.9945392182327 38.907334658282295, -76.00024240723349 38.88428346771686, -75.97297605067185 38.88019398161141, -75.97868363984098 38.85714299016957, -75.95142793115538 38.85304879004555, -75.95713991243417 38.82999800350557, -75.98438784724442 38.83409110413977, -75.9900886758497 38.811038327629404, -76.01733170323396 38.815124519953706, -76.02302138811412 38.7920697590356, -76.02870770436603 38.769014115796644, -76.05593805379995 38.77309230551077, -76.05025950369833 38.79614904527364, -76.04457758921656 38.81920490266257, -76.03889230740064 38.8422598735711, -76.03320365529308 38.86531395389218, -76.02751162993303 38.88836713951804, -76.05478371515747 38.89244499616654, -76.04909610352078 38.91549837768258, -76.04340511696716 38.93855085623208, -76.0377107525288 38.96160242770511, -76.06500908683806 38.96567774758395, -76.05931914681874 38.98872950083877, -76.11394001840902 38.996864856390616, -76.10826232551439 39.01991787543238, -76.10258125867126 39.042969974901, -76.07525375853247 39.0389030295757, -76.08094264426244 39.015852019840885, -76.05362582724922 39.01178033874109, -76.04792912515471 39.03483025717884, -76.02060736217537 39.03075165855655, -76.01489945645093 39.05379956061154, -76.04222903755694 39.05787925203936, -76.03652556147419 39.08092731920929, -76.03081869392133 39.103974454574676, -76.0251084319097 39.127020654020825, -75.97040519359844 39.11884888336184, -75.96467586606038 39.141891956040084, -75.93732074658932 39.137796228407026, -75.93158017548068 39.16083726139125, -75.9589431294708 39.16493408467886, -75.95320698082396 39.18797526516194, -75.98058066909829 39.192067348582846, -75.97484895106464 39.2151086707743, -75.8927130469092 39.20281162833781, -75.88695437280951 39.22584870762301, -75.83219594183457 39.21761930251525, -75.82641814735611 39.24065322273675, -75.82063691152042 39.26368617855748, -75.81485223129079 39.286718165858645, -75.86965776010652 39.29495416663065, -75.87542673243645 39.27191998088816, -75.95763330229975 39.284226882198816, -75.96337527068 39.261188441700874, -75.9907754084052 39.26527796589474, -75.98504130120872 39.288317498643224, -76.03986599046428 39.29648120044327, -76.0455843676234 39.273439487880154, -76.07299318178194 39.27751148397626, -76.07870028759719 39.254467718941974, -76.08440399391922 39.23142299311963, -76.11179996308495 39.235486972653916, -76.11749241450444 39.212440203994504, -76.1448833987734 39.21649725681279, -76.13919880829974 39.23954511007692, -76.13351082998705 39.26259200656092, -76.12781946084282 39.285637942145435, -76.12212469787097 39.30868291271067, -76.09470224383165 39.30462152180704, -76.0889962057508 39.32766443885061, -75.97930377551923 39.31135606253262, -75.97356282831664 39.334393653442525, -75.8638853489708 39.31798737962045, -75.85810949599218 39.341019615737224, -75.80327252548489 39.332779218424555, -75.79747749381747 39.35580827544874, -75.77005553581519 39.35167821050543, -75.76424918022758 39.374705181196425, -75.75843936068601 39.3977311628228, -75.7858770576993 39.40186343037361, -75.78007164713608 39.42488952003009, -75.77426277082257 39.44791461231874, -75.74680931749194 39.44378014239198), (-75.86110387271847 38.64810382105036, -75.86682753490737 38.62505154905273, -75.872547816623 38.60199841972407, -75.84538678412275 38.59788045717955, -75.85111140487508 38.57482758401477, -75.82396095361166 38.57070494212898, -75.82968990545264 38.547652330894344, -75.93827802994868 38.5641037279402, -75.93257993252303 38.58716077383741, -75.92687846893976 38.61021697049907, -75.92117363625239 38.63327231382518, -75.91546543151094 38.656326799715174, -75.86110387271847 38.64810382105036), (-76.51449729955021 37.215364375784205, -76.51992819471431 37.192253338459544, -76.46650567130413 37.18427701583033, -76.47194837793711 37.16116757342349, -76.49865081955505 37.16515748853891, -76.50408288971923 37.14204635669374, -76.53078052661336 37.14602947728607, -76.52535593616396 37.16914170427581, -76.55206372434796 37.17312021980567, -76.54664346894319 37.196232947524635, -76.57336141362774 37.20020685398626, -76.56794550092366 37.223320076731234, -76.51449729955021 37.215364375784205), (-76.50408288971923 37.14204635669374, -76.4773879255148 37.13805753829161, -76.48282431675452 37.114946914486644, -76.50951180756856 37.11893463613517, -76.50408288971923 37.14204635669374), (-75.59523042411094 35.780160696767254, -75.6008271672173 35.75707529198905, -75.52225566805207 35.74450775656638, -75.52787072231571 35.72142548588489, -75.53348258116536 35.698342841486706, -75.53909124729253 35.675259827365224, -75.51292763944494 35.67106301787566, -75.5185402657511 35.647980811876224, -75.49238651367686 35.643779607743646, -75.49800309309899 35.620698215481646, -75.50361648039153 35.59761646553391, -75.5092266782396 35.57453436188943, -75.51483368932539 35.55145190853635, -75.52043751632806 35.52836910946171, -75.52603816192386 35.50528596865168, -75.53163562878606 35.482202490091275, -75.53722991958499 35.45911867776461, -75.542821036988 35.4360345356548, -75.54840898365956 35.41295006774391, -75.55399376226109 35.38986527801296, -75.55957537545117 35.36678017044211, -75.56515382588542 35.34369474901037, -75.57072911621648 35.32060901769575, -75.57630124909416 35.29752298047531, -75.58187022716525 35.27443664132507, -75.63395267859752 35.28279588447872, -75.63950433258762 35.25970689708415, -75.66554247001032 35.26387702970315, -75.67108389623411 35.240786575440175, -75.72315397283326 35.249107867741344, -75.72867809268988 35.22601478235323, -75.78074459964 35.2343115644069, -75.78625142163492 35.211215858003676, -75.8122815532684 35.215354768342365, -75.8177781737975 35.192257614577585, -75.8438038561791 35.19638981804906, -75.84929028303016 35.17329122240264, -75.9013353695072 35.18153667817397, -75.90680452558787 35.15843548565693, -75.95884593487908 35.16665645408981, -75.96429782877632 35.14355267481956, -75.99031537170625 35.14765368928089, -75.99575709828997 35.12454848764325, -76.04778583929767 35.132731582125004, -76.05321032162051 35.10962381087307, -76.0792215105733 35.1137058938597, -76.08463584268333 35.090596712740236, -76.11064254345764 35.094672104475094, -76.11604673314686 35.07156151896899, -76.12144786836782 35.04845068266585, -76.14744299701862 35.052518237297434, -76.15283400386403 35.0294060060285, -76.17882463831398 35.03346687546572, -76.18420552456668 35.01035325471109, -76.18958337140101 34.98723939500264, -76.21556243449739 34.991292436455566, -76.22093017475773 34.96817719667937, -76.24690473768547 34.972223559006046, -76.24154406927583 34.99533994229256, -76.26752827260238 34.99938191167178, -76.26217165240695 35.02249920183772, -76.36616242070983 35.03861624999102, -76.37149070863966 35.01549440781533, -76.37681598560233 34.99237233047793, -76.4028058998777 34.996385470872795, -76.39748770762672 35.01950868231867, -76.39216650811916 35.04263165857856, -76.4181731473682 35.04664152411364, -76.41285603235843 35.069765393715436, -76.49091252527343 35.08176511173779, -76.49620834463997 35.0586378540683, -76.50150116910567 35.035510357151246, -76.52751088510304 35.039496915903186, -76.53279362181351 35.01636805743616, -76.58480645537936 35.02432228935537, -76.59007201627503 35.00119095167034, -76.64208075374383 35.00912075907708, -76.6473291477513 34.98598695232035, -76.67333019517564 34.98994241925386, -76.67856852812648 34.96680727049486, -76.73056395937053 34.97469933608017, -76.72533982227695 34.997836717110836, -76.69933375440444 34.99389234112465, -76.69409955950101 35.01702838324693, -76.6680888996667 35.01307734447838, -76.66284463911461 35.03621204220552, -76.61081666199917 35.028291087135, -76.60555522411369 35.051423314989655, -76.57953791576602 35.0474533956501, -76.57426639493603 35.070584266590075, -76.54824451087634 35.06660767684692, -76.542962899262 35.08973718538543, -76.53767829769215 35.11286645066138, -76.53239070365676 35.13599546870724, -76.52710011464296 35.15912423555447, -76.5010523213372 35.15513759931819, -76.49575161495126 35.178264986446116, -76.49044790481139 35.20139211446049, -76.46438841688018 35.19739767252293, -76.45907457524078 35.220523411383255, -76.4537577210519 35.243648883211705, -76.44843785178112 35.26677408403498, -76.44311496489321 35.289899009878624, -76.46920297619063 35.29389795593709, -76.46388420936512 35.31702372879072, -76.59439829729527 35.3369406052963, -76.58911226366317 35.360071701352496, -76.74585604769578 35.383794855608194, -76.74061000731416 35.40693234003052, -76.50546419135989 35.37126236574958, -76.51077469667382 35.34813491567161, -76.3019871885716 35.3160585695488, -76.307351805781 35.29293985880318, -76.25519493351109 35.2848674175565, -76.24981605647677 35.30798385604599, -76.22373436964408 35.303938159856045, -76.21834531073193 35.32705317317336, -76.08794017623335 35.30673561577898, -76.08251242160424 35.32984462281432, -76.07708158792015 35.352953335338384, -76.05099412774997 35.3488708573266, -76.04555308394082 35.371978123598055, -76.04010895216021 35.39508508742942, -76.01400985162901 35.3909947526616, -76.00855549552739 35.41410026080107, -75.9824518869569 35.410003214789825, -75.97698729866455 35.433107261748944, -75.9715196071186 35.456210994383056, -75.9454043575503 35.45210608253584, -75.93992641959083 35.475208344547696, -75.93444536940913 35.49831028429794, -75.90831847591946 35.49419750132706, -75.90282716508221 35.51729796101114, -75.89733273303379 35.540398090493824, -75.87119419271849 35.53627743111627, -75.86568948575321 35.5593760710869, -75.78726834802202 35.54697721339841, -75.78173905978264 35.57007203996128, -75.75559685740116 35.56592679085449, -75.75005727545279 35.58902011385973, -75.7445145430124 35.61211309086622, -75.7183607110601 35.607959948005764, -75.71280767062358 35.63105141200715, -75.70725147063568 35.65414252206201, -75.7016921084335 35.677233274179564, -75.69612958135116 35.70032366436813, -75.6905638867198 35.72341368863497, -75.68499502186764 35.746503342986436, -75.71119183919367 35.750663463481665, -75.70562697882518 35.77375390675112, -75.7000589466481 35.79684397208254, -75.59523042411094 35.780160696767254), (-76.73056395937053 34.97469933608017, -76.73578514384096 34.95156173543091, -76.76177951876498 34.95549833712841, -76.75656543164438 34.978637051580826, -76.73056395937053 34.97469933608017), (-76.76177951876498 34.95549833712841, -76.76699065946343 34.932359406995865, -76.79298043679537 34.93628935205476, -76.78777639181261 34.959429394442466, -76.76177951876498 34.95549833712841), (-81.58498917596235 30.082221921081604, -81.58861591451726 30.058988386648792, -81.59224070441691 30.035755529479122, -81.64166502508745 30.041522333132647, -81.63805327618775 30.064756936863105, -81.61333377069974 30.061875302631222, -81.60971355535942 30.08510971116494, -81.58498917596235 30.082221921081604), (-81.59224070441691 30.035755529479122, -81.56753101891793 30.032864208030276, -81.57116037686822 30.00963290746618, -81.59586354722191 30.012523353255954, -81.59224070441691 30.035755529479122), (-88.28468338598283 30.361162720504318, -88.28650884916311 30.337761812834078, -88.28833332165425 30.314361634703673, -88.16354930129084 30.307045099155616, -88.16540647632944 30.283647877857383, -88.16726264418364 30.260251393437592, -89.09064554495113 30.311175897956833, -89.09225126067021 30.28776466893071, -89.19211283115187 30.292827039909277, -89.19369067141997 30.269415015760234, -89.21865113536832 30.270666763500127, -89.22022137066048 30.24725510690988, -89.22179075417239 30.22384420242359, -89.22335928659608 30.200434053733197, -89.2732419030695 30.202919125050574, -89.27479610741416 30.179508979138028, -89.29973174975413 30.180743068790985, -89.30127837556523 30.157333310187152, -89.32620799243743 30.158561646810874, -89.32774704707488 30.135152280861753, -89.35267063787926 30.136374867484655, -89.35420212869774 30.11296589953486, -89.35573278997995 30.089557705868508, -89.50520824708433 30.09677591806508, -89.50669773115689 30.073366301358995, -89.53160599373138 30.074550167175108, -89.53308794825955 30.051140971088827, -89.53456910057675 30.02773256040145, -89.60925762613742 30.03124977278608, -89.61071782610722 30.007841077803366, -89.6121772360043 29.98443317560559, -89.61363585646919 29.96102606986842, -89.61509368814156 29.937619764265914, -89.61655073166048 29.91421426247051, -89.61800698766432 29.89080956815316, -89.69258077528009 29.894272096248283, -89.6911446208265 29.917677849035606, -89.68970768966624 29.941084409331744, -89.68826998116957 29.9644917734656, -89.8375559570869 29.971278288206328, -89.83615775300541 29.994688525370336, -89.83475879201066 30.018099559084167, -89.80986274138263 30.0169812080891, -89.8084563005812 30.040392693278037, -89.75865269542047 30.038139191947373, -89.76007257920634 30.01472839447395, -89.71028502291664 30.012454100274898, -89.7088516982614 30.035864203475068, -89.70741759736275 30.0592750958225, -89.68251136120196 30.058129194900722, -89.68106975655455 30.08154052310109, -89.67962737077845 30.104952633079183, -89.65470834006067 30.103800656933796, -89.65325843893315 30.12721319373352, -89.6283333410607 30.12605548893383, -89.62687591722904 30.149468447212826, -89.55208444622461 30.14596200236984, -89.55060601444761 30.16937466272302, -89.45086662839354 30.16462266378162, -89.45237200929232 30.141211451219963, -89.45387657448583 30.117801009297313, -89.40403795723356 30.115394204200758, -89.40251992809486 30.138803912414254, -89.40100107599729 30.16221439124686, -89.39948140027211 30.185625637012365, -89.42442056779916 30.186832830185505, -89.42290681035594 30.21024520689982, -89.39796090024991 30.209037646023035, -89.39643957526054 30.232450414589522, -89.37148761895736 30.231237102913138, -89.3699587190469 30.254650257982593, -89.34500071713381 30.253431192474658, -89.34346423492211 30.276844728696467, -89.31850018799214 30.275619906326313, -89.31695611609388 30.299033818348466, -89.21708004760296 30.294079168500772, -89.21550810667085 30.317492318216686, -89.14058837308227 30.313718627428294, -89.13899530069784 30.337131370634285, -89.06406189382605 30.333308034271543, -89.06244767278807 30.356720352466603, -88.98750067596129 30.352847348254635, -88.98586528912614 30.376259222937858, -88.8609349260949 30.369694451231126, -88.86260411505125 30.346284571094454, -88.61286900968834 30.332755003927122, -88.61460481297138 30.309349969060353, -88.41492809694407 30.298142027867286, -88.41313832381397 30.321543655468446, -88.36321382973028 30.318686991369777, -88.36140959177983 30.342088484065624, -88.35960437402926 30.365490706334224, -88.28468338598283 30.361162720504318), (-90.06637556341849 30.333445099488852, -90.06771673250324 30.31002072087923, -90.04273342871782 30.308952188278713, -90.04408063685749 30.28552888348509, -90.0191047206674 30.284455285010583, -90.02045796063767 30.261033059352677, -89.99548943047463 30.259954398503094, -89.99684869505857 30.236533257298685, -89.87204928175606 30.231060790900997, -89.87344157845227 30.20764207583602, -89.79858985090394 30.204294980652957, -89.80000163706337 30.180878048484498, -89.77505910334685 30.179751925402957, -89.77647686754534 30.15633610341517, -89.77789386324551 30.132921052191257, -89.80282291354982 30.134046489092498, -89.80423240511983 30.110631869242045, -89.82915536660433 30.111751585888058, -89.82775261181634 30.135166547174897, -89.82634909641968 30.15858228292998, -89.90116227256817 30.16191119640908, -89.90254556358448 30.138494446156514, -89.9274778228926 30.139592986616787, -89.92885362534108 30.11617667598357, -89.93022868232445 30.092761143539896, -89.9551480990711 30.09385363754985, -89.9565156790822 30.07043855376054, -90.05617266627628 30.074753441683022, -90.0575125866472 30.051337827022568, -90.28171592562008 30.060728929271, -90.28043660201119 30.084147409943473, -90.35520194074482 30.08718193324508, -90.35394214221445 30.110602125426215, -90.35268166060709 30.134023099630305, -90.40255508827953 30.136020439456832, -90.40130741896236 30.159442801047213, -90.40005907274727 30.182865937307568, -90.35015864593947 30.180867379369843, -90.3488961117668 30.204290677532466, -90.34763289229228 30.22771474297256, -90.29770776318777 30.225693412182835, -90.29643033462811 30.24911762553144, -90.29515221233872 30.27254259875904, -90.27017700234036 30.271523230281616, -90.26889141754666 30.29494864937718, -90.24391003157965 30.293923577629407, -90.2426169768765 30.31734943724052, -90.2413232194197 30.3407760456297, -90.06637556341849 30.333445099488852), (-90.44377752820823 30.301973136991997, -90.44501572555397 30.27854558014424, -90.44625325056458 30.255118779530044, -90.4474901037871 30.231692738843083, -90.47245583718825 30.232673764564876, -90.47368525863246 30.209248188694378, -90.4749140130338 30.185823380141883, -90.54977403914914 30.188732345114513, -90.54856555814865 30.212158040201764, -90.54735642106668 30.23558450263079, -90.54614662736918 30.259011728710785, -90.54493617652149 30.282439714749362, -90.51995521958783 30.281474271003333, -90.51873733816385 30.304902719405508, -90.44377752820823 30.301973136991997), (-94.7241083523642 29.758339603392653, -94.72418288460108 29.734906580811366, -94.72425737657915 29.71147441449328, -94.72433182833096 29.688043108094416, -94.72440623988909 29.66461266526907, -94.72448061128613 29.641183089669997, -94.72455494255452 29.617754384948245, -94.74936966402882 29.617811190074182, -94.74943726240166 29.59438334243383, -94.74950482432006 29.570956372968666, -94.79910759288063 29.571053846517337, -94.79916174713394 29.54762772892204, -94.79921587219859 29.524202496793706, -94.79926996809819 29.500778153775233, -94.6753635156465 29.50049456431258, -94.67545095630398 29.47707120125799, -94.70022550435255 29.47713859979272, -94.70030622678814 29.45371611239318, -94.72507414055507 29.453778142810673, -94.72514815196048 29.430356536350914, -94.77467074264332 29.430464521744096, -94.77473138617228 29.4070437857117, -94.87375021915666 29.40719556040206, -94.8737162319539 29.43061634316271, -94.87368222644712 29.45403802958963, -94.87364820262152 29.477460616046475, -94.87361416046225 29.50088409889523, -94.87358009995454 29.524308474496248, -94.87354602108354 29.547733739208223, -94.89834081430422 29.54775836791019, -94.89831340275164 29.571184525660417, -94.89828597641245 29.59461156523434, -94.89825853527473 29.618039482985772, -94.8982310793265 29.641468275266874, -94.84858797964439 29.64141359668084, -94.84854710860657 29.664843243053816, -94.84850621549793 29.688273756655335, -94.82367128832843 29.68823835471601, -94.82362366577992 29.711669721029626, -94.82357601750087 29.735101947264344, -94.79872769383832 29.735061156409678, -94.79867330522345 29.758494226398984, -94.7241083523642 29.758339603392653), (-96.24919412092822 28.651443746215406, -96.24886091486111 28.62805692085457, -96.24852788649402 28.604671121717054, -96.2481950356848 28.581286352379937, -96.24786236229154 28.5579026164187, -96.1743214452499 28.55868578347855, -96.17400854057374 28.53530284098754, -96.22302290388956 28.534786173906113, -96.22269711178906 28.511404432617102, -96.2961979648475 28.51059007080826, -96.29585277639167 28.48720962692841, -96.32034622971986 28.486927700358162, -96.31999470548554 28.463548391850644, -96.39345454310828 28.462671214767397, -96.39382562529002 28.48605025026356, -96.41831842586367 28.48574721030961, -96.4186962282491 28.509127199151365, -96.46769435944641 28.508505091229605, -96.46808541472704 28.531885930617097, -96.49259074251769 28.531566857849302, -96.49298853528288 28.554948638496505, -96.44396464473105 28.555581699502355, -96.44434958435572 28.578964713881913, -96.39531193240745 28.579576832935015, -96.39568400457564 28.602961070919374, -96.32210666287602 28.60383988624257, -96.32245931295408 28.627225427085207, -96.27339386883241 28.627785044656637, -96.27373361908239 28.65117178555848, -96.24919412092822 28.651443746215406), (-96.73486037539618 28.387823457504503, -96.73439902284377 28.36445011743519, -96.73393791557707 28.34107784275674, -96.73347705340053 28.31770663702692, -96.7330164361188 28.294336503801812, -96.63526196428928 28.29578782257915, -96.63482755044704 28.272418312876805, -96.65925997945253 28.272063490310174, -96.65881930985627 28.248695170906473, -96.70767059683915 28.247969963967716, -96.70721719562847 28.224602953989848, -96.73163605169228 28.224232574689584, -96.73117641204061 28.200866767009405, -96.78000054259408 28.20011046697464, -96.78047313998424 28.223476038569473, -96.75605470078276 28.223856936189737, -96.7565210669416 28.247223713354277, -96.75698768085215 28.270591573676132, -96.78141908794389 28.270210438313477, -96.78189243891354 28.293579259362787, -96.78236604147689 28.316949156460762, -96.78283989583458 28.34032012605318, -96.7833140021874 28.36369216458394, -96.78378836073644 28.387065268495363, -96.73486037539618 28.387823457504503), (-97.2591974021321 27.841081004261866, -97.25860034887648 27.81773602098958, -97.2580036110583 27.79439218435438, -97.18511001183337 27.795826498406033, -97.18453283062428 27.772483362180292, -97.18395595420266 27.74914137964548, -97.18337938232723 27.725800554315075, -97.20765827928591 27.72532812228849, -97.20707560784365 27.701988605928165, -97.23134784026745 27.70151110082641, -97.23193691537517 27.724850467293756, -97.30477122978606 27.723386165512974, -97.30537983582377 27.74672623314665, -97.32966380599021 27.746227530840706, -97.3302791430513 27.7695685991779, -97.35456924716756 27.76906451467618, -97.3551913220535 27.792406578549386, -97.3794875601953 27.791897108672373, -97.3801163797128 27.81524016291204, -97.35581372566847 27.815749792546526, -97.3564364582731 27.839094153150864, -97.2591974021321 27.841081004261866), (-87.0176676096879 30.492326317371035, -87.01984012338244 30.468943090763368, -86.96988142665457 30.46548492002205, -86.97206623704923 30.44210343711504, -86.99703834595765 30.44383468757133, -86.999215236164 30.42045337912894, -87.04914898753037 30.4238987001421, -87.04698556815855 30.447281053375537, -87.04482097362803 30.47066410595218, -87.0426552029831 30.494047854164457, -87.0176676096879 30.492326317371035), (-84.97932618511663 29.626693300844817, -85.05340946817415 29.633150809894232, -85.05072925154484 29.656464089771717, -85.04804759488269 29.679778167085807, -85.04536449703075 29.703093038181034, -84.94651042477948 29.694464526509353, -84.94379958522185 29.71777755351679, -84.91908257403578 29.715606504822794, -84.92179998595797 29.692294140416728, -84.92451593823408 29.668982566039457, -84.9492198081485 29.671152289549898, -84.95192773649796 29.647840846294887, -84.97662627360816 29.650004607664872, -84.97932618511663 29.626693300844817), (-85.33943781106187 29.751792622882494, -85.36417542810022 29.7538734350924, -85.36157507030302 29.777198265178512, -85.38632046630586 29.77927439882686, -85.38372530584174 29.802600645427955, -85.3811287482347 29.82592767142746, -85.37853079235971 29.84925547316013, -85.3537655953996 29.84717743904523, -85.35637015507987 29.82385027081918, -85.3316127504029 29.821767553331572, -85.33422250769009 29.79844179593154, -85.33683086086664 29.77511681789404, -85.33943781106187 29.751792622882494), (-78.04885320861965 34.45073152820529, -78.05367057532128 34.42754058710799, -78.02778315106816 34.423880040775295, -78.0326048767168 34.40069004668133, -78.08436788189138 34.40800351892298, -78.07956029812318 34.43119560155618, -78.07475000706397 34.454387586116724, -78.04885320861965 34.45073152820529), (-76.92536890893639 36.63042547716996, -76.93064167516016 36.60728887023391, -76.95718217403555 36.61118230124431, -76.95191681224456 36.63431998699087, -76.92536890893639 36.63042547716996), (-76.90615421407992 38.276585471518544, -76.91154321704727 38.253478462253035, -76.80318549354784 38.23785014451141, -76.8086021508716 38.21474660443338, -76.72738534882593 38.202967833604546, -76.72194559502576 38.226068178623095, -76.58660013397255 38.206315962583425, -76.59207833446541 38.18322097405342, -76.56502511201177 38.1792542733032, -76.57050776877226 38.156159596567505, -76.57598720241376 38.133064159709264, -76.60302507304385 38.137028708309856, -76.59755331321972 38.160125221266384, -76.9493924495699 38.21115264491732, -76.94401750055931 38.23426224354993, -76.93863938455506 38.257371077319306, -76.93325809878847 38.280479142134936, -76.90615421407992 38.276585471518544), (-76.00998978994602 39.53092830870496, -76.01573448914489 39.507895384366144, -76.0214757556264 39.48486145389024, -76.02721359242854 39.46182652140291, -76.03294800258575 39.43879059102931, -76.03867898912898 39.415753666893835, -76.06613798158405 39.41982633375786, -76.06041489250559 39.44286434355539, -76.05468838416976 39.465901359534065, -76.04895845354909 39.48893737756923, -76.07644405562534 39.493007441946794, -76.07071861280657 39.51604354184155, -76.06498974600727 39.539078635484294, -76.00998978994602 39.53092830870496), (-76.27058743262481 39.282800431829735, -76.276236046563 39.25974813605464, -76.24882287620677 39.2557192218113, -76.25447599758306 39.23266704576511, -76.28188129435087 39.2366948832232, -76.28752317896044 39.21364067745491, -76.29316170336028 39.19058552286849, -76.29879687051556 39.16752942358221, -76.30442868338795 39.14447238371352, -76.3100571449357 39.12141440737936, -76.25532799979507 39.11336366502808, -76.26096880566453 39.090306912133975, -76.26660625747893 39.06724923111417, -76.27224035819299 39.044190626083406, -76.32692245116208 39.05223490074346, -76.33253753692513 39.029173219703615, -76.38721527878151 39.03719201224046, -76.381615869795 39.06025584313124, -76.40896681708583 39.06425756263857, -76.40337192365119 39.087321545941734, -76.39777370071259 39.110384604965475, -76.42514317062508 39.11438263076792, -76.41954947283512 39.13744583224751, -76.41395244399702 39.16050810116236, -76.40835208116964 39.18356943339553, -76.40274838140834 39.20662982482951, -76.34794936421798 39.19861936210423, -76.34232657718006 39.221676665785985, -76.33670043861478 39.24473302054047, -76.33107094556038 39.267788422248486, -76.32543809505167 39.29084286679033, -76.27058743262481 39.282800431829735), (-76.79778110850265 38.14151412710166, -76.80319271444591 38.11840861666325, -76.77615119913419 38.11448661999237, -76.78156730168561 38.09138142657094, -76.75453616255919 38.08745472289484, -76.75995675375113 38.06434985223794, -76.76537416090949 38.04124424160876, -76.65733796548015 38.02548828720727, -76.65188991358127 38.048589614485245, -76.67890256183452 38.052538325863615, -76.67345897100121 38.07563998649899, -76.59240619269248 38.0637733292622, -76.59787276191001 38.04067489277289, -76.62487997909312 38.04463513651425, -76.63033568627912 38.02153488399773, -76.60333612201843 38.01757571658686, -76.60879627581009 37.994475804786966, -76.61425322607413 37.971375161455356, -76.56029282900563 37.96344385233405, -76.56576185229609 37.940344639194485, -76.51182760273494 37.93239245962661, -76.51730867576427 37.90929468721644, -76.49035326188812 37.90531104832165, -76.48486456440452 37.92840773637532, -76.4579042550618 37.92441725858336, -76.4524047126352 37.94751213761671, -76.42543951194166 37.943514818667225, -76.43094667821968 37.92042102708031, -76.40399183738866 37.91641904269698, -76.40950339400217 37.89332561712, -76.46340057462936 37.901321656454165, -76.46889367413681 37.87822533530798, -76.47438355637985 37.855128299222855, -76.47987022415101 37.832030552275995, -76.45294310134136 37.82803867101576, -76.44744882626163 37.851135330333655, -76.42051682503529 37.84713661326718, -76.42601870505595 37.82404104314597, -76.39909703879215 37.82003766949776, -76.40460329732586 37.79694248349139, -76.37769196065666 37.792934457274036, -76.38320258989013 37.76983966111566, -76.35630157744846 37.76582698634227, -76.36181656958023 37.742732585763704, -76.46940664287342 37.75874446892336, -76.46392200685952 37.781843236235446, -76.49083392743188 37.78583294210246, -76.48535368023963 37.808932098543956, -76.51227592053073 37.81291714625872, -76.51774856630705 37.78981690366622, -76.5446659199885 37.79379512009839, -76.53920087798492 37.81689644727352, -76.53373263534206 37.83999707164935, -76.61454661349437 37.85190373042767, -76.6090980176857 37.875006891994786, -76.66300278169152 37.882918062897396, -76.66843613223693 37.85981274646423, -76.6953849410604 37.86375862506913, -76.68995921666674 37.886865016581126, -76.68453031094559 37.90997069687094, -76.65756624566613 37.90602266815314, -76.6521265213908 37.92912655815309, -76.67909822113018 37.933075661859924, -76.6736629444506 37.95617990746862, -76.72762973063634 37.9640629830041, -76.73304972302742 37.94095659221645, -76.78701200461497 37.94881448103589, -76.78160730589497 37.97192301072269, -76.7761994342134 37.99503081676834, -76.74920164753763 37.991102615675835, -76.7437829437751 38.01420862542445, -76.79779652472229 38.02206139802818, -76.79238996170857 38.04516881150438, -76.84642964080442 38.05300064313264, -76.85182087101695 38.02989110045062, -76.87883707229784 38.03379729830761, -76.87345351199708 38.05690790323642, -76.900480066213 38.060809391782755, -76.89510101785446 38.08392032127208, -76.92213793031794 38.087817096508886, -76.91676340188064 38.1109283448122, -76.94381067790488 38.114820402741145, -76.93844067737982 38.137931964110656, -76.9330675166898 38.16104277701706, -76.79778110850265 38.14151412710166), (-76.9601328576689 38.16493116942074, -76.96549832227872 38.14181930073405, -77.01962163581848 38.14957663463915, -77.01427157037614 38.17269061017152, -76.9601328576689 38.16493116942074), (-75.89058255177032 36.138445865446, -75.89611963252705 36.115349539718984, -75.869794944361 36.11122920141419, -75.87533610585845 36.088133592134646, -75.82270929429026 36.07987838535709, -75.82826177035005 36.05678464809542, -75.77566021015646 36.04850931998302, -75.77009325882145 36.07160075269965, -75.74378929021235 36.06745352881561, -75.74936347575668 36.04436325071577, -75.75493447507955 36.02127255052197, -75.76050229087743 35.99818143224149, -75.68167165275747 35.98571656069679, -75.68725794240481 35.96262850186831, -75.66099368544833 35.958463511282694, -75.66658399543383 35.9353762034828, -75.79789621828797 35.9561394079039, -75.79234198045513 35.97923250509253, -75.92375755947084 35.99986153649366, -75.92927566824693 35.97676268898989, -75.95555959003111 35.98087054496411, -75.96106731737312 35.95777014578453, -75.96657189855885 35.93466934430565, -75.9720733362499 35.91156814453137, -75.99833824601376 35.915666966809155, -75.9928440317619 35.93876931048972, -75.98734667782443 35.961871255842134, -75.98184618154258 35.98497279886225, -76.19223463524649 36.01758905322011, -76.1976772020102 35.99447841582012, -76.27659476983494 36.00661358970056, -76.28201247580068 35.98349916505531, -76.30831633903394 35.98753187771959, -76.31372369708008 35.96441592927317, -76.36632478221553 35.97246227842203, -76.3609319314313 35.99558047239644, -76.43987493596774 36.00761127523733, -76.43450078815133 36.03073242686529, -76.42912356317562 36.05385317560676, -76.4027920828916 36.04984628654067, -76.39740450519534 36.072965511208075, -76.31840395862373 36.06090778789771, -76.31299147759769 36.084023240846, -76.28665594277383 36.079991644252914, -76.28123308954734 36.10310555903356, -76.17588823800128 36.08691850978106, -76.17043319778635 36.11002749672648, -76.09143055755352 36.097824857302655, -76.08595059436978 36.120930023459294, -76.03328093786774 36.11276458864898, -76.02778330711733 36.13586705506417, -75.97510980352722 36.12767688757716, -75.96959449623958 36.15077664411602, -75.89058255177032 36.138445865446), (-76.52419067715941 35.99646665813617, -76.52953689263539 35.97334137024545, -76.5558497094395 35.97732134138119, -76.56118560463018 35.95419455146497, -76.61380447121822 35.96213543260505, -76.6191227912 35.939006038219624, -76.6717374473376 35.94692225064872, -76.66643365997261 35.97005385623555, -76.66112683669871 35.99318507470968, -76.65581697493853 36.01631590206503, -76.52419067715941 35.99646665813617), (-71.02837304285147 41.86974283727002, -71.03582541106513 41.84705541354411, -71.06387165978425 41.852162628438414, -71.05642733446138 41.874851355270366, -71.02837304285147 41.86974283727002), (-68.59861162805893 44.370463211967596, -68.60708832100684 44.34806510306208, -68.61555969961377 44.325664944052434, -68.624025768754 44.30326273911614, -68.68168453171822 44.314404823385004, -68.67323522123174 44.33680975972647, -68.66478061013494 44.359212649900705, -68.63593221456676 44.35364190219885, -68.62746390773759 44.37604137730687, -68.59861162805893 44.370463211967596), (-70.5036826459999 41.748894299634685, -70.51128254615845 41.72623038143507, -70.42741263484604 41.710540306438155, -70.4350317997676 41.68787885686142, -70.44264633678388 41.66521587533596, -70.47058313971999 41.67044912595955, -70.47818510341646 41.64778327993461, -70.50611787004307 41.65300929998055, -70.51370726941161 41.63034059492752, -70.59750514574176 41.64597928422832, -70.58993961382966 41.66865198612708, -70.58236948319706 41.691323163909516, -70.57479474973675 41.71399281341728, -70.56721540933668 41.7366609304917, -70.59518770693352 41.74186735150737, -70.58761173507082 41.764535260868506, -70.5036826459999 41.748894299634685), (-72.70618278237934 40.94143767409516, -72.7130371341615 40.9186170713778, -72.71988734253034 40.8957951341682, -72.69208815886577 40.891025714820664, -72.69894219439273 40.868203685025264, -72.67115448798222 40.86342961479094, -72.66429248870422 40.88625040530035, -72.58092659559595 40.87188914558869, -72.58781246732676 40.84907208211732, -72.6433702955805 40.858649656902, -72.65023610658251 40.83582878125967, -72.76136210159879 40.854908328532694, -72.7681919404386 40.83208117636399, -72.90713830245454 40.85579193978259, -72.91392418460987 40.83295731028717, -72.92070596752868 40.81012136657145, -72.92748365486179 40.787284112785045, -73.03860766856242 40.80613196451031, -73.04534939402222 40.78328850395408, -73.0731310682692 40.787984518536085, -73.0798607517684 40.765138534436154, -73.13541848969858 40.77451045071618, -73.12870475715403 40.79735887312673, -73.1842922088234 40.806709655152936, -73.19098997815162 40.783858800570194, -73.21878086966846 40.78852413566752, -73.22546661123529 40.7656707688958, -73.2532529444627 40.7703289971593, -73.25992666746794 40.74747312372856, -73.31549361965962 40.75676947728254, -73.32214735093967 40.733909893315214, -73.34992795776473 40.738548021212054, -73.35656969017333 40.71568594310728, -73.38434571571594 40.72031697084212, -73.3909754584579 40.697452404132356, -73.50208153571869 40.715912763195675, -73.508675344493 40.693042107557666, -73.6475939443339 40.715978922471656, -73.65414381106183 40.69310101326267, -73.79310629847798 40.71588442057184, -73.78659646753148 40.73876827066571, -73.73098541702267 40.729670234964935, -73.72445561653679 40.75255043852378, -73.71792186625706 40.77542936313128, -73.69010533049578 40.77086911641841, -73.68355960662582 40.79374556997171, -73.62792057386523 40.78460498604049, -73.62135484848449 40.807477772044, -73.61478514958301 40.830349266869966, -73.60821147360947 40.85321946636706, -73.60163381700842 40.876088366383414, -73.46243488081329 40.853109706465425, -73.46905265090884 40.83024678316603, -73.4412310520487 40.825634533270666, -73.43460526833935 40.84849625661319, -73.42797547422292 40.87135667678195, -73.34448301723178 40.8574772998129, -73.33782516036986 40.880332804025564, -73.30999315498461 40.87569333302214, -73.3033232529543 40.89854632011692, -73.24765348928705 40.88924725381472, -73.25433941116007 40.86639668307216, -73.17088451806322 40.85240745273524, -73.16417458940059 40.87525438743387, -73.13635516966548 40.87057829798774, -73.12963318019284 40.89342270275057, -73.12290712240659 40.91626578851064, -73.06724663329334 40.90689104537313, -73.0605004945334 40.92973037367856, -73.03266743788839 40.9250329324108, -73.02590921065027 40.94786971419596, -72.97023750144639 40.938454688081364, -72.96345917415705 40.961287695460996, -72.7964796620422 40.9328936823614, -72.78964925546222 40.955717988677286, -72.70618278237934 40.94143767409516), (-81.59844019738408 29.35081864945457, -81.60203291214931 29.327611325406394, -81.55301611582904 29.32183413319581, -81.55661973518815 29.298629364046295, -81.56022143528234 29.27542538909042, -81.56382121763514 29.25222221195987, -81.53933447343358 29.249328427140203, -81.54293873718399 29.22612693592352, -81.56741908376843 29.2290198362849, -81.57101503520254 29.205818265693992, -81.5954906095371 29.208705061643766, -81.59190105373034 29.231907515069025, -81.61638464428981 29.234789971671457, -81.6127995772556 29.257994111472254, -81.63729118710945 29.26087222495671, -81.63371061518127 29.284078045960698, -81.63012813536683 29.30728466486995, -81.65463417691709 29.310159309588986, -81.65105620032408 29.333367600920603, -81.62654374615002 29.33049207805223, -81.62295744601315 29.353700281873536, -81.59844019738408 29.35081864945457), (-82.59122369075199 27.648626447721693, -82.61530109734561 27.65128691977566, -82.6185589911755 27.628124532496987, -82.66670573177625 27.633428444933905, -82.66346024749538 27.656592486167852, -82.66021306337771 27.679757590747208, -82.63612655787875 27.677106544473293, -82.63287146095867 27.700271882630954, -82.6087801899571 27.697614880631306, -82.60551717372987 27.72078044717913, -82.60225244736587 27.74394706645124, -82.5989860095274 27.76711473492875, -82.5957178588752 27.79028344909104, -82.49926784084346 27.779590846492855, -82.5025608726185 27.75642546030762, -82.50585217895713 27.733261119660096, -82.52995006008916 27.735940302570167, -82.53323343007658 27.712776176662935, -82.55732655690068 27.71544939641854, -82.56060199704348 27.692285490441975, -82.5846903677617 27.694952749715767, -82.58795788456352 27.67178906885889, -82.59122369075199 27.648626447721693), (-82.11205412612627 26.912590312967517, -82.11541560395005 26.889481464680202, -82.09155910603931 26.886719093572285, -82.09492492233335 26.863612280060195, -82.07107598572391 26.8608457154247, -82.0744461346022 26.83774094164337, -82.07781453677161 26.81463734145438, -82.08118119358204 26.79153491830852, -82.08454610638206 26.768433675654798, -82.08790927651889 26.745333616940343, -82.09127070533827 26.72223474561059, -82.09463039418466 26.699137065109053, -82.1184368513896 26.70189754387937, -82.11508322192661 26.724996093652706, -82.18652959740716 26.733249823564144, -82.18986504190664 26.71014867551721, -82.23749115897166 26.715624170292056, -82.23416784344003 26.738727042567906, -82.23084280613645 26.761831105947408, -82.13554790832795 26.750852998085694, -82.13219687022392 26.77395479393754, -82.12884409552798 26.79705777382018, -82.12548958289742 26.820161934285967, -82.12213333098809 26.843267271885622, -82.14597914415302 26.846022846523258, -82.14262723150574 26.869130224169876, -82.1392735799338 26.892238772091154, -82.13591818809121 26.915348486832272, -82.11205412612627 26.912590312967517)), ((-88.05324035482914 31.053129952595828, -88.10358296614407 31.056123061640996, -88.10547280824363 31.032704220350112, -88.05514390372865 31.029712012826856, -88.05324035482914 31.053129952595828)), ((-77.14208450112567 38.95454829487351, -77.13671542601843 38.977646726864855, -77.16407538308677 38.981488199040484, -77.16943658744982 38.95838873485081, -77.14208450112567 38.95454829487351)), ((-68.2668167648752 44.1854752600137, -68.27537529166024 44.16308484555892, -68.28392847148615 44.14069240345928, -68.22647181092152 44.12938023014081, -68.217902031544 44.151769895469144, -68.20932689652223 44.17415753339696, -68.2668167648752 44.1854752600137)), ((-68.73846032371267 43.9165594353991, -68.74683994346196 43.89412248812337, -68.75521434089973 43.87168357439734, -68.69789884875374 43.860557320730955, -68.68950788400981 43.88299348962664, -68.681111688241 43.905427692308336, -68.73846032371267 43.9165594353991)), ((-68.89858042120197 43.899393873505105, -68.90690813405453 43.876946160818314, -68.91523065595287 43.854496489446106, -68.92354799163363 43.83204486356478, -68.93186014582777 43.809591287350536, -68.87456681533128 43.798536153140816, -68.8662380884724 43.82098699843393, -68.85790417138965 43.84343589362772, -68.80059530500934 43.8323512239664, -68.79223961890455 43.854795428490256, -68.78387872436616 43.87723767479769, -68.81254752783308 43.88278575605061, -68.82090013298995 43.86034214092086, -68.84956505934606 43.86588283454628, -68.84122074759902 43.888327817013575, -68.89858042120197 43.899393873505105)), ((-68.87456681533128 43.798536153140816, -68.88289035669769 43.77608336192415, -68.8256311601796 43.76500690285274, -68.8172910709067 43.78745695697208, -68.87456681533128 43.798536153140816)), ((-69.04205663056206 43.92695357990697, -69.0503427758609 43.904499067675204, -68.99295574544222 43.89349598069818, -68.98465296108024 43.915947777571134, -69.04205663056206 43.92695357990697)), ((-70.3110677569927 41.3511930353979, -70.31868557744737 41.32852127394235, -70.32629879433047 41.305848039479024, -70.27072086306009 41.29530748054491, -70.27834519752606 41.27263548196993, -70.22279859600353 41.262074184363584, -70.2304340218943 41.23940343223556, -70.06393517258135 41.20758713515836, -70.05625274479347 41.230249718273214, -69.97303283898322 41.21425846692352, -69.96532230874296 41.23691548176772, -69.95760712596096 41.25957102900891, -69.94988728651705 41.28222510449793, -69.94216278628636 41.304877704085264, -69.93443362113918 41.32752882362089, -69.98998790738686 41.338209195829414, -69.98226975448274 41.36086156804316, -70.01006067286664 41.36619433308414, -70.00234570490255 41.38884658283691, -70.03014842857566 41.394174851326824, -70.02243665308733 41.41682697276816, -70.05025118968564 41.42215074050371, -70.05795510408947 41.39949725607937, -70.06565436156845 41.37684227866158, -70.03785554304918 41.37152123698975, -70.04555800064058 41.34886613390862, -70.0532558054779 41.32620954623489, -70.08103892226671 41.33152786145281, -70.08872423373151 41.30886842996466, -70.17207364237036 41.324784128207966, -70.1797307705097 41.30211913894951, -70.23530095603607 41.31269758236748, -70.22765954055289 41.33536528502214, -70.3110677569927 41.3511930353979)), ((-69.13645618114485 43.92095848605904, -69.14471218202961 43.89849795232652, -69.15296303186003 43.876035463155546, -69.16120873534284 43.85357102272342, -69.10384535731457 43.84261222723986, -69.09558301718705 43.86507396054192, -69.0873155218987 43.88753374281395, -69.07904286673667 43.90999156987895, -69.13645618114485 43.92095848605904)), ((-69.3374584233926 43.79095835861471, -69.34563691457376 43.768477479893164, -69.35381030955479 43.74599467440132, -69.26785623081994 43.72966211385305, -69.25965790661674 43.75214087668808, -69.25145447298493 43.77461771309485, -69.3374584233926 43.79095835861471)), ((-71.62629379517205 41.208410272155305, -71.63349972637081 41.185658694625516, -71.64070129713464 41.16290570657971, -71.64789851134539 41.14015131217085, -71.53664116768188 41.12014672482381, -71.52941221832192 41.142895958058084, -71.52217889552755 41.1656437852811, -71.51494119540467 41.18839020234056, -71.54277378236272 41.193404049500735, -71.5355396425127 41.216150344551856, -71.52830112175613 41.2388952210452, -71.58400921951731 41.24891041692751, -71.59123183889731 41.226162960552216, -71.59845008582978 41.20341408544224, -71.62629379517205 41.208410272155305)), ((-75.00907108931192 40.406728201628866, -75.01518414686551 40.383772276330824, -74.98743532023627 40.37948301691192, -74.99355271474192 40.35652703572497, -74.96581504003035 40.352233001642986, -74.9596896238335 40.37518785486061, -74.95356051125432 40.39814152590569, -75.00907108931192 40.406728201628866)), ((-81.24783488088536 27.162116521109418, -81.2514304545959 27.139021014720793, -81.25502416051353 27.11592662159472, -81.25861600008395 27.092833345206337, -81.26220597475144 27.069741189028978, -81.26579408595872 27.04665015653421, -81.2419227145537 27.043705825772214, -81.24551503873467 27.02061684292843, -81.24910549930803 26.997528990659244, -81.25269409771431 26.9744422724307, -81.2562808353926 26.951356691707055, -81.28012792498942 26.954297332750798, -81.28370674048544 26.931211970680742, -81.25986571378048 26.928272251950887, -81.26344873431408 26.905188956622897, -81.16812463220225 26.893383269374688, -81.17173001156517 26.870304826662103, -81.14790899088104 26.86734171273017, -81.15151855096035 26.844265351268223, -81.10389336052346 26.838325850718583, -81.10751313782285 26.815252508665083, -81.08370896648735 26.812276127992472, -81.08733290869337 26.789204878608075, -81.01594805595617 26.78024830652723, -81.01958822130521 26.757181032065933, -80.94823582927087 26.748181949481523, -80.95189219017995 26.725118667339988, -80.90434398769384 26.719096000291394, -80.90801049856854 26.696035779012966, -80.81295746608849 26.683933879351667, -80.81664613537824 26.66087863399453, -80.74539134843553 26.651752291752384, -80.74168465267078 26.674804667025604, -80.69417755820258 26.668693398067177, -80.69045692996384 26.691745022869384, -80.66669981783592 26.688680889019196, -80.66297125728569 26.711732718083013, -80.68673437918156 26.714797815046936, -80.6830099043756 26.737851771156365, -80.63547327016309 26.731714622811612, -80.63173483967586 26.754767811400907, -80.60796296448854 26.75169072936425, -80.60421658488526 26.77474410847154, -80.62799447624518 26.7778221569304, -80.62425217838204 26.80087765595174, -80.57668600126027 26.794714594548644, -80.5729297244809 26.817769308989636, -80.5967180119557 26.82085432356259, -80.59296581564249 26.84391115264462, -80.58921167743648 26.866969124813547, -80.58545559584043 26.89002823661402, -80.56164922788342 26.88694031744383, -80.55788516859968 26.909999597121892, -80.55411915993744 26.933060009467052, -80.55035120039265 26.956121551018843, -80.57417567571623 26.959212375225217, -80.57041180555662 26.982276010963393, -80.56664598449763 27.005340769029978, -80.56287821103274 27.028406645959034, -80.58672247729146 27.031495328297012, -80.58295880195986 27.054563287626006, -80.60681077562461 27.057647887405093, -80.6030512042034 27.080717924178714, -80.59928968186063 27.10378906950048, -80.62315542656023 27.106870546900456, -80.61939801541435 27.129943761282068, -80.64327147783376 27.13302114707175, -80.6395181836802 27.156096425549997, -80.66339936683396 27.159169715970222, -80.65965019547517 27.18224705357916, -80.65589907620799 27.205325485970207, -80.89492286359564 27.23579911395952, -80.89123064755425 27.258888160695683, -80.91514811015719 27.261908603575463, -80.91146006877376 27.28499968222308, -81.00717054521016 27.297034504036425, -81.01083419293006 27.273939666663356, -81.01449593524417 27.250845917782353, -81.01815577362875 27.22775326087915, -81.02181370955851 27.204661699437658, -81.02546974450668 27.181571236940123, -81.00157016490107 27.17857482746527, -81.00523038544289 27.155486404473077, -81.00888870491237 27.13239908733863, -81.01254512478043 27.109312879538656, -81.03642645817101 27.112306477906586, -81.04007490389469 27.089220445971513, -81.08783023264724 27.095190588032025, -81.08419394267436 27.118278489103538, -81.13196783367827 27.124230248753292, -81.12834182143358 27.147321125660163, -81.20003288455294 27.156213565041064, -81.19642325641198 27.179308334089637, -81.19281175149538 27.20240420935617, -81.21672414295752 27.20536007024414, -81.22032955285125 27.182263270577195, -81.22393308901214 27.159167577172767, -81.24783488088536 27.162116521109418)), ((-82.92567013846813 24.686103225741828, -82.92874345347705 24.663108608248635, -82.93181521198132 24.64011549190847, -82.93488541515724 24.617123879995173, -82.91159993607292 24.614552009744816, -82.91467439160255 24.591562734862162, -82.82156891654753 24.581229447549433, -82.81847124497936 24.60421538926587, -82.795192390599 24.601618951982033, -82.79208734627363 24.62460556378376, -82.78898072950726 24.64759367965033, -82.7858725391111 24.670583296308877, -82.92567013846813 24.686103225741828)))
+
diff --git a/edexOsgi/com.raytheon.edex.plugin.gfe/utility/edex_static/base/textproducts/templates/product/Hazard_TCV.py b/edexOsgi/com.raytheon.edex.plugin.gfe/utility/edex_static/base/textproducts/templates/product/Hazard_TCV.py
index b0c9c25ebf..68e41ff2bd 100644
--- a/edexOsgi/com.raytheon.edex.plugin.gfe/utility/edex_static/base/textproducts/templates/product/Hazard_TCV.py
+++ b/edexOsgi/com.raytheon.edex.plugin.gfe/utility/edex_static/base/textproducts/templates/product/Hazard_TCV.py
@@ -1516,12 +1516,11 @@ class SectionCommon():
pass
# If this is the "default" case
- if self._tr == "default" and len(statements) > 0:
-
- if elementName in ["Wind", "Storm Surge"]:
- if statements[0].find("If realized, ") == -1:
- statements[0] = "If realized, " + statements[0] + \
- statements[0][1:]
+ #if self._tr == "default" and len(statements) > 0:
+ #
+ # if elementName in ["Wind", "Storm Surge"]:
+ # if statements[0].find("If realized, ") == -1:
+ # statements[0] = "If realized, " + statements[0][0].lower() + statements[0][1:]
return statements
diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/postProcessModels/postProcessedModels.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/postProcessModels/postProcessedModels.xml
index b4acb946e0..b386d9b4fd 100644
--- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/postProcessModels/postProcessedModels.xml
+++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/postProcessModels/postProcessedModels.xml
@@ -111,6 +111,12 @@
RUC130
RUC130GribPostProcessor
+
+
+
+ GFS215|GFS217|GFS20-*
+ gov.noaa.nws.crh.edex.grib.decoderpostprocessor.GFS20PostProcessor
+