commit bfaaa916395c33fddd402b15940098034d5f7407 Author: dfriedrich Date: Thu May 23 21:08:09 2019 -0400 first diff --git a/bin/libshp.dll b/bin/libshp.dll new file mode 100644 index 0000000..10e1934 Binary files /dev/null and b/bin/libshp.dll differ diff --git a/bin/shp_2_txt.exe b/bin/shp_2_txt.exe new file mode 100644 index 0000000..3506e6c Binary files /dev/null and b/bin/shp_2_txt.exe differ diff --git a/compile.bat b/compile.bat new file mode 100644 index 0000000..c69cf3d --- /dev/null +++ b/compile.bat @@ -0,0 +1 @@ +g++ -g -Wall -I./src/cpp ./src/cpp/shp_2_txt.cpp -static -L ./src/cpp -l shp.dll -o ./bin/shp_2_txt \ No newline at end of file diff --git a/run_testing.bat b/run_testing.bat new file mode 100644 index 0000000..7e5de25 --- /dev/null +++ b/run_testing.bat @@ -0,0 +1,2 @@ +set rootFolder=%~dp0 +%rootFolder%\bin\shp_2_txt.exe -i %rootFolder%\testing\MA.dbf -o %rootFolder%\testing\MA.txt \ No newline at end of file diff --git a/shp_2_txt.cpp b/shp_2_txt.cpp new file mode 100644 index 0000000..35d8698 --- /dev/null +++ b/shp_2_txt.cpp @@ -0,0 +1,95 @@ +/* +http://shapelib.maptools.org/dbf_api.html + +basic funtionality taken from dbfdump.c +path to libshp.dll has to be added as a PATH var + +*/ +#include +#include +#include +#include +#include + +using namespace std; + +#include "shapefil.h" + +int main(int argc, char const *argv[]) +{ string dbf_filename; + string txt_filename; + if (argc == 1) + { + // no arguments given, print help + cout << "No input and output files defined!" << endl; + cout << "example: shp_2_txt -i MA.dbf -o MA.txt" << endl; + return 0; + } + + // parse arguments + for (int i = 1; i < argc; i++) + { + if (argv[i][0] == '\0') + { + continue; + } + else if (strcmp(argv[i],"-i") == 0) + { + dbf_filename = argv[i + 1]; + + } + else if (strcmp(argv[i],"-o") == 0 ) + { + txt_filename = argv[i + 1]; + } + } + + DBFHandle dbfh; + int i, iRecord; + char szTitle[12]; + + cout << dbf_filename << " " << txt_filename << endl; + + // open textfile and dbf handle + ofstream txt_file(txt_filename); + dbfh = DBFOpen(dbf_filename.c_str(), "rb"); + + // check + if (dbfh <= 0) + { + throw string("File " + dbf_filename + " not found"); + } + else + { + // loop over dbf records + for( iRecord = 0; iRecord < DBFGetRecordCount(dbfh); iRecord++ ) + { + // loop over fields of record + for( i = 0; i < DBFGetFieldCount(dbfh); i++ ) + { + // DBFFieldType eType; + // eType = DBFGetFieldInfo( dbfh, i, szTitle, &nWidth, &nDecimals ); + string dec_lat = "DEC_LAT"; + string dec_lon = "DEC_LON"; + string ellip_h = "ELLIP_HT"; + string ortho_h = "ORTHO_HT"; + string str(szTitle); + string line; + + // parse for lat, lon in degrees and orhto height + if (szTitle == dec_lat or szTitle == dec_lon or szTitle == ortho_h) + { + txt_file << DBFReadStringAttribute( dbfh, iRecord, i ); + txt_file << " "; + } + } + txt_file << endl; + } + // close dbf handle and textfile + DBFClose( dbfh ); + txt_file.close(); + cout << "Done." << endl; + } + + return 0; +} \ No newline at end of file diff --git a/src/cpp/libshp.dll b/src/cpp/libshp.dll new file mode 100644 index 0000000..10e1934 Binary files /dev/null and b/src/cpp/libshp.dll differ diff --git a/src/cpp/libshp.dll.a b/src/cpp/libshp.dll.a new file mode 100644 index 0000000..68528e4 Binary files /dev/null and b/src/cpp/libshp.dll.a differ diff --git a/src/cpp/shapefil.h b/src/cpp/shapefil.h new file mode 100644 index 0000000..199964d --- /dev/null +++ b/src/cpp/shapefil.h @@ -0,0 +1,755 @@ +#ifndef SHAPEFILE_H_INCLUDED +#define SHAPEFILE_H_INCLUDED + +/****************************************************************************** + * $Id: shapefil.h,v 1.56 2018-08-16 15:39:07 erouault Exp $ + * + * Project: Shapelib + * Purpose: Primary include file for Shapelib. + * Author: Frank Warmerdam, warmerdam@pobox.com + * + ****************************************************************************** + * Copyright (c) 1999, Frank Warmerdam + * Copyright (c) 2012-2016, Even Rouault + * + * This software is available under the following "MIT Style" license, + * or at the option of the licensee under the LGPL (see COPYING). This + * option is discussed in more detail in shapelib.html. + * + * -- + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + ****************************************************************************** + * + * $Log: shapefil.h,v $ + * Revision 1.56 2018-08-16 15:39:07 erouault + * * shpopen.c, dbfopen.c, shptree.c, sbnsearch.c: resyc with GDAL + * internal shapelib. Mostly to allow building those files as C++ + * without warning. Also add FTDate entry in DBFFieldType + * (see https://github.com/OSGeo/gdal/pull/308). And some other + * code cleanups + * + * Revision 1.55 2016-12-05 18:44:08 erouault + * * dbfopen.c, shapefil.h: write DBF end-of-file character 0x1A by default. + * This behaviour can be controlled with the DBFSetWriteEndOfFileChar() + * function. + * + * Revision 1.54 2016-12-05 12:44:05 erouault + * * Major overhaul of Makefile build system to use autoconf/automake. + * + * * Warning fixes in contrib/ + * + * Revision 1.53 2016-12-04 15:30:15 erouault + * * shpopen.c, dbfopen.c, shptree.c, shapefil.h: resync with + * GDAL Shapefile driver. Mostly cleanups. SHPObject and DBFInfo + * structures extended with new members. New functions: + * DBFSetLastModifiedDate, SHPOpenLLEx, SHPRestoreSHX, + * SHPSetFastModeReadObject + * + * * sbnsearch.c: new file to implement original ESRI .sbn spatial + * index reading. (no write support). New functions: + * SBNOpenDiskTree, SBNCloseDiskTree, SBNSearchDiskTree, + * SBNSearchDiskTreeInteger, SBNSearchFreeIds + * + * * Makefile, makefile.vc, CMakeLists.txt, shapelib.def: updates + * with new file and symbols. + * + * * commit: helper script to cvs commit + * + * Revision 1.52 2011-12-11 22:26:46 fwarmerdam + * upgrade .qix access code to use SAHooks (gdal #3365) + * + * Revision 1.51 2011-07-24 05:59:25 fwarmerdam + * minimize use of CPLError in favor of SAHooks.Error() + * + * Revision 1.50 2011-05-13 17:35:17 fwarmerdam + * added DBFReorderFields() and DBFAlterFields() functions (from Even) + * + * Revision 1.49 2011-04-16 14:38:21 fwarmerdam + * avoid warnings with gcc on SHP_CVSID + * + * Revision 1.48 2010-08-27 23:42:52 fwarmerdam + * add SHPAPI_CALL attribute in code + * + * Revision 1.47 2010-01-28 11:34:34 fwarmerdam + * handle the shape file length limits more gracefully (#3236) + * + * Revision 1.46 2008-11-12 14:28:15 fwarmerdam + * DBFCreateField() now works on files with records + * + * Revision 1.45 2008/11/11 17:47:10 fwarmerdam + * added DBFDeleteField() function + * + * Revision 1.44 2008/01/16 20:05:19 bram + * Add file hooks that accept UTF-8 encoded filenames on some platforms. Use SASetupUtf8Hooks + * tosetup the hooks and check SHPAPI_UTF8_HOOKS for its availability. Currently, this + * is only available on the Windows platform that decodes the UTF-8 filenames to wide + * character strings and feeds them to _wfopen and _wremove. + * + * Revision 1.43 2008/01/10 16:35:30 fwarmerdam + * avoid _ prefix on #defined symbols (bug 1840) + * + * Revision 1.42 2007/12/18 18:28:14 bram + * - create hook for client specific atof (bugzilla ticket 1615) + * - check for NULL handle before closing cpCPG file, and close after reading. + * + * Revision 1.41 2007/12/15 20:25:32 bram + * dbfopen.c now reads the Code Page information from the DBF file, and exports + * this information as a string through the DBFGetCodePage function. This is + * either the number from the LDID header field ("LDID/") or as the + * content of an accompanying .CPG file. When creating a DBF file, the code can + * be set using DBFCreateEx. + * + * Revision 1.40 2007/12/06 07:00:25 fwarmerdam + * dbfopen now using SAHooks for fileio + * + * Revision 1.39 2007/12/04 20:37:56 fwarmerdam + * preliminary implementation of hooks api for io and errors + * + * Revision 1.38 2007/11/21 22:39:56 fwarmerdam + * close shx file in readonly mode (GDAL #1956) + * + * Revision 1.37 2007/10/27 03:31:14 fwarmerdam + * limit default depth of tree to 12 levels (gdal ticket #1594) + * + * Revision 1.36 2007/09/10 23:33:15 fwarmerdam + * Upstreamed support for visibility flag in SHPAPI_CALL for the needs + * of GDAL (gdal ticket #1810). + * + * Revision 1.35 2007/09/03 19:48:10 fwarmerdam + * move DBFReadAttribute() static dDoubleField into dbfinfo + * + * Revision 1.34 2006/06/17 15:33:32 fwarmerdam + * added pszWorkField - bug 1202 (rso) + * + * Revision 1.33 2006/02/15 01:14:30 fwarmerdam + * added DBFAddNativeFieldType + * + * Revision 1.32 2006/01/26 15:07:32 fwarmerdam + * add bMeasureIsUsed flag from Craig Bruce: Bug 1249 + * + * Revision 1.31 2006/01/05 01:27:27 fwarmerdam + * added dbf deletion mark/fetch + * + * Revision 1.30 2005/01/03 22:30:13 fwarmerdam + * added support for saved quadtrees + * + * Revision 1.29 2004/09/26 20:09:35 fwarmerdam + * avoid rcsid warnings + * + * Revision 1.28 2003/12/29 06:02:18 fwarmerdam + * added cpl_error.h option + * + * Revision 1.27 2003/04/21 18:30:37 warmerda + * added header write/update public methods + * + * Revision 1.26 2002/09/29 00:00:08 warmerda + * added FTLogical and logical attribute read/write calls + * + * Revision 1.25 2002/05/07 13:46:30 warmerda + * added DBFWriteAttributeDirectly(). + * + * Revision 1.24 2002/04/10 16:59:54 warmerda + * added SHPRewindObject + * + * Revision 1.23 2002/01/15 14:36:07 warmerda + * updated email address + * + * Revision 1.22 2002/01/15 14:32:00 warmerda + * try to improve SHPAPI_CALL docs + */ + +#include + +#ifdef USE_DBMALLOC +#include +#endif + +#ifdef USE_CPL +#include "cpl_conv.h" +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/************************************************************************/ +/* Configuration options. */ +/************************************************************************/ + +/* -------------------------------------------------------------------- */ +/* Should the DBFReadStringAttribute() strip leading and */ +/* trailing white space? */ +/* -------------------------------------------------------------------- */ +#define TRIM_DBF_WHITESPACE + +/* -------------------------------------------------------------------- */ +/* Should we write measure values to the Multipatch object? */ +/* Reportedly ArcView crashes if we do write it, so for now it */ +/* is disabled. */ +/* -------------------------------------------------------------------- */ +#define DISABLE_MULTIPATCH_MEASURE + +/* -------------------------------------------------------------------- */ +/* SHPAPI_CALL */ +/* */ +/* The following two macros are present to allow forcing */ +/* various calling conventions on the Shapelib API. */ +/* */ +/* To force __stdcall conventions (needed to call Shapelib */ +/* from Visual Basic and/or Dephi I believe) the makefile could */ +/* be modified to define: */ +/* */ +/* /DSHPAPI_CALL=__stdcall */ +/* */ +/* If it is desired to force export of the Shapelib API without */ +/* using the shapelib.def file, use the following definition. */ +/* */ +/* /DSHAPELIB_DLLEXPORT */ +/* */ +/* To get both at once it will be necessary to hack this */ +/* include file to define: */ +/* */ +/* #define SHPAPI_CALL __declspec(dllexport) __stdcall */ +/* #define SHPAPI_CALL1 __declspec(dllexport) * __stdcall */ +/* */ +/* The complexity of the situation is partly caused by the */ +/* peculiar requirement of Visual C++ that __stdcall appear */ +/* after any "*"'s in the return value of a function while the */ +/* __declspec(dllexport) must appear before them. */ +/* -------------------------------------------------------------------- */ + +#ifdef SHAPELIB_DLLEXPORT +# define SHPAPI_CALL __declspec(dllexport) +# define SHPAPI_CALL1(x) __declspec(dllexport) x +#endif + +#ifndef SHPAPI_CALL +# if defined(USE_GCC_VISIBILITY_FLAG) +# define SHPAPI_CALL __attribute__ ((visibility("default"))) +# define SHPAPI_CALL1(x) __attribute__ ((visibility("default"))) x +# else +# define SHPAPI_CALL +# endif +#endif + +#ifndef SHPAPI_CALL1 +# define SHPAPI_CALL1(x) x SHPAPI_CALL +#endif + +/* -------------------------------------------------------------------- */ +/* Macros for controlling CVSID and ensuring they don't appear */ +/* as unreferenced variables resulting in lots of warnings. */ +/* -------------------------------------------------------------------- */ +#ifndef DISABLE_CVSID +# if defined(__GNUC__) && __GNUC__ >= 4 +# define SHP_CVSID(string) static const char cpl_cvsid[] __attribute__((used)) = string; +# else +# define SHP_CVSID(string) static const char cpl_cvsid[] = string; \ +static const char *cvsid_aw() { return( cvsid_aw() ? NULL : cpl_cvsid ); } +# endif +#else +# define SHP_CVSID(string) +#endif + +/* -------------------------------------------------------------------- */ +/* On some platforms, additional file IO hooks are defined that */ +/* UTF-8 encoded filenames Unicode filenames */ +/* -------------------------------------------------------------------- */ +#if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define SHPAPI_WINDOWS +# define SHPAPI_UTF8_HOOKS +#endif + +/* -------------------------------------------------------------------- */ +/* IO/Error hook functions. */ +/* -------------------------------------------------------------------- */ +typedef int *SAFile; + +#ifndef SAOffset +typedef unsigned long SAOffset; +#endif + +typedef struct { + SAFile (*FOpen) ( const char *filename, const char *access); + SAOffset (*FRead) ( void *p, SAOffset size, SAOffset nmemb, SAFile file); + SAOffset (*FWrite)( void *p, SAOffset size, SAOffset nmemb, SAFile file); + SAOffset (*FSeek) ( SAFile file, SAOffset offset, int whence ); + SAOffset (*FTell) ( SAFile file ); + int (*FFlush)( SAFile file ); + int (*FClose)( SAFile file ); + int (*Remove) ( const char *filename ); + + void (*Error) ( const char *message ); + double (*Atof) ( const char *str ); +} SAHooks; + +void SHPAPI_CALL SASetupDefaultHooks( SAHooks *psHooks ); +#ifdef SHPAPI_UTF8_HOOKS +void SHPAPI_CALL SASetupUtf8Hooks( SAHooks *psHooks ); +#endif + +/************************************************************************/ +/* SHP Support. */ +/************************************************************************/ +typedef struct tagSHPObject SHPObject; + +typedef struct +{ + SAHooks sHooks; + + SAFile fpSHP; + SAFile fpSHX; + + int nShapeType; /* SHPT_* */ + + unsigned int nFileSize; /* SHP file */ + + int nRecords; + int nMaxRecords; + unsigned int*panRecOffset; + unsigned int *panRecSize; + + double adBoundsMin[4]; + double adBoundsMax[4]; + + int bUpdated; + + unsigned char *pabyRec; + int nBufSize; + + int bFastModeReadObject; + unsigned char *pabyObjectBuf; + int nObjectBufSize; + SHPObject* psCachedObject; +} SHPInfo; + +typedef SHPInfo * SHPHandle; + +/* -------------------------------------------------------------------- */ +/* Shape types (nSHPType) */ +/* -------------------------------------------------------------------- */ +#define SHPT_NULL 0 +#define SHPT_POINT 1 +#define SHPT_ARC 3 +#define SHPT_POLYGON 5 +#define SHPT_MULTIPOINT 8 +#define SHPT_POINTZ 11 +#define SHPT_ARCZ 13 +#define SHPT_POLYGONZ 15 +#define SHPT_MULTIPOINTZ 18 +#define SHPT_POINTM 21 +#define SHPT_ARCM 23 +#define SHPT_POLYGONM 25 +#define SHPT_MULTIPOINTM 28 +#define SHPT_MULTIPATCH 31 + +/* -------------------------------------------------------------------- */ +/* Part types - everything but SHPT_MULTIPATCH just uses */ +/* SHPP_RING. */ +/* -------------------------------------------------------------------- */ + +#define SHPP_TRISTRIP 0 +#define SHPP_TRIFAN 1 +#define SHPP_OUTERRING 2 +#define SHPP_INNERRING 3 +#define SHPP_FIRSTRING 4 +#define SHPP_RING 5 + +/* -------------------------------------------------------------------- */ +/* SHPObject - represents on shape (without attributes) read */ +/* from the .shp file. */ +/* -------------------------------------------------------------------- */ +struct tagSHPObject +{ + int nSHPType; + + int nShapeId; /* -1 is unknown/unassigned */ + + int nParts; + int *panPartStart; + int *panPartType; + + int nVertices; + double *padfX; + double *padfY; + double *padfZ; + double *padfM; + + double dfXMin; + double dfYMin; + double dfZMin; + double dfMMin; + + double dfXMax; + double dfYMax; + double dfZMax; + double dfMMax; + + int bMeasureIsUsed; + int bFastModeReadObject; +}; + +/* -------------------------------------------------------------------- */ +/* SHP API Prototypes */ +/* -------------------------------------------------------------------- */ + +/* If pszAccess is read-only, the fpSHX field of the returned structure */ +/* will be NULL as it is not necessary to keep the SHX file open */ +SHPHandle SHPAPI_CALL + SHPOpen( const char * pszShapeFile, const char * pszAccess ); +SHPHandle SHPAPI_CALL + SHPOpenLL( const char *pszShapeFile, const char *pszAccess, + SAHooks *psHooks ); +SHPHandle SHPAPI_CALL + SHPOpenLLEx( const char *pszShapeFile, const char *pszAccess, + SAHooks *psHooks, int bRestoreSHX ); + +int SHPAPI_CALL + SHPRestoreSHX( const char *pszShapeFile, const char *pszAccess, + SAHooks *psHooks ); + +/* If setting bFastMode = TRUE, the content of SHPReadObject() is owned by the SHPHandle. */ +/* So you cannot have 2 valid instances of SHPReadObject() simultaneously. */ +/* The SHPObject padfZ and padfM members may be NULL depending on the geometry */ +/* type. It is illegal to free at hand any of the pointer members of the SHPObject structure */ +void SHPAPI_CALL SHPSetFastModeReadObject( SHPHandle hSHP, int bFastMode ); + +SHPHandle SHPAPI_CALL + SHPCreate( const char * pszShapeFile, int nShapeType ); +SHPHandle SHPAPI_CALL + SHPCreateLL( const char * pszShapeFile, int nShapeType, + SAHooks *psHooks ); +void SHPAPI_CALL + SHPGetInfo( SHPHandle hSHP, int * pnEntities, int * pnShapeType, + double * padfMinBound, double * padfMaxBound ); + +SHPObject SHPAPI_CALL1(*) + SHPReadObject( SHPHandle hSHP, int iShape ); +int SHPAPI_CALL + SHPWriteObject( SHPHandle hSHP, int iShape, SHPObject * psObject ); + +void SHPAPI_CALL + SHPDestroyObject( SHPObject * psObject ); +void SHPAPI_CALL + SHPComputeExtents( SHPObject * psObject ); +SHPObject SHPAPI_CALL1(*) + SHPCreateObject( int nSHPType, int nShapeId, int nParts, + const int * panPartStart, const int * panPartType, + int nVertices, + const double * padfX, const double * padfY, + const double * padfZ, const double * padfM ); +SHPObject SHPAPI_CALL1(*) + SHPCreateSimpleObject( int nSHPType, int nVertices, + const double * padfX, + const double * padfY, + const double * padfZ ); + +int SHPAPI_CALL + SHPRewindObject( SHPHandle hSHP, SHPObject * psObject ); + +void SHPAPI_CALL SHPClose( SHPHandle hSHP ); +void SHPAPI_CALL SHPWriteHeader( SHPHandle hSHP ); + +const char SHPAPI_CALL1(*) + SHPTypeName( int nSHPType ); +const char SHPAPI_CALL1(*) + SHPPartTypeName( int nPartType ); + +/* -------------------------------------------------------------------- */ +/* Shape quadtree indexing API. */ +/* -------------------------------------------------------------------- */ + +/* this can be two or four for binary or quad tree */ +#define MAX_SUBNODE 4 + +/* upper limit of tree levels for automatic estimation */ +#define MAX_DEFAULT_TREE_DEPTH 12 + +typedef struct shape_tree_node +{ + /* region covered by this node */ + double adfBoundsMin[4]; + double adfBoundsMax[4]; + + /* list of shapes stored at this node. The papsShapeObj pointers + or the whole list can be NULL */ + int nShapeCount; + int *panShapeIds; + SHPObject **papsShapeObj; + + int nSubNodes; + struct shape_tree_node *apsSubNode[MAX_SUBNODE]; + +} SHPTreeNode; + +typedef struct +{ + SHPHandle hSHP; + + int nMaxDepth; + int nDimension; + int nTotalCount; + + SHPTreeNode *psRoot; +} SHPTree; + +SHPTree SHPAPI_CALL1(*) + SHPCreateTree( SHPHandle hSHP, int nDimension, int nMaxDepth, + double *padfBoundsMin, double *padfBoundsMax ); +void SHPAPI_CALL + SHPDestroyTree( SHPTree * hTree ); + +int SHPAPI_CALL + SHPWriteTree( SHPTree *hTree, const char * pszFilename ); + +int SHPAPI_CALL + SHPTreeAddShapeId( SHPTree * hTree, SHPObject * psObject ); +int SHPAPI_CALL + SHPTreeRemoveShapeId( SHPTree * hTree, int nShapeId ); + +void SHPAPI_CALL + SHPTreeTrimExtraNodes( SHPTree * hTree ); + +int SHPAPI_CALL1(*) + SHPTreeFindLikelyShapes( SHPTree * hTree, + double * padfBoundsMin, + double * padfBoundsMax, + int * ); +int SHPAPI_CALL + SHPCheckBoundsOverlap( double *, double *, double *, double *, int ); + +int SHPAPI_CALL1(*) +SHPSearchDiskTree( FILE *fp, + double *padfBoundsMin, double *padfBoundsMax, + int *pnShapeCount ); + +typedef struct SHPDiskTreeInfo* SHPTreeDiskHandle; + +SHPTreeDiskHandle SHPAPI_CALL + SHPOpenDiskTree( const char* pszQIXFilename, + SAHooks *psHooks ); + +void SHPAPI_CALL + SHPCloseDiskTree( SHPTreeDiskHandle hDiskTree ); + +int SHPAPI_CALL1(*) +SHPSearchDiskTreeEx( SHPTreeDiskHandle hDiskTree, + double *padfBoundsMin, double *padfBoundsMax, + int *pnShapeCount ); + +int SHPAPI_CALL + SHPWriteTreeLL(SHPTree *hTree, const char *pszFilename, SAHooks *psHooks ); + +/* -------------------------------------------------------------------- */ +/* SBN Search API */ +/* -------------------------------------------------------------------- */ + +typedef struct SBNSearchInfo* SBNSearchHandle; + +SBNSearchHandle SHPAPI_CALL + SBNOpenDiskTree( const char* pszSBNFilename, + SAHooks *psHooks ); + +void SHPAPI_CALL + SBNCloseDiskTree( SBNSearchHandle hSBN ); + +int SHPAPI_CALL1(*) +SBNSearchDiskTree( SBNSearchHandle hSBN, + double *padfBoundsMin, double *padfBoundsMax, + int *pnShapeCount ); + +int SHPAPI_CALL1(*) +SBNSearchDiskTreeInteger( SBNSearchHandle hSBN, + int bMinX, int bMinY, int bMaxX, int bMaxY, + int *pnShapeCount ); + +void SHPAPI_CALL SBNSearchFreeIds( int* panShapeId ); + +/************************************************************************/ +/* DBF Support. */ +/************************************************************************/ +typedef struct +{ + SAHooks sHooks; + + SAFile fp; + + int nRecords; + + int nRecordLength; /* Must fit on uint16 */ + int nHeaderLength; /* File header length (32) + field + descriptor length + spare space. + Must fit on uint16 */ + int nFields; + int *panFieldOffset; + int *panFieldSize; + int *panFieldDecimals; + char *pachFieldType; + + char *pszHeader; /* Field descriptors */ + + int nCurrentRecord; + int bCurrentRecordModified; + char *pszCurrentRecord; + + int nWorkFieldLength; + char *pszWorkField; + + int bNoHeader; + int bUpdated; + + union + { + double dfDoubleField; + int nIntField; + } fieldValue; + + int iLanguageDriver; + char *pszCodePage; + + int nUpdateYearSince1900; /* 0-255 */ + int nUpdateMonth; /* 1-12 */ + int nUpdateDay; /* 1-31 */ + + int bWriteEndOfFileChar; /* defaults to TRUE */ +} DBFInfo; + +typedef DBFInfo * DBFHandle; + +typedef enum { + FTString, + FTInteger, + FTDouble, + FTLogical, + FTDate, + FTInvalid +} DBFFieldType; + +/* Field descriptor/header size */ +#define XBASE_FLDHDR_SZ 32 +/* Shapelib read up to 11 characters, even if only 10 should normally be used */ +#define XBASE_FLDNAME_LEN_READ 11 +/* On writing, we limit to 10 characters */ +#define XBASE_FLDNAME_LEN_WRITE 10 +/* Normally only 254 characters should be used. We tolerate 255 historically */ +#define XBASE_FLD_MAX_WIDTH 255 + +DBFHandle SHPAPI_CALL + DBFOpen( const char * pszDBFFile, const char * pszAccess ); +DBFHandle SHPAPI_CALL + DBFOpenLL( const char * pszDBFFile, const char * pszAccess, + SAHooks *psHooks ); +DBFHandle SHPAPI_CALL + DBFCreate( const char * pszDBFFile ); +DBFHandle SHPAPI_CALL + DBFCreateEx( const char * pszDBFFile, const char * pszCodePage ); +DBFHandle SHPAPI_CALL + DBFCreateLL( const char * pszDBFFile, const char * pszCodePage, SAHooks *psHooks ); + +int SHPAPI_CALL + DBFGetFieldCount( DBFHandle psDBF ); +int SHPAPI_CALL + DBFGetRecordCount( DBFHandle psDBF ); +int SHPAPI_CALL + DBFAddField( DBFHandle hDBF, const char * pszFieldName, + DBFFieldType eType, int nWidth, int nDecimals ); + +int SHPAPI_CALL + DBFAddNativeFieldType( DBFHandle hDBF, const char * pszFieldName, + char chType, int nWidth, int nDecimals ); + +int SHPAPI_CALL + DBFDeleteField( DBFHandle hDBF, int iField ); + +int SHPAPI_CALL + DBFReorderFields( DBFHandle psDBF, int* panMap ); + +int SHPAPI_CALL + DBFAlterFieldDefn( DBFHandle psDBF, int iField, const char * pszFieldName, + char chType, int nWidth, int nDecimals ); + +DBFFieldType SHPAPI_CALL + DBFGetFieldInfo( DBFHandle psDBF, int iField, + char * pszFieldName, int * pnWidth, int * pnDecimals ); + +int SHPAPI_CALL + DBFGetFieldIndex(DBFHandle psDBF, const char *pszFieldName); + +int SHPAPI_CALL + DBFReadIntegerAttribute( DBFHandle hDBF, int iShape, int iField ); +double SHPAPI_CALL + DBFReadDoubleAttribute( DBFHandle hDBF, int iShape, int iField ); +const char SHPAPI_CALL1(*) + DBFReadStringAttribute( DBFHandle hDBF, int iShape, int iField ); +const char SHPAPI_CALL1(*) + DBFReadLogicalAttribute( DBFHandle hDBF, int iShape, int iField ); +int SHPAPI_CALL + DBFIsAttributeNULL( DBFHandle hDBF, int iShape, int iField ); + +int SHPAPI_CALL + DBFWriteIntegerAttribute( DBFHandle hDBF, int iShape, int iField, + int nFieldValue ); +int SHPAPI_CALL + DBFWriteDoubleAttribute( DBFHandle hDBF, int iShape, int iField, + double dFieldValue ); +int SHPAPI_CALL + DBFWriteStringAttribute( DBFHandle hDBF, int iShape, int iField, + const char * pszFieldValue ); +int SHPAPI_CALL + DBFWriteNULLAttribute( DBFHandle hDBF, int iShape, int iField ); + +int SHPAPI_CALL + DBFWriteLogicalAttribute( DBFHandle hDBF, int iShape, int iField, + const char lFieldValue); +int SHPAPI_CALL + DBFWriteAttributeDirectly(DBFHandle psDBF, int hEntity, int iField, + void * pValue ); +const char SHPAPI_CALL1(*) + DBFReadTuple(DBFHandle psDBF, int hEntity ); +int SHPAPI_CALL + DBFWriteTuple(DBFHandle psDBF, int hEntity, void * pRawTuple ); + +int SHPAPI_CALL DBFIsRecordDeleted( DBFHandle psDBF, int iShape ); +int SHPAPI_CALL DBFMarkRecordDeleted( DBFHandle psDBF, int iShape, + int bIsDeleted ); + +DBFHandle SHPAPI_CALL + DBFCloneEmpty(DBFHandle psDBF, const char * pszFilename ); + +void SHPAPI_CALL + DBFClose( DBFHandle hDBF ); +void SHPAPI_CALL + DBFUpdateHeader( DBFHandle hDBF ); +char SHPAPI_CALL + DBFGetNativeFieldType( DBFHandle hDBF, int iField ); + +const char SHPAPI_CALL1(*) + DBFGetCodePage(DBFHandle psDBF ); + +void SHPAPI_CALL + DBFSetLastModifiedDate( DBFHandle psDBF, int nYYSince1900, int nMM, int nDD ); + +void SHPAPI_CALL DBFSetWriteEndOfFileChar( DBFHandle psDBF, int bWriteFlag ); + +#ifdef __cplusplus +} +#endif + +#endif /* ndef SHAPEFILE_H_INCLUDED */ diff --git a/src/cpp/shp_2_txt.cpp b/src/cpp/shp_2_txt.cpp new file mode 100644 index 0000000..35d8698 --- /dev/null +++ b/src/cpp/shp_2_txt.cpp @@ -0,0 +1,95 @@ +/* +http://shapelib.maptools.org/dbf_api.html + +basic funtionality taken from dbfdump.c +path to libshp.dll has to be added as a PATH var + +*/ +#include +#include +#include +#include +#include + +using namespace std; + +#include "shapefil.h" + +int main(int argc, char const *argv[]) +{ string dbf_filename; + string txt_filename; + if (argc == 1) + { + // no arguments given, print help + cout << "No input and output files defined!" << endl; + cout << "example: shp_2_txt -i MA.dbf -o MA.txt" << endl; + return 0; + } + + // parse arguments + for (int i = 1; i < argc; i++) + { + if (argv[i][0] == '\0') + { + continue; + } + else if (strcmp(argv[i],"-i") == 0) + { + dbf_filename = argv[i + 1]; + + } + else if (strcmp(argv[i],"-o") == 0 ) + { + txt_filename = argv[i + 1]; + } + } + + DBFHandle dbfh; + int i, iRecord; + char szTitle[12]; + + cout << dbf_filename << " " << txt_filename << endl; + + // open textfile and dbf handle + ofstream txt_file(txt_filename); + dbfh = DBFOpen(dbf_filename.c_str(), "rb"); + + // check + if (dbfh <= 0) + { + throw string("File " + dbf_filename + " not found"); + } + else + { + // loop over dbf records + for( iRecord = 0; iRecord < DBFGetRecordCount(dbfh); iRecord++ ) + { + // loop over fields of record + for( i = 0; i < DBFGetFieldCount(dbfh); i++ ) + { + // DBFFieldType eType; + // eType = DBFGetFieldInfo( dbfh, i, szTitle, &nWidth, &nDecimals ); + string dec_lat = "DEC_LAT"; + string dec_lon = "DEC_LON"; + string ellip_h = "ELLIP_HT"; + string ortho_h = "ORTHO_HT"; + string str(szTitle); + string line; + + // parse for lat, lon in degrees and orhto height + if (szTitle == dec_lat or szTitle == dec_lon or szTitle == ortho_h) + { + txt_file << DBFReadStringAttribute( dbfh, iRecord, i ); + txt_file << " "; + } + } + txt_file << endl; + } + // close dbf handle and textfile + DBFClose( dbfh ); + txt_file.close(); + cout << "Done." << endl; + } + + return 0; +} \ No newline at end of file diff --git a/src/python/shp_2_txt.py b/src/python/shp_2_txt.py new file mode 100644 index 0000000..f77184f --- /dev/null +++ b/src/python/shp_2_txt.py @@ -0,0 +1,22 @@ +# OrderedDict([('FeatureId', None), ('DATA_DATE', '20190402'), ('DATA_SRCE', 'http://www.ngs.noaa.gov/cgi-bin/ds_mark.prl?PidBox=DF6866'), +# ('PID', 'DF6866'), ('NAME', '204 S'), ('HT_MOD', ''), ('CORS_ID', ''), ('PACS_SACS', ''), ('STATE', 'MA'), +# ('COUNTY', 'PLYMOUTH'), ('QUAD', ''), ('LATITUDE', '41 48 42.93229(N)'), ('LONGITUDE', '070 57 49.32872(W)'), +# ('DEC_LAT', ' 41.8119256361'), ('DEC_LON', ' -70.9637024222'), ('ELLIP_HT', ''), ('POS_DATUM', 'NAD 83'), ('DATUM_TAG', '(1996)'), +# ('POS_EPOCH', ''), ('POS_SRCE', 'ADJUSTED'), ('ORTHO_HT', ' 18.5'), ('VERT_DATUM', 'NAVD 88'), ('VERT_EPOCH', ''), ('VERT_SRCE', 'VERTCON'), +# ('GEOID_HT', '-29.000'), ('GEOID_MOD', 'GEOID12B'), ('DYNAMIC_HT', ''), ('MODEL_GRAV', ''), +# ('N_ACC_HZ', ''), ('N_ACC_EH', ''), ('N_ACC_STDN', ''), ('N_ACC_STDE', ''), ('N_ACC_STDH', ''), ('N_ACC_CORR', ''), +# ('POS_ORDER', '2'), ('VERT_ORDER', ''), ('VERT_CLASS', ''), ('DIST_RATE', ''), ('ECEF_X', ''), ('ECEF_Y', ''), ('ECEF_Z', ''), +# ('SPC_ZONE', 'MA M'), ('SPC_NORTH', '840320.139'), ('SPC_EAST', '244562.406'), ('SPC_CONV', '+0 21 36.9'), ('SPC_CSF', '0.99998907'), +# ('UTM_ZONE', '19'), ('UTM_NORTH', '4630758.769'), ('UTM_EAST', '336889.228'), ('UTM_CONV', '-1 18 34.1'), ('UTM_CSF', '0.99992904'), +# ('STABILITY', 'C'), ('FIRST_RECV', '1972'), ('LAST_RECV', '1972'), ('LAST_COND', 'MONUMENTED'), ('LAST_RECBY', 'MAGS'), ('SAT_USE', ''), +# ('MARKER', 'DE = TRAVERSE STATION DISK'), ('SETTING', '7 = SET IN TOP OF CONCRETE MONUMENT'), ('STAMPING', '204 S')]) + +from dbfread import DBF + +dbf_file = DBF("f:\\testing\\shp_2_txt\\MA.dbf", load=True, encoding='utf8') +txt_file = open("f:\\testing\\shp_2_txt\\MA.txt", 'w') + +for idx, record in enumerate(dbf_file): + txt_file.write(str(record['DEC_LON'] + record['DEC_LAT'] + record['ELLIP_HT'] + record['ORTHO_HT']) + '\n') + +txt_file.close() diff --git a/testing/MA.dbf b/testing/MA.dbf new file mode 100644 index 0000000..c6b7715 Binary files /dev/null and b/testing/MA.dbf differ diff --git a/testing/MA.prj b/testing/MA.prj new file mode 100644 index 0000000..2f9695d --- /dev/null +++ b/testing/MA.prj @@ -0,0 +1 @@ +GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] diff --git a/testing/MA.shp b/testing/MA.shp new file mode 100644 index 0000000..8f288dd Binary files /dev/null and b/testing/MA.shp differ diff --git a/testing/MA.shp.xml b/testing/MA.shp.xml new file mode 100644 index 0000000..e4b3f25 --- /dev/null +++ b/testing/MA.shp.xml @@ -0,0 +1,917 @@ + + + + + +NOAA, National Geodetic Survey +20190402 +Horizontal and Vertical Geodetic Control Data for the Unites States. +latest available +Diagram + +N/A +N/A + + +NOAA Campus, Silver Spring, MD +NOAA, National Geodetic Survey + + +Questions concerning this data +may be addressed to +NGS Information Services Branch +EMail - ngs.software@noaa.gov +Phone - 301-713-3242 + +<http://www.ngs.noaa.gov/cgi-bin/datasheet.prl> + + + + +This data contains a set of geodetic control stations +maintained by the National Geodetic Survey. +Each geodetic control station in this dataset +has either a precise Latitude/Longitude used +for horizontal control or a precise Orthometric Height +used for vertical control, or both. + +The National Geodetic Survey (NGS) serves +as the Nation's depository for geodetic data. The NGS +distributes geodetic data worldwide to a variety of +users. These geodetic data include the final results +of geodetic surveys, software programs to format, +compute, verify, and adjust original survey +observations or to convert values from one geodetic +datum to another, and publications that describe how to +obtain and use Geodetic Data products and services. + + +Provide a base of reference for latitude, longitude and height +throughout the United States. + + + + + +20190402 + + +retrieval date + + +Complete +Continually + + + +-73.5 +-69.9 +42.9 +41.2 + + + + +geodesy + +NSRS, geodetic, horizontal control, +vertical control, ellipsoid height, benchmark, +orthometric height, latitude, longitude + + + +None +The geographic limits of USA including trust Territories + + +N/A +N/A + + +N/A +N/A + + + +Geodetic Data are in the public +domain, not restricted from access or distribution. + + +Not restricted; Geodetic Data, +including software were developed and compiled with +U.S. Government funding; no proprietary rights may be +attached to them nor may they be sold to the U.S. +Government as part of any procurement of ADP products +or services. + + + + +NGS Information Services Branch +NOAA, National Geodetic Survey + +Information Specialist + +Mailing and Physical Address +
+SSMC3/9202 +1315 East-west Highway +
+Silver Spring +MD +20910 +USA +
+301-713-3242 +301-713-4172 +ngs.infocenter@noaa.gov +7:00am to 4:30pm EST +Prefer EMail +
+
+ +NOAA, National Geodetic Survey and +cooperating organizations + + +DOD +unclassified +none + + +The data was extracted from NGS datasheets which +are available at <http://www.ngs.noaa.gov/cgi-bin/datasheet.prl> +The NGS datasheet is a text document which summarizes +key geodetic information stored in the NGS database. + +
+ + + +Horizontal control stations (those with precise Latitude, Longitude) +were established in accordance with FGDC publications +"Standards and Specifications for Geodetic Accuracy Standards" +and "Geometric Geodetic Accuracy Standards and Specifications for +Using GPS Relative Positioning Techniques" +The final Latitude, Longitude of these stations were determined +by a least squares adjustments of the horizontal observations. +Horizontal control station have Latitude, Longitudes displayed +to 5 places and are identified by attribute POS_SRCE = 'ADJUSTED' + +Lesser quality Latitude, Longitudes may also be preset in the dataset. +These are identified by a POS_SRCE attributes +HD_HELD1, HD_HELD2, or SCALED. +These lesser quality positions are described at: +<http://www.ngs.noaa.gov/cgi-bin/ds_lookup.prl?Item=SCALED> + +Vertical control stations (those with precise Orthometric Heights) +were established in accordance with FGDC publications +"Standards and Specifications for Geodetic Accuracy Standards" +The final Orthometric Height of these stations were in most cases +determined by a least squares adjustments of the vertical observations +but in some cases may have been keyed from old survey documents. +Vertical control stations have Orthometric Heights displayed +to 2 or 3 places and are identified by attribute ELEV_SRCE of +ADJUSTED, ADJ UNCH, POSTED,READJUST,N HEIGHT,RESET,COMPUTED + +Lesser quality Orthometric Heights may also be preset in the dataset. +These are identified by a ELEV_SRCE attributes +GPS_OBS, VERT_ANG, H_LEVEL, VERTCON, SCALED. +These lesser quality orthometric heights are described at: +<http://www.ngs.noaa.gov/cgi-bin/ds_lookup.prl?Item=SCALED> + +IMPORTANT - Control stations do not always have both precise +Latitude, Longitude AND precise Orthometric Height. +A horizontal control station may have a orthometric +height associated with it which is of non geodetic quality. +These types of heights are displayed to 0, 1, or 2 decimal +places. Worst case being off by +/- 1 meter. +LIKEWISE - A Vertical control station may have a Latitude, Longitude +associated with it which is of non geodetic quality. +These types of Latitude, Longitudes are displayed to 0, 1 or 2 decimal +places. Worst case being off by +/- 180 meter. +Refer to <http://www.ngs.noaa.gov/cgi-bin/ds_lookup.prl?Item=SCALED> +for a description of the various type of methods used in determining +the Latitude, Longitude, and Orthometric Height. + +Attribute POS_CHECK and ELEV_CHECK indicate whether or not +an observational check was made to the position and/or orthometric height. +Care should be taken when using "No Check" coordinates. + +If attribute ELEV_SRCE = 'VERTCON' then the Orthometric Height was +determined by applying NGS program VERTCON to an Old NGVD 29 height. +In most areas VERTCON gives results to +/- 2 cm. +See <http://www.ngs.noaa.gov/TOOLS/Vertcon/vertcon.html> for a more +detailed explanation of VERTCON accuracy. + +Ellipsoid Heights are also present in the dataset. +The ellipsoid heights consist of those determined using a precise +geoid model, which are displayed to 2 decimal places and are considered +good to +/- .005 meters, and those displayed to 1 decimal place and are considered +only good to +/- .5 meters + + +95 percent confidence level for geodetic quality data. + +Geodetic Data are continuously being processed; +their standards and specifications are being reviewed for next +publication release. "Standards and Specifications for Geodetic Control Networks", +1984 and "Geometric Geodetic Accuracy Standards +and Specifications for Using GPS Relative +Positioning Techniques," FGCS (formally FGCC) +publication version 5.0 1989, are most current +published documents. + + + + +FGCS sponsored testing in cooperation with equipment +manufacturers and National Institutes of Standards +and Technology, Gaithersburg, MD 20850 + + +This dataset DOES NOT include destroyed marks. +All other non-publishable marks are NOT included. +Non-publishable criteria is available at +<http://www.ngs.noaa.gov/cgi-bin/craigs_lib.prl?HELP_NONPUB=1> + + + + +The description of tests are explained in "Geometric +Geodetic Accuracy Standards and Specifications For +Using GPS Relative Positioning Techniques," FGCS +(formally FGCC) publication version 5.0, 1989. + + +.05 meters for highest order of accuracy + +Horizontal positional accuracy statements pertain +to horizontal control stations only. +i.e. Those with geodetic quality Latitude, Longitudes. +Positional Accuracy explanation contained in +"Geometric Geodetic Accuracy Standards and +Specifications For Using GPS Relative Positioning +Techniques," FGCS (formally FGCC) publication +version 5.0, 1989, (See table 1, p6). +with the exception of Order A and Order B which +have an accuracy of as described at: +<http://www.ngs.noaa.gov/cgi-bin/ds_lookup.prl?Item=HORZ%20ORDER> + + + + + +The description of tests are explained in "Geometric Geodetic +Accuracy Standards and Specifications for Using +GPS Relative Positioning Techniques," FGCS +(formally FGCC) publication version 5.0, 1989, +(See table 1, p6). + + +.05 meter for highest order of accuracy + +Vertical positional accuracy statements pertain +to vertical control stations only. +i.e. Those with geodetic quality Orthometric Heights. +Orthometric Height accuracy explanation is contained in +FGDC publication "Standards and Specifications for Geodetic Control Networks" +with the exception of vertical control of class 0 +POSTED and READJUSTED Heights which are described at: +<http://www.ngs.noaa.gov/cgi-bin/ds_lookup.prl?Item=VERT%20ORDER> + +Ellipsoid height accuracy explanation contained in +"Geometric Geodetic Accuracy Standards and +Specifications for Using GPS Relative Positioning +Techniques," FGCS (formally FGCC) publication +version 5.0, 1989. (see table 1, p6). +The accuracies for ellipsoid heights are described at: +<http://www.ngs.noaa.gov/cgi-bin/ds_lookup.prl?Item=ELLP%20ORDER> + + + + + + + + +NOAA, National Geodetic Survey +20190402 + +"Input Formats and Specifications of the +National Geodetic Survey Data Base" published by +FGCS (formally FGCC) + +latest available +diagram + +N/A +N/A + + +NOAA Campus, Silver Spring, MD +NOAA, National Geodetic Survey + +N/A +<http://www.ngs.noaa.gov/FGCS/BlueBook/> + + +paper, Web + + + +1994 + + +publication date + +Blue Book + +The geodetic data must be +submitted in the digital formats specified in the +FGCS (formally FGCC) publication "Input Formats +and Specifications of the National Geodetic Survey +Data Base" which describes the formats and +procedures for submission of data for adjustment +and assimilation into the National Geodetic Survey +Data Base. Separate volumes of this publication +refer to horizontal (volume 1), vertical (volume +2), and gravity (volume 3) control, and are +available from NOAA, National Geodetic Survey, +1315 East-West Hwy, Code N/CGS1, Silver Spring, +MD, 20910 (1-301-713-3242). Note guidelines for +submission of three-dimensional Global Positioning +System (GPS) relative positioning data are +contained in annex L to volume 1. + + + + +The National Geodetic Survey +produces geodetic data. Geodetic data comprise +the results of geodetic surveys to determine, +among other things, latitude, longitude, height, +scale, and orientation control. The National +Geodetic Survey original field survey project +observations and final reports are accessioned +into records system of the National Archives and +Records Administration of the U.S.A. These +surveys provide information valuable for a variety +of uses in the mapping, charting and surveying +community. + +The NGS' final product is the geodetic data sheet. +Geodetic data sheets are comprehensive summaries +of all published information for a given +geodetic reference point, including: +the geographic position and/or height based on the +current reference datum, condition of the survey +mark when it was last visited, a description of +where the point is located and how to reach it, +and an explanation of the terms used in the data +sheet. In support of these geodetic data, the NGS +provides software, publications, and various user +services, including geodetic advisor program, +instrument calibration, surveying standards, and +technical workshops. + +This dataset contains certain information extracted +from the above mentioned data sheet. + +Geodetic Data +Not complete +NOAA, National Geodetic Survey and cooperating organizations. + + + +NGS Information Services Branch + +Information Specialist + +Mailing and Physical Address +
+SSMC3/9202 +1315 East-west Highway +
+Silver Spring +MD +20910 +USA +
+301-713-3242 +301-713-4172 +ngs.infocenter@noaa.gov +9:00am to 4:30pm EST +Prefer EMail +
+
+
+
+
+ + +Geodetic Data- horizontal positional datum +conversion, use program NADCON (version 2.1) + +Geodetic Data - vertical positional datum +conversion, use program VERTCON (version 2.0) + +These programs provide indirect spatial reference +data and are available from NOAA, National +Geodetic Survey at +<http://www.ngs.noaa.gov/PC_PROD/pc_prod.shtml> + +point + + +point +1,500,000 + + + + + + +0.00001 +0.00001 +degrees, minutes, and decimal seconds + + +North American Datum of 1983 (NAD 83) +Geodetic Reference System 80 (GRS80) +6378137 +298.26 + + + + + +North American Vertical Datum of 1988 (NAVD 88), +including Ellipsoidal and Orthometric +Heights. + +.01 +meters +implicit coordinate + + +the local surface +.01 +meters +implicit coordinate + + + + + + + +The current attributes and their meaning are shown below. + +#FeatureId +Temporary unique ID assigned to this station. + +DATA_DATE- +The date when this information was retrieved from the NGS database. + +DATA_SRCE- +Data Source where the information for the mark came from. +You should use this link to obtain a full datasheet for the mark +or obtain the datasheets from http://www.ngs.noaa.gov/cgi-bin/datasheet.prl +if you intend to use the data for survey control. + +DEC_LONG- +Decimal equivalent of the LONGITUDE +Always displayed to 10 decimal places, but you should +see POS_SRCE and POS_ORDER to determine the true accuracy. + +DEC_LAT- +Decimal equivalent of the LATITUDE + +PID- +Permanent Identifier assigned by NGS to each mark + +NAME- +Station Name (a.k.a. Designation) + +STATE- +State Code + +COUNTY- +County Name + +QUAD- +USGS Topographic Quad Map Name + +LATITUDE- +Latitude in Deg-Min-Sec format + +LONGITUDE- +Longitude in Deg-Min-Sec format + +POS_DATUM- +Datum of the LATITUDE,LONGITUDE +Should always be NAD83 + +DATUM_TAG- +Datum Tag of the LATITUDE,LONGITUDE +NAD83 (1986) indicates positions on the NAD83 datum for the +North American Adjustment, completed in 1986. +NAD83 (nnnn) indicates positions on the NAD83 datum for the +North American Adjustment, but readjusted to a State High +Accuracy Reference Network (HARN) on the date shown in (nnnn). +NAD83 (CORS) indicates positions which are part of the CORS +network. + +POS_SRCE- +Position Source for the LATITUDE,LONGITUDE + +ADJUSTED = Least squares adjustment. +(Lat,Lon Rounded to 5 decimal places.) + +HD_HELD1 = Differentially corrected hand held GPS observations. +(Lat,Lon Rounded to 2 decimal places.) + +HD_HELD2 = Autonomous hand held GPS observations. +(Lat,Lon Rounded to 1 decimal places.) + +SCALED = Scaled from a topographic map. +(Lat,Lon Rounded to 0 decimal places.) + +ORTHO_HT- +Present if available. +The Orthometric Height in METERS indicating the height above the Geoid. + +VERT_DATUM- +Datum of the ORTHO_HT + +VERT_SRCE- +Vertical Source for the ORTHO_HT + +ADJUSTED = Direct Digital Output from Least Squares Adjustment +of Precise Leveling. +(Rounded to 3 decimal places.) + +ADJ UNCH = Manually Entered (and NOT verified) Output of +Least Squares Adjustment of Precise Leveling. +(Rounded to 3 decimal places.) + +POSTED = Pre-1991 Precise Leveling Adjusted to +the NAVD 88 Network After Completion of +the NAVD 88 General Adjustment of 1991. +(Rounded to 3 decimal places.) + +READJUST = Precise Leveling Readjusted as Required +by Crustal Motion or Other Cause. +(Rounded to 2 decimal places.) + +N HEIGHT = Computed from Precise Leveling Connected +at Only One Published Bench Mark. +(Rounded to 2 decimal places.) + +RESET = Reset Computation of Precise Leveling. +(Rounded to 2 decimal places.) + +COMPUTED = Computed from Precise Leveling Using +Non-rigorous Adjustment Technique. +(Rounded to 2 decimal places.) + +LEVELING = Precise Leveling Performed by Horizontal +Field Party. +(Rounded to 2 decimal places.) + +H LEVEL = Level between control points not connected +to bench mark. +(Rounded to 1 decimal places.) + +GPS OBS = Computed from GPS Observations. +(Rounded to 1 decimal places.) + +VERT ANG = Computed from Vertical Angle Observations. +(Rounded to 1 decimal place; +If No Check, to 0 decimal places.) + +SCALED = Scaled from a Topographic Map. +(Rounded to 0 decimal places.) + +U HEIGHT = Unvalidated height from precise leveling +connected at only one NSRS point. +(Rounded to 2 decimal places.) + +VERTCON = The NAVD 88 height was computed by applying the +VERTCON shift value to the NGVD 29 height. +(Rounded to 0 decimal places.) + +ELLIP_HT- +Present if available. +The ellipsoid height in METERS referenced to GRS80 ellipsoid. + +POS_ORDER- +Order of accuracy for the LATITUDE,LONGITUDE +Should be one of the following- +A,B,1,2,3 + +Order and class for Orders 1, 2, and 3 +are defined in the Federal Geodetic Control Committee publication +"Standards and Specifications for Geodetic Control Networks". + +In addition- +Order A stations have a relative accuracy of +5 mm +/- 1-10,000,000 relative to other A-order stations. + +Order B stations have a relative accuracy of +8 mm +/- 1- 1,000,000 relative to other A- and B-order stations. + +VERT_ORDER- +Order of accuracy for the ORTHO_HT +Should be 1,2, or 3 for Vertical Control Stations. +Will be blank for stations used for Horizontal Control only. + +Also see attribute DIST_RATE which is used for some +vertical control stations. + +Vertical order and class for 1, 2, and 3 +are defined in the Federal Geodetic Control +Committee publication "Standards and Specifications for Geodetic +Control Networks". In addition- + +Vertical control which were determined only for the purpose of +supplying a height for Horizontal Distance Reductions are +assigned an order of 3. + +Class 0 is used for special cases of +orthometric vertical control as follows- + +Vertical Order/Class Tolerance Factor +-------------------- ---------------- +1 class 0 2.0 mm or less +2 class 0 8.4 mm or less +3 class 0 12.0 mm or less + +VERT_CLASS- +Should be 0, 1, or 2 +See details under ELEV_ORDER + +DIST_RATE- +Distribution rate for POSTED and READJUSTED benchmarks +which do not have an Order and Class are as follows +"Posted bench marks" are vertical control points in the NGS data +base which were excluded from the NAVD 88 general adjustment. +Some of the bench marks were excluded due to large adjustment +residuals, possibly caused by vertical movement of the bench marks +during the time interval between different leveling epochs. +Adjusted NAVD 88 are computed for posted bench marks by +supplemental adjustments. + +A range of mean distribution rate corrections is listed for each +posted bench mark in the data portion of the publication. +A summary table of the mean distribution rates and their codes is +listed below. The mean distribution rate corrections which were +applied to the original leveling observations is a good +indication of the usefulness of the posted bench marks' adjusted +NAVD 88 heights. + +Distribution Distribution +Rate Code Rate Correction +------------ --------------- +"a" 0.0 thru 1.0 mm/km +"b" 1.1 thru 2.0 " +"c" 2.1 thru 3.0 " +"d" 3.1 thru 4.0 " +"e" 4.1 thru 8.0 " +"f" greater than 8.0 mm/km + +POSTED BENCH MARKS SHOULD BE USED WITH CAUTION. As is the case for +all leveling projects, the mandatory FGCS check leveling two-mark or +three-mark tie procedure will usually detect any isolated movement +(or other problem) at an individual bench mark. Of course, regional +movement affecting all the marks equally is not detected by the two- +or three-mark tie procedure. + +FIRST_RECV- +Date when the station was first monumented +or in the case of landmarks, first observed. + +LAST_RECV- +Date when the station was last recovered. + +LAST_COND- +Last recovered condition of the mark. +Should be one of the following- +MONUMENTED +FIRST OBSERVED +GOOD +POOR +MARK NOT FOUND +SEE DESCRIPTION +DESTROYED + +LAST_RECBY- +Agency who reported the last condition of the mark. + +STABILITY- +The stability of the mark may have 1 of 4 codes as indicated below- +A = MOST RELIABLE AND EXPECTED TO HOLD POSITION/ELEVATION WELL +B = PROBABLY HOLD POSITION/ELEVATION WELL +C = MAY HOLD, BUT OF TYPE COMMONLY SUBJECT TO SURFACE MOTION +- E.G. FROST HEAVE, ETC +D = MARK OF QUESTIONABLE OR UNKNOWN STABILITY + +HT_MOD- +Designates if this site is a Height Modernization site. Y - Yes. + +CORS_ID- +Continuously Operating Reference Stations (CORS) site ID. + +PACS_SACS- +Designates whether this is a Primary Airport Control +Station (PACS) or Secondary Airport Control Station (SACS). + +GEOID_HT- +Present if available. The geoid height in METERS referenced +to the geoid model attribute. + +N_ACC_HZ- +Horizontal network accuracy at the 95 percent confidence level (cm). + +N_ACC_EL- +Ellipsoid height network accuracy at the 95 percent confidence level (cm). + +N_ACC_STD_N- +North component of coordinate standard deviation (latitude), used to compute horizontal network accuracy (cm). + +N_ACC_STD_E- +East component of coordinate standard deviation (longitude), used to compute horizontal network accuracy (cm). + +N_ACC_STD_H- +Up component of coordinate standard deviation (ellipsoid height), used to compute ellipsoid height network accuracy (cm). + +N_ACC_CORR- +Correlation coefficient between north and east components of coordinate standard deviation (latitude and longitude), used to compute horizontal network accuracy (unitless). + +ECEF_X- +The computed Earth-Centered, Earth-Fixed X position. + +ECEF_Y- +The computed Earth-Centered, Earth-Fixed Y position. + +ECEF_Z- +The computed Earth-Centered, Earth-Fixed Z position. + +SPC_ZONE- +The State Plane Coordinate Zone. + +SPC_NORTH- +The State Plane Coordinate Northing. + +SPC_EAST- +The State Plane Coordinate Easting. + +SPC_CONV- +The State Plane Coordinate Convergence Angle. + +SPC_CSF- +The State Plane Coordinate Combined Scale Factor. + +UTM_ZONE- +The Universal Transverse Mercator Zone. + +UTM_NORTH- +The Universal Transverse Mercator Northing. + +UTM_EAST- +The Universal Transverse Mercator Easting. + +UTM_CONV- +The Universal Transverse Mercator Convergence Angle. + +UTM_CSF- +The Universal Transverse Mercator Combined Scale Factor. + +DYNAMIC_HT- +The computed dynamic height at a bench mark using the +orthometric height referenced the NAVD 88 and a gravity value. + +MODELEDGRAV- +The interpolated gravity value which was used in the +NAVD 88 general adjustment. + +MARKER- +Identifies the type of marker. + +SETTING- +Identifies the type of setting. + +STAMPING- +Identifies the stamping on the disk. + + +All values were obtained from the NGA Datasheet +available at <http://www.ngs.noaa.gov/cgi-bin/datasheet.prl> + + + + + + + +NGS Information Services Branch +NOAA, National Geodetic Survey + +Information Specialist + +Mailing and Physical Address +
+SSMC3/9202 +1315 East-west Highway +
+Silver Spring +MD +20910 +USA +
+301-713-3242 +301-713-4172 +ngs.infocenter@noaa.gov +9:00am to 4:30pm EST +Prefer EMail +
+
+Datasheet Shapefile +The distributor does not assume liability + + + +ShapeFile +1.0 +2013 +Download options include PC Zip and Unix compressed tar + + + + + +<http://www.ngs.noaa.gov/cgi-bin/datasheet.prl?Explain=ShapeFiles> + + +Distributed through http://www.ngs.noaa.gov/cgi-bin/datasheet.prl +SUN Solaris + + + +free if you retrieve it yourself + +
+ +20130513 + + + +NGS Information Services Branch +NOAA, National Geodetic Survey + +Information Specialist + +Mailing and Physical Address +
+SSMC3/9202 +1315 East-west Highway +
+Silver Spring +MD +20910 +USA +
+301-713-3242 +301-713-4172 +ngs.software@noaa.gov +9:00am to 4:30pm EST +Prefer EMail +
+
+FGDC Content Standards for Digital Geospatial Metadata +FGDC-STD-001-1998 +local time + +Geodetic Data are in the public domain, not restricted +from access or distribution. + + +not restricted; +Geodetic Data, including software were developed +and compiled with U.S. Government funding; no +proprietary rights may be attached to them nor may +they be sold to the U.S. Government as part of any +procurement of ADP products or services. + + +DOD +unclassified +none + + +N/A +N/A + +
+
diff --git a/testing/MA.shx b/testing/MA.shx new file mode 100644 index 0000000..fd5c095 Binary files /dev/null and b/testing/MA.shx differ diff --git a/testing/MA.txt b/testing/MA.txt new file mode 100644 index 0000000..b82ffb8 --- /dev/null +++ b/testing/MA.txt @@ -0,0 +1,7012 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testing/out.txt b/testing/out.txt new file mode 100644 index 0000000..aac63dd --- /dev/null +++ b/testing/out.txt @@ -0,0 +1,7012 @@ +42.1352777778 -70.7394444444 37.353 +41.9707972222 -70.6813444444 17.272 +41.8088888889 -70.8055555556 30.880 +42.1002777778 -72.6272222222 25.081 +42.2805601694 -71.2006926306 33.38 +42.2842648639 -71.2044365639 37.48 +42.2884181889 -71.2113334333 41.9 +42.3027485556 -71.2247152417 37.45 +42.3056014861 -71.2264975000 36.8 +42.3199885083 -71.2385133250 24.26 +42.3200455944 -71.2461568361 24.07 +42.3239398472 -71.2497087361 24.6 +42.3281380722 -71.2523207583 28.99 +42.3349880611 -71.2565808000 32.99 +42.3400665917 -71.2628130389 26.93 +42.3465060750 -71.2621557417 23.48 +42.3520566472 -71.2643755028 30.63 +42.3581546139 -71.2701964694 44.59 +42.3697727750 -71.2698026389 37.85 +42.4533333333 -73.2419444444 306.684 +42.4533333333 -73.2419444444 307.463 +42.4533333333 -73.2419444444 307.552 +42.4472222222 -73.2636111111 308.236 +42.3631945833 -71.8513239778 226. +42.4016609306 -71.8675337250 271. +42.1083333333 -72.6852777778 39.843 +41.7801187861 -70.5438609000 25.13 +41.7834224000 -70.5435629194 25.82 +41.7890677028 -70.5456057444 24.89 +41.7962261833 -70.5459905944 32.90 +41.8009124028 -70.5469719694 27.46 +41.8050482472 -70.5492588806 32.89 +41.8136373139 -70.5540461222 24.26 +41.8191983111 -70.5567723611 34.70 +41.8222829583 -70.5579415750 41.34 +41.8274534611 -70.5606123306 24.69 +41.8340237528 -70.5653848889 35.13 +41.8424523333 -70.5718079667 51.63 +41.8510043639 -70.5778806500 38.15 +41.8592516694 -70.5852126139 43.5 +41.8733209556 -70.6016885111 53.48 +41.8778821389 -70.6066051806 46.14 +41.8822754083 -70.6098340278 50.94 +41.8944276083 -70.6141734306 54.45 +41.8975910556 -70.6150238222 51.53 +41.9062248111 -70.6181271472 37.44 +41.9125637278 -70.6200662694 27.54 +41.9178146333 -70.6225234417 20.62 +41.9278878833 -70.6326694222 27.70 +41.9305610889 -70.6369857361 31.45 +41.9321147861 -70.6412764000 35.87 +41.9333692389 -70.6463277111 33.50 +41.9347815028 -70.6534508472 41.52 +41.9360763667 -70.6587678806 38.82 +41.9386483417 -70.6666929472 40.28 +41.9422768556 -70.6724580889 38.30 +41.9455390917 -70.6765719694 27.83 +41.9517288278 -70.6797769500 45.21 +41.9564883500 -70.6832931111 42.71 +41.9624940611 -70.6924509944 50.25 +41.9701021222 -70.7009561361 41.14 +41.9755787306 -70.7103078861 23.97 +41.9802771333 -70.7150703167 29.09 +41.9883672222 -70.7181377639 22.48 +41.9924516389 -70.7184509167 13.4 +41.9993771750 -70.7218961111 7.9 +41.9247857139 -70.6290990306 24.77 +41.8303428167 -70.5628790139 24.48 +41.8593466111 -70.5852652750 45. +41.9421965694 -70.6716994167 37.38 +41.9444033028 -70.6753849028 31.70 +42.0073408167 -70.7258172139 12.1 +41.9263208278 -70.5397442361 14.3 +41.9206228694 -70.5390912056 22.5 +41.9159338500 -70.5901811694 114.5 +42.0056410500 -70.7210288306 16.3 +41.8953363278 -70.6144533917 53.5 +41.8581981722 -70.5255793694 2.6 +42.0481761111 -72.7268068167 82.9 +42.4477666667 -73.2530250000 315.785 +42.0757132667 -72.6149832528 34.1 +42.0747890000 -72.6273063167 38.5 +42.0412781556 -72.6930070278 62.9 +42.0415402278 -72.7007461667 62.9 +42.0611089278 -72.7945409444 130.7 +42.0603969806 -72.8002702056 133.1 +42.0785168917 -72.9445873028 363.3 +42.0768610917 -72.9436821417 358.6 +42.0952660556 -72.9255979250 453.3 +42.1436815556 -72.9615859000 429.5 +42.1398346833 -72.9623941944 420.2 +42.0258912889 -72.8053094472 124.1 +42.0227267889 -72.8020944139 114.8 +42.0045123917 -72.7954264139 73.9 +42.0001630778 -72.7947800167 74.4 +42.0374752611 -72.7673233500 91.8 +42.0432376444 -72.7602158583 81.6 +42.0667134611 -72.7914249778 136.0 +42.0659090667 -72.7875535417 108.0 +42.0804336500 -72.7677524417 75.0 +42.0858385861 -72.7652836361 74.9 +42.0642664972 -72.7487199972 69.9 +42.0620318861 -72.7638800750 82.7 +42.0603487028 -72.8586732500 195.6 +42.0645439000 -72.8608452444 200.6 +42.0741716917 -72.8574777861 199.96 +42.0725685167 -72.8524137861 201.8 +42.0821318306 -72.8152515472 75.9 +42.0872551500 -72.8124100167 69.9 +42.1230569417 -72.9186221861 390.12 +42.1218305556 -72.9207393861 372.2 +42.1296860639 -72.8956220028 295.5 +42.1151356667 -72.8961507806 288.2 +42.0510577944 -73.0028064556 406.1 +42.0511401139 -72.9977399917 405.7 +42.0899516806 -72.9276523222 444.5 +42.0416750833 -72.8763322083 306.6 +42.0384861806 -72.8783959056 285.0 +42.4484444444 -73.2520277778 316.237 +42.0655800333 -72.9323346194 390.9 +42.0624175611 -72.9304309639 382.6 +42.0637177389 -73.0168405306 410.4 +42.0705209917 -73.0165328639 420.8 +42.0597510528 -73.0354605472 359.5 +42.0487203944 -73.0333911361 275.9 +42.0478211500 -73.0592436944 240.5 +42.0413689667 -73.0558500028 242.3 +42.0812380167 -73.0116807778 459.3 +42.0813125194 -73.0044249806 447.0 +42.0831045944 -72.9975057417 434.8 +42.0877286917 -72.7377018444 49.9 +42.0857117250 -72.7293454583 47. +42.0708096111 -72.7647834611 76.0 +42.0660222222 -72.7682655583 107. +42.0127847889 -72.7951212611 79.5 +42.0185386472 -72.7909940611 80.8 +42.0213058028 -72.7882366833 85.1 +42.0270466722 -72.7854965472 86.5 +42.0298684778 -72.7848556056 79.1 +42.0326622472 -72.7849389972 80.5 +42.0377513056 -72.7843409583 76.4 +42.0477742889 -72.7796714917 83.0 +42.0496097944 -72.7764991556 72.3 +42.0516962861 -72.7741556139 73.3 +42.0532388389 -72.7718380639 71.7 +42.0555280361 -72.7691439056 76.1 +42.0594199556 -72.7667299778 93.52 +42.0633487444 -72.7646346111 83.1 +42.0649634417 -72.7641502056 85.3 +42.0738873556 -72.7671107278 76.4 +42.0769310306 -72.7687844750 77.0 +42.5384665639 -70.9406311583 29.9 +42.5399093167 -70.9378896111 25.4 +42.5423462500 -70.9356830611 15.2 +42.5603366944 -70.9262776611 3.9 +42.5232223417 -70.9960962667 49.7 +42.0891064694 -72.7634576861 76.0 +42.0918101389 -72.7627740889 76.1 +42.0946719694 -72.7630928306 77.1 +42.0967574139 -72.7597113250 75.8 +42.0951779389 -72.7509214667 76.8 +42.0936769639 -72.7447291250 70.8 +42.0900835917 -72.7415661417 54.0 +42.0726802972 -73.0166369194 419.9 +42.0748790806 -73.0130308444 434.5 +42.0767570806 -73.0121967083 444.0 +42.0787039611 -73.0117554722 455.6 +42.0654086389 -72.7415787111 70.0 +42.0656801528 -72.7388712306 61.2 +42.0664785611 -72.7365160889 51.0 +42.0660752278 -72.7342224472 51.0 +42.0640849917 -72.7321678806 64.6 +42.0636775194 -72.7302308083 68.6 +42.0640474028 -72.7257027972 73.8 +42.0626352389 -72.7263662306 73.1 +42.0608429083 -72.7277401556 71.7 +42.0587498306 -72.7285829194 67.9 +42.0556323111 -72.7277830250 68.7 +42.0528102444 -72.7275408889 68.4 +42.0506227444 -72.7269525528 69.0 +42.5105315806 -71.7227870000 126.9 +42.5229542222 -71.7253182694 119.5 +42.5186132833 -71.7317318694 105.1 +42.5252313944 -71.7289684361 118.0 +42.5214354306 -71.7200397111 126.6 +42.5582370583 -72.0293560944 338.3 +42.5582826861 -72.0263481778 323.2 +42.4027305750 -71.7977472306 160.3 +42.4084452778 -71.7953060583 160.4 +42.5044933111 -71.7202967694 108.70 +42.4882304778 -71.7233302917 109.6 +42.4745395778 -71.7231124167 106.4 +42.4646946528 -71.7328823472 126.69 +42.4555257556 -71.7536821139 174.5 +42.4230948861 -71.7839994556 175.1 +42.3985204972 -71.8061489667 188.3 +42.3941133500 -71.8135523639 186.5 +42.3888574583 -71.8170218611 174.9 +42.4270307222 -71.7780778056 173.3 +42.4383884306 -71.7738246222 187.8 +42.4482961028 -71.7589168778 190.8 +42.3712459611 -71.8182289639 204.0 +42.3653706111 -71.8158120361 213.0 +42.3573283944 -71.8130035139 204.4 +42.3497405500 -71.8099058583 211.1 +42.3432078139 -71.8019437694 203.7 +42.3366644917 -71.7975684389 207.5 +42.3289810444 -71.8039627417 222.4 +42.3243293750 -71.8043016833 214.4 +42.1080555556 -72.7036111111 40.415 +41.3386111111 -70.7508333333 32.077 +42.7719444444 -71.0797222222 7.727 +42.2037277222 -71.1033176806 57.2 +42.2026072833 -71.1204675111 65.56 +42.2047878667 -71.1424710639 22.99 +42.2136202306 -71.1503077528 19.60 +42.2209122222 -71.1639921583 40.47 +42.2223352944 -71.1695018556 40.96 +42.2279267528 -71.1818337417 36.85 +42.2367898139 -71.1918277167 63.34 +42.2445688694 -71.2022390833 64.7 +42.2492676778 -71.2073290250 70.27 +42.2540811500 -71.2090611778 80.5 +42.2584468139 -71.2080551639 75.12 +42.2668623250 -71.2039877917 37.02 +42.2696338833 -71.1995501611 35.28 +42.2762803056 -71.1990293306 29.83 +41.7406446389 -71.2085570472 7.3 +41.7481813750 -71.2171777528 13.2 +41.7550973556 -71.2241635500 28.7 +41.7650263917 -71.2354723083 19.8 +41.7751791083 -71.2641080278 10.3 +41.7902791167 -71.3057468222 9.9 +41.7962846111 -71.3188410083 16.8 +41.7008145722 -71.1547719778 67.2 +41.6849528056 -71.1368029389 50.1 +41.6799878667 -71.1138183861 44.0 +41.6801312972 -71.1074232389 49.0 +41.6691628667 -71.0798232028 35.2 +41.6551464000 -71.0004347694 36.7 +41.6518784889 -70.9508442000 29.8 +42.5287167694 -71.1365276722 37.7 +42.5425250167 -71.1347859306 31.6 +42.5585322611 -71.1404615806 32.8 +42.5664142500 -71.1448042611 30.6 +42.5724578389 -71.1493158278 26.7 +42.6170548500 -71.1755485472 35.4 +42.6634215889 -71.2435732111 46.4 +41.6534186250 -70.9359467250 36.5 +42.3973967861 -71.2618741056 62.3 +42.4063207333 -71.2586414500 60.2 +42.4173412778 -71.2566316444 56.0 +42.4427661806 -71.2566075611 66.3 +42.4486352500 -71.2550369556 61.3 +42.4596964278 -71.2602889278 44.4 +42.4676990333 -71.2497874333 42.9 +42.4710191028 -71.2451542944 45.3 +42.4746202222 -71.2296199667 70.4 +42.4758655806 -71.2191468917 61.2 +42.4777908750 -71.2154653500 58.2 +42.4841394278 -71.1977144111 71.0 +42.4945729222 -71.1836111167 56.4 +42.5003283972 -71.1487621694 39.1 +41.9037680472 -71.3537957556 29.7 +41.9044765472 -71.3479671694 25.4 +41.9092198389 -71.3396795528 30.8 +41.8565676528 -71.3262920833 76.1 +41.9193343167 -71.3324997139 57.2 +41.9311914778 -71.3218840972 53.3 +41.9446991861 -71.3112632778 46.1 +41.9858076806 -71.2936124444 65.4 +42.0067434556 -71.2842183694 52.2 +42.0166391778 -71.2710045167 50.0 +42.0262748250 -71.2566798889 65.5 +42.1600000000 -71.1536111111 32.620 +42.1188888889 -71.1816666667 89.481 +41.9844444444 -71.2538888889 48.706 +42.0061111111 -71.1966666667 38.342 +42.1408333333 -72.7877777778 49.688 +42.5535262278 -70.9784638306 34.8 +42.5628298861 -70.9716491861 20.1 +42.5775043000 -70.9685875250 29.0 +42.5824913667 -70.9629783250 31.6 +42.5884236111 -70.9604489528 38.0 +42.6199328556 -70.9788589500 14.7 +42.6344592222 -70.9774028694 22.7 +42.6440291472 -70.9770514944 17.9 +42.6621911500 -70.9768239000 40.6 +42.6834939389 -70.9756635417 44.5 +42.7085343861 -70.9633155639 34.4 +42.7098215333 -70.9662502861 29.6 +42.7156982889 -70.9707503000 28.38 +42.7168412028 -70.9731324028 27.8 +42.7170388000 -70.9750722667 27.6 +42.7176495500 -70.9768102194 28.3 +42.7189990444 -70.9780292250 28.7 +42.7196872389 -70.9806728972 26.1 +42.7195140611 -70.9849342861 26.86 +42.7224186667 -70.9889305611 25.2 +42.7243627722 -70.9911144278 27.2 +42.7256047889 -70.9933553278 29.0 +42.7300351444 -70.9970137194 30.17 +42.7313495528 -71.0013500000 33.9 +42.7312943111 -71.0032553333 34.0 +42.7317093306 -71.0058477500 32.03 +42.7330061944 -71.0085887944 25.6 +42.7339943028 -71.0113020139 32.43 +42.7412778694 -71.0215754917 28.5 +42.7433650639 -71.0216075083 25.31 +42.7469550528 -71.0230607778 30.0 +42.7494001111 -71.0248600472 31.88 +42.7543855222 -71.0280460250 30.27 +42.7575752306 -71.0303721806 25.69 +42.7622420056 -71.0334495444 7.4 +42.6795397222 -70.8505662028 36.6 +42.6881264972 -70.8479295500 17.4 +42.7036195972 -70.8788672944 19.9 +42.7089868361 -70.8848040028 16.7 +42.7091726444 -70.8972353833 28.4 +42.7014162167 -70.9331339722 21.2 +42.7031240861 -70.9437534556 20.4 +42.7068867417 -70.9595214667 25.4 +42.7178453944 -70.9595148306 33.3 +42.7368565944 -70.9522129556 27.5 +42.7567092750 -70.9424008194 23.6 +42.7745676667 -70.9294094056 24.1 +42.7819783361 -70.9249231806 22.7 +42.8027406861 -70.9146334556 16.2 +42.8177437417 -70.9149428444 29.1 +42.8276838528 -70.9162586500 29.6 +42.8332351194 -70.9125435639 18.5 +42.8459900778 -70.9065775361 16.0 +42.8465834389 -70.9136833250 12.3 +42.8480052889 -70.9173058361 19.9 +42.8511648222 -70.9122524250 28.0 +42.8555172833 -70.8990801194 20.3 +42.8594525694 -70.8953544500 13.9 +42.8678543528 -70.8909803056 32.1 +42.8032353861 -71.0390380472 44.1 +42.8049142861 -71.0354942833 39.0 +42.4684575472 -71.0253258000 23.6 +42.4715842667 -71.0250196833 17.8 +42.4761227972 -71.0237025194 24.5 +42.4887423500 -71.0169230361 19.7 +42.4960478556 -71.0160021583 17.6 +42.5021129750 -71.0147575194 32.7 +42.5063396056 -71.0131513278 47.0 +42.5179064306 -71.0002028694 42.9 +42.5474981361 -70.9819607611 34.53 +42.6182656806 -70.9540716778 82.5 +42.3527133111 -71.0388411028 3.4 +42.3590168639 -71.0485671444 5.0 +42.3580971056 -71.0281861500 3.6 +42.3643880778 -71.0417841667 3.0 +42.5031076889 -71.1263932361 36.7 +42.5014251361 -71.1125926361 42.3 +42.5032908111 -71.1028208889 54.6 +42.5065123333 -71.0944912000 40.8 +42.5241750194 -71.0830220167 31.6 +42.5255516667 -71.0801883278 34.4 +42.5271079167 -71.0715878667 26.5 +42.5261583750 -71.0660425056 32.2 +42.5144567167 -71.0458472972 24.6 +42.5127002778 -71.0364105444 26.0 +42.5145016861 -71.0331658750 37.4 +42.5138987444 -71.0293252222 31.8 +42.3323579833 -71.7994593194 212.35 +42.5148847083 -71.0183545833 40.7 +42.5163467194 -71.0104674194 41.1 +42.5161422194 -71.0014995694 42.5 +42.5184381500 -70.9928103222 41.0 +42.5863795722 -70.8228878583 18. +41.6386111111 -70.3034444444 3.404 +42.1702777778 -72.8272222222 77.993 +42.5608605444 -71.4362148306 80.0 +42.5763275472 -71.4161259278 86.3 +42.5816134750 -71.3987944667 68.6 +42.5849216778 -71.3918512556 74.3 +42.5878185417 -71.3831389972 57.4 +42.5904127250 -71.3785581111 55.9 +42.5967536500 -71.3677783861 72.8 +42.6008659278 -71.3613626583 64.5 +42.6065685889 -71.3394153194 41.5 +42.6074587111 -71.3281015944 39.5 +42.5534010111 -71.4626881139 74.6 +42.6333763167 -71.2507279444 42.8 +42.6379949722 -71.2407371944 57. +42.6433358000 -71.2313260972 59.2 +42.6467646194 -71.2218617750 52.7 +42.6491621222 -71.2155389639 48.3 +42.6595349361 -71.2009319833 44.3 +42.6678121111 -71.1881882333 54.7 +42.6730259583 -71.1773398194 41.0 +42.6762941444 -71.1653580583 51.2 +42.6808216806 -71.1479160361 26.5 +42.6958702417 -71.1423321889 16.6 +42.7257007889 -71.1372375583 25.4 +42.7312028361 -71.1402433361 30.5 +42.7482419861 -71.1351612750 13.9 +42.7527972278 -71.1290377833 18.9 +42.7563819972 -71.1246458444 16.3 +42.7956859972 -71.1022337528 19.7 +42.8010620028 -71.0934515694 25.8 +42.8025121722 -71.0871180278 29.3 +42.8032521667 -71.0562158083 51.9 +42.8042113194 -71.0357123583 48.0 +42.8192887556 -71.0201182361 52.5 +42.8246501750 -71.0108930833 65.2 +42.8271243833 -71.0025093000 28.4 +42.8337577139 -70.9801852944 30.9 +42.8350432222 -70.9635219028 30.7 +42.3197731278 -71.8031104250 199.5 +42.3106423861 -71.8087563500 193.1 +42.1718390000 -71.8433633694 175.9 +42.1655986389 -71.8444692583 176.4 +42.1596353417 -71.8490126583 187.5 +42.1517546889 -71.8587855778 164.2 +42.1373384472 -71.8567308250 186.0 +42.1278004444 -71.8575743000 180.2 +42.1124419111 -71.8540898778 148.9 +42.1004678667 -71.8584054750 185.3 +42.0888952167 -71.8653276167 162.6 +42.0785338028 -71.8666665444 162.8 +42.0718619500 -71.8626899694 170.9 +42.0623873917 -71.8587802861 161.3 +42.0544846167 -71.8620100556 155.9 +42.0487870639 -71.8626658667 151.8 +42.0424191167 -71.8595035472 149.2 +42.0380409722 -71.8594302083 157.1 +42.0300420750 -71.8610418611 150.3 +42.8374370528 -70.9498078556 28.0 +42.8385388806 -70.9442150639 31.2 +42.8405031028 -70.9309304500 31.1 +42.8106948722 -71.0280534944 32.9 +42.5499033583 -71.4776269111 70.5 +42.5443086444 -71.4890635722 67. +42.5379512333 -71.4948526583 69.2 +42.5327972361 -71.4989742806 67.8 +42.5202386972 -71.5086367778 76.80 +42.5179506278 -71.5112109056 85.8 +42.5155197417 -71.5139051250 89.6 +42.4996409389 -71.5328673722 99.5 +42.4912521056 -71.5416190861 90.8 +42.4845630722 -71.5459328139 84.9 +42.4775405417 -71.5510120833 84.4 +42.4574342250 -71.5734418694 96.3 +42.4450063750 -71.5869534167 107.3 +42.4387745306 -71.5899333056 102.3 +42.4332700722 -71.5909967472 105.6 +42.4271330083 -71.5965056306 114.0 +42.4221416056 -71.6004175944 114.9 +42.4174239722 -71.6050830611 115.1 +42.4107129833 -71.6087819528 117.5 +42.4041600361 -71.6090862972 107.2 +42.3499098611 -71.5771355167 132.1 +42.3457465611 -71.5753648778 136.7 +42.3409652639 -71.5753768694 135.6 +42.3334974556 -71.5760291306 121.0 +42.3276861222 -71.5746805306 123.3 +42.3191935444 -71.5705232417 111.2 +42.3130258528 -71.5674542667 88.45 +42.2844628250 -71.5810444028 166.3 +42.2896757167 -71.5817011000 149.5 +42.2947376639 -71.5658370000 140.6 +42.2882786639 -71.5716496944 147.4 +42.2380335444 -71.5516348333 123.9 +42.2882198361 -71.5858224306 137.1 +42.2888026972 -71.5612663028 116.4 +42.1726995917 -71.5180118472 128.1 +42.1625126611 -71.4998612806 119.6 +42.1015641389 -71.4415103639 58.0 +42.1036246250 -71.4496540583 75.4 +42.5530835583 -71.9159931306 336.4 +42.5555462528 -71.9218815583 347.9 +42.5576926889 -71.9269026250 347.1 +42.5604866889 -71.9340022667 339.4 +42.5629702778 -71.9407922028 357.1 +42.5663595361 -71.9453089472 359.9 +42.5722812361 -71.9462366833 340.7 +42.5774451083 -71.9513732694 355.0 +42.5838850194 -71.9543129889 345.1 +42.5912629778 -71.9606951028 364.45 +42.5967283694 -71.9596166639 372.8 +42.5998598472 -71.9586844472 367.8 +42.6015259500 -71.9570227472 370.5 +42.6053393861 -71.9491885333 352.7 +42.6077507167 -71.9508270333 354.45 +42.5968895361 -71.9664086028 369.5 +42.6021567833 -71.9734283250 348.2 +42.6040074361 -71.9785734250 363.6 +42.6031995611 -71.9837618083 345.1 +42.6042663889 -71.9894403139 325.9 +42.5989918306 -71.9879764250 358.8 +42.5999640722 -71.9879342611 357.5 +42.6201825444 -72.0084947556 359.7 +42.6247683833 -72.0085071083 361.8 +42.6335060639 -72.0072360611 350.39 +42.6464367722 -72.0015701611 316.3 +42.6509345806 -72.0018089028 317.1 +42.6565792972 -72.0031902694 314.9 +42.6621326083 -72.0058064750 314.0 +42.6659885944 -72.0102581472 310.8 +42.5338785528 -71.7388455222 103.5 +42.5441871750 -71.7539656611 114.9 +42.5464660444 -71.7621313167 113.7 +42.5493494694 -71.7645046806 135.0 +42.5520354167 -71.7687634111 151.6 +42.5525023833 -71.7724527028 157.1 +42.4449581333 -71.7647526361 202.8 +42.4313888889 -73.3200000000 349.411 +41.6673963694 -69.9954258917 2. +42.2097222222 -72.8547222222 98.222 +42.6044841806 -72.6155842722 50.41 +42.6010310444 -72.6200171861 56.09 +42.0071103833 -70.7255506111 11.42 +42.1941478361 -70.9558847750 36.37 +42.0138620972 -70.7268807556 25.07 +42.1966759417 -70.9624260028 45.7 +42.0266340889 -70.7257718194 29.68 +42.1996131917 -70.9697511417 40.17 +42.0375524056 -70.7236088917 27.62 +42.2006270750 -70.9753227250 41.6 +42.0482779889 -70.7233626111 26.59 +42.2033930639 -70.9845938444 31.49 +42.0556226028 -70.7258002500 25.55 +42.2049452250 -70.9905742194 23.83 +42.0655630139 -70.7283486333 24.99 +42.2089837500 -70.9958041083 25.38 +42.0943619556 -70.7496049250 41.61 +42.0986813556 -70.7532948889 28.97 +42.1036974056 -70.7607593194 36.43 +42.1083537694 -70.7671682556 35.12 +42.1221666944 -70.7892200194 29.10 +42.1267196333 -70.8011600306 27.89 +42.1323566556 -70.8104822639 35.90 +42.1514812083 -70.8455388833 39.49 +42.1552330111 -70.8549372611 48.11 +42.1592004389 -70.8755773139 50.50 +42.1667965722 -70.8961806500 55.03 +42.1705806639 -70.9057918500 51.70 +42.1805489333 -70.9181274778 44.51 +42.1846728361 -70.9251217111 50.5 +42.1879611306 -70.9329943556 33.63 +42.1895504194 -70.9405829833 27.63 +42.1933852972 -70.9501929056 33.14 +42.4858333333 -71.2763888889 35.79 +42.5292470972 -71.3457474500 55. +42.2380555556 -72.9033333333 126.659 +42.2422222222 -72.9141666667 134.653 +42.2577777778 -72.9466666667 156.114 +42.2655555556 -72.9627777778 166.976 +42.2913888889 -72.9830555556 195.292 +41.7752520972 -71.0864871639 17.75 +41.7872698472 -71.0785122472 18.12 +41.7768688278 -71.0825074889 17.29 +42.3041666667 -72.9886111111 211.808 +42.3141666667 -72.9980555556 233.106 +41.3541666667 -70.7544444444 39.234 +42.3100000000 -73.0030555556 243.675 +42.3550000000 -71.0502777778 4.517 +42.3606351417 -71.0476615056 1. +42.3213888889 -73.0486111111 316.575 +42.3302777778 -73.0680555556 345.770 +42.3322222222 -73.0747222222 355.144 +42.3436111111 -73.0886111111 380.554 +42.3477777778 -73.0894444444 386.831 +42.3627777778 -73.0988888889 410.601 +42.3675000000 -73.1055555556 422.934 +42.1158333333 -72.7155555556 42.341 +42.3811111111 -73.1136111111 439.832 +42.3958333333 -73.1127777778 444.218 +42.4372222222 -73.1255555556 437.705 +42.4636111111 -73.1430555556 387.288 +41.9779940639 -70.0680169056 32. +42.4694444444 -73.1619444444 363.755 +42.4650000000 -73.1811111111 337.913 +42.4583333333 -73.1891666667 323.399 +42.4563888889 -73.2041666667 306.205 +42.4563888889 -73.2041666667 306.124 +42.4536111111 -73.2266666667 306.857 +41.3613888889 -70.7444444444 67.998 +42.2366327333 -71.1362140806 31. +42.4488888889 -73.2583333333 308.913 +42.1305555556 -72.7475000000 46.673 +42.4413888889 -73.3008333333 321.400 +42.4413888889 -73.3011111111 322.063 +42.1300000000 -72.7455555556 47.010 +42.3883333333 -73.3538888889 337.493 +42.5449339500 -71.2771180250 55.9 +41.4316666667 -70.5747222222 18.460 +42.5033888889 -71.2756944444 49.18 +42.4908333333 -71.2763888889 40.94 +41.8697730611 -70.6057334194 48.30 +41.8712581861 -70.6044723917 49.25 +41.9316797667 -70.7029434889 53. +42.3500000000 -73.4113888889 280.247 +42.2591666667 -72.2394444444 127.966 +42.5576073889 -70.9297032250 15.25 +42.5651652417 -70.9232419778 18.98 +42.5748777472 -70.8916269806 21.29 +42.5753529472 -70.8851450806 22.82 +42.0908783111 -71.4229858833 88.32 +41.4177777778 -70.5902777778 26.099 +42.5725000000 -70.9477777778 16.27 +42.5466982028 -71.8199709472 228.61 +42.5176423361 -71.5014088694 83.43 +42.5215368806 -71.7107809528 130.20 +42.5215108361 -71.7062351222 130.49 +42.5106821556 -71.0094942056 41.7 +42.5202798250 -70.9985726472 44.10 +42.5464613000 -70.9841040250 26.04 +42.5244444444 -71.7255555556 121.86 +42.5261111111 -71.7283333333 120.92 +42.5486525556 -71.8336331361 227.68 +41.6808926667 -71.1189342528 41.44 +41.7098649000 -71.1186857972 43.84 +41.7228741222 -71.1168489556 54.02 +41.7333603056 -71.1166833778 49.01 +41.7442928222 -71.1217922500 60.54 +41.7541883667 -71.1185383889 51.47 +41.7584729639 -71.1118117694 57.43 +41.7644992833 -71.1001677694 58.47 +41.8042797167 -71.0762767222 18.81 +41.8226326194 -71.0707570417 44.05 +41.8477566889 -71.0624888556 33.26 +41.8551340111 -71.0605502306 31.87 +41.8968714333 -71.0484208389 7.14 +41.9088667111 -71.0405990167 15.7 +41.9200457472 -71.0338385111 10.3 +41.9347498556 -71.0252411667 30.9 +41.9608686194 -71.0284558778 28.6 +41.9806049167 -71.0250828639 20.9 +41.9850382944 -71.0256173750 22.7 +41.9941528750 -71.0308301417 22.2 +42.0145395250 -71.0442999806 30.28 +42.0231306444 -71.0487503806 28.92 +42.0415163194 -71.0545299500 37.61 +42.0546922694 -71.0596000222 35.54 +42.0618040972 -71.0621138028 38.47 +42.0729730778 -71.0627708806 52.60 +42.0847211278 -71.0621334917 69.86 +42.1009364722 -71.0573988472 71.10 +42.1108299722 -71.0593909472 76.10 +42.1313071750 -71.0631862778 70.13 +42.1443713361 -71.0666003917 73.81 +42.1553726944 -71.0681924778 66.14 +42.1857565667 -71.0768522472 73.21 +42.2003085417 -71.0780663306 68.75 +42.2023672972 -71.0803520806 62.72 +42.4756407167 -71.1113125639 52.1 +42.5239675194 -71.1357063583 26.15 +42.5691936750 -71.1472125250 35.14 +42.5773431361 -71.1519311111 33.49 +42.5844318139 -71.1574153556 35.47 +42.5934342167 -71.1662751250 35.98 +42.6641333556 -71.1938408861 47.56 +42.6772603722 -71.2002913806 50.03 +42.6905511583 -71.2068413361 29.29 +42.7129084056 -71.2116332111 57.28 +42.7281368750 -71.2049091472 39.94 +42.7316729444 -71.2033887556 42.35 +42.7323777333 -71.1909682139 41.8 +42.7350432889 -71.1842140556 53.8 +42.7427749972 -71.1690079444 58.3 +42.7445620583 -71.1642267028 50.7 +42.7465707556 -71.1564743139 37.0 +42.7465633750 -71.1493582667 26.3 +41.9944376083 -70.7193888944 12.55 +41.9883301056 -70.7179919694 22.38 +41.9757357444 -70.7107599528 29.54 +41.9395005833 -70.6683534972 42.01 +41.9362313139 -70.6597485528 43.79 +41.9304920972 -70.6364904333 35.59 +41.9269293667 -70.6315025056 27.87 +41.9178937139 -70.6220203139 21.00 +41.8977329694 -70.6153820556 52.11 +41.8802261194 -70.6088168694 56.57 +41.8591886250 -70.5853119944 43.22 +41.7848746778 -70.5436765278 28.01 +42.2133781056 -72.6319616056 102.30 +42.2166317972 -72.6324332083 113.4 +42.0365293139 -72.5891730167 28.2 +42.2200053500 -72.6342380639 121.8 +42.0500078806 -72.5888398750 22.2 +42.2233223750 -72.6362492583 127.8 +42.0559691083 -72.5895813250 23. +42.2286864417 -72.6370408306 135.3 +42.0980271694 -72.5898192722 18.9 +42.2417674000 -72.6286607639 128.7 +42.1003900556 -72.5930644139 26.9 +42.2475622361 -72.6247769917 97.9 +42.1057998639 -72.6014745972 20.7 +42.2535561694 -72.6218262333 92.5 +42.1091755167 -72.6053325722 22.4 +42.2576309861 -72.6175365722 89.2 +42.1114277556 -72.6071008333 30.0 +42.2650689611 -72.6130245556 65.6 +42.1190916667 -72.6099676139 27.8 +42.2700414667 -72.6071331500 63. +42.1261494000 -72.6077097306 46.2 +42.2755038528 -72.6054086889 50.5 +42.1292906028 -72.6081453889 48.5 +42.2795730306 -72.6070264972 53.4 +42.1352997528 -72.6098281806 47.9 +42.2844206028 -72.6159165833 62.0 +42.1365647222 -72.6308237250 29.5 +42.2904648111 -72.6269524944 40.2 +42.1387940028 -72.6359067806 49.6 +42.2961970139 -72.6294437083 40.0 +42.1429596500 -72.6386338722 59.6 +42.3015427972 -72.6283615083 40.8 +42.1522022278 -72.6479611722 77.4 +42.3083572000 -72.6224762472 47.07 +42.1556796750 -72.6488585028 84.1 +42.3145311083 -72.6171266111 39.2 +42.1621882917 -72.6463749944 82.9 +42.3200861056 -72.6151610250 40.3 +42.1668846444 -72.6435917028 82.8 +42.3327228972 -72.6211559944 46.9 +42.3342579861 -72.6231936472 49.6 +42.1766820222 -72.6430872806 86.4 +42.3358437944 -72.6260524889 45.0 +42.1920528167 -72.6376929528 103.7 +42.3403434833 -72.6377770639 57.3 +42.2093276556 -72.6367470556 139.2 +42.3455312389 -72.6425787472 47.7 +42.3502267889 -72.6415958611 54.2 +42.6017105889 -72.6159466361 54.7 +42.3533082306 -72.6391958139 57.5 +42.6076233528 -72.6121658111 71.9 +42.3604427028 -72.6361691472 55.1 +42.6132037639 -72.5990441694 93.2 +42.3817539000 -72.6313311111 46.2 +42.6166731500 -72.5921972278 93.2 +42.3986127083 -72.6277656500 55.637 +42.6213977111 -72.5877771833 87.2 +42.4112189028 -72.6264853944 54.8 +42.6319957333 -72.5799008972 92.9 +42.4215329917 -72.6240773472 51.1 +42.6389847861 -72.5727617056 113.4 +42.4316915222 -72.6216642056 61.51 +42.6482457083 -72.5620319194 113.31 +42.4365562417 -72.6216306556 56.5 +42.6517478278 -72.5571892500 121.6 +42.4671649778 -72.6158891222 65.67 +42.6582079333 -72.5486256778 103.7 +42.4748059167 -72.6173598500 63.6 +42.6608647694 -72.5461255611 103.0 +42.4901115083 -72.6160894750 66.6 +42.6706158028 -72.5425998194 112.7 +42.4972217694 -72.6177077806 73.4 +42.4993731111 -72.6176192583 76.6 +42.6800583028 -72.5413910361 110.9 +42.5087431667 -72.6213303806 78.9 +42.6875492722 -72.5422478139 117.8 +42.5274180972 -72.6271996917 62.1 +42.6970360806 -72.5481367944 121.2 +42.5375106111 -72.6273610611 69.8 +42.7015040111 -72.5563252167 130.0 +42.5439109722 -72.6240223222 90.1 +42.7068220306 -72.5619817417 131.9 +42.5508263917 -72.6211535361 83.9 +42.7098872778 -72.5640895389 133.3 +42.5548942778 -72.6208287556 80.2 +42.7260019306 -72.5696975944 137.2 +42.5584306833 -72.6212639833 85.9 +42.7300818417 -72.5701117972 139.27 +42.5611434917 -72.6198068250 58. +42.4452447556 -72.6200564250 62.3 +42.5752183139 -72.6204962444 83.9 +42.6032208444 -72.6208325806 57.1 +42.5791024500 -72.6208122806 82.0 +42.5842919639 -72.6216262000 66.4 +42.6010766944 -71.3225527917 34.4 +42.6125650500 -71.3278259444 40.3 +42.4956992694 -71.5374647889 89. +42.5037995833 -71.5273081417 105.5 +42.5260560889 -71.5034646778 82.8 +42.5398153944 -71.4935758944 74. +42.5458677556 -71.4869615333 72.6 +42.5496681611 -71.4785791417 74.3 +42.5513574694 -71.4696725444 88.6 +42.5561902639 -71.4460869389 82.4 +42.5590079750 -71.4407933028 97.4 +42.5688169361 -71.4258371111 82.49 +42.6028634694 -71.3538048167 46.93 +42.6070325500 -71.3324498417 36. +42.6072707222 -71.3260514750 41.0 +42.4705120361 -71.5578445583 85.3 +42.4631693750 -71.5661814694 96.5 +42.4507577694 -71.5822347444 106.8 +42.4303821917 -71.5903367750 106. +42.3923874278 -71.6064524972 134.12 +42.3809640000 -71.6011420222 113.0 +42.3613282444 -71.5884711639 101.1 +42.3474500333 -71.5749998972 144.9 +42.3412883444 -71.5747214833 142.85 +42.3325370472 -71.5764989056 127.1 +42.3069382444 -71.5651893861 89.33 +42.3352036722 -71.6385470944 89. +42.4694105889 -71.6592356583 85. +42.3417009139 -71.6371604222 89.3 +42.2985395583 -71.5650894361 125.5 +42.2931924778 -71.5669522139 157.6 +42.2859875056 -71.5669737667 130.2 +42.2891649222 -71.5588190722 105.8 +42.2790984972 -71.5669681361 99.4 +42.2690543222 -71.5650699500 94.8 +42.2684487222 -71.5599439028 94. +42.2610156806 -71.5630111222 96.9 +42.2379716583 -71.5520502556 123.8 +42.2343298333 -71.5506618667 118.04 +42.2298376750 -71.5498909500 111.47 +42.2218201361 -71.5476257556 114.2 +42.2140724556 -71.5456900500 127.87 +42.2111302250 -71.5443866778 132.12 +42.1965406333 -71.5368849167 117. +42.1896936778 -71.5361445417 138.21 +42.1799690250 -71.5283581167 128.36 +42.1662004167 -71.5089267444 98.37 +42.1602494306 -71.4942954222 117.5 +42.1566604889 -71.4896971861 97.8 +42.1526917333 -71.4867521750 90.50 +42.1371903639 -71.4803869472 82.4 +41.7012715278 -71.1557145611 37.13 +41.6956527861 -71.1481971417 48.5 +41.6820345667 -71.1306202083 52.4 +41.6810714861 -71.1216143667 41.51 +41.6802069583 -71.1198029972 45.4 +41.6775800306 -71.1009455500 46.28 +41.6735124861 -71.0905830194 48.24 +41.6614827500 -71.0683845972 45.92 +41.6586975000 -71.0599571389 37.13 +41.6577246417 -71.0419388667 24.0 +41.6572201667 -71.0370767500 22.11 +41.6568213639 -71.0249922139 27.09 +41.6549400667 -70.9881161167 22.8 +41.6536637417 -70.9616454861 52.6 +41.6521159222 -70.9433359806 40.9 +41.6534252667 -70.9373997139 46. +41.6541544111 -70.9271081500 16.8 +41.6547158778 -70.9173750083 5.96 +41.6538495306 -70.9118517083 8.92 +41.7123777944 -71.1762565583 15.02 +41.7160622806 -71.1814256028 19.41 +41.7290588694 -71.1879806361 14.02 +41.7331320833 -71.1972832389 12.39 +41.7703221472 -71.2462612611 18.20 +41.7774059472 -71.2755093056 12.56 +41.7814858361 -71.2880521167 11.93 +41.7991431333 -71.3241074111 21.72 +41.8024936111 -71.3300578417 16.59 +41.9514801389 -71.3073892528 50.09 +41.9554746667 -71.3034020778 51.21 +41.9692099889 -71.2952054472 56.68 +41.9964219528 -71.2924132222 55.97 +42.0069242056 -71.2854064056 55.3 +42.0238532806 -71.2615872500 60.16 +42.0268666889 -71.2579646806 66.50 +42.0332391000 -71.2485797222 76.27 +42.0427429944 -71.2428047750 73.23 +42.0526667000 -71.2367633222 79.68 +42.0380714444 -71.2455996583 76.5 +42.0572545778 -71.2344037222 94.1 +42.0722949139 -71.2259878028 99.3 +42.0801452611 -71.2223822778 96.37 +42.0869631389 -71.2215631722 89.45 +42.1020817333 -71.2282164028 81.8 +42.1078592417 -71.2306979361 77.57 +42.1157067583 -71.2314067278 83.2 +42.1225050611 -71.2291186028 79.95 +42.1304761944 -71.2237747111 87.16 +42.1342069889 -71.2195484000 95.3 +42.1398964611 -71.2118808111 80.70 +42.1484328528 -71.2013328139 61.4 +42.1511489306 -71.1939563778 36.5 +42.1586333333 -71.1825117500 17.28 +42.1711813167 -71.1710625972 25.3 +42.1861607333 -71.1564386250 34.0 +42.1943734528 -71.1495670250 22.5 +42.2009620889 -71.1440187611 18.6 +41.9411184917 -71.0164236250 32.6 +41.9366011278 -71.0127433333 34.2 +41.9296069306 -71.0039809972 20.8 +41.9238129750 -70.9972681611 9.16 +41.9156591528 -70.9852105583 23.86 +41.9028739861 -70.9652493778 13.49 +41.9006271722 -70.9617967528 15.6 +41.9020129056 -70.9740310278 7.6 +41.9027771694 -70.9643594278 20.4 +41.9015998194 -70.9818788306 16.4 +41.9036248028 -70.9992738000 7.8 +41.9035745361 -71.0047045750 17.4 +41.9050054167 -71.0229488778 20.5 +41.9059724722 -71.0388623139 31.1 +41.9064645861 -71.0426220139 17.3 +41.8990748750 -70.9597793694 13.9 +41.8936327333 -70.9488088583 17.6 +41.8979504333 -70.9582637306 18.8 +41.8864872528 -70.9309909278 34.10 +41.8826372833 -70.9214405361 34.23 +41.8764001972 -70.9061506917 26.0 +41.8719009444 -70.8949839944 24.3 +41.8661372250 -70.8855344083 19.9 +41.8573532528 -70.8741449583 32.50 +41.8486800944 -70.8578498361 25.15 +41.8461730861 -70.8499246167 31.36 +41.8436771194 -70.8377030639 34.91 +41.8415835389 -70.8322884944 32.5 +41.8386834750 -70.8255283694 32.20 +41.8306379111 -70.8155060444 29.0 +41.8248837361 -70.8083815611 37.65 +41.8195779583 -70.8017991917 32.0 +41.8152104444 -70.7963749500 27.8 +41.8085592833 -70.7748858056 29.5 +41.8127149250 -70.7907586222 27.7 +41.8060372778 -70.7692694111 27.1 +41.7976046278 -70.7574259750 22.9 +41.7923925306 -70.7479726528 26.9 +41.7836417278 -70.7326618778 20.2 +41.7764529250 -70.7069645528 16.1 +41.7776279889 -70.7039248306 8.0 +42.1264525111 -71.4742651139 79.49 +42.1142555694 -71.4667873889 75.23 +42.1072876333 -71.4586496889 65.39 +42.1033943000 -71.4488309056 72.08 +42.0903012083 -71.4267696333 78.34 +42.0853508139 -71.4245903472 82.47 +42.0797757833 -71.4211137417 79.73 +42.0701662944 -71.4096421667 98.37 +42.0644859611 -71.4011447194 109.62 +42.0608450778 -71.3929063889 122.8 +42.0576158417 -71.3839604500 112.88 +42.0557626778 -71.3782207444 120.6 +42.0474842944 -71.3626490444 103.1 +42.0409338111 -71.3514318500 94.9 +42.0397746500 -71.3411702500 111.5 +42.0372806917 -71.3281443194 101.1 +42.0384557361 -71.3211509583 93.8 +42.0375865444 -71.3070724389 66.5 +42.0334696611 -71.2824439250 60.3 +42.0301032528 -71.2643122306 71.6 +42.0267386167 -71.2580957278 67.33 +42.0265338611 -71.2562039333 66.37 +42.6076318278 -71.3203715333 41.7 +42.6117828056 -71.3063504778 44.4 +42.6140168639 -71.3030176250 42.9 +42.6171929861 -71.2921719750 43.78 +42.6198674389 -71.2856436944 43.9 +42.6243757306 -71.2776284111 50.29 +42.6275494889 -71.2721675778 44.27 +42.6317182639 -71.2606291833 41.3 +42.6383069861 -71.2398267000 64. +42.6562298583 -71.2045957333 58.7 +42.6673342389 -71.1893678417 58.4 +42.6748714806 -71.1706831194 45.8 +42.6788475000 -71.1524073222 33.9 +42.6802476917 -71.1488662500 30.6 +42.6863440750 -71.1423162333 18.9 +42.7025398306 -71.1399052333 19.9 +42.7096080778 -71.1372547028 20.3 +42.7284804028 -71.1384769417 32.51 +42.7360450389 -71.1426905028 41.4 +42.7421145472 -71.1413574083 19.81 +42.7452816556 -71.1393470500 21.08 +42.7614471361 -71.1215502722 19.54 +42.7740506917 -71.1195682639 24.04 +42.7834004222 -71.1161981806 31.94 +42.7878852222 -71.1120500278 46.70 +42.7922292250 -71.1061417306 35.11 +42.8008015833 -71.0935849000 26.20 +42.8048616222 -71.0843344583 32.08 +42.8060426000 -71.0752127250 46.43 +42.8023082528 -71.0459121417 49.84 +42.8357021306 -70.9545868556 31.18 +42.1022105833 -71.5089904361 71.51 +42.0788888889 -70.7047222222 20.484 +42.3991666667 -71.3166666667 51.14 +42.7050000000 -72.9530555556 301.018 +42.4075000000 -71.3211111111 60.80 +42.4141666667 -71.3258333333 63.27 +42.3316230028 -71.6887033306 138.5 +42.1860288389 -71.8499964194 188.8 +42.3328514139 -71.6686101889 120.6 +42.3366076583 -71.6606494472 110.1 +42.1898261028 -71.8467573972 177.6 +42.3389950167 -71.6548671361 107.8 +42.1979240944 -71.8452264222 185.2 +42.3420330222 -71.6434113417 115.4 +42.3426977417 -71.6368634583 93.9 +42.2023004583 -71.8405696389 163.2 +42.3459461833 -71.6243901861 79.6 +42.2085948500 -71.8385774611 163.8 +42.3533752889 -71.6124037639 69.2 +42.2222262833 -71.8272713167 159.9 +42.3608500694 -71.5987984722 95.9 +42.2289946361 -71.8258546361 151.9 +42.3630208000 -71.5910539639 95.0 +42.2326419250 -71.8232662111 156.9 +42.2420527556 -71.8115576639 145.9 +42.2436555583 -71.8043737583 147.6 +42.2495777056 -71.8000165417 149.1 +42.2541016806 -71.7973625583 145.8 +42.2569379583 -71.7936821917 151.7 +42.2690947667 -71.7930883861 167.3 +42.2755188889 -71.7968434833 158.06 +42.2895391083 -71.7976327278 182.0 +42.2884882028 -71.7833859056 224.3 +42.2934240694 -71.7661730083 170.0 +42.2933163972 -71.7612510306 130.1 +42.2948562333 -71.7503656722 134.3 +42.2965680750 -71.7459563667 149.5 +42.2988848472 -71.7402380056 150.8 +42.3054432833 -71.7354187917 137.5 +42.3116490139 -71.7301605861 156.4 +42.3158379250 -71.7272436000 172.4 +42.3218491833 -71.7193416917 204.4 +42.3211575000 -71.7196051722 198.1 +42.3251525250 -71.7070327194 193.7 +42.1996453889 -71.8368376361 185. +42.2909765333 -71.7989216500 177.9 +42.4760286111 -71.2198571611 61.0 +42.4787218778 -71.2209424111 58.7 +42.4798399139 -71.2241558611 79.7 +42.6233524528 -71.3704312139 44.5 +42.4842382667 -71.2249967361 56.0 +42.6258696028 -71.3816306639 42.8 +42.4919652500 -71.2327361528 58.3 +42.6278695250 -71.3935625139 45.2 +42.5000925000 -71.2411718306 55.0 +42.6285145806 -71.3994920528 47.4 +42.5068435694 -71.2476569278 36. +42.6302682889 -71.4036487833 53.7 +42.5177579194 -71.2588860167 48.6 +42.6356684333 -71.4090867528 48.092 +42.5218039917 -71.2626456278 55.2 +42.6440670167 -71.4159305028 61.625 +42.5258021083 -71.2676383167 62.9 +42.6464694056 -71.4179071694 65.8 +42.5290981250 -71.2729951306 71.7 +42.6512058389 -71.4218285639 57.913 +42.5323108167 -71.2763572000 62.6 +42.6588196694 -71.4279172111 51.944 +42.5399744472 -71.2812983583 60. +42.6637903222 -71.4324131306 43.186 +42.5444432306 -71.2843791000 53.3 +42.6653545194 -71.4324964806 62.0 +42.5541639583 -71.2920583750 49. +42.5657822972 -71.3010765250 52.1 +42.5713942361 -71.3034733500 56.9 +42.5837085611 -71.3089962417 46.6 +42.5923018278 -71.3156096111 40.2 +42.6165099139 -71.3312971639 35. +42.6209246000 -71.3451762806 40.6 +42.6202722389 -71.3506011639 42.7 +42.6204527167 -71.3580615639 42.8 +42.4169444444 -71.1300000000 4.648 +41.6584234611 -70.9527864806 39.2 +41.6657573611 -70.9426045889 31.6 +41.6710945333 -70.9420671028 22.7 +41.6797636583 -70.9457359389 29.9 +41.6967036806 -70.9474125917 33.5 +41.7031525028 -70.9435476000 34.2 +41.7133283444 -70.9384441028 33.8 +41.7186279333 -70.9414055389 36.5 +41.7270073944 -70.9490923111 36.1 +41.7345033722 -70.9563649111 31.4 +41.7431184417 -70.9605945472 27.4 +41.7589540556 -70.9618842028 37.8 +41.7691262667 -70.9622980972 30.9 +41.7800533194 -70.9619736083 45.9 +41.7936615417 -70.9597428111 22.5 +41.8040748694 -70.9619143000 27.8 +41.8119256361 -70.9637024222 18.5 +41.8191179056 -70.9680508222 27.3 +41.8232952194 -70.9731921583 28.9 +41.8283445750 -70.9841913417 41.5 +41.8349177694 -70.9987629194 39.8 +41.8408958333 -71.0095532694 35.7 +41.8601775944 -71.0375485028 39.1 +41.8669665472 -71.0485112583 21.8 +42.1359283139 -72.6177006333 26.5 +42.7960333333 -70.8599833333 10.526 +41.7755474444 -70.7394582556 21.94 +41.7684617667 -70.7435241528 19.80 +41.7592881611 -70.7446581250 6.60 +41.7514108111 -70.7484940889 4.30 +41.7465689583 -70.7567714444 13.08 +41.7388295194 -70.7663802722 7.19 +41.7304793444 -70.7704744306 11.43 +41.7246811306 -70.7758708611 13.36 +41.7164634833 -70.7843165500 7.44 +41.7085884639 -70.7951854361 13.42 +41.7015447000 -70.8002704694 19.12 +41.6953743861 -70.8022976417 23.04 +41.6883454333 -70.8066392278 25.63 +41.6827190778 -70.8142845111 26.64 +41.6746577639 -70.8220863583 21.45 +41.6702063361 -70.8282262889 11.06 +41.6668935972 -70.8354782722 13.05 +42.3164982806 -71.2341726611 27.65 +41.6652802139 -70.8439321472 6.44 +41.6638522833 -70.8521182778 18.69 +41.6610225056 -70.8627391306 26.44 +41.6594967639 -70.8717589444 13.17 +42.3127499611 -71.2305893722 56.4 +41.6586075139 -70.8880874028 20.42 +41.6577171861 -70.8930455556 23.29 +41.6545423306 -70.9022157889 13.87 +42.7771444444 -70.8414222222 15.112 +42.1843209250 -71.8466854083 182.0 +41.9504471194 -71.3676156000 47.979 +41.7620199083 -70.6926660139 2. +41.9492008972 -71.3538203472 74.40 +41.7554107972 -70.6881982417 26.9 +41.9491443528 -71.3462026278 63.55 +41.7796376750 -70.7002699306 14.6 +41.9495449778 -71.3378459972 55.52 +41.7889593083 -70.6935104333 17.8 +41.7870830278 -70.6800432194 17.1 +41.9529202972 -71.3238981028 62.50 +41.7867449611 -70.6777277361 14.3 +42.2669444444 -71.7791666667 149.281 +42.2636111111 -71.7836111111 146.241 +42.2611111111 -71.7947222222 148.576 +42.2594444444 -71.7986111111 149.896 +42.5419096083 -71.8928274028 282.5 +42.5431697389 -71.8976953222 292.6 +42.5489358472 -71.9086476278 315.33 +42.5536631667 -71.9178274028 343.98 +42.5577697611 -71.9258003083 354.9 +42.5603589833 -71.9410724278 357.6 +42.5605637306 -71.9463328778 349.07 +42.5619353306 -71.9589651611 333.7 +42.5618086556 -71.9656946972 341.4 +42.5626555444 -71.9747428000 323.07 +42.5658858472 -71.9830236889 325.0 +42.5675813556 -71.9873972750 321.97 +42.5657004278 -71.9967555944 314.7 +42.5608959444 -72.0037478694 292.7 +42.5586259917 -72.0144294944 285.9 +42.5589971833 -72.0238272917 309.2 +42.5575840528 -72.0293473500 327.1 +42.5557258083 -72.0360381583 336.7 +42.5568752000 -72.0441641389 321.7 +42.5589108361 -72.0481633722 325.7 +42.5650605361 -72.0582512361 338.0 +42.5676545917 -72.0632372306 331.6 +42.5704795944 -72.0728382556 324.4 +42.5710326167 -72.0807852306 291.5 +42.3008167500 -71.0485568611 10.7 +42.2355718694 -71.0227790528 48.3 +42.2503652194 -71.0220807806 62.99 +42.2195365944 -71.0006787639 31.45 +42.2151974694 -70.9968196944 22.90 +42.4274109361 -71.2579383139 64.51 +42.4236621000 -71.2511207278 76.74 +42.4216578778 -71.2413780139 70.30 +42.4218304667 -71.2305671444 79.62 +42.4213718278 -71.2236649667 68.58 +42.4181984167 -71.2147720667 68.26 +42.4170920722 -71.2045715639 71.23 +42.4168841500 -71.1992933361 75.1 +42.4123680444 -71.1880736861 105.06 +42.4110983778 -71.1815070667 88.98 +42.4085991806 -71.1710390889 40.5 +42.4059155250 -71.1633202250 14.33 +42.4044579556 -71.1590678333 5.76 +42.6005144667 -71.1709473944 30.2 +42.6183806667 -71.1762219139 37. +42.6249774028 -71.1776279000 46.9 +42.6346238250 -71.1804991528 56.4 +42.6458459611 -71.1863896417 53.5 +42.6719672278 -71.1508097722 11.9 +42.4024750667 -71.1556408722 8.79 +42.7138286389 -70.9695281889 28.2 +42.7351147278 -71.0134758444 38.5 +42.7355494722 -71.0159137250 32.79 +42.7365132722 -71.0188546778 33.9 +42.7380505111 -71.0203282278 36.3 +42.7069483667 -70.9539373167 22.5 +42.7059879861 -70.9505561694 21.6 +42.7040634083 -70.9482631500 21.5 +42.7028427333 -70.9399790778 23.4 +42.7016591139 -70.9372380917 22.8 +42.7033654361 -70.9300417778 22.4 +41.3613888889 -70.7444444444 66.892 +42.8147777778 -70.8744166667 9.246 +42.8144444444 -70.8747222222 11.070 +42.8091666667 -70.8783333333 17.24 +42.8022302528 -70.8795065722 9.560 +42.8702164111 -70.8638472056 21. +42.6324378028 -70.8630991806 18. +42.7040933639 -70.9276223194 21.7 +42.7055275861 -70.9253702083 23.9 +42.7061303667 -70.9229682778 27.2 +42.7057867361 -70.9189290667 26.7 +42.7060659028 -70.9156680556 23.5 +42.7055739556 -70.9110725722 17.8 +42.7048924000 -70.9081756667 19.0 +42.7060736056 -70.9060261083 22.1 +42.7071113472 -70.9016874639 23.0 +42.7090170528 -70.8989109250 25.6 +42.7090752361 -70.8953745306 30.8 +42.7092553889 -70.8938148639 31.2 +42.7088736778 -70.8917600528 26.3 +42.7107289611 -70.8883562722 17.8 +42.7080820556 -70.8832108250 17.8 +42.7078232111 -70.8815446722 18.5 +42.7055612944 -70.8806336833 21.2 +42.7025343333 -70.8777443583 17.2 +42.7009300583 -70.8749278389 13.9 +42.7001942222 -70.8719872972 14.8 +42.6991264944 -70.8694595444 7.5 +42.0270371250 -71.2577121667 66.1 +41.6958801417 -71.1230141417 57.9 +41.6889356722 -71.1221726028 49. +42.1736945694 -71.0739228944 74.0 +42.6964239972 -70.8677440361 14.8 +42.6950716111 -70.8639166389 15.0 +42.6930950472 -70.8578579389 4.1 +42.6915822750 -70.8550201472 7.7 +42.0351404861 -71.9222299556 187.3 +42.1797222222 -72.8311111111 79.276 +42.7025000000 -71.1663888889 15.771 +42.7045503194 -71.1689777000 15.91 +42.5752777778 -70.8988888889 15.91 +42.5702777778 -70.9133333333 25.73 +42.5677777778 -70.9272222222 3.71 +42.5697222222 -70.9355555556 14.43 +42.2933333333 -71.2361111111 54.17 +42.0441666667 -70.6716666667 10.586 +42.0400000000 -70.6716666667 3.111 +42.0111111111 -70.7075000000 18.705 +42.1602497222 -70.7324365500 4. +42.0466666667 -70.6516666667 3.99 +42.0472222222 -70.6602777778 11.23 +42.7957303972 -70.8404849444 2.58 +42.7973527778 -70.8445644417 3.30 +42.7949324000 -70.8345500694 1.81 +42.5738532833 -70.8461327722 22. +42.7231111111 -72.9392777778 336.962 +42.6178934750 -71.4909313389 140.4 +42.3838327639 -71.7889278417 138.0 +42.5410988250 -71.8982604194 300.6 +42.4304670861 -71.9706844722 283.5 +42.2478584472 -71.9764562750 326.8 +42.2309638500 -72.0198253028 202.6 +42.5709334222 -72.0855648000 275.1 +42.5683044778 -72.1016208611 294.0 +42.5675407972 -72.1047740917 298.5 +42.5709772111 -72.1284245056 316.9 +42.1355708417 -72.0457124611 250.9 +42.1391186833 -72.0423738333 253.5 +42.1484928194 -72.0386817278 223.18 +42.1529498778 -72.0362927194 231.1 +42.1628075000 -72.0335014444 228.2 +42.1735807917 -72.0303807917 249.49 +42.1786708917 -72.0302098333 240.60 +42.1866147639 -72.0323269194 233.19 +42.1891754722 -72.0327400167 227.41 +42.2011310611 -72.0308747361 231.52 +42.2049022028 -72.0301282833 220.4 +42.2112824417 -72.0273424611 208.03 +42.2187293250 -72.0227043417 212.4 +42.2216739000 -72.0219162278 214.0 +42.2277811000 -72.0199322611 194.9 +42.6173121556 -71.3202848222 41. +41.2649012556 -70.0300327028 22. +41.2712429139 -70.0883121333 6.4 +41.2447208611 -70.1194762500 5. +41.5153045889 -70.6556047028 9.5 +41.9461111111 -71.2808333333 42.730 +41.9444444444 -71.2822222222 43.447 +41.9413888889 -71.2841666667 41.756 +42.2341666667 -72.8769444444 116.216 +42.2780555556 -71.8505555556 190.740 +42.1019294056 -72.0375564194 213.29 +42.1066365028 -72.0372159111 213.94 +42.0961128444 -72.0400975722 209.39 +42.0977032778 -70.6716589694 1.06 +42.1003898500 -70.6698765306 1.02 +41.9502595500 -71.0194009139 41.1 +41.9474668861 -71.0210851056 42.1 +41.9546356250 -71.0321750722 23.3 +41.9576525194 -71.0436498278 22.7 +41.9585361528 -71.0693065222 36.4 +41.9592330583 -71.0773557139 36.5 +41.9616646139 -71.1064401611 23.0 +41.9626383500 -71.1297472889 25.7 +41.9675208222 -71.1434810694 28.7 +41.9745517111 -71.1513141250 25.1 +41.9828455111 -71.1595366917 25.9 +41.9914015556 -71.1722756583 31.1 +41.9960289556 -71.1932089139 36.2 +42.0005002333 -71.2109373417 37.0 +42.0042736389 -71.2220887833 39.9 +42.0117756083 -71.2326222667 56.0 +42.0209995639 -71.2450235861 54.0 +41.9040814333 -70.9537314639 16.5 +41.9038221194 -70.9488133417 14.5 +41.9029525972 -70.9441411694 16.2 +41.9033407444 -70.9384751917 19.8 +41.9068704000 -70.9241686389 23.6 +41.9070078028 -70.9220082833 19.2 +41.9082324028 -70.9057289861 16.0 +41.9085997389 -70.8972215083 20.5 +41.9110345139 -70.8825212333 28.8 +41.9111027778 -70.8715179417 36.5 +41.9113608417 -70.8591963750 37.2 +41.9149164750 -70.8479161306 39.4 +41.9164144667 -70.8436315333 37.7 +41.9189740528 -70.8367592556 40.5 +41.9222953750 -70.8199220611 43.2 +41.9245887028 -70.8118119028 32.8 +41.9271871528 -70.8086041389 28.2 +42.5511125694 -71.7881804083 147.7 +42.5530389806 -71.7989475861 191.2 +42.5509394306 -71.8022746361 208.6 +42.5480370417 -71.8054786139 214.3 +42.5473108500 -71.8079674222 221.9 +42.5476899944 -71.8124100389 221.9 +42.5474970278 -71.8249540444 228.5 +42.5491131694 -71.8294285917 226.0 +42.5676919417 -72.1127213194 335.2 +42.5718669167 -72.1300694917 318.0 +42.5729159417 -72.1409416167 332.2 +42.5719499778 -72.1509871528 363.37 +42.5727046917 -72.1563024222 365.42 +42.5746400917 -72.1623189056 354.5 +42.5760149278 -72.1679753528 350.6 +42.5771992667 -72.1747780944 333.5 +42.5762989111 -72.1848767500 314.0 +42.5741794056 -72.1916314194 307.0 +42.5703346389 -72.2019154000 274.78 +42.5682730917 -72.2089002667 257.9 +42.5658325944 -72.2202183361 266.1 +42.5642831583 -72.2264869111 255.3 +42.5635937722 -72.2327184667 242.1 +42.5636456278 -72.2392770889 220.5 +42.5634246056 -72.2454747750 200.3 +42.5639171806 -72.2511478667 180.7 +42.5657311083 -72.2564046111 181.76 +42.5662357444 -72.2600607944 187.8 +42.5656539694 -72.2636903972 190.8 +42.5638608889 -72.2693223139 172.8 +42.5619371083 -72.2765212472 165.9 +42.5594759778 -72.2845395083 177.26 +42.5573005444 -72.2929066917 168.74 +42.5573541972 -72.2976519500 162.99 +42.5594435722 -72.3035461333 178.2 +42.5624658028 -72.3079324000 197.8 +42.5645534056 -72.3122857528 208.9 +42.5664278083 -72.3151222778 206.2 +42.5693091611 -72.3189740444 192.3 +42.5726568472 -72.3226714361 196.5 +42.5766429417 -72.3244503111 199.0 +42.5806638111 -72.3250495056 185.7 +42.5851885944 -72.3263169861 187.6 +42.5881281667 -72.3285567639 175.4 +42.5905359833 -72.3323705167 158.7 +42.5935463889 -72.3385193750 167.4 +42.5243965333 -72.1849802306 356.1 +42.5293116306 -72.1882893528 328.4 +42.5362268722 -72.1941106444 327.19 +42.5510104556 -72.1945130694 291.4 +42.5531834167 -72.1960492000 283.3 +42.5565190944 -72.1972481056 272.1 +42.5594144806 -72.1993583667 275.54 +42.5641950861 -72.2030379417 273.8 +42.5671822194 -72.2033645222 273.9 +42.5582322583 -72.2893914917 172.7 +42.5704245167 -72.2912393694 168.2 +42.5695539222 -72.2833870139 166.37 +42.0394979917 -72.1258685389 245.4 +42.0459246194 -72.1216994222 223.8 +42.0515758472 -72.1182020833 220.3 +42.0610488306 -72.1085378722 217.3 +42.0664568611 -72.1045042972 224.8 +42.0690206833 -72.1020618056 225.6 +42.0727869306 -72.0988439917 213.2 +42.0787054444 -72.0952029250 196.9 +42.0831205833 -72.0922466667 190.8 +42.0925425667 -72.0873881556 181.8 +42.1042873111 -72.0840377167 184.3 +42.0974395889 -72.0860289583 179.3 +42.1098316028 -72.0825047167 190.5 +42.1135038250 -72.0805114056 188.9 +42.1168786250 -72.0754360528 194.9 +42.1279605444 -72.0499639750 228.1 +42.1328304611 -72.0480783806 238.9 +42.1378488250 -72.6099514694 47.6 +42.1434781778 -72.6143004500 40.2 +42.1500673333 -72.6132506639 25.7 +42.1560473861 -72.6099786028 27.4 +42.1627432444 -72.6117141528 26.4 +42.1712139000 -72.6104334444 39.0 +42.1751625361 -72.6097800111 39.6 +42.1811230194 -72.6051111472 43.1 +42.1858342167 -72.6072824194 30.7 +42.1927809917 -72.6112386278 28.1 +42.1970187556 -72.6173791250 47.6 +42.2071514722 -72.6074798222 45.63 +42.1085461500 -72.5994474611 31.1 +42.1143215944 -72.5907898778 34. +42.1175907528 -72.5864107056 49.2 +42.1197796389 -72.5812837833 54. +42.1214235278 -72.5753450889 61.6 +42.1273264889 -72.5666638639 59.2 +42.1294392639 -72.5606368611 75.1 +42.1330449028 -72.5568408778 66.4 +42.1376923278 -72.5540696639 67.2 +42.1417593750 -72.5497792000 73.0 +42.1513458556 -72.5492614444 63.4 +42.1553569694 -72.5490652750 56.6 +42.1588606750 -72.5480959639 51.7 +42.0256154944 -72.5902811639 36.2 +42.0330852472 -72.5897164722 22.2 +42.0392591944 -72.5882383778 23.3 +42.0482017528 -72.5892568361 21.5 +42.0557823417 -72.5895884861 23.2 +42.5719297028 -70.7700127444 2.8 +42.5725116083 -70.7731531889 3.9 +42.5753159500 -70.7728993222 3.3 +42.5749617806 -70.7743785778 6.2 +42.5968650250 -70.7624370694 54.5 +42.5753515889 -70.8791831639 26.4 +42.5740957583 -70.8672289667 40.3 +42.5728100306 -70.8463612611 19.6 +42.5746675833 -70.8387096028 31.2 +42.5766853861 -70.8346468139 30.7 +42.5798128389 -70.8247054333 18.0 +42.5869841639 -70.8182921389 21.0 +42.5884040194 -70.8149013750 31.7 +42.5884014972 -70.8042942500 37.5 +42.5904841944 -70.7949147861 37.5 +42.5914858278 -70.7750110417 14.8 +42.5899458611 -70.7652015389 19.9 +42.5906724361 -70.7594838250 19.2 +42.5929800250 -70.7546691472 17.0 +42.5983485361 -70.7499467056 25.6 +42.6025141250 -70.7454193083 39.1 +42.6081010861 -70.7376405528 44.7 +42.6118780194 -70.7347854361 46.3 +42.6142610944 -70.7296663000 56.0 +42.6153348250 -70.7257764917 38.7 +42.6212319417 -70.7172586222 34.6 +42.6268332167 -70.7033704583 12.0 +42.6254786139 -70.6956829528 11.5 +42.6255348444 -70.6908594750 22.8 +42.5840838583 -70.8206452361 24.1 +42.5843023194 -70.9146642111 29.3 +42.5916961889 -70.9208754361 32.2 +42.5058752972 -71.1035590444 55.0 +42.5085152972 -71.1043224278 47.0 +42.5115646917 -71.1039099083 33.5 +42.5200713111 -71.1031448556 30.28 +42.5236187667 -71.1030844333 37.28 +42.5260589194 -71.1020052694 39.95 +42.5308118722 -71.1031476000 39.0 +42.5360499806 -71.1052361361 31.55 +42.5446305056 -71.1043044833 35.47 +42.5545401139 -71.1051629167 29.07 +42.5597583972 -71.1063619417 35.71 +42.5686720917 -71.1087950444 24.82 +42.5744310583 -71.1106770722 28.13 +42.5818173944 -71.1124793639 23.3 +42.5873781417 -71.1153164500 31.24 +42.5955162111 -71.1198627528 31.46 +42.6002258000 -71.1214361028 23.87 +42.6081529694 -71.1228898944 34.9 +42.6167583361 -71.1244146861 39.92 +42.6207664833 -71.1257407528 55.37 +42.6232895056 -71.1259841361 61.34 +42.6293483611 -71.1271646000 69.10 +42.6361631278 -71.1292161250 82.4 +42.6449221583 -71.1324637833 86.59 +42.6473421444 -71.1343401694 81.6 +42.6520090111 -71.1374163750 55.4 +42.6549344278 -71.1395796056 51.88 +42.6568756583 -71.1409266750 49.66 +42.6636406694 -71.1451702361 12.2 +42.6685602389 -71.1484476917 13.9 +42.6731311833 -71.1511185306 15.7 +42.6794830278 -71.1506476444 31.9 +42.5948747056 -71.1417734028 36.9 +42.5871214056 -71.1559466611 32.5 +42.6236153000 -70.7109660083 19.4 +42.2968236528 -73.2481007000 292.0 +42.6819183083 -71.1536272083 30.8 +42.6863141444 -71.1564970639 34.3 +42.6943585556 -71.1622428861 19.3 +42.6969987056 -71.1632229722 19.1 +42.6989487667 -71.1641342167 18.0 +42.7023696750 -71.1662228583 16.0 +42.7072094556 -71.1699679250 18.5 +42.7096874194 -71.1720256278 18.1 +42.7157973194 -71.1772629306 16.3 +42.7195014528 -71.1802899333 24.6 +42.7232485167 -71.1830570417 23.0 +42.7291667944 -71.1890349889 45.2 +42.5053037639 -71.1600621778 33.3 +42.5083701500 -71.1606504333 33.7 +42.5104198556 -71.1615149194 33.7 +42.5134829222 -71.1607227250 30.6 +42.5162873000 -71.1614288167 33.1 +42.5193124056 -71.1583503889 31.1 +42.5209342556 -71.1580929222 27.8 +42.5227892194 -71.1601420889 32.1 +42.5256530944 -71.1593717611 26.4 +42.5278286667 -71.1595535083 29.3 +42.5312974194 -71.1587573333 28.6 +42.5344650944 -71.1594849611 31.86 +42.5417473778 -71.1683430472 26.9 +42.5461457528 -71.1739609500 33.5 +42.5525217528 -71.1793167667 29.5 +42.5611727111 -71.1918077556 30.7 +42.5567569306 -71.1857052333 38.1 +42.5581481194 -71.1818791389 31.1 +42.5630589722 -71.1834698389 30.1 +42.5660492944 -71.1847939139 30.2 +42.5715271611 -71.1889646500 31.7 +42.5729529833 -71.1909889444 32.1 +42.5748216111 -71.1928656000 32.1 +42.5795743611 -71.1935456722 35.1 +42.5828012778 -71.1963469778 35.5 +42.5861915556 -71.1990703333 27.3 +42.5888611167 -71.2016196083 25.9 +42.5911244861 -71.2057310111 28.7 +42.5948101583 -71.2116985167 31.5 +42.5954361833 -71.2140034472 31.0 +42.5969375111 -71.2165830472 30.8 +42.5993554500 -71.2212456861 34.4 +42.6006741333 -71.2222934750 37.3 +42.6025906528 -71.2228586667 42.1 +42.6045669556 -71.2247585972 44.1 +42.6063935333 -71.2259438889 40.3 +42.6123618444 -71.2337798139 36.2 +42.6134914361 -71.2375645722 35.0 +42.6157214750 -71.2434648250 38.4 +42.6172556250 -71.2481070722 35.97 +42.6050375417 -71.2606856806 49.4 +42.6026285722 -71.2684543583 64.2 +42.5953399639 -71.2980996611 33. +42.5908955778 -71.3142099167 35.0 +41.9960269222 -71.1907141833 35.6 +42.6201289222 -71.3552660278 37. +42.4641666667 -70.9525000000 9.83 +42.4638888889 -70.9458333333 5.58 +42.5179106000 -71.1626563306 68.2 +42.5222362444 -71.1573956361 38.4 +42.5823716306 -71.1974194611 35.2 +42.6081374750 -71.2161912861 46.6 +42.6060655722 -71.2174802333 53.8 +42.5874302694 -71.3235661833 66.3 +42.5384471583 -70.9879300722 44.5 +42.5321708583 -70.9909881389 57.7 +42.5272817556 -70.9943136583 57.5 +42.5388784167 -70.9849307556 50.6 +42.5175179250 -70.9961926111 40.7 +42.5212189750 -70.9908983222 36.4 +42.5232721028 -70.9817023833 37.2 +42.5252388500 -70.9778937750 52.4 +42.5301268306 -70.9783225611 53.3 +42.5254794917 -70.9693775278 58.8 +42.5264307167 -70.9560243250 39.4 +42.5389213056 -70.9460426778 22.6 +42.5143642028 -71.0034972000 41.9 +42.5094066944 -71.0112007806 45.0 +42.5956088833 -71.3179099944 36.5 +42.6043747444 -71.3245914139 34.6 +42.6072704528 -71.3259872556 41.6 +42.6197328000 -71.3374334528 35.1 +42.5582810944 -71.2955127361 51.3 +41.6650000000 -70.2866666667 15.048 +42.6175000000 -71.2127777778 35.586 +42.6338888889 -71.2061111111 37.740 +42.6372222222 -71.2063888889 37.697 +42.6427777778 -71.2063888889 38.998 +42.6424452306 -71.2469705528 37. +42.6208333333 -71.2386111111 37.53 +42.6247222222 -71.2858333333 39.92 +42.6255555556 -71.2950000000 36.337 +42.5197222222 -71.1030555556 30.51 +42.5687676389 -71.1588659056 26. +42.5221759083 -70.9846647444 35.6 +42.6253380833 -70.6973962389 6.4 +42.7264925389 -71.2055315861 38.6 +42.8019605167 -71.0497850639 48.6 +42.1961648611 -70.9611531806 38.0 +42.1095846556 -70.7678913056 33.0 +42.1073410250 -71.0588690611 74.9 +41.9394568472 -71.0226342944 24.9 +41.7614071222 -70.5926642056 13.3 +42.2979774944 -71.4099603083 55.6 +42.1216828111 -71.4712887972 69.5 +42.0391751417 -71.3054650389 61.4 +41.9355723667 -70.6550332472 40.2 +41.6595410444 -70.8780040417 12.9 +41.8465287889 -70.8520233278 29.5 +42.0644332111 -70.1470149611 3.0 +42.5541076028 -71.9178934361 343.8 +42.1237044778 -71.7063713583 111.7 +42.4245128222 -72.1258386500 328.3 +42.2576441389 -71.7933924556 147.9 +42.1141783333 -71.4658239306 74.39 +42.1605294944 -71.4956980250 116. +41.9505555556 -71.3672222222 46.971 +42.4006208944 -72.4039842722 344.9 +42.4188823611 -72.9241692000 381.0 +42.1112943389 -73.1400347361 480.5 +42.1142524278 -72.0807765778 180.8 +42.5212897528 -71.7014969500 128.5 +42.5579173583 -72.3003329056 166.6 +42.3623763722 -72.6383216556 47.0 +42.6397167333 -72.9127355611 175.3 +42.0872862917 -73.3450208361 206.6 +42.7001706528 -73.1651963361 192.6 +42.5233333333 -71.7108333333 123.70 +42.8522222222 -70.8683333333 8.90 +42.6174878750 -72.0077164611 347.97 +42.6547015694 -72.0025046333 314.3 +42.6610035472 -72.0054036194 313.8 +42.6667456250 -72.0116260972 306.9 +42.4354134889 -71.2599790361 61.59 +42.4540013722 -71.2569809417 56.43 +42.4768789722 -71.2200268083 60.5 +42.5170320333 -71.0895959083 31.8 +42.5229187167 -71.0583575611 30.7 +42.6085703611 -70.9712118639 39.22 +42.6265794556 -70.9780848167 25.00 +42.6508332722 -70.9765938056 32.91 +42.5488878639 -70.9369132778 9.14 +42.5523154583 -70.9357738639 14.51 +42.1332707667 -72.0473880889 243.91 +42.1338997528 -72.0472116417 243.98 +42.5297386333 -71.7343870056 111.44 +42.6050894806 -71.1224236472 31.86 +42.4133333333 -71.1233333333 11.307 +42.4383333333 -71.1450000000 8.433 +42.6455555556 -71.1863888889 53.705 +42.7321164306 -71.2038435889 41.60 +41.9061111111 -71.0425000000 17.754 +41.9179778222 -70.6221108028 22.01 +41.8738802139 -70.6012509083 56.62 +42.6132352417 -71.3027579194 43.129 +42.6211583333 -71.2822916667 42.840 +42.7736811750 -71.1183922833 25.41 +42.7875288306 -71.1116439083 46.62 +42.7925862000 -71.1067112444 33.78 +42.8047222222 -71.0658333333 41.466 +42.2605555556 -72.9555555556 162.782 +41.8988888889 -71.3697222222 31.448 +42.4481750000 -71.2691916667 63.53 +42.4488888889 -71.2761111111 66.36 +42.4342284611 -71.2710754722 69.72 +42.8343477750 -70.9657681444 31.72 +42.0288142083 -70.9826613056 29. +42.2233333333 -71.0705555556 63.79 +42.5248084583 -71.1026333667 38.33 +42.5360737611 -71.1053137444 32.39 +42.5748716444 -71.1107800417 26.87 +42.5875537833 -71.1151853306 31.81 +42.6179060167 -71.1250936861 44.37 +41.7777777778 -70.9066666667 29.407 +41.7694444444 -70.9061111111 24.522 +41.7580555556 -70.9044444444 41.805 +41.7516666667 -70.9041666667 36.481 +42.2822222222 -72.9800000000 186.612 +42.2805555556 -72.9791666667 185.179 +42.1261111111 -72.5672222222 59.603 +42.5151783472 -72.1822258056 370. +42.5217908861 -72.1828130944 374.44 +42.5308909778 -72.1903353750 327.1 +42.5332385972 -72.1927613528 326.2 +42.5417343167 -72.1949844667 307.9 +42.5464830833 -72.1933887750 298.9 +42.0936111111 -70.6527777778 11.83 +42.0936111111 -70.6525000000 12.27 +42.0936111111 -70.6527777778 11.81 +41.6783333333 -71.1533333333 75.297 +42.7658333333 -71.0811111111 38.440 +42.7216666667 -71.1113888889 53.960 +42.7459444444 -71.1115250000 19.264 +42.7519444444 -71.1088888889 22.09 +42.7561111111 -71.1044444444 19.195 +42.7672222222 -71.0872222222 17.627 +42.7702777778 -71.0688888889 6.33 +42.7611111111 -71.0608333333 7.92 +42.7547222222 -71.0463888889 10.36 +42.7533333333 -71.0386111111 6.938 +42.7313888889 -71.0013888889 34.92 +42.5741666667 -70.7677777778 3.91 +42.5719444444 -70.7744444444 3.81 +42.5725000000 -70.7733333333 3.77 +41.3433333333 -70.7438888889 27.785 +42.5819444444 -70.7500000000 12.04 +42.5841666667 -70.7419444444 17.80 +42.5880555556 -70.7350000000 21.85 +41.8138888889 -71.3366666667 15.295 +41.8161111111 -71.3352777778 12.663 +42.6686111111 -73.1033333333 218.893 +42.0913888889 -70.7097222222 4.851 +41.9078099083 -70.9189161333 16.26 +41.9165165306 -70.8423418028 35.33 +41.9236126111 -70.8216618639 32.17 +41.9239524528 -70.8164584889 33.37 +42.6483333333 -73.1088888889 222.845 +42.7280555556 -70.9911111111 26.899 +42.7566666667 -70.9525000000 19.113 +42.7855555556 -70.8955555556 16.671 +42.6756741611 -70.9806678694 31. +42.2175081778 -71.5412406472 119.79 +42.2003091389 -71.5672653528 151.03 +42.6291666667 -71.3097222222 33.849 +42.6178346694 -70.6861901361 7. +42.3252349806 -72.6062490861 35.97 +42.3301915583 -72.6162713083 36.40 +42.3743722222 -71.0546722222 2.705 +42.3502777778 -71.2133333333 14.472 +41.6794444444 -70.9402777778 27.77 +41.8639331083 -71.0578539639 27.00 +41.8719438611 -71.0555667444 19.04 +41.8850421861 -71.0520537333 10.4 +42.6213888889 -73.1191666667 243.549 +41.5844444444 -70.9516666667 1.39 +41.5863888889 -70.9458333333 1.47 +41.5874111111 -70.9442722222 3.12 +42.2822222222 -71.0341666667 9.35 +42.2875000000 -71.0230555556 3.31 +42.3229438333 -71.1168262833 18.0 +42.2988888889 -71.1019444444 26.742 +42.3612257833 -71.0508073861 2.5 +42.3574722222 -71.0571666667 5.894 +42.3550277778 -71.0503055556 3.242 +42.3547222222 -71.0505555556 4.547 +42.3582777778 -71.0535555556 3.385 +41.9594792611 -70.6624313500 3.042 +41.9559166667 -70.6647777778 15.067 +41.7414444444 -70.6158611111 2.723 +41.7190277778 -70.6145000000 5.356 +41.6880660722 -69.9515089278 3.832 +41.6883333333 -69.9505555556 1.905 +41.6883333333 -69.9502777778 1.981 +41.6664722222 -69.9693888889 2.338 +41.6664722222 -69.9683888889 1.463 +41.6665000000 -69.9666388889 1.895 +41.6698055556 -69.9614444444 2.449 +41.6813388889 -69.9587944444 6.923 +41.6662500000 -69.9688888889 1.475 +41.6330000000 -70.2992222222 2.074 +41.6333333333 -70.2977777778 1.280 +41.6316666667 -70.3005555556 3.333 +41.6313722222 -70.3016166667 4.765 +41.5249724000 -70.6724620556 2.2 +41.5246666667 -70.6712500000 2.079 +41.5245000000 -70.6713888889 2.230 +41.5252777778 -70.6738888889 2.484 +41.5238888889 -70.6713888889 2.054 +41.5250000000 -70.6725000000 3.324 +41.2892498667 -70.0927202528 0.9 +42.3066666667 -70.9025000000 4.46 +42.2491666667 -70.9027777778 3.450 +42.2455555556 -70.8952777778 4.405 +42.2441666667 -70.9408333333 6.239 +42.2425000000 -70.9522222222 13.192 +42.2425222222 -70.9604361111 8.967 +42.2464722222 -70.9767305556 8.029 +42.2483333333 -70.9836111111 11.288 +42.3047222222 -70.8836111111 2.28 +42.6086111111 -73.1311111111 265.595 +42.2707801000 -72.6035876250 36.52 +42.2753442861 -72.6044140222 37.5 +42.1105735306 -72.6073962111 19.13 +42.1032932806 -72.5968119056 22.66 +42.0951304361 -72.5870574917 20.0 +42.0893449667 -72.5828116667 18.8 +42.0851960639 -72.5813311611 18. +42.0820181556 -72.5800729333 18. +42.0749289222 -72.5848842361 19. +42.0737229639 -72.5865506750 19. +42.0712564944 -72.5879944667 17.8 +42.0577611889 -72.5910168194 16.8 +42.0251186778 -72.5837203667 42.1 +42.4271502556 -72.5400240000 50. +42.5905555556 -72.5986111111 76.283 +42.5972222222 -72.5966666667 79.934 +42.3609064889 -72.6350460306 46. +42.3000743667 -72.6210185472 36.21 +42.3500000000 -73.4113888889 279.946 +42.0443653250 -72.1243384694 229. +42.5927777778 -73.1405555556 287.334 +42.5041809639 -72.3335107806 313.24 +42.5058333333 -72.3297222222 308.40 +42.7766666667 -71.0772222222 22.658 +42.0161392611 -71.1613531917 40. +42.0577777778 -72.5900000000 16.684 +42.8200000000 -70.8700000000 5.843 +42.1002777778 -72.6005555556 20.749 +42.6254472222 -72.8842138889 167.061 +42.3616111111 -71.0974722222 2.411 +42.3742822861 -71.0179052944 4. +42.4912222222 -70.8368333333 12.70 +42.3330555556 -70.9313888889 3.54 +42.5833333333 -70.9369444444 31.51 +42.4761111111 -71.1269444444 11.481 +42.4633333333 -71.2913888889 37.91 +42.5402777778 -71.7400000000 114.63 +42.0975000000 -72.6063888889 18.341 +41.4495000000 -70.5632500000 7.794 +42.2690010917 -71.8698284472 302.460 +42.1600000000 -72.5063888889 50.731 +42.1922222222 -71.1505555556 25.588 +42.1772222222 -71.1788888889 32.053 +42.2611111111 -71.7952777778 149.174 +41.9891666667 -71.2547222222 37.778 +42.6069166667 -71.3008583333 43.308 +42.3546510556 -70.9915869250 3. +42.2811111111 -71.0611111111 5.000 +42.7688888889 -70.9338888889 18.287 +42.3564916667 -71.0675916667 9.050 +42.2666666667 -71.4972222222 67.161 +42.6375000000 -72.5727777778 101.811 +42.3086111111 -71.9394444444 337.880 +42.3697222222 -71.8830555556 241.984 +42.2850000000 -72.6150000000 38.732 +42.2816666667 -71.0358333333 5.520 +42.0455555556 -72.6352777778 33.890 +41.9900000000 -70.7238888889 4.437 +42.1077777778 -72.6233333333 19.122 +42.2736111111 -72.6044444444 36.482 +42.3097222222 -71.9794444444 296.215 +42.2208333333 -72.2983333333 128.286 +41.9480555556 -71.2111111111 30.746 +42.1561111111 -72.6130555556 17.343 +42.1040025417 -72.6321534306 48.089 +42.2230555556 -72.8688888889 110.056 +42.3730555556 -73.1155555556 462.651 +42.4269444444 -73.3563888889 400.756 +42.6821718528 -71.4411528667 47.505 +41.6511111111 -70.2322222222 3.906 +42.1008611111 -72.6355555556 31.380 +42.4694444444 -73.1619444444 365.355 +42.6445000000 -72.0009166667 324.106 +42.2602777778 -71.7966666667 149.860 +42.1804434972 -72.9295344778 442.2 +42.1481604556 -72.4851400556 87. +42.1140480389 -70.9793411083 43. +42.1116216056 -70.9986319944 69. +42.1273119917 -71.0021610611 62. +42.1265358389 -71.0019830028 64. +42.1001248611 -70.9159083917 +42.1513695528 -70.9407661611 +42.1073430889 -70.9435995000 +42.0945357639 -70.9468411111 40. +42.6419444444 -72.9225000000 184.144 +41.7025045361 -70.7669933528 +42.1733374750 -70.8869124306 30. +42.1670934111 -70.8896253333 30. +42.1696935333 -70.8940560972 30. +42.1732625889 -70.8928556417 +42.1707978056 -70.8954825389 30. +41.2492155750 -70.0688740444 9.07 +41.2539153833 -70.0599590972 11.93 +41.2511483639 -70.0568930417 11.13 +41.5163347389 -71.1111895000 +42.3980703111 -71.1435587750 8. +41.7382937861 -70.8845091583 27.566 +41.7412285722 -70.8964850056 23.856 +41.7435544472 -70.8869515194 35.28 +41.7436166889 -70.8864819917 +41.7432437306 -70.8865886972 +41.7435546917 -70.8869518583 +41.7432434111 -70.8865889139 +41.7007690306 -70.8833346250 44. +41.6857492083 -70.9235638833 12. +41.6858064167 -70.9225733389 12. +41.9027777778 -70.9955555556 7.361 +42.6750000000 -72.9977777778 241.817 +41.7686199028 -70.4982552778 20. +42.7815851194 -70.9252164500 21. +42.6254953306 -70.6804464250 +41.9545982250 -70.6815882389 40.48 +41.7313665194 -70.6278916389 -0. +42.0241666667 -71.5825000000 79.443 +41.6836245556 -70.4067370083 30. +42.4268089472 -73.2932783500 360.5 +42.3664638000 -71.0275450000 4. +42.4258853222 -73.2917051361 355.4 +42.1587114194 -72.7183239750 +42.4784463444 -71.2898877056 +42.3610744500 -71.0201406639 +42.3655211889 -71.0179439472 +42.4230452611 -73.2905288833 +42.3650810194 -71.0243151806 +42.3680166972 -73.1420211417 +42.1803603417 -72.8004459500 +42.6136111111 -70.6627777778 16.99 +42.0874956111 -73.5047871972 680. +42.0874850444 -73.5047749778 680. +42.0874846722 -73.5047805306 680. +41.7947023278 -70.0009010167 18. +41.8300399333 -70.9502873361 54. +42.0345264056 -70.0551981389 +42.3977518667 -71.1417364806 12. +41.9018695639 -71.0592174028 9. +41.4542229611 -70.6478719556 40. +41.5122926111 -70.6812971444 15. +42.3078142417 -70.8839552500 34. +42.3291243611 -71.1168569000 14.9 +42.3101313972 -70.8827521139 12. +42.3063388917 -70.8997762556 +42.3062921139 -70.8995104472 +42.3076666667 -70.8840250000 33.52 +42.3070313889 -70.8837566611 15. +42.3566666667 -71.1297222222 7.888 +42.3586233667 -71.1238209167 +41.5115885806 -71.0302283944 18. +42.0315242417 -71.9144407417 194.0 +42.7416633583 -70.9006246722 15. +42.2361392667 -70.9709542222 4. +41.6636338861 -70.4651511417 32. +42.6316724417 -71.2270244750 113.1 +42.8558405361 -70.9324175639 +42.8560638361 -70.9137576056 +42.0505501861 -71.0838083833 37. +42.3654590389 -72.5242100306 93. +42.3905903972 -72.5291203389 +42.3893078833 -72.5280471778 +42.3708610667 -72.5181357000 61. +42.3755209833 -72.5163673889 +42.3748812028 -72.5187190944 +42.3713548694 -72.5189928194 +42.4139342111 -72.5086407111 +42.3716728917 -72.5169833889 +42.3715475111 -72.5180326333 +41.6587436306 -70.7583052917 +42.6491023833 -71.1344241056 +42.2990665361 -70.9317962500 36.84 +42.7059606222 -71.0769553778 95. +42.6768889972 -70.6240764528 +42.6846282250 -70.6207418417 +42.2991222222 -70.9320694444 36.86 +42.2991361111 -70.9317916667 36.51 +41.6415722222 -70.7651203833 1. +41.6413302778 -70.7648860667 1. +41.6390719972 -70.7627384528 +42.6618827111 -70.6815097361 3. +42.6574094556 -70.6771645111 +42.4775805417 -71.3946193556 111. +41.6650000000 -70.2811111111 13.36 +41.6647222222 -70.2813888889 13.291 +42.3587290444 -70.9917051917 5. +42.3587083778 -70.9918431083 5. +42.7976361111 -70.9630106889 76. +42.4147356222 -71.1801722694 114. +42.4147336194 -71.1801547583 138.1 +42.4139853639 -71.1555398111 +42.4179613722 -71.1616603667 +42.4164895222 -71.1570114583 +42.4107003722 -71.1783225306 84. +42.3443904278 -71.0220251194 3. +42.3446423667 -71.0262160333 +42.3443614583 -71.0322870972 38.9 +42.3444374528 -71.0285827389 39.0 +42.3446420556 -71.0264066861 +42.5543055556 -71.7588055556 101.54 +42.2697222222 -71.8736111111 301.622 +41.3931916667 -70.6151888889 18.603 +42.3595010000 -71.0516265778 2.9 +42.5630974722 -72.6424595556 294. +42.5011474694 -72.8060378306 537.1 +41.6380299000 -70.5401692417 +42.3360251389 -71.1333577444 +41.7903163389 -71.0986434250 28. +41.7960328472 -71.0683928750 +41.7916078667 -71.0702373056 28. +41.7916734583 -71.0704031111 +41.7159232222 -70.0962569333 9. +41.9483237694 -71.2891278861 +41.9461050417 -71.2853380194 30. +41.9454849667 -71.2853421611 +41.9299693889 -71.3109166861 +41.7531027417 -70.0729053972 18. +42.1993043611 -71.8523058722 +42.3463888889 -71.2463888889 20.118 +42.3743229833 -71.0682510444 7. +41.7322043250 -70.5500169472 83. +42.1069649028 -71.0603298472 64. +42.8064012306 -71.0572224611 101. +42.7873940972 -71.1681308194 +42.8072220333 -71.0583501306 103. +42.3237724694 -71.9530916667 335. +42.0838888889 -72.5805555556 18.019 +42.5874452972 -70.9445820194 63.48 +42.5886111111 -70.9444444444 60.61 +42.5875638889 -70.9443833333 64.63 +42.5873277778 -70.9441666667 65.23 +42.8144444444 -70.8747222222 10.171 +42.3299979917 -70.9297318444 14. +42.3300877361 -70.9298864833 14. +42.3895788139 -70.9687627639 21. +42.3895143722 -70.9687660361 21. +42.3894507194 -70.9687718917 24. +42.3045372167 -70.9047265778 38. +42.3045710333 -70.9048510583 38. +42.2991656583 -70.9319200917 37. +42.3300626944 -70.9298143444 14. +42.3192745083 -70.9281449917 20. +42.0034758083 -70.6001516917 26.6 +41.4196367833 -70.9375943833 44.641 +42.1597165583 -70.7051585917 17. +41.3515063639 -70.8348360028 37.236 +42.2897964806 -70.8788468111 4. +42.1597370056 -70.7051739139 17. +42.0907114167 -70.6427633861 5. +42.2486352528 -70.7681828972 14. +42.6903411472 -70.7757475306 38. +42.6255555556 -72.8622222222 166.175 +42.3599444444 -71.0948055556 4.805 +42.6894444444 -72.9738888889 275.11 +42.4961111111 -70.8361111111 19.57 +42.3266666667 -70.9352777778 4.57 +42.4186121222 -70.9286572056 21. +42.4202777778 -70.9325000000 18.92 +42.4878611111 -71.1671388889 31.238 +42.4529138889 -71.1348361111 8.860 +42.4184323444 -70.9291052222 18. +42.4184131667 -70.9291436472 18. +42.4183941444 -70.9291817556 18. +42.3078179750 -70.8839510167 34. +42.3277067028 -70.9255711722 4. +42.3277514278 -70.9256202417 4. +42.3065087639 -70.9104092222 21. +41.4850791528 -71.0376894056 3. +41.4206137778 -70.9338318917 47. +42.6903589833 -70.7757693722 38. +42.3276041306 -70.9254536639 4. +42.2504292111 -70.7644045778 11. +42.3078490694 -70.8839640472 34. +42.1611477361 -70.7058324639 23. +42.3079153778 -70.8838807917 34. +41.6736111111 -70.9569444444 19.56 +41.6797777778 -71.1784722222 61.392 +42.5541666667 -71.7547222222 103.18 +42.1011111111 -72.6372222222 32.641 +41.4072222222 -70.6047222222 12.250 +42.3602163167 -70.9876987056 4. +42.3499723861 -70.9562041889 28. +42.3495584806 -70.9562559389 28. +42.3503265667 -70.9559272389 28. +42.2897846667 -70.8789908417 9. +42.2897546111 -70.8789688306 9. +42.1620344639 -70.7062560444 13. +42.3073945167 -70.8850159778 35. +41.4850632139 -71.0376720167 3. +42.3542532583 -70.9575418722 15. +42.2494632889 -70.7656384056 9. +42.4172854417 -70.9092703056 3. +42.1927777778 -71.1513888889 23.864 +42.1869444444 -71.1555555556 25.437 +42.2544444444 -71.8061111111 144.157 +41.9761111111 -71.2475000000 41.562 +42.6216666667 -71.2994444444 34.868 +42.2852777778 -71.0425000000 3.391 +42.7713888889 -70.9266666667 16.894 +42.3508333333 -71.0894444444 3.574 +42.3036522667 -71.0109615639 23.44 +42.3019444444 -71.0097222222 7.49 +42.3034222222 -71.0118083333 23.43 +42.3037333333 -71.0109444444 23.50 +42.2686944444 -71.5181388889 79.208 +42.6472222222 -72.5627777778 112.798 +42.3117500000 -71.9599833333 281.049 +42.3658333333 -71.8447222222 188.080 +42.3078209000 -70.8839089056 34. +41.5837027333 -70.8237643250 1. +42.2494894389 -70.7656763639 9. +42.4169493639 -70.9094446611 3. +42.4198743333 -70.9322227472 21. +42.3416193639 -70.8785798639 19. +42.3078817028 -70.8838591778 34. +42.4257907639 -70.9096291667 18. +42.4936380500 -70.8362564056 19. +42.2947222222 -72.6200000000 32.488 +42.2750000000 -71.0286111111 8.753 +41.9875000000 -70.7083333333 4.123 +41.7863888889 -70.7483333333 18.649 +42.3080555556 -71.9991666667 228.295 +42.2086111111 -72.3027777778 138.834 +41.9492222222 -71.2261111111 36.786 +42.1961111111 -72.6011111111 24.087 +41.4992344528 -70.7396408778 40.556 +41.4852542722 -71.0385640722 3. +41.4851313611 -71.0382348278 3. +42.1069444444 -72.6452777778 62.178 +42.2310472222 -72.8769472222 110.476 +42.3847222222 -73.1230555556 459.643 +42.4319444444 -73.3641666667 450.789 +42.6986111111 -71.4444444444 52.123 +41.6513888889 -70.2186111111 2.673 +42.0925000000 -72.6680555556 42.494 +41.4193089139 -70.9374083694 41. +42.5611177667 -70.7735443667 49. +41.4197490722 -70.9378540361 41. +41.4991540167 -70.7395904750 42.688 +42.4936497861 -70.8362994028 19. +42.4912418806 -70.8369012889 14. +42.4961862722 -70.8359269833 20. +42.2903176694 -71.2546598000 78.74 +42.2891666667 -71.2566666667 74.03 +42.2903416667 -71.2546000000 78.81 +42.2904694444 -71.2547416667 77.14 +42.4563888889 -73.2041666667 306.206 +42.5820449194 -70.6584836833 10. +41.4822567056 -70.7415981250 27.160 +42.5736630111 -70.7252924694 23. +41.4193779139 -70.9377612972 41. +42.4069313972 -71.3320622111 86.75 +42.4069500000 -71.3318388889 85.72 +42.4068500000 -71.3320666667 86.42 +42.6091666667 -71.9955555556 324.051 +42.5820326750 -70.6585403667 10. +41.3472992806 -70.8369984667 43.509 +42.4893134528 -71.1778910250 78.301 +42.4896416667 -71.1772250000 77.544 +42.4894222222 -71.1781194444 78.491 +42.4907568167 -71.3038694806 50.67 +42.4909805556 -71.3037694444 51.91 +42.4907111111 -71.3037250000 51.00 +42.3557528611 -71.0129016889 4. +42.6396505444 -70.5985338472 12. +42.1611821556 -70.7058440861 23. +42.4257537361 -70.9096285667 18. +42.3416595056 -70.8785933278 19. +42.3078411028 -70.8839420917 34. +42.1391374500 -71.7412061500 169. +42.6282967639 -70.6493542056 +42.0323627361 -70.2084819056 +42.0211924750 -70.1918662417 +42.0489278333 -70.2187594472 +41.7217723611 -70.6135263944 9. +42.0444031694 -72.1502751472 303. +42.1523785222 -72.7103036028 74.66 +42.1695367833 -72.7122933056 80.62 +42.8867774944 -70.9035346111 +42.8118672694 -70.8651907111 2. +42.2713893306 -71.0685496889 5. +42.2432570639 -70.9074108472 47. +42.5365287139 -70.7860673917 27. +42.5364685417 -70.7859464028 34. +42.4467362222 -71.0046290194 58.8 +41.7663685750 -70.0097641778 37. +42.4467466222 -71.0047379000 59. +41.6410355389 -70.3187705167 +42.7035657528 -72.5383119389 340. +42.0455695583 -71.7094116333 213.8 +42.5781938750 -70.8448417194 50. +42.7080599917 -71.0151787861 108. +42.7079218000 -71.0150584278 108. +42.1019957972 -73.4326628361 794.7 +42.6250044056 -70.6835395667 28. +42.0677000306 -70.9293644611 32. +42.6112082833 -70.9583552556 75. +42.0173321028 -70.0365163056 48. +42.4074301250 -71.1201570667 29. +42.0147103167 -70.0345982444 +42.2764558000 -71.8159147167 239.1 +41.8035133333 -70.7185945639 25. +42.3840264028 -70.9806425083 10. +42.3296456944 -71.1080705667 90.5 +42.5591276083 -71.9630278111 373. +41.6943283611 -71.0913180278 68. +41.8146216889 -71.0996249778 60. +41.5554624556 -70.9318959861 +42.1163821167 -70.7920038778 41. +42.3525226056 -71.1924467250 58. +41.7364691028 -71.1680272611 +42.2364383806 -71.1282816667 +42.1424254500 -72.0273712306 267. +42.1601800861 -72.7184141139 80.18 +42.1200463111 -71.8078705083 257.7 +41.6862905194 -70.3035956222 37. +41.6968355528 -70.3066021889 41. +41.6480520833 -70.2741358611 -0. +41.6417579889 -70.4531202472 11. +41.6569163472 -70.4510497722 25. +41.7011911722 -70.2603097806 2. +41.7016132333 -70.3043855028 +41.6503419861 -70.4465094806 30. +41.6424845194 -70.4517052444 25. +41.7002406917 -70.2989074417 +41.7343402111 -70.3887598611 16. +41.7039679250 -70.4190413611 72. +41.6640435361 -70.4587313389 27. +41.7006115639 -70.2988538694 +41.6922833194 -70.2596286806 20. +42.1032952583 -72.5978161333 21.01 +42.4230338056 -72.1052189389 276. +42.2585522139 -70.7850075333 +42.4536475222 -72.4089287444 376. +42.6479526694 -71.1324483389 +42.3569444444 -71.0533333333 6.583 +42.3611609583 -70.9877935222 4. +41.6634089528 -69.9443820056 -0. +41.7361482083 -70.2291463667 6. +41.7138257167 -70.2371444722 9. +42.4169101694 -70.9363363917 9. +41.6439498944 -70.2028595472 3. +41.6593632833 -70.1993951194 +41.6517311361 -70.1691725167 +41.8511924139 -70.5899113806 49. +41.7291213639 -70.0936790222 +42.8710024778 -70.8918765167 50. +41.5152000333 -70.9539867639 11.66 +42.3840482833 -72.7732756583 455. +41.6486923056 -70.2729388222 -0. +41.7290193972 -69.9918942444 3. +42.1966666667 -72.3636111111 97.50 +41.5158542417 -70.9542798889 10. +42.3416666667 -70.8800000000 23.79 +42.3502079778 -70.9562599278 28.06 +42.3058965833 -70.9088792222 +41.6614252167 -69.9472943139 -0. +42.4186518000 -70.9868105972 -0. +41.7797536250 -70.4898763389 4. +42.6068598000 -70.6447741500 37. +42.6031962778 -70.6435617194 31. +42.2640675222 -71.0215730333 10.1 +42.7497727028 -71.1673830250 104. +42.7510599083 -71.1677132000 +42.1346262944 -71.5020864611 145. +42.5078771111 -71.0988748194 69.57 +42.5080444444 -71.0986722222 68.18 +42.5083055556 -71.0980277778 66.19 +42.5077872389 -71.0992154944 +41.7287091917 -71.1534322278 3. +42.3018274500 -73.1459021028 664.4 +42.3091396528 -71.8334947861 275. +42.4688272222 -71.2831392000 42.05 +42.4700468528 -71.2889922028 38.31 +42.4681987500 -71.2776265278 36.40 +42.4674819500 -71.2975028389 41.30 +42.4918528806 -71.2793460111 52.75 +42.4928181583 -71.2821804472 +42.4919666667 -71.2794500000 52.96 +42.4917361111 -71.2791555556 53.33 +42.5045460083 -71.2763930972 +42.7032713139 -73.2351618056 435. +42.0947824056 -70.9055264972 54. +42.2806224194 -72.4039758639 181. +42.2784688000 -72.4011921306 +42.2771366750 -72.4028536611 +42.2783110250 -72.4023817167 +41.6917982417 -71.1833532472 1. +42.2755773722 -71.1435491722 113.6 +42.2754059056 -71.1437146139 113.5 +42.3825280639 -70.9984884417 6. +42.0726794861 -72.0099313833 180. +42.2755509222 -71.1437339611 +42.0836579694 -71.4738209667 105. +42.3884651361 -71.1642184056 +42.3806960389 -71.1892173889 29. +42.3875842111 -71.1957147444 +42.4036994000 -71.2026285722 53. +42.4148281972 -71.2026416889 36. +42.3954455667 -71.1890473917 +42.6131639250 -70.6790807194 +41.6180802889 -69.9762879111 5. +42.5604259389 -71.6425323306 134. +41.8384913222 -71.0074434806 33. +42.6699975361 -72.5412899306 +42.4204432611 -71.0446481417 17. +42.2524625139 -70.9145031694 +42.2531804917 -70.9144543000 +42.2514007389 -70.9211878389 +41.8368173083 -71.1187033944 +42.5493400667 -70.8770149472 +42.5483172000 -70.8784533278 +42.5776141167 -70.9083153056 +42.5478196444 -70.8792397417 +42.5496714806 -70.9037945694 +42.5534363056 -70.8753713917 +42.5836081917 -70.8886297028 +42.5662648333 -70.8369884944 52. +42.5772770778 -70.8959790139 +42.5465414333 -70.8819909389 +42.5497746639 -70.8776734556 +42.5403569389 -70.8890564722 +42.5474541667 -70.8782529667 +42.5785530889 -70.8766515972 55.47 +42.5788388889 -70.8766888889 55.55 +42.5784000000 -70.8760388889 55.51 +42.5786111111 -70.8766666667 55.52 +42.4918921167 -72.0397364722 369. +42.3502947917 -71.1054516361 5. +42.0458328222 -70.7800949694 34. +42.2440958528 -71.9282793306 320. +42.5591643889 -71.2695585306 69. +41.8607127056 -70.0707979778 +41.8702931583 -70.0622098000 1. +42.0344232111 -72.5061885028 113.3 +41.6498007472 -70.4466049083 15. +41.8689615333 -71.0841246889 21. +42.1093260194 -70.7589224361 20. +42.1093680333 -70.7592659250 20. +42.3562699694 -71.0206061222 +42.3573032194 -71.0277144667 +42.3554340889 -71.0238452389 +42.3535428250 -71.0199222722 +41.6692994972 -70.7173225194 -0. +42.6392395917 -70.6857064861 +42.0864397694 -70.6800369194 4.4 +41.5742526889 -70.2500574083 1. +41.5742544639 -70.2500596361 1. +41.7706681222 -70.4968167472 5. +41.7238583722 -70.0408594694 20. +41.7235490111 -70.0414287750 20. +41.5186527417 -70.6835752583 +41.6746396917 -71.1825303111 40. +42.4483797917 -70.9421291250 +42.0760531194 -70.6838746278 40. +42.2689799806 -70.8240590083 6. +42.2690015667 -70.8239023361 6. +41.5781471806 -70.8624428389 +42.4428831222 -71.0771169139 81.1 +42.4331899444 -70.9479850556 +42.8206785056 -70.8268544028 1.854 +41.6859908167 -71.1873237167 +41.8969993583 -70.0239785167 18. +41.9079497917 -70.0174779528 16. +42.0461611472 -71.9956914028 216. +41.6723861722 -70.7449610194 +42.1342070361 -71.0355889139 66. +42.1331079472 -71.0357312889 66. +42.1819422694 -72.9288349056 +42.2232380389 -72.9684384500 +42.3352296028 -71.0419667528 21. +42.0917388306 -71.9695166889 253.5 +42.0861249417 -71.9654162889 273.1 +41.5510010639 -71.0693095639 +42.2121490917 -71.1141306222 193.8 +42.2120744278 -71.1141521444 194. +42.2222548056 -71.0617125750 +42.1688212250 -71.0073309389 67. +42.4735164306 -71.1368948972 84.5 +41.7650909139 -71.1299868472 15. +41.2920083889 -70.1069394694 3. +42.3676678889 -70.9674289806 31. +41.3472741750 -70.8369343306 43.702 +41.5155555556 -70.9538888889 10.65 +42.1942559611 -70.8181981111 39. +41.8024874556 -69.9866885917 8. +42.7502068194 -71.1666314139 104. +42.5849212944 -70.7926713833 66. +42.5327272944 -72.9584026583 649.6 +42.6052921667 -70.6859649278 57. +42.0528596861 -70.8756167833 +42.4396960028 -71.0834805528 82.3 +41.8853435194 -70.6661963139 75. +41.7636542000 -70.9083417389 42. +41.7044441722 -71.1743922972 1. +41.6740129694 -71.1095237028 61. +42.3799984972 -71.0400693056 7.0 +42.2339872389 -70.7842892194 26. +41.8890914250 -70.8898007194 58. +42.3752170583 -70.9989808028 3.30 +42.3578507861 -70.9932717111 4.57 +42.3519846806 -71.0157155083 4.04 +42.3645516250 -71.0032672000 3.59 +42.3688104528 -71.0709990083 +42.3489110083 -71.0975520167 +42.3455874611 -71.0545726583 +42.3452872333 -71.0547484139 +42.3545584639 -71.0772642917 +42.3367937111 -71.0731573111 +42.3192446389 -71.0413447472 +42.3638270528 -71.0406077056 +42.3639341361 -71.0409072722 +42.3389072833 -70.9951643361 +42.3682513806 -71.0651739583 +42.3899978556 -71.0678022056 +42.3902230639 -71.0676347750 +42.3662149056 -71.0504675861 +42.3660710778 -71.0504744861 +42.3669516389 -71.0683280139 4. +42.3600448083 -71.0560907111 +42.3551454306 -71.0597468528 30. +42.3543168556 -71.0509413056 +42.3692437472 -71.0540530861 +42.2810093444 -71.6672418139 154. +42.3577287861 -71.0492523750 +42.3497860083 -71.0732073056 +42.3619570000 -71.0701827861 +42.3279347139 -70.8922852306 3.24 +42.3279261917 -70.8901071167 10. +42.3603999861 -71.0477705306 3. +42.3602441306 -71.0487950861 +42.3648889056 -71.0625903444 +42.3680366750 -71.0685064944 +42.4467300278 -71.0654236361 64. +42.3596942028 -71.0618073333 +42.3513008083 -71.0881204778 +42.3512887583 -71.0746396861 +42.3769657750 -71.0538087694 +42.3754883028 -71.0554358417 +42.3555282667 -71.0549533639 +42.3603207806 -71.0714521583 +42.3523734667 -71.0527242667 +42.3687723861 -71.0594784583 +42.3471600167 -71.0825236028 220. +42.3478220361 -71.0488988139 +42.3651682750 -71.0577517000 +42.3396317639 -71.0338229889 +42.3581622972 -71.0636832028 28. +42.3744506528 -71.0686282667 +42.3541158028 -71.0558515500 +42.3503373194 -71.1060526750 +42.3502750639 -71.1055394639 +42.3502582583 -71.1053960222 +42.3637039194 -71.1179332278 +42.4147341528 -71.1801548167 +42.5060215806 -70.9348902972 +42.0716706972 -71.8905724750 195. +42.0235553361 -71.8045443000 217. +41.7760449667 -70.5001776444 +42.0332793528 -72.4074696000 320.6 +42.0247388389 -72.5821700778 44. +41.5504271833 -70.5517330222 2. +41.6509272306 -70.1490299333 7. +41.6875061500 -71.0766882000 47. +41.6856188583 -71.0666351528 69. +41.6928052667 -71.1056926889 44. +41.7895554139 -71.1531594139 38. +41.8058418472 -70.7472035972 23. +41.8011299556 -70.7249624972 20. +41.9551831778 -70.0764283667 20. +41.8099300278 -70.5384350583 30. +41.7205689028 -70.5371188750 40. +41.6579071306 -70.6108344222 15. +41.7855824306 -70.5685956944 30. +41.7907403583 -70.5607684056 30. +41.7335042361 -70.4860608333 89. +41.7713441028 -70.5206591778 3. +42.5403411000 -70.8115124778 +41.5503120500 -70.5515743583 2. +42.1167952694 -70.9315007056 34. +42.0781278639 -73.3380617417 242.3 +42.0781013944 -73.3381769083 241.4 +41.5434142639 -70.6011297222 +41.9560504583 -70.6366236417 +42.4811068167 -71.0744551167 79. +42.0920341750 -70.6459314861 1. +41.9047151972 -71.0767223889 4. +42.2354096167 -70.9715685917 +42.2286704722 -71.0107713417 32. +42.7796212556 -71.0052563389 79. +42.8336387167 -71.0534514028 87. +41.7551397833 -70.6884707583 27. +42.8336728944 -71.0534340583 87. +42.0880862611 -70.6408059750 10. +42.0939281056 -70.6531934361 12. +41.2899245250 -70.0902755389 +41.2897307167 -70.0924456667 1. +42.0908785861 -70.6423774000 5. +42.0924569194 -70.6462317667 +42.0922553333 -70.6412570194 1. +42.0923859028 -70.6451328917 1. +42.0917392361 -70.6440720389 4. +42.0936902778 -70.6525667278 12. +42.0830755833 -70.6505411833 +42.0912650444 -70.6425267167 4.75 +42.0954051917 -70.6532905444 +42.0817728611 -70.6401303361 +42.0959216972 -70.6492972833 +42.0894015444 -70.6503312694 +42.0936318139 -70.6528466500 +41.7107080722 -71.1928549167 14. +42.6466131833 -71.1329386139 +42.3909613972 -71.0073334917 49. +42.3910635194 -71.0079163417 47. +42.1793979639 -72.1605080389 336. +41.7701517278 -70.0790512333 38. +41.7593272500 -70.0849142889 +41.7289416472 -69.9915969417 3. +41.7267338306 -70.0384369972 29. +41.7250355917 -70.0424053833 14. +41.7160066694 -70.0963673278 9. +41.7437026889 -70.1453491667 3. +41.7437584583 -70.1454100333 3. +41.7477929583 -69.9932031250 33. +41.7434175750 -69.9962243472 33. +41.7433938250 -69.9959716333 33. +41.7356743778 -70.0022118972 10. +41.7061579806 -70.1338506944 17. +41.7197048111 -70.0952962889 16. +41.7771159333 -70.0092518028 3. +41.7688168361 -70.0053655500 2. +41.7646275083 -70.0053776056 7. +41.7534210028 -70.0730584444 18. +41.9090924306 -71.0786549667 9. +41.3768854250 -70.7442716389 +42.0050367056 -70.9665032833 52. +41.9630972722 -71.0494808611 21. +41.9602881944 -71.0439057944 20. +41.9963231806 -70.8991896583 20. +41.9882861694 -70.8997782639 17. +41.9802905028 -70.9111952056 9. +42.0073964667 -70.9787894111 30. +42.0110041444 -70.9795920500 56. +41.9828168556 -70.9014033083 26. +41.9662938861 -70.9083506111 5. +41.9827151806 -71.0541604806 +42.0048982528 -70.9661253333 55. +42.1673074194 -70.7487605861 10. +41.9155066167 -71.0632325722 10. +42.3296158722 -71.1067873361 80.7 +42.3297819083 -71.1066994639 +42.3602930667 -71.1499161472 +42.3489247222 -71.1551380333 +42.3540371472 -71.1656149306 +42.3617517722 -71.1373752972 +42.3645028583 -71.1345002472 +42.3492584361 -71.1461068306 38. +42.5212546000 -70.8078971167 +42.2627097333 -72.2900598944 223. +42.4647565917 -71.0254247194 19.5 +42.3080917194 -71.1376335528 +42.0731938806 -70.9940114750 +42.0594882194 -70.9899191056 +42.0955396417 -71.0804844361 53. +42.1031724417 -71.0613076556 64. +42.0497066556 -71.0695956250 +42.0750816278 -71.0653939389 46. +42.3123839528 -71.1352591083 +42.3470026833 -71.1048572361 +42.3417126694 -71.1331832028 +42.3252775639 -71.1519210306 +42.3257951528 -71.1539599278 +42.3443604917 -71.1030199028 +42.0688615333 -70.9807874306 +42.2797554444 -71.1803566694 30. +42.0889029028 -70.9796408056 41. +42.5527096806 -71.5416596222 131. +42.0888059056 -70.9770835972 40. +42.0880565167 -70.9786048139 40. +42.6126260583 -70.8467131722 65. +41.7903004028 -71.1071961389 -0. +42.2517613194 -71.3843059528 121. +42.1510390111 -72.6605638472 116. +42.4656434611 -72.9452886861 548.0 +41.8276705611 -71.0783247250 50. +42.2427892278 -70.7873452000 +42.0429294806 -70.8499975306 24. +42.0457650528 -70.8408560333 24. +42.2146293917 -71.0750143639 150.4 +42.3656518722 -71.0131595556 4. +42.2813307972 -70.9014905750 21. +42.3013710944 -71.8969759417 425.5 +42.3013385306 -71.8968673306 424.5 +42.2264490333 -72.8093518778 400.9 +42.3761968972 -71.0605640250 21. +42.4903472306 -71.2177716250 +42.6588228306 -70.8233467389 11. +42.4900903528 -70.9854845639 87. +41.8579168417 -71.0966111583 16. +42.0098391917 -71.0711582250 34. +41.6037948472 -70.8944819778 -0. +42.6581261278 -70.6712504306 69. +42.8205267694 -70.8269126667 +41.3965679167 -71.0334656361 1. +42.5804023278 -70.9195407750 23.05 +42.5811885750 -70.9129894806 30.21 +42.5925187972 -70.9214948417 31.73 +42.1047222222 -72.5952777778 25.822 +42.7605555556 -70.9461111111 19.783 +42.3541936972 -70.9574959889 15. +42.1147000000 -73.3555722222 202.045 +42.6169444444 -72.8272222222 160.822 +42.3448111111 -71.0850055556 4.281 +41.9033333333 -71.0063888889 15.286 +42.6905555556 -72.9550000000 292.83 +42.0588888889 -70.6894444444 18.993 +42.4566666667 -70.9358333333 4.37 +42.3277777778 -70.9405555556 4.49 +42.5780555556 -70.8783333333 30.48 +42.4138888889 -71.1238888889 8.277 +42.2503973750 -70.7643589250 11. +41.4800000000 -70.7563888889 2.183 +42.5544444444 -71.7541666667 102.70 +42.1075000000 -72.6816666667 39.542 +42.3761026944 -71.0055756667 4. +41.3897222222 -70.6130555556 17.583 +41.7719444444 -70.7491666667 9.453 +42.2048611111 -71.1521388889 15.964 +42.1708333333 -71.1713888889 27.058 +41.9694444444 -71.2555555556 37.477 +42.5594444444 -72.6780555556 73.680 +42.5946611111 -71.2980694444 34.275 +42.4172416667 -71.1305250000 4.535 +42.7142432000 -71.1202563583 48.417 +42.7897222222 -70.8877777778 8.329 +42.3475000000 -71.0983333333 8.261 +42.2661111111 -71.5355555556 85.099 +42.6611111111 -72.5577777778 109.784 +42.3572222222 -71.7744444444 149.686 +42.3579755139 -71.0143453083 4. +42.3082500000 -72.6234166667 38.742 +42.2691666667 -71.0186111111 4.998 +41.9811111111 -70.6947222222 14.911 +42.1038888889 -72.6222222222 19.290 +41.7983333333 -70.7630555556 19.433 +42.3111111111 -72.0169444444 303.926 +42.1947222222 -72.3041666667 119.888 +41.9544444444 -71.2475000000 37.202 +42.2041666667 -72.6025000000 28.454 +42.1055555556 -72.6580555556 53.346 +42.2352777778 -72.8933333333 127.213 +42.3986168250 -73.1243456500 475.176 +42.4372222222 -73.3747222222 452.220 +41.6440277778 -70.4356388889 18.601 +41.6641666667 -70.1963888889 6.763 +42.1080555556 -72.7036111111 39.376 +42.1877777778 -72.6298611111 78.551 +42.4552777778 -73.2127777778 306.167 +42.5691666667 -71.9844444444 317.921 +42.2238888889 -70.8036111111 24.476 +42.6889881778 -70.6324586639 30. +42.1742281472 -72.5174267194 79. +42.1740472528 -72.5172779000 82.21 +41.7193118778 -70.0911366694 10. +41.9437465444 -69.9840063139 +42.4450895583 -71.0858948583 84. +42.3426338306 -70.8960504444 12. +41.9873996667 -70.0119946722 53. +42.3665112556 -71.1227579139 +42.3761690139 -71.1183159861 +42.3649271722 -71.1048699361 +42.3670633250 -71.1057301389 +42.3866452500 -71.1188014472 +42.3866451444 -71.1188090389 +42.3917001222 -71.1243392611 +42.3979657694 -71.1389338056 +42.3686989222 -71.1159402139 +42.3640379278 -71.1154346361 +42.3703552417 -71.1210299417 +42.3691126000 -71.0723602861 4. +42.3766315056 -71.1226459833 +42.3733743861 -71.1263912417 +42.3644581528 -71.0910262333 +42.3642934861 -71.0911601583 +42.3647390806 -71.0916672361 +42.3711217333 -71.1182196444 +42.3747864472 -71.1160868500 +42.3609095528 -71.0974097806 +42.3611797056 -71.0979980250 +42.3728988028 -71.0778013500 +42.3814664833 -71.1283652250 +42.3778017056 -71.1476564722 +42.3830333056 -71.1677964250 +42.3541256194 -71.1095122000 +42.3627281556 -71.1153562333 +42.3871226083 -71.1188342583 +42.3942702278 -71.1275970389 +42.3712683528 -71.1158820722 +42.3814620667 -71.1297748472 +42.3745792861 -71.1191674806 +42.3669007833 -71.1051079333 +42.3794007583 -71.1361413000 +42.3626042917 -71.0871837861 +42.3552364250 -71.1094652833 +42.3565787500 -71.1042880806 +42.3631434583 -71.0997517389 +41.5192212444 -70.7011275667 6. +41.7331550972 -69.9920488361 3. +42.2584717500 -73.1722816028 596. +41.9062362222 -69.9734827000 14. +42.1010577250 -72.5900818472 20. +42.1010538556 -72.5901449278 82.2 +42.0637296139 -71.0154266389 46. +42.0636463222 -71.0158813750 46. +41.7778864472 -70.4952026639 1. +41.6686583222 -70.4862973778 6. +42.5163048250 -72.0492667944 400. +41.8861013639 -71.0460019194 1. +42.6486061361 -70.5925911000 +42.6391652861 -70.5747894472 +42.6411420778 -70.6005934944 +42.6413470778 -70.6001770056 +42.6393743944 -70.5998093528 +41.6852832389 -70.4072061833 +41.7427947222 -70.6285364722 +41.7706532361 -70.5116881361 +41.7715839667 -70.5090328917 +42.0397085639 -70.0605391750 +42.0397034889 -70.0605369111 41. +41.3981772111 -70.7305200694 1. +41.4198092694 -70.4505559250 9. +41.4210698389 -70.4511032500 20. +41.4201004000 -70.4511001278 3. +42.2709625167 -71.1292336222 82. +41.8201371611 -69.9398953278 2. +42.1161951028 -70.7308474250 75. +42.1151367083 -70.7306974278 75. +42.1121236611 -70.7192986667 +42.3126157778 -71.2307937694 44. +42.3108569806 -71.2319933583 44. +41.8874316500 -70.7683641167 +41.8572749667 -70.7939340472 23. +41.8612504250 -70.7972046667 22. +41.8611786694 -70.7990122417 26. +41.8622751222 -70.8015592611 26. +41.8658973056 -70.8023096194 26. +41.8669660472 -70.8094081000 26. +41.8704039722 -70.8147382472 29. +41.8753012611 -70.8024765139 26. +41.9136314444 -70.8155082639 32. +41.9461483500 -70.7717069444 80. +41.9332403000 -70.7535346417 47. +41.8489104194 -70.6835868528 34. +41.9260177472 -70.7507265917 41. +41.8462275750 -70.7905013056 23. +41.8462850250 -70.7910552944 23. +41.8492143806 -70.7944716583 23. +41.8508285083 -70.7948579389 23. +41.8528356111 -70.7936675389 26. +41.8015206833 -70.7172894083 12. +41.8003175944 -70.7408691500 20. +42.3385819500 -71.0129965722 7. +42.6853382278 -70.7790496333 +42.6902251222 -70.7760605806 37.44 +42.6905361111 -70.7759388889 35.99 +42.6903055556 -70.7762388889 37.60 +42.4887121222 -71.0445335472 87.2 +42.3385237889 -71.0119815889 +42.3386255861 -71.0121864722 9. +42.3387950361 -71.0109942389 21.0 +42.3418391222 -71.0157690306 +42.3390572806 -71.0102995167 +42.6672965528 -70.7356089111 3. +41.6597525361 -70.6437314139 1. +42.2219328000 -70.7551405972 21. +42.5120588472 -70.8148824222 +42.3876437361 -71.2838925944 102.0 +42.7705555556 -71.0825000000 10.58 +42.7588888889 -71.0997222222 15.00 +42.7716666667 -71.0711111111 5.75 +41.9889314972 -70.8997834250 30. +42.2033251472 -70.7144211778 -0. +42.2031394500 -70.7132676306 +42.2078806000 -70.7222668583 4. +42.2130006278 -70.7221450000 -0. +42.2080682694 -70.7198581333 6. +41.4336493611 -70.7006144500 9. +41.4340929111 -70.6972675333 +41.7112029194 -71.2139739722 3. +42.1945685861 -72.5307963639 72.85 +42.1796874361 -72.5435080639 72.49 +42.2077641056 -72.5395904889 73.39 +42.7582381306 -71.0220434333 68. +42.3526480444 -71.0457194000 4. +41.3511296639 -70.5272876139 +41.6457648889 -70.3465271389 +42.0219112972 -71.0110180972 +42.4567153944 -71.0090826000 14.5 +41.6096263917 -70.2662343861 6. +42.1195372333 -71.8522577944 193. +42.3770022778 -71.0614292694 40.2 +42.2708702889 -71.7862377111 226. +42.6487849917 -71.1335113139 +42.1237101472 -72.4102813472 262. +42.0888699833 -70.8474572083 20. +41.4687466778 -70.6306183833 3. +41.6726184472 -70.7453569389 +41.6723876278 -70.7449666722 +42.3722129111 -71.0585912583 +42.3727153833 -71.0629173778 +42.3763421417 -71.0607707750 +42.3811022444 -71.0666102278 +42.3741813417 -71.0704816861 +42.3888233639 -71.0747174972 +42.3899602222 -71.0689197417 +42.3731149889 -71.0689523333 +42.3717130333 -71.0568507472 +42.3763531056 -71.0543335722 +42.3732655556 -71.0512598222 +42.3807995944 -71.0505134333 +42.3873878472 -71.0744520333 +42.3707693250 -71.0605625083 +42.3828326028 -71.0493746472 +42.3890543333 -71.0749479306 +42.3838899222 -71.0644915083 +42.3001612694 -71.0860517250 41.1 +42.1334900611 -71.9569514028 +42.1339603250 -71.9702158611 -0. +42.2471198500 -72.5614448167 96. +41.7645462806 -70.9668885444 44. +41.7933506583 -71.1730000722 40. +41.6043231611 -70.6486444556 +41.6973558444 -69.9795829583 40. +41.6711938111 -69.9500447778 18.71 +41.6710993722 -69.9497421056 +41.7010006444 -69.9690002861 +41.6571272667 -69.9581857056 +41.6828662389 -69.9610658806 +41.6671498306 -70.0373544667 -0. +41.6683533278 -70.0375772861 2. +41.6789853083 -70.0318138944 14. +41.6778944500 -70.0334737194 9. +41.6999916694 -70.0132544500 14. +41.7012970028 -70.0110984250 3. +41.7224681056 -69.9279779250 -0. +41.6998264333 -70.0272923833 15. +41.6717421917 -69.9491592889 12.282 +41.6811658556 -69.9592732583 +41.7246970750 -69.9506529583 5. +41.7224660250 -69.9280441222 -0. +41.6850971694 -69.9583977139 +41.6714111333 -69.9498943250 +41.6938993167 -69.9749223056 +41.6709546528 -69.9497889944 9.004 +42.6063823056 -71.3024603389 +42.3823170861 -71.0482983611 1. +42.3913281361 -71.0290607500 +42.3979126583 -71.0303247889 +42.3935740944 -71.0333255889 +42.3850977833 -71.0437245972 +42.3938041694 -71.0276663278 +42.4000353583 -71.0125009250 +42.3917499417 -71.0294101472 +42.3871805778 -71.0400839861 +42.3897754167 -71.0460726583 +42.4011415056 -71.0304875694 +42.4009399222 -71.0303601250 +42.4007185972 -71.0272159806 +42.3900943500 -71.0383680000 +42.5482805528 -73.1481429167 564. +42.2978224250 -72.9957300583 +42.3247030417 -72.9574218750 +42.5439581778 -72.4679340889 423. +42.0647690694 -71.5730556028 173.3 +42.1472481917 -72.6097716750 +42.1484709583 -72.6067624694 +41.3449206583 -70.7445132694 +41.4577753306 -70.6596324167 +42.0090141889 -70.9777865694 +42.1702869194 -72.5796742639 73. +42.6653547250 -70.7608255278 54. +41.7512222417 -71.2246720000 29. +42.6557627972 -71.2915720639 95. +42.3444173917 -71.0849886694 +42.5849706639 -72.1178118500 350.5 +41.5221848250 -70.6628673500 +41.9160802194 -70.8172314111 30. +42.4097572278 -71.0008015917 12. +41.6954430472 -71.1714859194 36. +42.3351200611 -71.0736915889 5. +42.2727777778 -71.7986111111 145.447 +42.2622222222 -71.7944444444 144.606 +42.1011111111 -72.5875000000 20.558 +42.3570166667 -71.0923666667 4.309 +42.2064722222 -72.6078333333 46.259 +42.6134237056 -70.6775983944 6. +42.3384401806 -71.0218148306 4. +42.3331530917 -71.0226622389 +42.0913108389 -71.6751211444 173.3 +42.5908758028 -71.7109242639 194. +41.2556405444 -70.1781576361 0. +41.5923722222 -70.9016111111 1.61 +41.8645708250 -71.0864811028 16. +41.5927715417 -70.9005484806 -0. +41.5928038528 -70.9006057278 +41.5931779139 -70.9013458694 10. +41.3861553333 -70.6934568833 70. +41.6709198722 -70.0351946889 1. +41.6309637306 -70.6941783333 +42.1142614528 -70.9787982417 43. +41.2898846639 -70.1045958333 +42.1580184528 -70.7509609806 30. +42.4501725167 -71.0201984333 47. +41.9560854472 -70.6581961639 3. +41.6171446583 -69.9747137556 +42.3721205694 -71.0548324972 1. +41.6974683889 -69.9289978583 +41.6574171944 -69.9582667139 +41.3385927583 -70.0307792472 2. +41.3184560167 -70.0486833694 3. +41.3014494750 -70.0772412083 1. +42.1236203833 -72.8914375611 367. +42.0154804556 -71.0405640861 50. +42.5163720889 -70.8543633361 34. +42.2893473833 -71.0721280278 29. +42.6522940083 -70.6932547722 29. +42.2431704139 -70.8033932611 +42.2396064278 -70.8533857000 11. +42.1783081722 -70.7269017278 12. +42.1792334639 -70.7376545056 12. +42.1792917333 -70.7318155778 12. +42.1648083611 -70.8873718389 53.8 +42.5141343611 -71.0316765222 39. +41.8696307500 -70.6554011361 62. +41.5967085611 -70.3513614056 3. +42.4213571528 -71.0754817222 3. +41.8800656611 -69.9804462194 14. +42.3498873806 -71.0410361139 12.5 +42.4672938028 -71.3971877222 35. +42.2774340111 -72.8099668333 400.5 +42.2977777778 -71.0300000000 4.02 +42.4148070500 -71.0770852222 15. +42.4583575861 -72.6574234667 238. +42.0426150528 -72.4031764361 337.6 +42.1234793083 -71.6932610472 123. +42.2297079139 -72.0899026583 296. +42.5736150750 -70.7252606028 22.46 +42.5735111111 -70.7252861111 20.83 +42.5736000000 -70.7254222222 21.79 +41.6296611389 -70.5611058611 28. +41.7214054278 -71.0596950361 108. +42.3678081750 -71.0553404667 11.7 +41.8988300306 -71.0430281611 7. +42.2345774389 -70.8111957583 51. +42.3423802444 -71.1336817583 79. +42.3425466917 -71.1334535667 79. +41.6047194694 -70.7917822722 +42.0038892056 -70.0803831417 38. +42.4044367972 -71.0764824583 9.0 +42.6191920056 -71.8462121694 370. +41.5845721361 -69.9909280667 7. +42.3502777778 -71.1108333333 2.817 +42.3502777778 -71.1111111111 8.219 +42.3677707472 -70.9675487722 29.3 +41.8741747250 -71.0192893667 10.3 +41.8713954278 -71.0105839722 12.82 +41.5919310861 -70.4451332583 2. +41.6151467889 -70.4359531417 +42.0336211556 -71.9241483250 186.2 +42.3715693444 -70.9957903167 11. +42.0312496944 -71.9239906028 187.2 +42.0028169528 -70.7123053194 -0. +41.6155418694 -69.9759132694 -0. +41.6576787194 -70.7577575194 1. +41.8063560722 -69.9756913778 +42.5896950000 -71.8808861333 349. +42.2457120306 -72.2073980889 357. +42.4541006250 -71.7659271917 245. +42.1047222222 -72.5952777778 25.711 +41.6882813889 -69.9887881444 18.51 +41.6854776250 -69.9926692083 14.90 +42.4987879806 -70.9966031583 76. +42.6434585194 -72.4179971833 458. +42.2470431917 -71.0154258000 60.8 +42.7703956667 -70.9749804750 71. +42.7704329917 -70.9749636667 71. +42.3270641083 -70.9248961472 3. +42.3307106833 -70.9560344111 15. +42.3262401167 -70.9246933944 4. +41.6447165972 -70.4522386333 23. +41.7282102806 -70.7218832028 3. +41.9748278250 -70.7577544806 46. +42.6523126944 -71.3220592806 -0. +41.7616624222 -70.0973784861 +42.5123615333 -71.2465346389 67. +42.2616026861 -70.8957470000 22. +41.6668302722 -69.9684760917 9. +42.5465621528 -70.9856149111 37. +41.7008986472 -70.0130266972 20. +41.7000568611 -70.0125060639 9. +42.1606648083 -72.6100380167 29. +42.1967486278 -71.8753376528 269. +42.6227825111 -70.6912772333 +42.1748784750 -71.8492981389 198. +42.6480625833 -72.0380191944 373. +41.5295491722 -71.0773737917 -0. +41.5874544528 -70.5139800222 +42.1607413694 -71.0638950556 70. +42.1635392556 -71.0666551028 70. +41.6926913833 -69.9536937722 +42.3590445750 -71.0535624694 5. +41.6344189111 -69.9612640444 -0. +42.2774777278 -71.2002053667 36.98 +41.4205600333 -70.9338166222 46.121 +41.4207865861 -70.9336451500 +41.4222352528 -70.9122898222 +41.4212626611 -70.9296409250 +41.4099297194 -70.9488135583 15. +41.4189961444 -70.9295915139 +41.4144981694 -70.9495702417 +41.4211995778 -70.9330037444 +41.4190806694 -70.9336868000 38.6 +41.4205780444 -70.9340370417 46.360 +42.5661754861 -70.9122803389 65. +41.6912385250 -69.9855295611 18.554 +41.6868550250 -69.9907282972 17.079 +42.1013055556 -72.5894722222 20.924 +42.7344444444 -70.9841666667 22.402 +42.1480555556 -73.3666666667 202.156 +42.6197222222 -72.7755555556 150.532 +42.3431000000 -71.0853222222 3.772 +42.4308333333 -70.9338888889 2.41 +42.3247222222 -70.9630555556 14.75 +42.4942222222 -71.2994444444 39.83 +41.4819444444 -70.7502777778 17.162 +42.1080555556 -72.7036111111 40.412 +42.2738888889 -71.8547222222 202.625 +42.2738888889 -71.8547222222 205.30 +42.1752777778 -72.4125000000 74.449 +42.2122222222 -71.1491666667 15.359 +42.1686111111 -71.1677777778 17.863 +41.9627777778 -71.2580555556 39.433 +42.5843888889 -71.2918333333 41.567 +42.5600000000 -72.6788888889 73.241 +42.4252777778 -71.1369444444 7.90 +42.7261111111 -71.1122222222 32.177 +42.8066666667 -70.8791666667 8.766 +42.3357666667 -71.1108333333 4.276 +42.2711111111 -71.5536111111 86.046 +42.6766666667 -72.5522222222 115.846 +42.3327777778 -71.7719444444 172.562 +42.3338888889 -72.6355555556 45.152 +42.2583333333 -71.0080555556 6.456 +41.9600000000 -70.6700000000 11.347 +41.7516666667 -70.5972222222 4.736 +41.8055555556 -70.7827777778 24.363 +42.3388888889 -71.0805555556 2.907 +42.3144444444 -72.0361111111 240.788 +42.1813888889 -72.3144444444 145.778 +41.9533333333 -71.2669444444 38.815 +42.2072408778 -72.6076139556 46.694 +42.1041666667 -72.6697222222 68.061 +42.2379444444 -72.9033888889 129.058 +42.4083333333 -73.1216666667 470.275 +42.4433333333 -73.3750000000 407.347 +41.6510833333 -70.4146388889 7.476 +41.6660583333 -70.1829666667 2.555 +42.4513888889 -73.2530555556 315.936 +42.5680555556 -71.9844444444 317.699 +42.1916666667 -71.8252777778 161.142 +42.3017601972 -70.9318109833 11. +42.3023813417 -70.9300622500 21. +42.3840468500 -70.9807668083 10. +42.3840554056 -70.9811632389 16. +42.3018401222 -70.9291322250 27. +42.4533208139 -70.9378072861 4. +42.1245337889 -73.3649485722 215. +41.7734637667 -70.5692971750 64.2 +42.5915090000 -70.9223391167 32.0 +42.4289444583 -71.0533842167 6. +42.5902126222 -70.9779812750 +42.5672377500 -70.9142480222 +42.5809770333 -70.9747259611 +42.5861214194 -70.9737181333 +42.5416515806 -70.9272650917 +42.5582029056 -70.9287273111 +42.5826260306 -70.9526657444 +42.4597927833 -71.1014663417 56.9 +41.5698422444 -71.0293897667 48. +41.5698458167 -71.0293772167 48. +41.6396800833 -71.0281649083 +41.6131797139 -70.9306823583 2. +41.6486240972 -70.9696605778 46. +41.6779504167 -71.0896397028 40. +41.5233654528 -70.6604109222 18. +42.3542120833 -71.8590397722 269. +41.5483945778 -70.5630173111 +41.7092473750 -71.1589672611 1. +42.3499996611 -70.9570908833 30. +42.3546939889 -70.9583777389 18. +42.3300351722 -71.0474951083 8. +42.7414179778 -71.0588220333 83. +42.7415187611 -71.0588826861 83. +41.5506931500 -70.5154596611 1. +41.7890797583 -70.6287635361 12. +41.9102659333 -71.0704212944 10. +42.5949104778 -71.4223481667 94. +42.2486926167 -71.1761352250 34. +42.2486943333 -71.1761489444 29. +42.2679714361 -71.1831017056 44. +42.2427905444 -71.1583452611 +41.6603202917 -70.5889615167 79. +42.3492752444 -70.9591068917 +42.3471359111 -70.9546407722 +42.3502956306 -70.9581100389 32. +42.3537889528 -70.9602925111 +42.3502835917 -70.9581011194 +42.3499077639 -70.9544920778 37.1 +42.3398479472 -70.9545076722 1. +42.3531174750 -70.9598714667 +42.3498678056 -70.9572017139 +41.9282701806 -70.7462236389 +41.6599418889 -70.1166376972 7. +41.6601841583 -70.1173440694 7. +41.7074618056 -70.1803201750 3. +41.7090052833 -70.1788823556 20. +41.7090892528 -70.1803686361 30. +41.6605477278 -70.1192630750 7. +41.7125911444 -70.1857048833 25. +41.7184928889 -70.1983817444 23. +41.7185621500 -70.1985280306 23. +41.6684216222 -70.1527443417 +41.7228261333 -70.1988252306 8. +41.7215826889 -70.1970345500 14. +42.0639348111 -72.0562035056 242. +41.7752505472 -71.1203649944 9. +42.6182596639 -70.6780625306 +42.5165759389 -70.8835379639 +41.4912641833 -70.7387780972 53. +42.4253632333 -72.5069369139 146. +41.8377588583 -71.1140895556 +41.8165312944 -71.1934880444 46. +41.7901915194 -71.1311094111 3. +41.8075324528 -71.1282181000 +41.8159041750 -71.1762268306 26. +41.8170977028 -71.1295477611 +41.8086871806 -71.1299294361 +41.8177182722 -71.0938760417 60. +41.7830596556 -71.1868932611 32. +41.2858894139 -70.1317175278 17. +42.7028588056 -71.7277218083 227. +42.5152188722 -71.1280148056 63.4 +42.0677408000 -73.1181059972 522. +42.6677149028 -70.6182457028 +42.5826339472 -70.6723919361 4.48 +42.5826061444 -70.6723496611 +42.5825634667 -70.6724322722 4.31 +42.5825888889 -70.6722944444 4.48 +42.6346139667 -70.6753499139 +42.5455555556 -72.0577777778 391.0 +42.5458299972 -72.0580434000 391.0 +42.3916022333 -71.0113239278 41.4 +42.3081641250 -71.0622331250 +42.2907326417 -71.0711687306 +42.2973839778 -71.1080690556 +42.3005850639 -71.0475082667 +42.3342273833 -71.0428135333 23. +42.3328599778 -71.0457706139 +42.3027011361 -71.0513842722 +42.4931426472 -72.2252001306 320. +42.3488774778 -71.2741017167 109. +42.3264179722 -70.9243528639 4. +42.3202798639 -70.9264043667 7. +42.3447973111 -70.9536675583 44.5 +42.6645459750 -71.3235639778 +42.6694780194 -71.3032353833 +42.1034201361 -71.0788614861 72. +41.5446390917 -70.5990693556 14. +42.3866204806 -71.0227669528 6. +42.4563782750 -70.8949289333 +42.2743172417 -71.0026193778 4. +41.7965632222 -69.9633739750 29. +42.2937315306 -71.3961101778 92. +42.3736388528 -71.0535461500 3. +42.3451887194 -71.0287460833 3. +42.3463888889 -71.0291666667 2.864 +42.6721820167 -70.5678342639 +41.4922505083 -70.7109380861 -0. +42.2070043694 -72.9404399694 490.2 +42.1734078444 -72.3406591361 226. +41.5383005833 -70.9214491417 16. +42.0759123694 -70.2298321972 9. +42.3283333333 -73.0611111111 336.543 +42.3133250111 -71.1012344611 19. +41.7100530000 -71.1508572750 +42.4391021889 -71.0782058278 80.2 +42.3008323028 -70.8959294611 17. +42.3005555556 -70.8944444444 4.85 +42.3005491139 -70.8950190639 17. +42.0485985083 -70.6692096444 30. +42.0069272750 -70.7184672972 +42.0024115056 -70.7117484694 3. +42.0028046528 -70.7218028611 2. +42.0094286556 -70.7242085944 11. +42.0163982417 -70.7302824750 17. +42.0467864528 -70.7814470361 34. +42.0712252778 -70.6513006556 10. +42.0574621583 -70.6827574861 5. +42.0969745389 -70.7497230833 +41.9874265639 -70.6485486083 7.9 +42.0132090000 -70.6106404000 -0. +42.0476788250 -70.6720711611 +42.0363819083 -70.6729888250 +42.0133459694 -70.6697282667 +42.0146341417 -70.6830155750 52. +42.0367461417 -70.6739442639 +42.0497222222 -70.6444444444 3.42 +42.0500081139 -70.6438501306 3. +42.0882462417 -70.8346937889 49. +42.0637450750 -70.1473122583 3. +42.2421067500 -70.9701392083 3.0 +41.9186111111 -71.3005555556 34.297 +42.7358333333 -71.0105555556 29.037 +42.1836111111 -73.3677777778 214.351 +42.6163888889 -72.7430555556 154.339 +42.4198611111 -70.9321944444 21.81 +42.3113888889 -70.9730555556 2.84 +41.4850000000 -71.0377777778 4.70 +42.1144444444 -72.7138888889 41.006 +42.3639488639 -71.0409417194 1. +42.3624000083 -71.0373867667 1. +42.2166666667 -71.1572222222 26.178 +42.2166666667 -71.1572222222 33.29 +42.1750000000 -71.1666666667 19.014 +41.9538888889 -71.2561111111 36.978 +42.5630555556 -72.6994444444 82.578 +42.5738888889 -71.2799777778 33.979 +42.4283333333 -71.1413888889 14.308 +42.7380555556 -71.1122222222 11.601 +42.8022222222 -70.8841666667 3.955 +42.3314666667 -71.1257555556 16.462 +42.2759444444 -71.5754444444 87.918 +42.6897222222 -72.5480555556 112.773 +42.3244444444 -71.7916666667 188.252 +42.3472222222 -72.6427777778 51.762 +42.2473055556 -70.9305555556 12.905 +41.9496111111 -70.6527777778 4.899 +42.3585611111 -71.0588333333 10.879 +41.8094444444 -70.8038888889 25.060 +42.3169166667 -72.0426111111 207.981 +42.1722222222 -72.3255555556 131.157 +41.7410277778 -70.6129722222 3.654 +42.1075000000 -72.6872222222 37.027 +42.2483333333 -72.9291666667 157.387 +42.4158333333 -73.1141666667 445.873 +41.6373027778 -70.4527611111 12.358 +41.6663888889 -70.1597222222 2.371 +42.4488888889 -73.2583333333 303.144 +42.5669444444 -71.9830555556 317.680 +42.1255555556 -71.8636111111 156.351 +42.3625848889 -71.0355309361 +42.3658165472 -71.0388733000 +42.3674227528 -71.0421579306 +42.3638637917 -71.0277251167 +42.0294033111 -70.9526499417 10. +42.3699256722 -71.0796549750 +41.5781127028 -70.5670798361 +42.4141982194 -71.2103568000 +42.1332595694 -71.0404789250 66. +42.1319422833 -71.0406824361 +41.6658054972 -70.1724114944 6. +41.7586054611 -71.1049527806 55.0 +41.7558978750 -71.1103282333 56.9 +42.2149273917 -72.6023575389 29. +42.3813624167 -71.0360981000 24. +42.3660109944 -71.0325813806 +42.3623755167 -71.0313961889 +42.3631625306 -71.0371449222 1. +42.3710682972 -71.0407362583 +42.3661205167 -71.0286059167 +42.3861100167 -71.0215576722 +42.3862067222 -71.0213241333 +42.3812650389 -71.0355690417 24. +42.3812068278 -71.0355861333 24. +41.7228231167 -71.1542871556 11. +41.4679505111 -70.5636511806 15. +41.4679017278 -70.5636490083 15. +41.4702628861 -70.5674543806 12. +41.4679285500 -70.5631237444 17. +41.7481655639 -70.1508519167 +42.0355298389 -70.6728535556 +41.3528211111 -70.5285354694 3. +42.4397879194 -71.0204741306 41. +41.6057779972 -70.5682746278 18. +42.6102466500 -70.6503709889 +42.6086503194 -70.6475291833 +42.6063393278 -70.6604512972 +42.8096686639 -71.0021459250 +41.3102815722 -70.1000210444 +42.0494862556 -72.5092874222 +41.3008217806 -69.9930908583 6. +41.8827601111 -70.5333282250 38. +42.4184148417 -70.9039549250 19.06 +42.4184916667 -70.9041666667 17.99 +42.4181636333 -70.9043765833 17.78 +42.4181611111 -70.9041694444 18.02 +42.4179777778 -70.9043722222 17.96 +41.7335146389 -70.1707021917 46. +42.2167294028 -70.9288167083 +42.5817403944 -70.6587110444 9.07 +42.3638583639 -71.0484431750 3. +42.5806274417 -70.6628744417 3. +41.8238479556 -70.0036237639 14. +41.7955669028 -69.9820097222 3. +41.8024437389 -69.9874097611 2. +41.8810641500 -70.0039178389 2. +41.8772601222 -69.9796425056 8. +41.8789335556 -69.9781815528 8. +41.8785611389 -69.9797360139 8. +41.8798658861 -69.9577537583 22. +41.8102869833 -69.9376532778 1. +41.8128189250 -69.9532650639 1. +41.7986339389 -69.9931901056 2. +42.2723761194 -72.6709989556 +42.2710048361 -72.6724000778 +42.2699578667 -72.6725372278 +42.2712470694 -72.6722793278 +42.2704646000 -72.6706517194 +42.0363225361 -71.0972913889 +42.0611665722 -71.1686792778 +41.8014609528 -70.5612166194 +41.9908334194 -71.0871487056 20. +41.9850542750 -71.0547251722 +42.8631091472 -70.9782448667 61. +42.2621870222 -70.9976800861 21. +42.3814553583 -71.0346057444 24. +42.3808701333 -71.0347457861 40.2 +41.3925923583 -70.5059474333 3. +41.3976628083 -70.5483807944 20. +41.3908683361 -70.5030613472 +41.3905021944 -70.5152113639 +41.3884632278 -70.5150288194 +41.3781200306 -70.5191619333 20. +42.4179102111 -71.0736198250 3.6 +42.4169903222 -71.0747468250 +42.3398135417 -71.0348579278 +42.3395314500 -71.0348501361 +42.3392484583 -71.0348415472 +42.3388637500 -71.0348438056 +42.3384504139 -71.0348312139 +41.9028550278 -71.0457713306 6. +41.7728249083 -70.0084538389 24. +42.4438678500 -70.9662469667 -0. +41.2924417528 -70.2053178222 3. +41.9374917778 -70.6298146722 +41.6092985528 -70.8908356778 +42.4333852056 -70.8976511972 15. +42.4335074417 -70.8977870472 +42.0233846389 -71.5932525000 120. +42.5219848667 -70.9906171194 55. +41.5294285611 -71.0851478278 30. +41.7429590944 -69.9771704972 35. +41.8995106611 -71.0393122944 15. +41.5552514111 -70.0003549194 20. +42.2229012194 -70.7952560917 41. +41.8976069278 -71.0377286278 15. +42.2230978833 -70.7875219944 3. +42.2231860694 -70.7880482694 3. +42.2231972500 -70.7884366639 3. +42.0142731111 -70.9627903556 +42.0141438306 -70.9625694194 +42.6402880444 -70.5993773917 26.02 +42.6403472222 -70.5991472222 25.80 +42.6403472222 -70.5994527778 26.79 +42.8169720222 -70.9406897528 28. +42.7007864333 -71.1860830111 +41.4100250000 -70.9483583333 15.811 +42.1826152889 -73.2322082111 354. +41.7567387556 -70.7162252750 +42.2703352972 -71.0441289389 27. +42.7110892944 -70.8680453278 12. +42.2666652306 -71.0411838194 27. +42.8866460889 -70.9146324694 22. +42.4027394917 -71.0609820583 8.3 +42.3958074306 -71.0697480556 +42.3932200833 -71.0566296278 +42.4078942972 -71.0543780444 +42.3967227528 -71.0654506417 +42.7702055556 -70.8335777778 2.262 +41.6767353250 -70.9617361000 20.12 +41.6822267722 -70.9539584361 23.64 +41.6763115972 -70.9579970389 20.22 +41.6704284722 -70.9501632583 18.98 +41.8914794500 -70.6455513028 +41.4120339111 -70.9396733833 15. +41.9405555556 -71.2852777778 39.402 +42.8115083333 -70.8725166667 7.880 +42.1933805556 -73.3652305556 219.638 +42.6422222222 -72.9247777778 183.885 +42.3341666667 -71.0741666667 3.015 +42.4240083333 -70.9138472222 12.54 +41.7486111111 -71.1841666667 13.00 +42.3733333333 -71.0697222222 3.286 +41.4957500000 -71.0385000000 2.64 +42.1300000000 -72.7455555556 45.833 +42.2225000000 -71.1688888889 40.810 +42.1580555556 -71.1541111111 22.820 +41.9536111111 -71.2658333333 39.055 +42.5734166667 -71.2668888889 41.681 +42.4449444444 -71.1404722222 4.004 +42.7508333333 -71.1091666667 25.686 +42.8022222222 -70.8841666667 3.678 +42.3268805556 -71.1482166667 61.787 +42.2797222222 -71.5958333333 85.861 +42.7008333333 -72.5591666667 131.908 +42.3602777778 -72.6369444444 52.115 +42.2497222222 -70.9066666667 3.580 +41.9447222222 -70.6352777778 22.074 +41.9440833333 -71.2810833333 40.077 +41.8224972222 -70.8145305556 32.544 +42.3166666667 -72.0611111111 285.264 +42.1111138889 -72.7184611111 40.302 +42.2563333333 -72.9347500000 158.094 +42.4244444444 -73.1141666667 445.209 +41.6536111111 -70.3913888889 17.157 +41.6661111111 -70.1322222222 5.471 +42.1300555556 -72.7456944444 47.258 +42.4497250000 -73.2521861111 316.507 +42.5422222222 -71.9875000000 313.546 +42.0886111111 -71.8705555556 144.127 +42.5352946028 -70.8821113889 1. +42.2190673694 -72.4592688611 198. +42.2481754056 -71.1171203611 35. +41.8987006417 -71.1174174750 20. +41.6430542611 -70.9058310472 -0. +41.6548730667 -70.8911365278 -0. +41.6418416417 -70.8862330861 +42.2057594194 -72.5662177000 90. +41.7108521139 -71.1455053306 78. +41.7109864167 -71.1454586278 78. +41.7018628861 -71.1536946917 +41.7012442806 -71.1550890778 +41.7053148417 -71.1652765806 +41.7653599722 -71.1156022056 8. +41.7053643083 -71.1518204528 15. +41.7150591222 -71.1749082722 +41.6986481472 -71.1571132639 -0. +41.7001930528 -71.1565798639 +41.6902056528 -71.1318887833 -0. +41.6900219417 -71.1319600389 +41.6964212500 -71.1266444417 15. +41.5694775944 -70.6478265889 +41.5696668500 -70.6477264389 +41.5543479722 -70.6191298417 +41.6197433528 -70.5409179056 +41.5538344222 -70.6137708389 +41.5516872056 -70.6404953306 +41.5584326500 -70.6279195028 +41.5991262444 -70.6293213639 +41.5980343806 -70.6176937472 59. +42.3232075806 -70.9130568306 +42.5009189028 -71.0506197194 37. +42.3452851528 -71.0408681556 4.3 +42.5971978833 -72.4461979528 325. +41.9430152278 -70.9514738444 29. +41.8083831611 -71.0809052750 +42.6466405028 -71.0933928806 115.3 +42.0876541250 -72.0509065389 232. +42.3016902861 -71.1285983694 85.1 +42.3014940472 -71.1309814306 +41.6753293444 -70.9880143389 61. +42.2398943944 -71.6280133806 215. +42.2914823056 -72.9494330750 491.8 +42.3572780611 -71.0570243528 104.8 +42.3563888889 -71.0538888889 6.578 +42.0644563333 -72.6811649833 93. +42.0677765750 -72.6788634000 +42.0663303556 -72.6786009083 +42.0847404583 -72.7039719056 +42.0846723778 -72.7036903611 +42.4331983639 -71.1045912083 74.7 +42.4546941111 -71.0258409917 45. +42.2222496194 -71.0615720778 155. +42.2222222222 -71.0630555556 144.76 +42.6253195472 -70.6873108111 23. +41.7013638000 -71.1703022556 1. +41.7094777222 -71.1792095167 +42.2322820333 -71.0030813583 32. +41.7730009333 -70.0517731778 +42.6923104056 -72.9846334028 630. +42.3614618694 -71.0811319556 3. +42.4899052667 -71.0592573639 68. +42.5721091000 -71.4214447972 77.0 +41.3151141972 -70.0529938167 3. +42.6087220472 -70.6476401194 +41.8409594250 -70.6939029083 41. +41.8891037806 -70.8898221583 +42.0648394111 -71.5730744361 173. +41.4053148444 -70.6122145333 +42.6175537639 -71.4923103056 136.6 +42.1987549028 -70.7153309278 11. +41.7619525167 -70.0820700000 +42.7974773250 -70.9630332250 +41.5250000000 -70.6736111111 1.995 +41.5860611389 -71.0594360417 +42.3518992778 -71.0367946472 1. +42.3715166556 -71.0456868528 1. +42.1766183194 -72.7989474750 314. +42.6433839000 -72.4472700889 274. +42.1983378389 -71.1926983333 46. +42.5530232556 -71.7602171056 100.92 +42.5608632361 -71.7586221556 112.01 +42.5512549944 -71.7560056694 100.22 +42.5507662333 -71.7527260250 100.0 +42.5543520333 -71.7587409944 101.5 +42.5624978861 -71.8344930583 293. +41.4808249611 -70.6056778417 +41.5134707639 -70.6995995333 +41.7546939028 -70.5384750333 82. +42.5505172722 -71.4702700667 100.9 +42.0657966861 -70.6898019222 10. +42.6963888889 -73.1130555556 215.880 +41.8457885556 -71.1156143556 21. +42.6983809556 -73.0201517500 723. +41.3495398139 -70.5749591222 4. +41.6506255833 -70.4447923917 14. +41.2880107083 -70.1040984306 9. +42.5663562250 -70.9128867250 65.7 +42.4511590778 -71.0463798556 68. +41.4238715528 -70.8954462611 37. +42.2576797833 -71.0269895333 56. +41.4923645222 -70.7109170167 4. +42.2444277778 -70.9667166667 17.461 +42.2444271639 -70.9667158028 17.44 +42.2675278806 -70.9348986917 +42.2557237083 -70.9446232889 +42.2444252722 -70.9667629750 17.531 +42.2973660556 -71.1080637028 40. +42.6619776361 -71.4588723528 118.9 +41.2377157750 -70.0171784806 0. +42.3817339361 -71.1284828389 21. +42.3267985417 -70.9597654917 5. +42.6049992806 -70.6767264278 15. +42.6321906667 -71.2949201611 84. +42.5317985278 -70.8742042694 18. +42.5264843444 -70.8664620389 +42.3300809028 -70.9555396000 31. +42.0613182361 -70.8418715528 11. +42.3558166444 -71.0498820972 3. +42.7068699861 -71.1088581917 105. +42.1599420250 -70.7048874361 18.72 +42.1614166583 -70.7057319806 23. +42.1608366167 -70.7055161806 15. +42.1612324083 -70.7057943639 23. +42.2484458528 -70.7848470694 3. +42.3087281722 -71.0453007222 2.8 +42.6839603250 -72.5589404111 235.4 +41.7133585889 -69.9641097528 9. +42.0641650278 -71.2509212639 +42.0651294778 -71.2518296389 70. +42.1010640083 -71.2557936583 84. +42.0877100889 -71.4001909556 100. +42.3028006500 -71.0849407806 43. +42.3030502556 -71.0850145028 20. +41.9423849139 -69.9856579667 37. +41.9421733667 -69.9859319972 37. +41.8947317000 -71.0736931750 10. +41.6893869528 -71.1064265833 50. +41.8060825194 -69.9593921000 20. +41.7788874056 -71.0262844722 38. +41.7995673972 -71.0145895667 44. +42.4273102833 -73.0374602389 678. +42.4273100778 -73.0374573972 678.2 +42.5914478778 -72.5095522194 186. +41.8931380639 -71.0924467111 10. +42.6588353167 -70.7232555667 4. +41.2898865500 -70.0923225667 +42.6860917694 -70.7636457972 +42.0318808833 -70.2090483833 +42.0205399722 -70.1926322611 +42.0326092917 -70.1687357889 +42.0205012194 -70.1841635500 +42.0223943583 -70.1788391306 +42.0253638472 -70.1749079889 +42.0284620778 -70.1711438417 +42.3777272361 -71.0489499028 3. +42.3783850889 -71.0487909250 +42.2442739694 -71.0485144250 82.4 +42.4216960139 -71.2536759139 105. +41.8730420528 -70.7201198139 44. +41.2776545861 -70.2347371861 0. +41.9444444444 -71.2822222222 43.430 +42.7611111111 -71.0608333333 6.394 +42.3545950889 -70.9582298500 34. +42.1597058639 -70.7051525306 17. +42.2275666667 -73.3625638889 220.225 +42.6552777778 -72.9394444444 191.871 +42.3297222222 -71.0561111111 7.148 +42.4792222222 -71.1525833333 32.122 +42.4238888889 -70.9094444444 16.56 +41.7591666667 -71.1758333333 42.28 +42.6390833333 -71.3415000000 38.227 +42.3502777778 -71.1108333333 3.099 +42.2494951194 -70.7656846083 9. +41.5055555556 -71.0227777778 1.84 +42.2341666667 -72.8769444444 115.191 +42.3896150556 -70.9690530917 21. +42.2294444444 -71.1616666667 34.980 +42.1400000000 -71.1738888889 53.772 +41.9311111111 -71.2919444444 44.542 +42.5752777778 -71.2491666667 45.227 +42.6208333333 -71.2619444444 43.498 +42.7572222222 -71.1016666667 12.915 +42.8125000000 -70.8750000000 6.773 +42.3216416667 -71.1716250000 52.647 +42.2625000000 -71.6250000000 116.345 +42.7136111111 -72.5688888889 131.754 +42.2672222222 -71.7972222222 142.478 +42.3744444444 -72.6338888889 45.852 +42.2488888889 -70.9180555556 10.820 +41.9423583333 -70.6223416667 4.297 +41.9422222222 -71.2711111111 37.741 +41.8241666667 -70.8275000000 37.869 +42.3141666667 -72.0772222222 333.064 +41.7007222222 -70.6164722222 8.744 +42.3213937556 -70.9281406861 8. +42.3167615833 -72.6249442611 41.038 +42.1152777778 -72.7333333333 39.123 +42.2600000000 -72.9575000000 165.464 +42.4344444444 -73.1191666667 436.384 +41.6464996806 -70.6119970333 12.657 +41.6688888889 -70.1095277778 3.152 +42.1300000000 -72.7463888889 43.751 +42.4472222222 -73.2636111111 306.952 +42.4235567472 -70.9091793861 15. +42.5141666667 -71.9975000000 310.984 +42.0502777778 -71.8838888889 132.158 +42.0508333333 -71.8841944444 131.98 +42.4545835167 -73.2131214833 309. +42.7328699778 -71.0934808722 93. +42.5369444444 -71.1608333333 24.878 +42.5611280167 -70.7735627500 49.0 +42.3271530694 -70.9392672472 20. +42.3255017306 -70.9393031611 +42.3254944167 -70.9326903306 +42.3269678611 -70.9388003222 +42.3238285583 -70.9394647472 +42.3253240694 -70.9399234194 +42.3268813639 -70.9393159306 +41.6190734778 -70.2607205222 12. +41.7234908139 -70.1992698472 6. +42.5798032389 -71.9947206389 334.536 +41.7093238528 -71.2064073222 6. +42.6140698444 -70.6572347028 +41.3472824556 -70.8367442444 44.68 +41.3410987389 -70.8134405556 +41.3472684111 -70.8367898194 +41.3484512444 -70.8349538500 52. +41.3338209944 -70.8119186750 +42.5466189500 -72.0135654611 281.88 +41.8881321778 -71.0462268667 2. +42.2920034500 -71.0406255917 +42.3197046306 -70.9279257917 38. +42.3197218000 -70.9287316944 +42.7261697306 -70.9383884000 17. +41.6910329111 -70.2093676389 41. +41.6910405639 -70.2094857861 40. +41.6885595139 -70.2152302278 35. +41.6910639722 -70.2093861306 37. +41.6910247611 -70.2094908583 40. +42.7699624528 -70.9506072889 34. +41.2815207222 -70.0249025417 30. +41.2815212389 -70.0249023167 30. +42.3470041250 -71.0821666917 212.3 +42.1466196444 -72.4615841167 111. +42.2492801944 -70.7672263694 15.00 +41.6880827750 -71.1728079667 40. +42.6135629000 -70.6620342333 +42.6140654111 -70.6628840389 +42.6320836472 -70.6120545028 +42.6167250778 -70.6566223306 +42.5807042361 -70.6643684167 +42.6169374194 -70.6571587833 +42.6169119944 -70.6570091250 +42.6106818444 -70.6341107194 +42.6268095472 -70.6684975667 +42.6131698944 -70.6661979417 +42.7726026944 -71.0558636639 78. +42.7720442472 -71.0553768444 +42.2703663806 -71.0443582639 28.1 +41.4847713333 -71.0379307139 3.27 +41.4851209417 -71.0376875778 3. +41.4888793667 -71.0382397278 6. +41.4848027778 -71.0380361111 3.24 +41.4846638889 -71.0376555556 3.93 +41.4141529250 -70.9480234972 +42.3958482972 -71.5286893806 91. +42.0772030694 -70.6686722778 40. +42.6115075000 -70.9909607917 47. +42.3522488917 -71.0103466111 4. +42.3524682417 -71.0114115028 +42.3523966361 -71.0109279306 4. +42.3524547167 -71.0102627278 4. +42.2388370528 -70.7890902611 2.8 +42.2246682639 -71.7102293972 139. +42.2406474583 -71.7851746750 218. +41.8861116444 -70.7160024750 37. +42.0947376583 -72.8930200278 +42.8860174000 -70.9091907944 73. +42.2686303861 -70.9237276500 20. +41.6849226778 -69.9366739889 -0. +41.9012126833 -71.0435865694 5. +42.3648441306 -70.8696684083 4. +42.3639622056 -70.8697071556 3. +42.3668092083 -70.8684736444 3. +41.8261913028 -71.1242093028 17. +41.7080668139 -70.7402079111 +42.5262079833 -70.8573407889 +41.9044670583 -70.0686864000 23. +42.3338162000 -70.8953823028 29.07 +42.3337407528 -70.8954000056 +42.3338746583 -70.8955931833 31. +42.3340722222 -70.8958694444 29.61 +42.3548268667 -70.9419908528 +42.5347367889 -70.8418618778 3. +41.7091902472 -70.7218491139 38. +41.7089271250 -70.7213650778 38. +41.8793331333 -71.2168746694 80.13 +42.5472142250 -70.7964936389 16. +42.5472145500 -70.7964939722 18.5 +42.4624836306 -70.8522485028 -0. +42.2746714056 -70.9514123333 21. +42.2748351694 -70.9514915778 +41.8589420000 -71.2871490083 76. +41.6175866833 -70.2857163083 +41.5401065611 -70.9301763417 14.06 +41.3690722139 -70.5312094972 3. +42.0757644667 -70.6554778833 +42.0750438694 -70.6539099389 +42.0764166361 -70.6538577611 +42.3530402861 -70.8920051306 13. +42.3530281444 -70.8920222972 13. +42.4857733917 -71.0882458194 65. +42.5735347639 -72.6022634556 67. +42.4869710889 -71.1932808500 60.4 +41.5407250444 -70.9525788361 +41.5455674167 -70.9522601250 +42.5689458778 -71.9997725833 357.6 +42.6367722000 -73.1655993139 1063. +41.7084524833 -69.9566891306 +42.6372035139 -73.1659825583 1063. +42.6372577444 -73.1659964861 +42.6370409917 -73.1659259528 1063.4 +42.6371556889 -73.1655522278 1063. +41.9372555167 -70.0678260250 29. +41.9333953278 -70.0690993528 24. +42.6103168917 -71.5573614417 155.87 +42.1649113528 -70.8782583444 46. +41.6797113556 -70.8300968639 +42.7490361750 -71.0445193722 15. +42.7729378250 -70.9980257806 55. +42.4213670472 -71.0281033250 13.8 +41.7367767000 -70.6223322139 3. +42.3894547472 -70.9687858806 24.03 +42.3894845639 -70.9690091278 +42.3893472222 -70.9686972222 20.61 +42.3894861111 -70.9690111111 20.76 +42.3487289528 -71.0970070722 3. +41.5810603528 -70.9698210278 +41.9567535889 -69.9996665056 38. +41.5647275361 -70.6538628694 4. +41.7079939500 -69.9303797389 +42.0031093583 -70.6011821667 -0. +42.0048061250 -70.5996461667 12. +42.0054547917 -70.5991022694 -0. +42.0296103528 -70.8448647111 29. +41.9788888889 -71.2580555556 43.825 +42.7683333333 -71.0861111111 11.317 +42.2361111111 -73.3616666667 223.646 +42.6675000000 -72.9863888889 227.022 +42.4188888889 -70.9058333333 10.49 +41.7708333333 -71.1727777778 40.86 +42.6347222222 -71.3594444444 33.122 +42.3477777778 -71.0727777778 0.146 +42.8686111111 -70.8636111111 17.328 +41.9002777778 -71.3402777778 25.640 +41.8991666667 -71.3458333333 33.509 +41.5161111111 -71.0291666667 23.49 +42.2113611111 -72.3467222222 104.212 +42.1483333333 -71.1588888889 53.237 +41.9050000000 -71.3177777778 30.068 +42.5681388889 -71.2149166667 29.866 +42.6300000000 -72.9016666667 172.212 +42.6175000000 -71.2483333333 36.329 +42.7625000000 -71.0869444444 40.132 +42.8008333333 -70.8508333333 2.809 +42.3190583333 -71.1943916667 43.237 +42.2539444444 -71.6398055556 109.983 +42.7264638889 -72.5738833333 138.407 +42.2677777778 -71.7780555556 149.989 +42.3886111111 -72.6327777778 47.472 +42.2300000000 -70.8127777778 16.816 +41.9385000000 -70.6076083333 29.755 +42.3547222222 -71.0584444444 6.731 +41.8375000000 -70.8419444444 29.848 +42.3133333333 -72.0961111111 307.071 +41.6954166667 -70.6186666667 3.973 +41.2834130722 -69.9652835861 28.4 +42.1191666667 -72.7400000000 40.704 +41.2630473861 -70.1851460528 4.5 +42.2730555556 -72.9694444444 189.491 +42.4444444444 -73.1294444444 419.765 +41.6445111111 -70.6043916667 18.662 +41.6725000000 -70.0541666667 3.316 +42.1408333333 -72.7877777778 49.704 +42.4297222222 -73.3211111111 339.941 +42.4847222222 -71.9850000000 300.688 +42.4847222222 -71.9850000000 298.13 +42.0438888889 -71.8863888889 127.466 +41.5139459972 -70.6954246194 1. +42.4654219333 -71.5409241694 102. +42.2935772944 -71.0537659500 43.1 +42.6888400139 -70.6325760722 30.26 +42.6891055556 -70.6326500000 29.84 +42.6887305556 -70.6328333333 29.92 +41.9910881667 -70.8613928194 40. +41.9482782167 -70.8691295111 9. +42.0239709778 -70.8149731278 20. +41.9568026167 -70.8630695333 9. +41.9549851694 -70.8608826889 9. +42.0029771667 -70.8995728111 14. +42.0164564889 -70.8977493333 23. +42.0157236278 -70.8492198583 25. +42.0209730833 -70.8644341917 +42.0195544056 -70.8334548056 +42.0128499222 -70.8074458083 20. +42.0100551639 -70.8067126972 20. +42.1998751611 -73.3513282028 299. +41.7023798306 -70.2602708028 20. +41.9061164361 -71.0706851444 8. +42.5983565167 -70.6837655056 +41.5990673194 -70.5219584917 +41.9372097611 -70.0459973833 20. +42.6124942833 -70.8449684917 +42.5996876333 -70.6831230139 +42.5995776194 -70.6845878472 +41.6137725444 -69.9769214472 -0. +41.8888445472 -71.0394967778 3. +41.3490069389 -70.6592630944 1. +42.4190806389 -71.0633114722 33. +42.5979153778 -73.2710105917 +42.1166669333 -70.8443653667 20. +42.1583081306 -70.8472431333 36. +42.0879581222 -70.8875593056 20. +42.0590880556 -70.8748831083 20. +42.0616717000 -70.9081116083 20. +42.0858892056 -70.9024009639 33. +42.0891390278 -70.8792191472 20. +42.0886498556 -70.8426853139 20. +42.0638869389 -70.8382265167 +42.0612658722 -70.8400222028 +42.0161601389 -70.8601714167 +42.0593868944 -70.8390160806 +42.0592870028 -70.8390689028 +42.0591521306 -70.8365661500 +42.0461533694 -70.8456509389 +42.0469859111 -70.8436716583 24. +42.0460122917 -70.8439088083 24. +42.0448310194 -70.8409705139 24. +42.0435664194 -70.8421132556 24. +42.0434670806 -70.8420238694 24. +42.0426620333 -70.8447798472 +42.0264447028 -70.8945228889 32. +42.0191878667 -70.8968830167 20. +42.0232912500 -70.8966237000 25. +42.0242300694 -70.8976525167 23. +42.0249456028 -70.8974221083 23. +42.0253052417 -70.8997340167 16. +42.0771936194 -70.8438952472 +42.0550750278 -70.8458383972 +42.0844293806 -70.9129652583 30. +42.0254742306 -70.8961282389 29. +41.6550252361 -69.9761416333 4. +42.3046709528 -70.8483068639 +42.2478298111 -71.1457538333 52. +41.6582016833 -69.9822521306 3. +41.6670397361 -70.4724409778 32. +41.6667402444 -70.4711082222 32. +41.6673681111 -70.4710296778 32. +42.6528318750 -72.1432618778 369. +42.1121861278 -70.9986005639 69. +42.2868868528 -70.9318250639 +42.4903874111 -71.0665438500 70. +42.5044124028 -71.5587126250 184. +41.6866821000 -70.0761293500 +41.6864897222 -70.0757251361 18. +41.6864880833 -70.0757250472 17. +41.6641873500 -70.0679707861 6. +41.6675521944 -70.0763132694 +41.7331963111 -71.1272192833 79. +42.3013637917 -71.8969677639 426. +41.6223202694 -70.5428612111 20. +42.1356342694 -70.7026596361 46. +42.0276226611 -72.0791632778 303. +41.8836533806 -71.0867061889 55. +42.4794456833 -72.6116401917 62. +42.3724044333 -72.6137025611 465. +41.6173918667 -70.9175869111 +42.7669293500 -71.0760073944 +42.7797163889 -71.0771243444 +42.7800018750 -71.0776448500 +42.7724820806 -71.0558551833 +42.7780200944 -71.0844169500 +42.7872856694 -71.1331959778 +42.4572870361 -72.1181549667 387. +42.5089415389 -71.0029631278 81. +42.2528195639 -70.7717553833 12. +42.4524067444 -71.2204909111 111. +42.6226494278 -71.4873454028 120.578 +42.6226865611 -71.4876423861 121.087 +42.6230772028 -71.4873939306 121.183 +42.6227259833 -71.4881920889 121.139 +42.6230730361 -71.4882943278 121.926 +42.6228295333 -71.4879134472 121.273 +42.6232879861 -71.4881601056 138.375 +42.6232881611 -71.4881599167 145.674 +42.6035942306 -70.6773062750 18. +42.2818255722 -71.1226809972 35. +42.3895664972 -70.9693777056 19.31 +42.3895974861 -70.9694305139 +42.3896734000 -70.9700541361 +42.3892013111 -70.9691084056 +42.1488888889 -70.6969444444 4.56 +42.3501552389 -70.9570567472 30. +42.1020560000 -72.1129026361 284.2 +41.9063220333 -71.0530664333 7. +42.1676278361 -73.1818803417 535. +41.8625497833 -71.0958805583 30. +41.8239288639 -70.0033247306 14. +41.3464352306 -70.5256672556 0. +41.7893097444 -70.5585911778 50. +42.1882231500 -70.8631705583 75. +42.1864919917 -70.8616157611 +41.8492548944 -71.1077983167 21. +42.0512572222 -70.1119583806 22. +42.0656232639 -70.1141934500 9. +42.5727561444 -72.2271213944 305.1 +41.8913258417 -71.0066449500 11. +42.4486005528 -72.7180559306 446. +42.4679650861 -70.9465297250 53.7 +42.4679920083 -70.9464394833 52. +42.4680337722 -70.9464591417 52. +42.2692606444 -71.2461323139 78. +42.6402383500 -70.6120931333 40. +42.2152240222 -70.9141963444 40. +42.3251961250 -71.0950039389 50. +41.4639089333 -70.5595617000 +42.1151584944 -70.7305412972 72. +41.6735939639 -71.1093527528 49. +42.1311079833 -72.4932781083 78. +41.7708222667 -70.7396329139 +42.0510840417 -70.2162161806 15. +42.0510723833 -70.2162300944 +41.6688623944 -70.7589925333 2. +42.3055644583 -72.5101949611 230. +42.3055641333 -72.5101944778 230. +41.6738385222 -70.5268859694 +41.7247272472 -71.0125243028 15. +42.3703950056 -71.0260908278 4. +41.7168730222 -70.0954621750 9. +42.2426386528 -70.8897212056 +42.2251920194 -70.9147374111 26. +42.1933703333 -70.8577610639 74. +42.2105939000 -70.8840857028 +42.2313847417 -70.8858992194 +42.2428052750 -70.8910155472 +42.2412455528 -70.8869972889 +42.2476510889 -70.8724498500 +42.2288446972 -70.8813033861 +42.2638230722 -70.8765207000 +42.2007395306 -70.8630976194 +42.2012433528 -70.8656989639 +42.2337845028 -70.9188044389 +42.2335851694 -70.9187387028 +42.2290751333 -70.9156295611 +42.0855477500 -72.2596339083 357. +42.5073371722 -71.0030773750 76. +41.8802140667 -70.5333025583 +42.6498874000 -70.7005810472 +41.7228600306 -70.6334921722 5. +42.3004595722 -70.8962999111 17. +42.3005372333 -70.8963129278 17.93 +42.3044444444 -70.8997222222 3.96 +41.7964622056 -71.1845643667 40. +41.6043443861 -70.6486752417 14. +42.2537180583 -72.0867330861 290. +41.9428469389 -70.0650092611 26. +42.1560174000 -71.0090282667 +42.1688470556 -71.0170251056 40. +42.1683634889 -71.0068191944 67. +42.1598305278 -70.9935551750 78. +42.1565025306 -70.9905552194 50. +42.2111779583 -71.0507415111 85. +42.1890371750 -71.4346137972 82. +42.1351692056 -70.7029884306 46. +42.1349425444 -70.7030785194 46. +41.6575892944 -70.4513394556 30. +41.9734167639 -70.6767101944 6. +41.4540529306 -70.6052791250 +41.9824606306 -70.9098863500 32. +42.6410557667 -71.1064102944 127.89 +42.6410113083 -71.1064372167 128.03 +42.2337700861 -71.8049447472 210. +42.2344921000 -71.8052848250 210. +42.2080084667 -72.6095380750 50.02 +42.2067115750 -72.6073538639 +42.2113889333 -72.6299277722 +42.1990852833 -72.6060092028 +42.2080277778 -72.6096027778 50.117 +42.2068394389 -72.6130427972 +42.2050526083 -72.6105198750 +42.2094268611 -72.6083598306 +42.2063632056 -72.6058843194 +42.3808945167 -71.0721637778 17.9 +42.6383932917 -71.0097592611 75. +42.6752777778 -73.0458333333 255.828 +41.6542400556 -70.6186622833 14. +42.1049243333 -71.5098544806 73.42 +42.1104323306 -71.5111766250 81.89 +41.7671735417 -70.0471323917 40. +42.2187929833 -71.5194515889 166. +41.9645909361 -71.3473724778 90. +42.4260337000 -70.9095262778 18.43 +42.4261310722 -70.9096429917 18. +42.4602076361 -71.1583529361 87. +42.4259388889 -70.9095055556 18.53 +42.4259972222 -70.9096888889 19.50 +41.5002295222 -71.0378139611 2.4 +41.6008381833 -71.0551760167 +42.3894283722 -71.1101196000 53.1 +42.5464917028 -70.8559652361 30. +42.3484124972 -71.0944868972 +42.3665875917 -71.1133668583 6. +42.2026340056 -71.0957150222 53.8 +42.3277270833 -71.0529187444 4. +41.7674429389 -70.0924839889 +41.6555907750 -70.4924177333 +41.3211657778 -70.7696653417 +41.7089741528 -69.9568720722 +41.7070631944 -69.9515836972 +41.5059493278 -70.6883092250 +41.6722661111 -70.7451960000 -0. +42.2804948028 -71.8836010306 322. +41.7480450694 -70.8511209611 27. +42.4721963778 -72.0048747306 312. +42.8266610139 -70.9934242889 57. +42.3776202917 -71.1137912750 6. +42.2894788472 -70.8798014278 32. +42.3079666222 -70.8870742889 +42.2659769028 -70.8435159972 +42.2663684750 -70.8484432083 +42.3044912694 -70.9222254722 4.7 +42.3033128861 -70.9126842056 +42.2789516222 -70.8761839722 +42.2789515278 -70.8752568417 +42.3044578306 -70.9184685111 +42.2895123250 -70.8793417444 32. +42.2896271583 -70.8791943111 +42.2652471528 -70.8460173583 +41.9647349139 -70.0015928056 35. +42.0665312472 -70.9184169917 29. +41.2529440167 -70.1665088694 0. +42.3186436861 -71.3075974750 92. +42.3477777778 -71.0777777778 1.107 +42.1258333333 -71.8636111111 156.354 +42.2784750000 -71.8491527778 191.893 +42.2583333333 -71.8272222222 147.430 +41.6698423667 -70.2888629250 16.16 +41.6739311028 -70.2672916250 11.105 +41.6688260722 -70.2792972889 13.45 +41.6314252083 -70.3069055694 25. +41.6515439083 -70.2870582444 +41.6241938722 -70.2922896944 +41.6362719167 -70.2884420083 7. +41.6884175778 -70.2806663611 +42.2550976222 -71.1226053250 +42.2569855556 -71.1212541278 +41.7036762194 -70.6239126139 +41.8894145972 -70.5322340861 4.0 +41.8583666444 -70.0059878528 14. +41.6797480667 -70.4772289750 30. +41.8827538778 -70.5333191111 38. +41.8827971056 -70.5336700889 47. +42.7841736778 -70.9479443250 -0. +41.8836240417 -70.5341951250 +42.1588480806 -72.5015089389 +42.1568874806 -72.5066241417 +42.1592014833 -72.4995342250 +41.4296018194 -70.6774834139 80. +41.6050800222 -69.9899709556 3. +42.6853635944 -70.7661296417 +42.6853638750 -70.7661327917 +42.6851576500 -70.7681913417 +42.6853634917 -70.7661295583 3. +42.6864650722 -70.8397906278 55.1 +42.0496005806 -73.4947528583 680. +42.7762804583 -70.9607211778 59. +42.2283250194 -71.1844409000 40. +41.5357664444 -71.0482082667 19. +42.0033333333 -71.2402777778 43.726 +42.2547777778 -73.3662250000 226.679 +42.6750000000 -72.9972222222 237.263 +42.8344444444 -70.8175000000 2.846 +42.3452777778 -70.9550000000 5.21 +41.7830555556 -71.1719444444 40.76 +42.6386111111 -71.3819444444 38.803 +42.3452777778 -71.0536111111 5.612 +41.5277777778 -70.9575000000 4.82 +42.2081833333 -72.3367166667 135.896 +42.2309166667 -71.1474166667 37.487 +42.1243055556 -71.1782222222 92.453 +41.9230555556 -71.2897222222 38.510 +42.5588888889 -71.1991666667 33.843 +42.6422222222 -72.9236111111 183.548 +42.6133333333 -71.2361111111 36.140 +42.7727777778 -71.0761111111 9.096 +42.7962575639 -70.8428193167 2.935 +42.3185555556 -71.2159166667 39.963 +42.2508333333 -71.6575000000 113.755 +42.1005555556 -72.6002777778 21.314 +42.2533333333 -71.7541666667 138.520 +42.3979478639 -72.6289441611 54.925 +42.2463611111 -70.8818888889 2.994 +42.2102777778 -70.7844444444 32.951 +41.9356944444 -70.5983888889 36.199 +42.0597222222 -72.6322222222 37.588 +41.8519444444 -70.8544444444 31.885 +42.3141666667 -72.1111111111 287.601 +41.6791666667 -70.6130833333 9.426 +42.3200000000 -72.6305555556 40.597 +42.1205555556 -72.7488888889 44.665 +42.2753000000 -72.9932333333 221.428 +42.4575000000 -73.1297222222 393.631 +41.6390277778 -70.5915000000 38.925 +41.6769444444 -70.0430555556 10.962 +42.1578055556 -72.8136111111 64.762 +42.3983333333 -73.3458333333 348.751 +42.4622222222 -71.9513888889 290.650 +42.8219508861 -70.8124649472 1. +41.4771086167 -70.6009946889 18. +42.1722391806 -73.0134840917 520. +42.2585650500 -73.0871084111 541. +42.5524371556 -72.0185310500 291.80 +42.5496545472 -72.0154316861 285.20 +41.7211712917 -70.5361661361 40. +42.4726941639 -71.2193602694 82. +42.1583342667 -72.4825913639 +42.1588133278 -72.4847502694 +41.8959090278 -70.6339509639 59. +41.2620088194 -70.0724032528 15. +42.2557039028 -71.1464539417 45. +41.8865806750 -71.0382080917 3. +42.7059505583 -70.8797518750 40. +42.2597660389 -71.1536959500 37. +42.0313349528 -71.4043046111 149. +41.3791476417 -70.7051348917 72. +41.8890298778 -71.0782474444 5. +42.2264640722 -71.7908948528 130. +42.1579483500 -70.8333602639 35. +42.1581718833 -70.8433097306 35. +42.1583186222 -70.8441320778 37. +42.1582832861 -70.8472426222 36. +42.1567512889 -70.8435862333 35. +42.8151075694 -70.8185581583 2. +42.4262403417 -71.0677199556 32. +41.5122822917 -70.9848804861 10. +42.1924244917 -73.1000407111 482. +41.9113975222 -70.7290348222 44.21 +41.9071942417 -70.7340579083 41.32 +41.7448840639 -71.1892528917 8. +42.0316666667 -71.2205555556 50.482 +42.2758333333 -73.3594444444 238.101 +42.6755555556 -73.0916666667 236.672 +42.3550277778 -71.0509444444 4.105 +42.8075000000 -70.8602777778 4.401 +42.0375000000 -70.6341666667 3.15 +41.3516666667 -70.7333333333 52.131 +42.6388888889 -71.3905555556 39.574 +41.5388888889 -70.9516666667 20.64 +42.1136111111 -71.1872222222 83.122 +41.9125000000 -71.3108333333 30.717 +42.6688888889 -72.9572222222 207.427 +42.6105555556 -71.2219444444 36.577 +42.7780555556 -71.0769444444 32.685 +42.7961111111 -70.8419444444 3.463 +42.3169722222 -71.2315277778 23.900 +42.2469444444 -71.6811111111 122.997 +42.1016666667 -72.5855555556 20.522 +42.2347222222 -71.7311111111 119.116 +42.4255555556 -72.6219444444 53.093 +42.1613888889 -70.7422222222 5.412 +41.9306944444 -70.5786388889 53.579 +42.0738888889 -72.6300000000 38.685 +41.8636111111 -70.8702777778 35.041 +42.3169444444 -72.1258333333 298.702 +41.6638888889 -70.6072222222 10.532 +42.3580555556 -72.6358333333 48.714 +42.1247222222 -72.7513888889 44.098 +42.2725000000 -73.0002777778 240.560 +42.4663888889 -73.1394444444 363.983 +41.6330555556 -70.5700000000 17.791 +41.6786111111 -70.0300000000 12.072 +42.4452777778 -71.9208333333 289.312 +42.0466666667 -72.3213888889 186.398 +41.3476052833 -70.4871834972 1. +42.4710292111 -71.2450977139 45.3 +41.6584348528 -70.1173852389 6. +42.6093426694 -70.6759440111 4. +41.7039276833 -69.9463484000 +42.5668952472 -70.7226906194 12. +42.2718149917 -71.1626176194 38. +41.8966827333 -71.0403967611 6. +42.8038395528 -71.0093948444 59.8 +41.7274514583 -70.0289992861 29. +41.9061962306 -71.0632444139 8. +41.7264129167 -70.0299160833 10. +41.9053072611 -71.0615846306 8. +41.7562889194 -71.2709802056 23. +41.9933151694 -70.7298774389 +41.9933019417 -70.7308317667 +41.9835975028 -70.6929601611 5. +41.9475083333 -70.7586921028 46. +41.9669925639 -70.7655345611 46. +42.0042522528 -70.7955150194 +42.0164346611 -70.8005261694 18. +42.0205869278 -70.7967253083 23. +42.0220239194 -70.7691344889 17. +41.9542740778 -70.7217116694 61. +41.9783621889 -70.7874761639 20. +41.9934649139 -70.7325912083 5. +42.3778769917 -71.1079426472 4.2 +42.4749582889 -70.9889281556 51. +42.2389577694 -71.1237929583 15. +41.7940292889 -70.7241841583 24. +42.0423008528 -70.1052108972 20. +42.1371026472 -71.6331891444 151. +42.2804166667 -73.3458888889 248.798 +42.7016666667 -73.1208333333 212.732 +42.2511000000 -71.0016555556 11.411 +42.7958333333 -70.8411388889 3.247 +42.0258333333 -70.6211111111 3.35 +41.6822222222 -71.1502777778 56.969 +42.6311750000 -71.4072750000 52.654 +42.3513888889 -71.2058333333 13.514 +41.5458333333 -70.9547222222 19.27 +41.5458333333 -70.9547222222 19.08 +42.2786111111 -71.1200000000 21.582 +42.1008333333 -71.1883333333 80.173 +41.9033333333 -71.3288888889 31.563 +42.6669444444 -72.9847222222 225.280 +42.6555555556 -71.1711111111 50.817 +42.7888055556 -71.0706666667 48.829 +42.8235000000 -70.8665000000 3.490 +42.3147222222 -71.2527777778 21.456 +42.2425000000 -71.6969444444 117.866 +42.1066666667 -72.5783333333 59.474 +42.2416666667 -71.7086111111 112.285 +42.4316666667 -72.6219444444 61.672 +42.1863888889 -70.7602777778 11.896 +41.9208333333 -70.5666666667 12.671 +42.0891666667 -72.6238888889 22.966 +41.8736111111 -70.8875000000 28.868 +42.3194444444 -72.1411111111 245.339 +41.6466666667 -70.6122222222 10.129 +42.1277777778 -72.7600000000 46.742 +42.2677777778 -73.0111111111 278.373 +42.4697222222 -73.1588888889 359.073 +41.6247777778 -70.5494444444 24.991 +41.6833333333 -70.0186111111 11.682 +42.1825000000 -72.8455555556 81.083 +42.3622222222 -73.3813888889 305.677 +42.5541666667 -73.1650000000 297.079 +42.3786097167 -71.0054793250 4. +42.1757843333 -71.0201538528 32. +42.5409796417 -71.7230989944 190. +42.3276664667 -72.6109958000 36.69 +42.3275291556 -72.6164462111 42.8 +41.4398143611 -70.5804930611 +41.8488631944 -70.9926542222 49. +41.8495453361 -70.9912130611 49. +41.8499316139 -70.9905573111 49. +41.8512083306 -70.9886194000 49. +41.8518719556 -70.9878657639 49. +41.8521415583 -70.9876172556 49. +41.8539545750 -70.9861565861 30. +41.8544435472 -70.9851183222 20. +41.8554237167 -70.9828810972 20. +41.8564712611 -70.9798086194 20. +41.8572432667 -70.9783093722 24. +41.8579816806 -70.9772502444 20. +41.8586701694 -70.9764750778 21. +41.8608748500 -70.9737154889 18. +41.8735490222 -70.9768729667 17. +41.8761851694 -70.9775412944 17. +41.8962294056 -70.9629968444 +41.8790226806 -70.9192059806 23. +41.8771789306 -70.9167512722 18. +41.8149609528 -70.8986422667 18. +41.8430220833 -71.0014231889 29. +41.8431535583 -71.0012499472 23. +41.8466420250 -70.9963026139 49. +41.8468451000 -70.9959051333 49. +41.8472272167 -70.9954593417 49. +41.9055263972 -70.9871609111 41. +41.4551315639 -70.8245823000 15. +41.6120161694 -70.9162202639 13. +42.6781404361 -70.6538914972 +42.6781723583 -70.6538945556 +41.7037277056 -71.1640676361 +42.6562735056 -71.7377062306 198. +41.7246232917 -71.1503916639 9. +41.6956149833 -71.1813089944 1. +42.7036873917 -71.1648087444 +42.7056589944 -71.1608339722 +42.7064202389 -71.1816583389 61. +42.7079967222 -71.1852948361 110.0 +42.7079822861 -71.1853357806 110. +42.7092509250 -71.1463744694 +42.2004385750 -70.7554275278 38. +42.1850083250 -71.7187261722 167. +41.8659737861 -70.9763231639 47. +42.0591765333 -72.1331861778 313. +41.8036849500 -70.7453042361 24. +42.1097524083 -70.7661507806 32. +42.4461214667 -71.0656970222 45.9 +42.1326074778 -71.0632599056 85. +42.6158593194 -70.6906286389 +42.5318973944 -70.8744545139 18. +41.7084827306 -71.2091513639 3. +42.6666834833 -72.9032562833 562. +42.2685535194 -71.0479736139 4.1 +42.1606555250 -71.7043387500 203. +42.3598606972 -73.2840743556 375.7 +42.4091090472 -73.2888352222 +42.3931336639 -73.3109068278 +42.3931221944 -73.3108976417 648. +41.9567182028 -71.0847851444 30. +41.8962210917 -70.9646476194 40. +41.8964170194 -70.9623914639 40. +41.8978818194 -70.9623091278 40. +42.3666697111 -71.0652114194 52.4 +42.2821693667 -71.0947981722 64.1 +41.6339255972 -70.2292805139 -0. +42.1359028611 -70.7199757194 40. +42.4740569833 -71.2583867750 45.7 +42.4060715222 -71.2112608611 85. +42.4538628500 -71.2665391444 +42.4499133722 -71.2319366167 +42.0706061889 -72.9290700917 434.2 +42.0718898250 -72.9308823139 417.6 +42.3505555556 -71.0725000000 0.883 +42.2246677028 -70.9720421889 40. +41.5882886889 -70.5176462028 +41.7125225556 -71.2263347667 2. +42.3558975389 -71.1315031278 9. +41.8799492861 -69.9922702944 16. +42.4246908056 -71.0549843028 6. +42.4309993306 -71.2995976417 116. +42.3659760000 -71.0489902417 3. +42.0620012750 -71.3852020444 139.24 +41.8859573611 -70.7159525528 37. +42.5993472306 -70.6824173972 +42.5129944917 -70.9762689972 55. +42.5262663417 -70.8531380694 +42.5262644806 -70.8531351778 +42.3281184028 -70.8904183194 8. +42.5354112778 -70.8428143417 +42.1687673389 -71.9715454167 327.2 +42.4345404028 -70.9342362000 +42.4353648056 -70.9354552889 +42.7735060000 -70.8417792306 44. +41.8152880389 -71.1890763111 53. +41.8165721083 -71.1935708611 44. +41.8153019889 -71.1933119500 47. +41.4775852306 -71.0430969222 +42.5383860472 -70.8814887722 +41.9385648250 -71.0230789889 32.81 +42.3655490194 -71.0179467222 4. +42.3655965833 -71.0180271361 4. +42.3508983889 -71.0112868917 5. +42.3754244722 -70.9994211139 3. +42.3632565278 -71.0047081806 4. +42.3682626667 -71.0213184389 +42.3714733556 -71.0141378861 +42.3614006278 -71.0098248639 +41.9309488500 -69.9803152472 30. +42.6350003222 -70.5659811528 +41.9159072361 -71.2282169278 +42.0328069583 -70.1689920833 3. +42.3307057500 -70.9564077222 15. +42.2467651194 -70.7849952778 +41.9674367000 -70.6435927639 54. +41.9478454111 -70.6296772583 3. +42.3225085139 -70.9663676167 +42.3302158500 -70.9576734639 37. +42.3219702778 -70.9651808250 +42.3109421278 -70.9764194972 17. +42.3109188500 -70.9764930056 17. +42.3225412194 -70.9625902861 +41.7388917639 -70.6454484028 3. +41.5243624250 -70.6870442333 +41.8179171889 -70.8989558139 18. +42.0217486556 -70.1888532583 +42.0252778250 -70.1778673139 +42.0314801056 -70.1703509944 +42.0331224028 -70.1686467139 3. +42.0202909083 -70.1869629806 +42.0241842528 -70.1764504194 +42.0307131139 -70.1693562861 +41.8156606944 -70.8996413667 18. +41.7252273556 -70.0738418444 17. +41.7397535083 -71.1478445278 67. +42.3601600556 -71.0477934361 3.2 +42.3600647889 -71.0477117556 3. +42.3615243389 -71.0736123417 10.3 +42.3617256556 -71.0758270028 +42.3613657333 -71.0758760694 +42.3616571167 -71.0749394806 +42.3613000222 -71.0749886250 +42.0456162028 -72.5441220750 +41.8347803139 -70.5370445583 -0. +42.4657196222 -71.1072875028 106.6 +42.4657197444 -71.1072691722 +42.0027831250 -70.7218046972 2. +42.3420526250 -71.0335892111 3. +41.6801475639 -71.1946365028 -0. +41.6483160944 -70.4461538167 12. +42.3327058361 -70.9298617278 +42.3318112139 -70.9307172722 +42.8062675444 -71.0644126722 40. +41.7987113361 -70.7178400806 24. +41.5205754000 -71.0467913361 6. +42.6466136972 -71.3180422889 +42.6374930472 -71.3085645639 +42.6424276583 -71.3111568639 +42.6330865861 -71.3312144722 +42.6499798833 -71.3168324278 +42.6529086583 -71.3148460639 +42.3693130639 -71.0726632528 4. +42.6454451611 -71.3183103111 +42.6535903389 -71.3212149528 17. +41.2642083389 -70.1744510083 7.0 +42.1917307944 -72.4600635500 +42.1913670806 -72.4522522583 +42.7099968528 -71.1287908528 39.83 +42.7159576750 -71.1207402528 45.24 +42.7208943806 -71.1281797389 37.53 +42.2707523944 -71.1824735500 40. +42.4437513944 -70.9392240250 3.73 +42.4437527778 -70.9392250000 3.73 +42.4262961667 -70.9537181806 +42.4329810111 -70.9480287528 +42.4427237556 -70.9424253639 +42.4485646278 -70.9421159250 +42.4610775667 -70.9469679222 +42.4675470028 -70.9409231722 +42.4574144167 -70.9495969111 +42.4646242917 -70.9512779528 +42.4626223972 -70.9598105833 +42.4685823861 -70.9373897583 +42.4716645694 -70.9261324194 +42.4628920944 -70.9380073111 +42.4540673222 -70.9513544444 +42.4553901500 -70.9521336250 +42.4529376889 -70.9515542972 +42.4493877056 -70.9732738389 +42.4679530500 -70.9473133139 49. +42.4679809083 -70.9473060111 +42.4709873639 -70.9275926194 +42.4573757833 -70.9568195167 +42.4646397583 -70.9524505417 +42.4680206417 -70.9464203528 +42.4529786167 -70.9801082472 +42.4356156528 -70.9904422444 +42.4898674472 -70.9857142722 +42.4544531139 -70.9546947194 +42.4530807917 -70.9523652611 +42.4577131194 -70.9474272194 +42.4733701722 -70.9723134389 +42.4713188444 -70.9268653778 +42.5100511417 -71.0041781611 +42.0659444444 -71.2003055556 68.063 +42.3211103333 -70.9269780111 8. +42.3210698083 -70.9269727333 8. +42.3539170111 -70.9573938250 15. +42.3538825472 -70.9573967667 15. +42.3542235361 -70.9575190472 15. +42.2781203861 -73.3149791806 250.688 +41.9030094444 -70.9594448611 15.628 +42.2072222222 -71.0611111111 39.41 +42.2063888889 -71.0569444444 42.77 +42.2494444444 -71.0022222222 9.775 +41.9522453444 -71.0708311806 24.84 +42.0158333333 -70.6125000000 2.96 +42.2447222222 -70.8700000000 12.85 +42.6241666667 -71.4238888889 57.104 +42.3416500000 -71.2561666667 21.410 +42.3328343556 -70.9312403889 3. +42.3328410389 -70.9311954167 3. +41.5761111111 -70.9519444444 8.76 +41.6677777778 -70.0680555556 4.337 +42.5172448694 -71.1036163694 28.75 +42.5314125444 -71.1033117694 39.03 +42.5415085222 -71.1039371028 34.12 +42.5499719889 -71.1042927500 33.81 +42.5645672139 -71.1078846806 22.68 +42.6839675861 -71.1524379111 29.05 +42.6752777778 -71.1516666667 21.950 +42.6602163806 -71.1435089250 35.07 +41.6669444444 -70.1438888889 2.245 +41.6691666667 -70.1180555556 5.109 +41.6644166667 -70.1733611111 6.372 +41.9113029722 -70.9611331611 25.54 +41.6752777778 -70.0891666667 2.861 +41.7452777778 -70.6180555556 8.182 +41.6522777778 -70.3710833333 11.678 +41.6536111111 -70.3650000000 7.718 +41.6569444444 -70.3527777778 17.882 +41.6651460639 -70.2873090583 15.12 +41.6569444444 -70.2044444444 3.330 +41.6677777778 -70.0711111111 4.956 +41.6683333333 -70.0794444444 5.431 +41.8427777778 -70.5466666667 30.199 +42.2583333333 -72.2327777778 146.281 +42.2019444444 -70.7738888889 31.021 +42.2433333333 -70.8697222222 14.315 +42.2425000000 -70.8538888889 19.522 +42.2416666667 -70.8380555556 12.395 +42.2365805556 -70.8251055556 29.053 +42.2180555556 -70.7972222222 9.667 +41.8361944444 -70.5470000000 42.243 +41.8227777778 -70.5497222222 45.658 +42.2605555556 -71.1225000000 24.975 +42.0811111111 -71.1961111111 75.76 +42.0023276806 -71.1992475333 37.309 +42.6750000000 -72.9980555556 237.314 +42.5405055556 -71.1670388889 29.533 +42.6802777778 -71.1530555556 32.396 +42.8022222222 -71.0661111111 33.641 +42.8286111111 -70.8650000000 3.346 +42.3022222222 -71.2872222222 46.847 +42.2308333333 -71.7077777778 104.700 +42.1105555556 -72.5661111111 61.919 +42.2491111111 -71.6809722222 115.783 +42.4454138889 -72.6258194444 54.391 +42.1777777778 -70.7505555556 4.645 +41.9136111111 -70.5530555556 25.363 +42.0997222222 -72.6263888889 22.873 +41.8827777778 -70.9080555556 18.290 +42.3236111111 -72.1525000000 225.123 +41.6325833333 -70.6185000000 10.983 +42.4116666667 -72.6211111111 51.591 +42.1275000000 -72.7694444444 49.071 +42.2697222222 -73.0233333333 318.523 +42.4713888889 -73.1711111111 331.329 +41.6178277778 -70.5338277778 21.979 +41.6847222222 -70.0077777778 17.322 +42.1896236806 -72.8493223139 85.103 +41.7536111111 -70.5813888889 29.206 +41.7602777778 -70.5750000000 38.906 +41.7675000000 -70.5694444444 53.664 +42.5927777778 -73.1405555556 286.461 +42.3138888889 -71.2716666667 48.513 +42.2290845667 -71.1815778111 37. +41.9999865861 -71.2018508333 35.80 +42.2461790167 -70.8813696556 5. +41.7805967528 -70.5436499667 24.89 +41.7735822833 -70.5435239917 32.69 +42.2901366972 -71.5549157167 98.9 +42.2884393556 -71.5891252833 129.48 +41.6913022861 -69.9670922333 +42.8462226333 -70.9207521750 9.8 +42.5755655417 -70.7108426889 +42.5729471694 -70.7100627833 +42.5734988417 -70.7124485333 +42.3611036389 -71.0143855917 4. +42.5325408111 -70.9824036889 56.5 +42.4090426056 -71.0903676944 +42.4278937056 -71.0878700722 44. +42.4126885528 -71.1016480694 +42.4423893972 -71.0404607333 81. +42.3080897972 -71.0507622361 3.3 +41.8106435833 -70.5377836944 15. +41.9241238444 -70.5435626333 21. +42.5780948361 -70.7735948778 +42.5749989389 -70.7719799361 +42.5750148167 -70.7713997972 +42.5867292000 -70.7809295778 +41.6919235833 -70.2041781528 30. +41.9273573472 -70.5906471833 119.7 +41.9273500722 -70.5906628083 +41.9977325083 -71.1923995667 35.61 +42.0021205361 -71.1991031861 36.97 +42.0246318278 -71.2175270750 65. +42.0310630278 -71.2447983861 70. +42.5467967806 -70.9718071250 60. +42.0937178972 -70.6526568389 12. +42.5470533306 -70.9718290194 60. +42.4318367444 -71.0573881833 37.1 +41.8909514889 -71.0364578667 8. +42.5043179639 -70.8530180722 +42.5025558417 -70.8525706889 +42.4997168000 -70.8624646556 +42.4856468722 -70.8866554111 +42.5070624528 -70.8478624194 +42.5054252028 -70.8336720611 40. +42.5049482778 -70.8329984278 9. +42.4963082250 -70.8408969500 +42.4961871139 -70.8362256056 20. +42.4979982333 -70.8595376083 +42.5008043444 -70.8647048639 +42.3456590194 -71.5677070333 183.0 +41.7182113472 -71.1658440861 -0. +42.3890932917 -71.0449531778 11. +41.7151996111 -70.7723252833 -0. +41.7027027444 -70.7628155361 5. +41.6773296472 -70.7630136194 3. +41.7101076444 -70.7990753917 14. +41.7121357028 -70.7780473194 +41.7152057944 -70.7723319583 +41.7003674861 -70.7701462278 +42.3461002722 -71.5671751444 180. +42.3544779917 -71.6102859806 70.1 +42.3457985083 -71.5671419833 +42.1224652778 -70.7233089000 81. +41.7747638250 -71.2835814167 2. +42.0230724806 -70.1896540917 4. +42.1004909278 -70.6692655306 1.2 +42.0962035278 -70.6755307917 2.08 +42.4310783278 -70.9970803500 -0. +42.0909263944 -70.7188245889 +42.0919197972 -70.7098980056 +42.1134056778 -70.7772922222 3. +42.1153309056 -70.7750687306 3. +42.1134416194 -70.7761722722 3. +42.0668209861 -70.6958849083 8. +42.0705285639 -70.6985232806 8. +42.1095984111 -70.7594639194 +42.1098529556 -70.7659038111 32. +42.1140314583 -70.7665464361 23. +42.1128542056 -70.7759824750 5. +42.1071420306 -70.7575797056 20. +42.1654638000 -70.7542355250 +42.1033174167 -70.7623291472 +41.6470776889 -70.4153305472 +41.9064068139 -71.0574155750 3. +41.8075767306 -71.1279998556 60.0 +41.8981443389 -71.3712091389 29.649 +42.8627461889 -70.8902627944 +41.7163846972 -70.6327915806 -0. +41.5688551333 -70.5152623444 +41.5685749694 -70.5143873944 2. +41.5998942333 -70.5253943444 11. +41.6769124278 -70.4940542833 18. +41.6760746722 -70.5113114750 30. +41.6610190611 -70.4805448694 30. +41.6659675278 -70.4821622333 21. +41.6851282528 -70.4780528333 41. +41.9080223389 -71.0692511389 8. +42.0517777556 -71.2064232667 69.8 +41.9138157944 -71.3039964250 32.8 +42.6068106194 -72.7164073139 484. +41.7503955583 -70.4669740361 +41.6288325083 -70.8015852500 1. +41.6289426694 -70.8016744028 1. +41.6267225472 -70.8067128417 1.4 +42.2715630639 -71.0932955056 +41.7111923667 -71.2139007722 1. +41.6295526389 -70.8026506472 +41.6683422750 -70.8150955333 +42.3865799639 -71.0192748306 5. +42.0051627750 -71.3156631944 95.2 +41.3246543639 -70.7728777806 +42.4337043472 -71.4710191139 118. +41.7666511583 -69.9523771722 20. +41.7890179444 -69.9455367000 +42.1700730306 -71.0161823167 40. +42.0702449556 -72.5043259333 110. +41.5283444250 -70.6860959778 9. +42.3969039917 -71.0843759861 3.4 +42.4158951667 -71.0308207778 38.5 +42.3812565194 -71.0670761361 31.0 +42.6217049583 -70.6836813389 30. +41.5684370333 -70.5148639667 1. +42.5563453278 -72.6022538750 40.5 +41.8734158556 -71.0760225528 11. +42.4136329861 -71.1033759139 9.1 +42.4182428694 -71.1057972889 +42.4197712278 -71.1055777056 +42.4416602361 -71.1213717139 +42.4310796111 -71.0881559583 +42.4064820139 -71.0880341806 +42.4064791556 -71.0852953472 +42.4105769500 -71.0751831722 +42.4266019389 -71.1019853694 +42.4144379972 -71.1082735528 +42.4070700806 -71.1196395583 +42.4303623861 -71.0888502944 +42.4204868611 -71.1151250944 +42.4182763278 -71.1029233111 +42.5005483556 -71.0623210722 39. +41.7007906389 -70.8828503833 44. +42.2707939194 -71.0697516194 +42.3839601944 -71.0393891583 5. +41.7079135028 -70.2944814556 3. +41.2497613028 -70.0846036417 9. +41.7085472389 -70.2944735194 3. +41.2503552806 -70.0845972194 9. +41.7073192000 -70.2944888972 3. +41.2491597583 -70.0846101694 9. +42.8242278472 -70.8227618528 +42.8350710222 -71.0033358917 +42.8259886444 -70.9862534111 +42.7311308333 -71.1912419944 +42.7291874889 -71.1859563306 +42.3191648222 -70.9280607000 20. +41.9290312167 -70.7024414500 54. +42.6134970861 -71.4921824306 112.399 +42.6132666667 -71.4921166667 112.478 +42.6135861111 -71.4923694444 112.689 +41.6873682222 -70.6536713417 1. +42.7673028306 -70.8030696417 14. +41.9086484056 -70.8847410361 +41.9427212139 -70.8456449389 16. +41.8919274389 -70.9110119056 40. +42.3479808917 -73.0107676917 525.6 +42.5570061806 -71.3030296889 +42.5558248306 -71.3025856361 +42.5969621278 -71.0238887944 77. +42.5956907472 -71.0073899194 +42.5971226361 -70.9792428167 +42.5951793194 -70.9802012306 +42.5960436944 -70.9808959722 +42.7980907306 -71.0692654306 94. +41.3942894778 -70.4483136278 3. +42.3165624722 -71.0384884694 4. +42.1369104750 -71.5392128944 134. +42.2581795694 -71.0829893111 15. +42.6280475722 -70.5917114917 3. +42.6281638889 -70.5916638500 +42.6175614611 -71.4915176278 127.497 +42.6293655361 -70.6802468472 +42.6173444444 -71.4916277778 126.260 +42.6176916667 -71.4918444444 126.848 +42.3788510111 -71.0963925361 +42.6175185833 -71.4904704722 128.1 +42.2805767889 -71.7740482556 -0. +42.6174553139 -71.4908996250 151.3 +42.2318079139 -71.1046190111 +42.2720517417 -71.0486805889 +42.2739695222 -71.0683825111 +42.2683618611 -71.0416306194 +42.2533734583 -71.0801691111 +42.2118335694 -71.1136975722 190. +42.3210794944 -70.9268487333 8. +42.1806999639 -72.4302721444 +42.1807240194 -72.4305026917 220. +42.2697075944 -70.7591389833 3. +42.0023291139 -70.7125243472 7.7 +41.9993010972 -70.7220425500 7.8 +42.1271459778 -71.5808576028 181. +41.5155414861 -70.9540844972 9. +41.5163276694 -70.9542460444 +42.5023274583 -71.1363803250 25.0 +42.3577777778 -71.0919444444 1.338 +42.3578888889 -71.0917777778 2.663 +42.2159280472 -71.0949669917 122. +41.3413460194 -70.8102047778 +41.3428217472 -70.8001018833 15. +41.5937121889 -69.9837431028 3. +41.5593305528 -69.9936440056 -0. +41.5534334417 -70.0081909056 +42.0162979194 -70.8497179583 30. +42.0142880194 -70.8531685611 30. +42.0165513694 -70.8548929361 30. +42.0147217528 -70.8592451472 30. +41.7372294611 -71.1458224194 6. +41.7375499750 -71.1455563111 6. +42.5150340444 -71.0542223389 34. +41.4995599000 -71.1207085611 9. +42.5396222694 -70.8732588139 +41.7218140528 -70.6127342528 +41.7422887833 -70.5966468722 3. +42.3061067806 -70.9892418528 30. +42.3060657111 -70.9892597722 29.61 +42.3060638889 -70.9894361111 29.84 +42.3061722222 -70.9891944444 29.39 +42.3059472222 -70.9890722222 27.85 +42.6354399194 -71.3800447222 32. +42.1238360139 -71.2139711889 146. +42.4645271694 -72.7835876111 +42.4646855194 -72.7836068444 518.0 +42.6826263139 -70.9746366750 38.4 +42.8209512833 -70.8512870306 7. +41.6586837167 -69.9682448361 14. +41.6581326778 -69.9589590806 15. +41.6580622889 -69.9589677722 17. +41.6574138000 -69.9585326611 14. +42.8407493306 -70.9771142194 75. +42.8344554556 -70.9229884639 +42.8268106667 -70.9001152361 26. +42.4344761111 -72.8759965750 437.8 +42.0662256333 -70.1511739722 15. +42.3696503028 -71.1440563472 41. +41.9191948583 -70.8364866556 53. +41.9195630417 -70.8361781306 53. +42.4527864833 -72.6647284861 299. +42.4887480444 -70.9924788611 +42.6912677972 -72.3551015806 493. +42.4971060222 -70.9781457500 86. +42.3004746028 -72.5879728583 285.9 +42.4517695639 -71.0327608583 94. +42.4517652833 -71.0327563861 94.1 +42.4521222278 -71.0323744583 94. +42.2841031806 -71.1214221556 29.8 +42.1929857472 -70.8211678000 72. +41.7124624139 -71.2262519139 2. +42.3636617306 -72.4230042222 337. +42.1292116972 -72.4078623917 283. +42.1291262278 -72.4076992444 +42.4880408694 -72.5376198944 +42.2418462556 -72.6481768028 365.7 +42.2418495167 -72.6482176500 365.7 +42.2412189222 -72.6483718111 +42.3557292139 -71.4971503472 125. +42.3800566000 -72.5723522778 147. +42.1022479861 -73.4327451972 +42.1669596306 -72.8143170639 363.4 +42.1682007861 -72.8138165583 342.7 +42.0638940306 -71.2504636472 +42.3000476611 -71.4419072139 +42.1338843056 -71.9568271250 306. +42.1329192472 -71.9583595222 292.4 +42.3590339889 -72.7936847111 455.8 +42.5882599583 -70.6850939778 4. +42.5875208389 -70.6863705167 +41.3372120528 -70.2991021889 2. +41.3388775583 -70.3039575000 2. +41.3932826139 -70.6148802694 18.43 +41.3970038917 -70.6054066222 17.24 +41.3845163972 -70.6198685833 15.67 +42.3766666667 -72.1152777778 179.445 +42.3877777778 -71.8008333333 126.328 +42.3894444444 -72.0613888889 214.149 +42.3900000000 -72.0461111111 222.583 +42.3808333333 -72.0308333333 235.334 +42.3787222222 -71.9840833333 283.823 +42.3876666667 -71.9499166667 312.229 +42.3841666667 -71.9080555556 280.746 +42.3825833333 -71.8695277778 223.456 +42.3820277778 -71.8334444444 158.642 +42.3675000000 -71.7769444444 121.810 +42.3633333333 -71.7697222222 118.766 +42.3851111111 -71.8003333333 119.144 +42.2497746333 -70.9420849000 44.5 +41.8236701194 -71.0038501778 66. +42.4057771750 -71.0995237694 9.6 +42.4097850222 -71.1224231139 44. +42.7382583333 -73.2109333333 180.921 +42.7891666667 -70.8091666667 2.607 +42.0063888889 -70.6019444444 2.55 +42.2425000000 -70.8897500000 4.32 +41.6783277778 -71.1552722222 72.563 +42.6187777778 -71.4436388889 72.750 +42.3330555556 -71.2433333333 31.988 +41.5952777778 -70.9088888889 5.05 +42.2841666667 -72.2175000000 146.596 +42.2744444444 -71.1205555556 15.203 +42.0683333333 -71.1961111111 65.028 +42.0052777778 -71.2025000000 38.591 +42.5341666667 -71.1591666667 26.431 +42.6866666667 -71.1569444444 33.518 +42.8019444444 -71.0644444444 36.453 +42.8419444444 -70.8605555556 9.305 +42.2961111111 -71.2997222222 46.923 +42.2285277778 -71.7282222222 115.156 +42.1161111111 -72.5494444444 61.627 +42.2621031444 -71.6595235528 101.544 +42.4586111111 -72.6213888889 55.970 +42.1472222222 -70.7427777778 35.156 +41.9000000000 -70.5497222222 8.317 +42.1161111111 -72.6263888889 20.221 +41.8875833333 -70.9216944444 36.361 +42.3216666667 -72.1647222222 242.529 +41.6175000000 -70.6225000000 13.414 +42.4452777778 -72.6155555556 55.873 +42.1330555556 -72.7894444444 50.073 +42.2680277778 -73.0313055556 340.722 +42.4712458972 -73.1895086389 324.536 +41.6168777778 -70.5092944444 19.694 +41.6825000000 -69.9902777778 15.804 +42.2166666667 -72.8566666667 102.188 +42.8238888889 -70.8219444444 3.271 +42.6944444444 -71.4280555556 34.418 +42.8204916667 -70.8268333333 1.910 +42.3744444444 -71.8786111111 229.944 +42.6108333333 -73.1291666667 261.394 +41.9852926833 -71.3643436111 90. +41.9597416750 -71.3267686472 70. +41.8672904472 -71.1294493333 +42.3479142222 -71.0261042889 4. +42.3477000056 -71.0255703444 4. +42.3474859389 -71.0250364472 4. +42.3472716472 -71.0245026917 3. +42.3470573917 -71.0239691194 4. +42.3468431750 -71.0234352972 -0. +41.9680716583 -70.7009212389 +41.9677550806 -70.7004417028 +41.9687023889 -70.7019192778 +41.9683864889 -70.7014263667 +42.0304765583 -70.0931503611 +42.4280613833 -70.9258910389 22.2 +42.4179301333 -70.9045648111 18. +42.4277773944 -70.9208776556 25. +42.4266938278 -70.9216125222 +42.4309878194 -70.9339370083 +42.4307808333 -70.9339077444 +42.4191626389 -70.9050081778 +42.4207603139 -70.9120704750 +42.4278603889 -70.9257630806 +42.2950568222 -71.2183282333 44.80 +42.3008131083 -71.0384583194 2.0 +41.7573100472 -69.9612775833 11. +42.3043891361 -70.9050423833 36.6 +42.2772644250 -70.8672398889 +42.3044277778 -70.9051527778 38.25 +42.3046230667 -70.9048157472 38.16 +42.3040611639 -70.9049413833 +41.2812460833 -70.1014452167 +41.2932335611 -70.1144419278 15. +41.3900448639 -70.0456233000 3. +41.2848517833 -70.1400042083 +41.2534503861 -69.9773832111 +41.2823733944 -70.0989672889 14. +42.3229803694 -70.9192537917 +42.3230164972 -70.9191572306 +42.3227936028 -70.9187157278 +41.3333862778 -70.7404351000 0. +41.4252162278 -70.8680238278 46. +41.4369783778 -70.8665652111 +41.4237464694 -70.8950427806 +41.4268903444 -70.8762609472 +41.6243815944 -70.8351412611 1. +41.8606034639 -69.9520686472 33.3 +41.8553670750 -69.9500074278 18.8 +41.8551814667 -69.9509440750 18.5 +41.8606075389 -69.9520490472 33. +41.7348361417 -69.9256609556 -0. +41.4902133028 -70.7421002833 52. +41.5098721417 -70.7130992917 16. +41.4902372222 -70.7421188944 53.426 +41.4902305556 -70.7420361111 52.524 +41.4903222222 -70.7421583333 52.704 +41.4504675667 -70.7884058972 30. +41.7206227000 -71.1571127722 3.1 +42.3895487250 -71.0483773611 32. +41.3884421833 -70.6129845556 +42.3766666667 -71.0483333333 3.275 +42.3765892889 -71.0542555806 +42.3468000472 -71.0233280361 -0. +42.3023107306 -70.9311338361 24. +42.3561497583 -71.1070471556 3. +42.1641232167 -71.0623275444 +42.3611451056 -71.0979971306 3. +41.7577021000 -70.4593243389 6. +41.7939240278 -70.0007290778 20. +42.5935959250 -70.6817262639 6. +41.4376455750 -70.8791222778 9. +42.5937777750 -70.6815697306 1. +42.5939869139 -70.6821767278 6. +42.0790146000 -70.2205556833 12.4 +41.8976014056 -71.0159593000 20. +41.6508719528 -70.7956505833 +41.6508783583 -70.7956475500 2. +42.2767629833 -71.2036758639 51. +42.3028394528 -71.2191298361 57.8 +42.2867307556 -71.2313903083 +42.2778795306 -71.2665180917 +42.2810881083 -71.2364588778 +41.6367155833 -70.9264578722 +41.6092904361 -70.8908359806 +41.6343189917 -70.9308905667 32. +41.6241348056 -70.9024047250 9. +42.3169055611 -72.1262091194 +41.5617310583 -70.6307335389 +42.5103512111 -72.3538445222 398. +42.5104614306 -72.3537719389 397.22 +42.5105888889 -72.3537555556 395.91 +42.5104055556 -72.3536333333 397.87 +42.5163093556 -71.4772136722 135. +42.7654208083 -70.8690086806 6. +42.6973992722 -70.8513327944 8. +42.7958618444 -70.8411583528 +42.8106332111 -70.8729187194 +42.8156946917 -70.8728718056 +42.8089085889 -70.8737712278 +42.7994133694 -70.8627220778 15. +42.8140165583 -70.8817831222 +42.8084319556 -70.8660317667 +42.8178884444 -70.8923087694 +42.8087383389 -70.8727550528 17. +42.8131840139 -70.8862425750 +42.8140651722 -70.8824674556 +42.8151427722 -70.8190338556 +42.8151144500 -70.8189843667 3. +42.8079806056 -70.8129277472 +42.8112403083 -70.8739575028 +42.8105976250 -70.8714949167 +42.8112661583 -70.8637479389 +42.8210475000 -70.8958673389 +42.8115244167 -70.8648343583 +42.8112454500 -70.8660734806 +42.8014035583 -70.8685019444 +42.3563888889 -71.1850000000 9.961 +42.3356170389 -71.1704874417 +42.2997500194 -71.2043169417 +42.3552154417 -71.1966992056 +42.3374029611 -71.2090064417 +42.3245614111 -71.1900100028 +42.3319837528 -71.2454899806 +42.2842003833 -71.5811425667 167. +41.6890141500 -71.1594759361 +41.6888875194 -71.1594021917 +42.7882718472 -71.0638179111 +41.9599306389 -70.7160713667 96. +41.6749142861 -70.0366252417 16. +41.9586064111 -71.0446729833 24. +42.6950970250 -71.5699469111 149. +41.2572157306 -70.8305012361 12. +41.2532127194 -70.8132039417 35. +41.2500298222 -70.8085094000 +41.2557397194 -70.8052252722 20. +41.2569625167 -70.8311248750 14. +42.3655595083 -71.9759600750 347. +42.3461842444 -71.4490128556 +42.3464942278 -71.4521138778 +42.3461163694 -71.4490867306 183. +41.5157835889 -70.6551102167 13. +41.5648327694 -70.9432580167 +42.1586933806 -71.3106224806 112. +41.5370100833 -71.1231018250 53.1 +41.5369260306 -71.1233783472 53. +41.2839724889 -70.1502350722 21. +41.2839773667 -70.1502351778 24. +41.9407865000 -71.3359553194 90. +42.0144627167 -71.2882787667 58. +42.0011263361 -71.3140876444 98. +41.9962075694 -71.3222046972 58. +41.2902377944 -70.0916373222 1. +41.6955343806 -69.9342554694 +42.2810632694 -72.0854813278 338. +42.3663881111 -71.0545866389 +42.1640582750 -71.0666292167 61. +41.7450083611 -70.2077711500 16. +41.7450446250 -70.2077230694 16. +41.7370993444 -70.1926590250 +41.8539764556 -71.1104345833 2. +41.8569635028 -70.0068481944 14. +42.0655956667 -71.1041837528 40. +42.5265947639 -70.7937098250 7. +42.8192646333 -70.8081715417 -0. +42.8191883389 -70.8069868056 -0. +42.8190988194 -70.8056965056 -0. +42.5208526833 -72.4047259167 +42.3016991833 -70.9294390750 29. +42.8136237194 -70.8574041250 +41.6948024722 -70.6045392667 18. +41.2939559556 -70.1750988694 9. +42.0409761833 -70.0615192056 +41.9555392028 -71.0703122778 +42.1653446194 -70.7523800583 10. +42.1160542333 -70.7748699111 35. +42.2104031500 -70.7372910778 +41.4381249056 -70.6669869694 +42.3667582833 -71.0613160917 +42.6429871944 -71.2463419250 +41.7119652639 -70.6256328389 1. +41.7119648806 -70.6256332611 1. +42.3821681139 -72.5711856250 157. +42.2295132806 -70.9447670917 +42.2428239056 -70.9452153083 +42.3177424361 -72.6395564694 +42.3207901667 -72.6401101083 +42.0080588639 -71.7991761444 192. +41.9676855667 -71.1663020917 32. +41.4566547500 -70.6649522667 +41.9695289750 -71.1815645417 32. +41.9931820667 -71.1008528361 24. +41.9379962944 -71.1556700194 17. +41.4568471056 -70.6639861306 +41.9625152278 -71.1303537139 23. +42.4071678583 -71.0262061444 10.7 +42.1368843889 -70.8015995417 62. +42.1906706722 -71.2144423111 +42.1545715278 -72.6846516778 210. +41.7911653361 -70.5605589667 30. +42.1102253278 -73.0350726806 496.7 +41.5569348583 -70.9386219639 +42.3606575083 -71.0715098194 20. +42.3600241639 -71.0730494278 1. +42.3611056944 -71.0729796417 1. +42.2796110778 -70.9556424833 7.8 +42.3481284861 -71.0266380583 2.9 +41.6380416778 -70.6532353722 1. +41.6409173500 -70.6497348000 +42.6358333333 -71.2061111111 37.057 +42.3297222222 -71.1913888889 43.219 +42.4354121806 -71.0722465000 17.1 +41.9141830361 -71.2781951944 81. +41.9136640806 -71.2782974861 81. +41.8605672167 -70.7998500556 24. +42.1989334417 -72.6401340278 145. +42.1978967139 -72.6396980806 142. +42.4751713000 -71.0227337472 34.1 +42.4624057389 -70.9874592806 21. +41.8703946417 -71.1343009250 15. +42.2562067500 -72.5776325083 72. +42.4886841361 -70.9924667083 +42.0740789611 -70.2052502861 30. +42.0734033333 -70.2073127306 28.7 +41.7897303361 -70.5708961694 30. +41.4624099139 -71.0338292111 +42.0547544694 -71.0096016333 21. +41.7054760778 -69.9331196472 -0. +41.6976073306 -69.9287762083 +41.7416910333 -70.1431537806 18. +41.7072666333 -69.9306473167 +42.7687048750 -70.8497442833 51. +41.2773734944 -70.1012587944 20. +42.6392880472 -70.6845064167 +41.7503553861 -70.6441222222 27. +41.7502980111 -70.6441661639 27. +42.5948112750 -72.3119497917 234.3 +41.9093634722 -71.0400783250 24.52 +42.5749571944 -72.2890073167 163.89 +42.5615184917 -72.2911764472 168.19 +42.4421884722 -71.1836755028 114.0 +42.3622884444 -71.0823301278 4. +42.2690130083 -71.8767856000 309.46 +42.2662930028 -71.8836970556 297.61 +42.2656261556 -71.8664373806 300.72 +42.3915000167 -71.0107711861 66. +42.2691640556 -71.0943609500 17. +41.7923231556 -70.0138204472 9. +41.7627015167 -69.9334222111 +41.7846212278 -69.9745300500 +42.5027891861 -70.9646256917 87.0 +41.6310982194 -70.3820413278 18. +41.6282987111 -70.3854167028 +41.6172022056 -70.3691415972 -0. +42.2530767889 -70.8972648167 40. +42.3559037639 -71.0730870306 3. +41.8584601000 -70.5255657278 -0. +42.3414384722 -70.8776389667 +42.3414213528 -70.8776162056 +42.3414577639 -70.8776036139 15. +42.3415703861 -70.8796362972 +42.3418965389 -70.8760491306 1. +42.3413582389 -70.8755920056 -0. +42.1843869028 -71.1698002833 21.14 +42.1919722278 -71.1644202000 13.68 +42.1927757111 -71.1781321556 14.1 +42.7380099167 -70.8814386194 56. +42.3515888778 -71.1153698583 6. +42.1007510806 -71.8141696167 +41.6571305250 -70.9081431917 -0. +41.6186401250 -70.4148075222 9. +42.1669444444 -71.1541666667 28.515 +42.2830555556 -73.2494444444 262.767 +42.7195500000 -73.1893138889 184.439 +42.0908333333 -70.6425000000 3.99 +41.6655555556 -71.1563888889 57.884 +42.6116666667 -71.4563888889 63.325 +42.3300000000 -71.1577777778 41.983 +42.3111111111 -72.2080555556 166.936 +42.2900000000 -71.1191666667 11.239 +42.0613888889 -71.2019444444 58.876 +42.0055555556 -71.2016666667 38.260 +42.5200000000 -71.1463888889 22.915 +42.6947222222 -71.1622222222 19.046 +42.7744444444 -71.0727777778 6.325 +42.8400000000 -70.8347222222 2.753 +42.2941666667 -71.3188888889 45.182 +42.2352777778 -71.7491666667 122.130 +42.1266666667 -72.5311111111 65.704 +42.2719444444 -71.6097222222 90.471 +42.4664873472 -72.6168184889 66.285 +42.1233333333 -70.7372222222 29.585 +41.8545277778 -70.5376388889 8.242 +41.8933333333 -70.9419444444 18.834 +42.3227777778 -72.1775000000 190.497 +41.6038888889 -70.6347222222 3.826 +42.1363888889 -72.8013888889 51.550 +42.2641111111 -73.0480555556 391.196 +42.4669444444 -73.2044444444 303.712 +41.6180555556 -70.4863888889 16.749 +41.6869444444 -69.9710555556 12.593 +42.6758333333 -71.4219444444 33.840 +42.6323888889 -73.1136666667 231.654 +42.4220532667 -71.0065878972 3. +42.4530406083 -71.0231996917 14. +42.4612369194 -72.3525845861 390. +42.4612372278 -72.3525819917 390. +41.5741176833 -70.9392683028 +41.5941938528 -70.9427832472 +41.5888751944 -70.9406545167 -0. +41.9021303778 -71.0529172667 4. +42.5264841806 -70.9543279583 53. +42.2937936500 -71.0886024667 20. +42.3939158222 -72.3500377944 319. +41.6897261528 -69.9520082611 +42.2040433306 -71.0690730944 53.1 +42.3589815500 -71.1471130778 12. +42.2246336083 -72.3103295750 126.7 +42.5417623056 -71.8315287806 274.2 +42.2204350111 -72.3137672306 122.6 +41.6269400917 -70.9091229778 +41.5280923167 -70.9914657972 +41.9878188333 -70.0123122472 54. +41.6973352917 -71.1763309278 14. +42.3499017778 -71.0650809306 33.0 +42.3567512056 -71.0619348333 +41.7854252250 -70.5685297861 30. +42.2292702806 -70.7799025972 26. +42.5705770750 -71.8596421528 294. +42.8103738667 -71.1220170500 66. +42.8109572639 -71.1223622806 67. +41.4493506750 -70.8340804278 36. +41.5313741167 -70.9809672083 -0. +41.8220348389 -70.8851669306 31. +42.6506753194 -71.3321996056 +42.3032384806 -71.8972735056 +41.7761799139 -71.0538356167 66. +41.7390352722 -70.3816129222 14. +41.7390196556 -70.3816365222 14. +42.3023505583 -71.1866660694 87. +42.5259173861 -70.9293796889 +42.5246751944 -70.9269219028 +42.5289127306 -70.9313524778 +42.5294086278 -70.9944422583 +42.5257706694 -70.9257975861 +42.5243196556 -70.9263379667 +41.8096153722 -70.5379862333 +41.6909688889 -70.7516986944 +41.8086631306 -70.5397948333 52.7 +41.3553449139 -70.7349452389 91.972 +42.0755895583 -70.1591026028 +41.3554222222 -70.7349000000 92.196 +41.3553000000 -70.7350361111 92.677 +41.3550000000 -70.7347222222 91.035 +42.0474371333 -72.3401891000 369. +42.0474376028 -72.3401900667 371.9 +41.4995477500 -71.1207073583 9. +42.2983758806 -70.9303404306 +42.2985112361 -70.9316520861 +42.2508410972 -71.3047487028 125. +42.0716953389 -70.8101323833 20. +42.3506047667 -70.9589495806 33.38 +42.3499379556 -70.9575135667 32.7 +42.3440477694 -70.9531865389 5.0 +42.3505694444 -70.9583833333 32.73 +42.3501352583 -70.9585345028 32.70 +41.4510879194 -70.9234426444 20. +42.4484411639 -71.0375955750 70. +42.3734865972 -71.0518900361 39.1 +41.5206770806 -70.6824236333 +42.6583520333 -70.6832443639 1. +42.4936730361 -70.8362877833 19. +42.4936722167 -70.8361970167 20.90 +42.4937863194 -70.8362211889 20.81 +42.4936500000 -70.8360777778 18.97 +41.7090467722 -70.8843292500 39. +42.4209748833 -73.3797857972 631.4 +41.2720282306 -70.2017784722 +42.4883918139 -72.1868133694 331. +42.0803091556 -70.6872204167 40. +42.2710627944 -71.1132915306 52. +42.4815291000 -70.8755083556 +42.4552775111 -70.9724659278 4. +42.3783651611 -71.0480598528 3. +42.3779246250 -71.0479348917 3. +42.3774840861 -71.0478099722 3. +42.3788056833 -71.0481848306 3. +42.3770534222 -71.0476876806 3. +42.3716631861 -71.0511144750 1. +42.3720073833 -71.0515058000 1. +42.3723515556 -71.0518972083 1. +42.3726956278 -71.0522888139 1. +42.3727380917 -71.0523368722 1. +42.3713190139 -71.0507230944 3. +42.3722541889 -71.0500758306 1. +42.3725974750 -71.0504688806 1. +42.3729405389 -71.0508619056 1. +42.3732837806 -71.0512549306 3. +42.3733257222 -71.0513029083 3. +42.3719109611 -71.0496827528 -0. +42.3729073056 -71.0496873222 1. +42.3732506167 -71.0500798306 1. +42.3735940556 -71.0504723111 1. +42.3739175528 -71.0508424694 3. +42.3725638306 -71.0492945028 -0. +42.3752186389 -71.0487172222 1. +42.6182210667 -70.9538427806 +42.2798998028 -70.9371561639 +42.6746728611 -70.6236425472 +42.6748525222 -70.6234114972 +42.6796409889 -70.6255300361 +42.0992390833 -71.3862108472 123. +41.8494615389 -70.9952249500 59. +42.6722798333 -70.6287103389 63. +42.8608653889 -70.8477193444 10. +42.0522110083 -70.1886350056 27. +42.1833832278 -70.7771244083 40. +42.1891267111 -70.7787828000 40. +41.6689822361 -69.9926670944 14. +41.9033862722 -71.0490102528 3. +42.4387875250 -71.0669601889 13.1 +42.7210112056 -73.1663345333 577. +42.2422119750 -71.2107608333 98. +41.7085899833 -70.5657810500 93.07 +41.7096316528 -70.2078406972 11. +41.9673180306 -70.7638452972 90. +41.6870725444 -70.8028027528 +42.6972298639 -71.3222894333 +42.4292893806 -70.9808657806 2.5 +42.0579815944 -71.3177917528 134. +42.3600212917 -71.6613257111 218. +42.0216043000 -70.7715582472 40. +42.4482138889 -73.2533055556 315.423 +42.4294320278 -73.2859770028 348.44 +42.4488792389 -73.2522226750 315. +42.4446771694 -73.2782919389 +42.4444455333 -73.2788495667 +42.4482138167 -73.2533050639 315.93 +42.4540961472 -73.2517139694 +42.5161460222 -72.9164834778 +42.2607512972 -70.8785718861 9. +42.8049302528 -70.9289704778 34. +42.5465907306 -70.9656496083 53. +41.7144444167 -70.0869621333 15. +42.7718404972 -70.8022439139 15. +42.7704105833 -70.8013868694 12. +42.8065867417 -70.8102525750 +42.8094049306 -70.8099136722 +42.7762589472 -70.8053434917 15. +42.7768828528 -70.8044153889 6. +42.7999159806 -70.8132027917 +41.9795253833 -70.6532203806 +41.9805466833 -70.6864138194 53. +41.7628689472 -70.6326460750 5. +41.7874530167 -70.6270557944 12. +41.8063327111 -70.6318801194 15. +41.9386985583 -70.6550676028 +41.9572365944 -70.6667355028 +41.9555081417 -70.6648480278 +41.9405822750 -70.6068243333 +42.0033667333 -70.6006130750 19.1 +41.9577908889 -70.6634062444 +41.9582912861 -70.6622513028 +41.9798456806 -70.6567651028 +41.9675238361 -70.6447857694 +41.9559309389 -70.6621565167 +41.9561098417 -70.6618993111 +41.9538752111 -70.6584590500 +41.9176014111 -70.5484953278 +41.9578509139 -70.6662004000 +41.9601352778 -70.6758770111 +41.9127039528 -70.5482704500 +41.9616438972 -70.6700796778 +41.9141671556 -70.5480139278 +42.0034315778 -70.6006874528 19.14 +42.0034138889 -70.6001138889 20.52 +41.9523446111 -70.6811286000 +41.9557346056 -70.6647267861 +41.8054158472 -70.6166358222 15. +41.9558459833 -70.8151010889 32. +42.0046223694 -70.7945456028 20. +41.6919686222 -70.6211124056 +41.7777098389 -69.9400591250 16. +41.7686681667 -69.9388210250 +41.3158089111 -70.0320481056 4. +41.3157883778 -70.0321282222 4. +42.6516360528 -72.7744214083 571. +42.5340765806 -72.5924983500 256.9 +41.6078762889 -69.9883976361 3. +42.3102499333 -70.8826600556 +42.6876379833 -70.6211526111 +42.6909765139 -70.6322072250 +42.3538379750 -71.0484672056 3. +41.6179868889 -70.2604189278 12. +41.6179857583 -70.2604219167 12. +41.6096659583 -70.2662212139 +41.6222358222 -70.2665717917 +42.4410579083 -70.9608816722 3. +41.5277027389 -70.6754158028 26. +42.0211118167 -70.1827968222 -0. +42.3587701583 -70.9717837611 +41.5630364806 -69.9980142917 1. +42.3814615389 -71.2623753306 77.4 +42.6197335083 -70.7041093528 +42.3687585528 -71.0553789250 3. +41.6711667833 -70.4496695000 32. +42.4581485944 -71.0889626917 49.4 +41.8007987806 -70.7255591667 26. +41.2942202583 -70.1704963306 9. +42.5188196028 -71.7136289194 168. +42.6567889861 -70.6344299750 69. +42.4071731944 -71.0252864139 5. +42.7364783111 -71.2551446361 +42.5238550972 -73.3099591556 704. +41.6108750667 -71.0734651306 35. +41.2941921250 -70.1714217472 9. +42.3619756944 -72.1988327222 347. +42.7262095028 -70.9340579528 29. +41.5446505000 -70.0143983056 -0. +42.0469246667 -70.6524904278 55. +42.4012417222 -71.0306177139 55. +42.4012068556 -71.0306300361 52. +42.4012072528 -71.0306297778 52. +42.4010783167 -71.0302040972 46. +42.4010201583 -71.0295419972 75.0 +41.7154393806 -71.1592827528 2.1 +42.8657910806 -70.9380349500 101. +42.8657668417 -70.9380532056 101.0 +41.7835304694 -71.1778310889 44.19 +41.7836111111 -71.1769444444 41.88 +41.7840084722 -71.1772052556 43.45 +41.7834000000 -71.1780583333 44.32 +42.1826836944 -71.6155246528 181. +41.8560789944 -70.9802425917 +42.3775613222 -71.2777211861 140. +42.4548285806 -71.8814323194 390. +42.6062623194 -70.6458402389 32. +41.3657399667 -70.7470292861 94. +41.3701911667 -70.7547440194 +42.5444951417 -72.1716329083 422. +42.1929081556 -70.8570487000 75. +41.4447637833 -70.5787841444 +42.3547007278 -72.0471531139 348. +42.7052543944 -70.8920298139 80. +42.7052149389 -70.8920184083 80. +42.2616811694 -71.7183597806 180. +42.3817792306 -71.0933667528 30. +41.9391834889 -71.0955633167 63.1 +42.3885074917 -71.2537696917 145.6 +42.0845369361 -72.7043381889 197.9 +42.0522841444 -70.1885250639 27. +42.0526568778 -70.1868439028 +42.0575661278 -70.1771858056 +42.0456648667 -70.1913788389 +42.0451493611 -70.1918194306 +42.0572636778 -70.1769202722 +42.0498169194 -70.1881547639 +42.0556669056 -70.2260620167 15. +42.0482728528 -70.1887887722 +42.0476581722 -70.1924314139 +42.0478490750 -70.1902440778 +42.0553780972 -70.2115010806 +42.0485893333 -70.2194964861 +42.0510603722 -70.1877072722 +42.0444786972 -70.1046599556 +42.0447109806 -70.1930635667 +42.0378928028 -70.2023127778 +42.0323235472 -70.2088664667 +42.0526221917 -70.1925091611 +42.0512720583 -70.1876403667 +42.0758700556 -70.1535019306 10. +42.0670392361 -70.1477191028 10. +42.0505156361 -70.1883732778 +42.0525911611 -70.1880463222 +42.2104132611 -70.7373084417 +42.3463888889 -71.0827777778 -1.323 +42.3473118556 -71.0828776667 212.3 +42.4274101528 -73.2941473750 355.86 +42.4251822583 -73.2862546306 349.50 +42.0909067722 -70.7186838972 44. +42.4650166528 -71.0456323611 56. +42.4649281472 -71.0436670944 44. +42.0747095083 -70.2163506111 1.78 +42.0722395250 -70.2214553889 1.73 +42.0692916194 -70.2267021750 1.74 +42.6405555556 -71.3297222222 32.002 +41.9073284583 -70.7230459556 40.48 +42.6132242167 -70.6643866722 +42.0238888889 -71.2188888889 45.898 +42.6241666667 -71.2644444444 41.452 +42.3063888889 -73.2522222222 270.792 +42.7026944444 -73.1652777778 189.708 +42.6647222222 -70.8061111111 7.17 +42.2486111111 -70.7675000000 13.36 +42.6075000000 -71.4744444444 80.888 +42.3313888889 -71.1202777778 5.153 +42.3220833333 -72.1765000000 179.635 +42.3058333333 -71.1102777778 10.063 +42.0547222222 -71.2030555556 59.187 +42.0077777778 -71.2066666667 41.005 +42.5088888889 -71.1397222222 18.930 +42.7002777778 -71.1650000000 13.515 +42.7680555556 -71.0594444444 2.623 +42.2870138889 -71.3354138889 57.458 +42.2492444444 -71.7608055556 150.805 +42.1369444444 -72.5175000000 66.741 +42.2691666667 -71.5755555556 84.849 +42.1100000000 -70.7288888889 21.049 +41.8030555556 -70.5455555556 37.440 +42.1391666667 -72.6263888889 20.703 +41.9013888889 -70.9825000000 15.685 +42.3108944444 -72.1894555556 182.254 +41.5888888889 -70.6341666667 4.575 +42.4780555556 -72.6127777778 61.222 +42.4947222222 -72.6077777778 67.441 +42.1480555556 -72.8141666667 66.038 +42.2747777778 -73.0560277778 447.985 +42.4605555556 -73.2080555556 302.565 +41.6281222222 -70.4722305556 21.783 +41.6819444444 -69.9502777778 11.621 +42.2422222222 -72.9141666667 134.442 +42.6416666667 -71.3822222222 29.739 +42.3031500111 -72.3320974667 262. +42.2988801806 -72.3345051750 +41.6700670389 -70.4985612194 30. +42.5224405222 -71.0806677750 25. +42.5243623528 -70.9687979611 64. +42.2707000528 -71.1125385278 53. +41.7093288333 -71.1484189528 15. +41.3089638444 -70.7714251917 19. +41.4980402250 -71.1180194750 11. +41.5004213083 -71.1195727639 14. +41.4989525361 -71.1187384111 12. +41.4988580111 -71.1190988389 12. +41.4990187583 -71.1198837250 9. +41.4995747083 -71.1207146333 9. +41.5004074278 -71.1195656056 14. +42.2582690722 -71.0322093167 20. +42.2592306444 -71.0314294667 20. +42.2497450333 -71.0023550167 +42.2475430056 -70.9668545694 +42.2796748972 -70.9548612389 +42.2473946222 -70.9669989056 +42.2521735194 -71.0006659556 +42.2511170167 -71.0031087778 +42.2754050361 -71.0307827972 +42.2747003972 -71.0307616278 +42.2743189306 -71.0414889361 +42.2750341472 -71.0414245917 +42.2736084056 -71.0414426222 +41.7428264361 -70.1472303944 23. +41.7589616444 -70.1430266111 14. +42.4244698000 -71.6319475639 195. +42.1977777778 -71.1530555556 14.477 +42.6280555556 -71.3086111111 34.253 +42.6733333333 -70.7911111111 12.01 +42.2505944444 -70.7644777778 7.77 +42.6038888889 -71.4941666667 77.455 +42.3313888889 -71.0955555556 11.265 +42.6172222222 -70.6713888889 14.65 +42.3416666667 -72.1525000000 175.356 +42.3166666667 -71.1041666667 9.474 +42.0875000000 -71.1880555556 78.472 +42.0125000000 -71.2208333333 39.275 +42.5010833333 -71.1422500000 27.214 +42.7022222222 -71.1530555556 15.644 +42.7644444444 -71.0544444444 3.887 +42.8522222222 -70.8683333333 9.464 +42.2836111111 -71.3466666667 55.468 +42.2525000000 -71.7827777778 165.571 +42.1405555556 -72.4955555556 71.953 +42.2658333333 -71.5372222222 80.194 +42.4897222222 -72.6105555556 65.434 +42.0980555556 -70.7180555556 9.594 +41.7877777778 -70.5436111111 17.791 +41.8869444444 -70.5372222222 9.959 +42.1538888889 -72.6316666667 24.474 +41.9052777778 -71.0291666667 17.001 +42.3117222222 -72.2080277778 166.659 +41.5743611111 -70.6228888889 13.848 +42.5405555556 -72.6000000000 65.893 +42.1586111111 -72.8169444444 76.433 +42.2889166667 -73.0598611111 479.830 +42.4530555556 -73.2280555556 302.956 +41.6577777778 -70.3316666667 17.220 +41.7827777778 -70.8902777778 22.812 +42.2577777778 -72.9466666667 154.750 +42.6377777778 -71.3763888889 31.609 +42.1583333333 -72.7183333333 80.11 +42.6891583333 -73.1057111111 221.203 +42.8468692194 -70.9012797833 25.82 +42.0806121056 -70.2068976639 8. +42.0623169111 -70.2430915556 12. +41.7137868167 -71.1712872028 1. +41.7745396361 -70.4966495972 +42.4812771694 -71.1623051000 74.9 +42.2878217917 -72.1842010222 368. +42.6285073639 -70.6490489278 62. +42.6168495000 -70.6780002000 17. +42.3129727194 -70.9514805194 +42.5359542694 -70.8751417417 +42.1744884750 -71.0488340722 +42.1330646000 -71.0360315833 66. +42.5938805000 -70.6818678722 3. +41.6240581500 -70.8995562861 +42.4417375278 -71.0581735694 63. +42.0841498917 -71.1504270306 116. +42.0906856944 -71.1425237417 131. +41.3468896583 -70.8329828083 27. +41.9226613806 -71.0517120222 20. +41.9265385833 -71.0212993611 30. +41.8900449278 -71.0118771667 8. +41.9823462111 -71.0853302944 +42.6819444444 -70.6286111111 31.50 +42.5256718000 -71.1054028278 68.9 +42.5190877389 -71.0955969556 +42.5258918250 -71.1025994361 +42.5809706361 -71.1268795278 +42.5819624944 -71.1290663167 +42.5310964583 -71.1056182917 +42.2395604056 -71.1336001139 26.2 +41.2892550083 -70.0920492972 +42.0215895778 -70.1855758972 +42.0230353972 -70.1796711222 +42.0268339417 -70.1768121306 +42.0292697472 -70.1721916556 +41.3035644417 -70.0720429556 1. +41.6699985500 -69.9977289028 15. +41.5211923028 -70.6759296861 +41.7875745056 -70.6271833306 15. +41.7874892722 -70.6285519833 15. +42.0303800333 -71.3727024694 139.3 +41.5294490333 -70.6866475167 +41.4611029500 -70.5568910944 +41.4963601056 -71.0390646250 +41.5224385389 -70.6866093778 +42.4412023222 -71.7410939917 209. +42.3450603056 -71.3508585500 124. +41.7082106639 -69.9311542194 -0. +41.6688356972 -69.9846728694 13. +42.3491901083 -71.3088618639 +41.7748054917 -71.2835738889 2. +41.7831562694 -71.1877799694 26. +41.8368615750 -71.2019662111 +41.7748833944 -71.2924461667 3. +41.8655074111 -71.2876166528 +41.8653886750 -71.2868781306 +42.1373192111 -70.9724767750 59. +42.1346374056 -70.9734427194 59. +42.1374735250 -70.9702576583 59. +42.1379224861 -70.9725864806 59. +41.7204018972 -71.1571598472 2. +42.3942554694 -71.6698902694 170. +42.3951029333 -71.0979069056 35.9 +42.4468364889 -71.0048525083 +42.4184849472 -71.0012852278 +42.4079099278 -71.0132681889 +42.4164247111 -71.0118891889 +42.4037371917 -70.9858787056 +42.4006427389 -71.0129445472 +42.4026943389 -71.0068853333 +42.4025295028 -71.0077986167 +42.4140958500 -70.9895155000 +42.4062487528 -71.0331694806 +42.4072463417 -71.0106042056 +42.4038373000 -70.9860353389 +42.4161980556 -71.0270743250 49. +42.4158619417 -71.0273387722 49. +42.4095216556 -71.0217300833 55. +41.7268801583 -70.9812953139 55. +42.3829680861 -71.9325820750 386. +41.9571113917 -70.0733335833 18. +41.8075261722 -71.1282177889 60. +41.9461133889 -70.7653549139 80. +41.7592431806 -71.1192310944 38. +42.1421002000 -72.3484810778 297. +42.8150186167 -70.8648892556 1. +42.3688383528 -71.0569238556 2.5 +42.3528505972 -71.0715305750 +41.8599612528 -71.1042213750 3. +41.7224069667 -71.1603236222 3. +41.9022465500 -71.0406305333 17. +41.8075292528 -70.7252356861 27. +41.2848375944 -70.1397550083 18. +42.4796697417 -70.8368891750 +42.5849608444 -71.3649269194 +42.5850100528 -71.3650824306 124.5 +42.5850044556 -71.3650031278 +41.7316139167 -70.8223409889 14. +42.3536111111 -73.0922222222 395.521 +41.7008929222 -70.1898552972 15. +41.7246007306 -70.6212807556 1. +41.6311931056 -70.6432289250 1. +42.0131369500 -70.6362353556 +41.8062545806 -70.7438422333 24. +41.7248341417 -70.6212165472 1. +41.7031600361 -70.1917795667 9. +41.7031589056 -70.1917811583 9. +41.7994530222 -69.9938011833 20. +41.8955089556 -71.0363968583 15. +41.7702032806 -70.0789358000 12. +42.2397059250 -72.4409548694 253. +42.1337285222 -70.9163774083 +42.1302098139 -70.9152389833 30. +42.1165483444 -70.9314928806 34. +42.1698115361 -70.8935174278 34. +42.2657478139 -70.8522956778 +42.0960373750 -70.9060728528 54. +42.6607120417 -70.6118966556 +42.6590319056 -70.5978839972 +42.6564803917 -70.6198189306 +42.6579310306 -70.6188546833 +42.6722144167 -70.6290644194 +42.6577127861 -70.6198911639 +42.6446776472 -70.6292525694 20. +42.6595412861 -70.5975738361 +42.6590567417 -70.6215146556 +42.5824874556 -71.3211034694 71. +41.7956056028 -71.0535919889 46. +41.8797474528 -70.6915750083 66. +41.7812708389 -70.9598398889 51. +42.8556226972 -71.0196365722 78. +42.2583444861 -71.1219581056 43.8 +41.6360901500 -70.8990085528 -0. +42.5803208833 -71.8107056250 255. +42.5803021917 -71.8107013556 254. +42.3046152917 -71.0629887333 36.4 +42.2236806000 -71.7762836389 191. +41.4994665806 -71.1193768056 +42.2708338028 -71.1287035944 78. +41.5401711889 -70.9302441722 15. +41.5401703500 -70.9302474528 14. +41.5396558306 -70.9301410528 11.87 +41.7528221944 -70.5378761361 82. +42.2552163500 -72.9866489278 546.5 +42.2296436583 -71.0435934389 108. +42.0938923361 -70.8879372583 54. +42.2299068722 -71.0439288889 107.5 +42.5901068472 -73.1991382194 781. +42.4396253056 -71.0253574917 43. +42.3284555250 -71.0841735750 +42.3285944083 -71.1066359528 +42.3298890444 -71.0897739694 +42.3327617389 -71.1000793167 +42.3319968556 -71.0648230194 +42.3253187306 -71.0945897139 +42.3328353556 -71.1002901722 +42.4134968389 -71.1108416639 5.7 +42.4200834528 -70.9306690917 23.51 +42.4202194444 -70.9304333333 22.89 +42.4199638889 -70.9304611111 22.81 +42.3523155750 -71.0128839167 5. +42.3538737028 -71.0123909111 5. +41.6552909194 -70.9633193833 56. +42.6274510472 -70.6911554722 14. +42.6252389639 -70.6916807444 18. +42.0510935583 -73.4819777444 748. +41.7661104750 -70.6216476861 30. +42.0857388028 -70.9057026583 52. +42.5947222222 -71.2816666667 38.460 +42.3503305556 -73.2447083333 292.336 +42.6827777778 -70.7772222222 4.84 +42.3475000000 -71.0455555556 2.872 +42.2833333333 -71.0363888889 3.47 +42.6231944444 -71.4881666667 121.622 +41.9455555556 -71.2863888889 40.449 +42.1625000000 -72.3447222222 98.594 +42.3569444444 -72.1416666667 179.401 +42.3241666667 -71.0988888889 8.989 +42.0447222222 -71.2088888889 56.137 +42.3675000000 -71.0705555556 5.707 +42.3675000000 -71.0705555556 5.70 +42.4911111111 -71.1500000000 42.437 +42.7036111111 -71.1405555556 9.800 +42.7641666667 -71.0352777778 6.747 +42.8611111111 -70.8736111111 19.623 +42.2841666667 -71.3680555556 44.609 +42.2611111111 -71.7936111111 144.823 +42.1486111111 -72.4775000000 72.904 +42.2647222222 -71.4975000000 65.850 +42.4986111111 -72.6083333333 67.454 +42.0672222222 -70.6972222222 6.748 +41.7766666667 -70.5547222222 39.470 +41.8819444444 -70.5355555556 14.260 +42.1688888889 -72.6322222222 26.606 +41.9047222222 -71.0641666667 5.185 +42.2977777778 -72.2113888889 172.151 +41.5600000000 -70.6191666667 8.068 +42.5688336306 -72.5910368333 57.503 +42.1630555556 -72.8313888889 105.118 +42.3011111111 -73.0611111111 494.269 +42.4494444444 -73.2380555556 300.028 +41.6528611111 -70.3202777778 15.983 +41.7855555556 -70.8775000000 24.819 +42.2797222222 -72.9780555556 183.103 +42.6377166667 -71.3752250000 31.347 +42.1444444444 -72.7311111111 72.191 +42.6885972222 -73.1044555556 221.757 +42.3401548861 -71.0390344222 +42.3298317389 -71.0568663583 +42.3355074750 -71.0577166444 +42.3423049861 -71.0438624722 +41.6761216278 -70.1562923250 +42.0040285750 -70.8850248944 28. +42.2168744778 -72.5985510278 +42.3459186000 -71.0240943722 3. +42.3459108500 -71.0247016472 3. +42.3459022472 -71.0253084639 3. +42.3458943861 -71.0259150889 3. +42.3458853528 -71.0265216528 4. +42.3458769833 -71.0271283889 4. +42.3458679167 -71.0277350750 4. +42.3458598472 -71.0283418806 4. +41.7428851972 -69.9955596250 33. +41.6766903083 -70.6058560417 23. +42.8208317917 -70.8219159139 1. +42.8239333056 -70.8222826806 3. +42.8238840583 -70.8219100972 3. +41.8096255583 -70.5379679861 52. +41.7665152417 -70.5368502611 74.8 +42.2734014778 -70.8634009806 24. +42.5233658750 -70.8964825250 +42.5340639694 -70.8965257083 +42.5188463333 -70.8915625694 +42.5233161722 -70.8978345111 +42.5119228917 -70.9072315694 +42.5244108361 -70.8922861778 +42.5212735083 -70.8898917000 +42.5169055611 -70.8859175083 +42.5263012444 -70.8764660028 +42.5261200972 -70.8765725833 +42.5237593417 -70.9045060250 +42.5199418028 -70.8993202028 +42.5353636861 -70.8683385556 +42.8457177306 -70.8165434806 6. +42.8394364389 -70.8163686139 +42.8435097639 -70.8163589444 +42.8422561056 -70.8161939194 +42.8492240139 -70.8181140111 +42.8610363361 -70.8171340917 +42.8415110000 -70.8170821444 +42.8717885583 -70.8202290000 3. +42.8427059972 -70.8603180889 +42.8642048000 -70.8753836806 +42.2704391250 -71.1157882250 39.8 +42.6198090833 -70.6231954611 15. +42.6197628333 -70.6235502556 +42.3853759389 -72.9599184944 554.8 +41.7559776500 -69.9495987222 15. +41.3782394722 -70.4835335528 29. +42.3657791806 -71.0349621667 16.3 +42.8456225333 -70.8165196083 6.105 +41.9135135667 -69.9715484306 32. +42.8453722222 -70.8164944444 6.564 +41.7578257861 -70.4996283806 52. +41.6597728944 -70.4754484000 21. +41.6767402861 -70.4758675500 30. +41.6767871139 -70.4750666028 18. +41.6799115917 -70.4752945250 35. +41.6824131500 -70.4755441639 27. +41.6834812167 -70.4971970056 23. +41.6707418861 -70.4974412500 21. +41.7683123694 -70.5232456889 14. +41.7912879861 -70.5194529750 5. +41.6780796111 -70.4967654361 19. +41.6659652139 -70.4711977750 34. +41.7356077278 -70.3726391583 12. +41.3711095278 -70.0233648778 3. +41.7226492111 -70.2809248083 30. +42.4429247639 -70.9423644583 +41.7346853861 -70.3477005694 26. +42.2019939833 -73.3747797972 290. +42.4161293056 -71.1817761056 110. +41.2832608056 -69.9643389472 30. +41.2825135694 -69.9640722861 34. +41.2838509361 -69.9658060889 29. +41.6493678556 -70.4497974750 23. +41.2772323500 -70.1011034389 20. +41.7152647444 -70.6584945889 7. +42.3118144083 -71.0943410611 58. +41.8887695472 -71.0428280417 2. +42.5768788000 -72.5889327444 138. +42.5102433583 -70.8004151611 +41.8976201694 -71.3547008472 30. +41.8976305556 -71.3546833333 36.428 +42.4560870472 -71.0062383500 42.6 +42.4468342306 -71.0048520222 +42.4357167639 -70.9921797083 +42.4352166444 -70.9931889639 +42.2957029528 -73.2730481389 331. +42.4429657833 -71.9583243528 333. +42.1077303722 -71.0592218667 75. +41.8390324306 -70.5552069333 66. +42.3109159389 -71.0496288278 35.2 +42.6011713917 -73.0275230944 +42.3807767083 -71.0673563611 29.5 +41.7395191667 -70.1799945194 49. +41.7394954222 -70.1799912333 49. +41.7394797806 -70.1800113972 49. +42.5459687833 -70.9950679028 26. +41.8871755972 -71.0936043250 10. +41.8336710333 -71.1043749417 10. +42.3844500611 -71.0723136278 3. +42.3843989194 -71.0724076639 -0. +42.3845840556 -71.0706010389 +42.2373420000 -70.8303970861 55. +42.1916115861 -70.7173676972 +42.2078729528 -70.7223650000 4. +42.1833174361 -70.7771399472 40. +42.2232204611 -70.7884354556 3. +42.2348286194 -70.7844736639 15. +42.1619107917 -70.7062385778 +42.1989735278 -70.7556221028 38. +42.2005731444 -70.7553290889 +42.2047529389 -70.7158174556 3. +42.2047510861 -70.7158185194 +42.1889988639 -70.7308786472 +42.2006001611 -70.7597569306 +42.2047005889 -70.7163516167 -0. +42.2000617639 -70.7556483833 19. +41.2636222528 -69.9684199028 18. +41.5840208583 -70.8551835583 4. +41.7089609167 -70.4264414444 71. +41.7214040250 -70.3943445528 35. +41.7205636833 -70.3972542944 +41.7385965278 -70.4109492056 26. +41.7380090028 -70.4191745222 +41.9710723972 -71.0077948778 30. +41.6663840056 -70.6537228028 5. +41.6664143083 -70.6538332083 5. +42.6337809778 -71.8106119000 310.0 +41.7642722194 -70.0003576250 18. +41.8008456806 -70.7186695389 19. +42.3459270056 -71.0234877667 3. +41.7346863111 -70.6354351917 1. +42.5042313972 -71.6100833556 153. +41.7439222806 -70.1319892944 37. +42.3443711556 -71.1029300861 5. +41.9835981750 -70.6925801778 5. +42.7975016194 -70.9630291556 +41.6678764889 -70.7943087639 22. +41.7138064778 -71.1709242861 1. +42.2141333083 -71.7854910667 126. +41.7252915194 -70.0993447250 9. +42.0577003750 -73.1036639861 516. +42.4141583222 -70.9067581833 -0. +41.8614352194 -70.8047308972 40. +41.2837875944 -70.0508390667 30. +42.1847078083 -73.4064769028 224.93 +42.1840249611 -73.3985261500 223.47 +42.3825091472 -70.9978773583 7. +42.4719125333 -70.9556164611 43. +42.5396390028 -70.9849508611 50. +42.1404872083 -73.3641842861 +42.6069972194 -72.7165353528 +41.7317342500 -71.1421236917 3. +41.6312709917 -69.9609900833 -0. +42.3330507139 -72.3344142417 262. +42.3897696806 -72.6994024639 257.2 +41.5857207944 -69.9620542472 +41.6853130556 -70.3466490083 61.4 +41.6853050194 -70.3466573222 63. +42.4124503417 -70.9931104972 7. +42.4170066111 -71.0094624306 3. +42.4528156194 -72.4096354056 +41.2635863611 -69.9683985500 +42.2479410861 -71.9761825139 328. +42.3502693694 -70.9571848083 30. +42.7728391278 -71.0997255222 84. +42.7729265333 -71.0997582639 +42.7728795583 -71.0996721944 84. +42.0204477833 -70.7959304861 40. +42.3243890000 -71.1516893222 104. +41.5796192972 -70.6410849528 5. +41.6765959528 -70.7156331194 1. +41.7358496556 -69.9639313861 11. +42.3190884361 -71.0523995972 7. +42.0704427389 -73.0516224778 451. +42.2135641611 -71.1124759806 190.9 +41.7280663639 -71.1687203944 17. +42.4025045722 -71.0102409639 3. +41.7100585806 -71.1798432972 2.5 +41.8024925528 -70.7403780806 25. +41.2916671500 -70.1915427111 8. +41.2819044556 -70.2371298778 1. +41.2825124944 -70.2317817083 2. +42.3489278167 -72.5524962722 +42.3515961833 -71.0903571361 5.1 +42.1183221861 -70.6892360528 47. +41.9640897583 -70.0280720528 15. +42.6647608806 -71.1458532167 11.46 +42.2535802417 -70.9938190944 4.4 +42.3328865028 -71.0445793389 35. +42.0692348194 -72.8405804861 319.5 +42.0689690028 -72.8394422750 316.0 +42.3817151583 -71.0934978028 47.5 +42.3817125583 -71.0935253778 +41.7353900694 -71.1679909806 55. +42.3701347528 -70.9918892500 2.5 +41.7364606167 -71.1680938306 +41.7365151194 -71.1680867417 +41.7715809056 -71.1269788778 +41.7394692111 -71.1563039944 24. +41.7449740167 -71.1903871250 3. +42.3864198361 -71.0952292333 28.7 +42.3767636694 -71.0767097944 +42.3853378139 -71.0763483306 +42.3962453083 -71.0823648528 +42.4013796750 -71.0971897722 +42.3830039833 -71.0772838583 +42.3866056611 -71.0974110083 +42.3906891306 -71.0984435611 +42.3876127944 -71.1015558472 +41.8248994778 -70.8505312806 50. +42.4000544583 -71.1162207194 +42.2476125917 -71.8243302500 188.4 +41.2893103194 -70.0913644667 0. +42.3421289111 -71.0562968111 +42.3392709750 -71.0369571111 4. +42.3416962500 -71.0512005361 6. +42.3428235083 -71.0538531111 +42.3412680889 -71.0530833972 +42.3368895778 -71.0254636194 4. +42.3328596000 -71.0457712000 +42.3550555472 -71.0449137389 1. +42.3326850306 -71.0306093889 +42.1995276917 -71.0077642806 +42.2082658972 -71.0054782861 +41.8577498194 -70.7583868222 +42.5264302389 -70.9274280722 +41.6517720389 -70.1362610889 1. +42.8687162472 -70.8297042583 1. +42.0351179806 -70.6921288194 +42.5675846667 -73.2077153444 654. +42.7403813556 -71.0447485306 +42.8162456861 -70.8067865333 -0. +42.8160164222 -70.8042927083 -0. +41.5823038417 -70.4761305639 9. +42.2899030056 -70.9471968389 26. +42.7040884833 -70.7718546111 11. +41.6794207833 -69.9397886639 -0. +42.0404934111 -70.0611772861 +41.8977896694 -71.0031636028 20. +42.5041727444 -70.8910496750 +42.1864803417 -70.8616235500 37. +42.1671693056 -70.8887754889 46. +42.1733499528 -70.8875798139 43. +42.1751791972 -70.9513762722 50. +41.6663388361 -70.1857722500 +42.0360056444 -72.0335457500 +41.2703586333 -70.2014990583 4. +41.6074097944 -70.3196656639 +42.0576479389 -72.7643929833 116.4 +41.6548009444 -70.9180052667 6. +42.3276130861 -70.9836483472 +42.3273052889 -70.9848202361 +42.3280439028 -70.9864153417 18. +42.3274116583 -70.9859755389 18. +42.3275485000 -70.9874009306 23. +42.3274207889 -70.9874684806 23. +42.3252571806 -70.9882879250 +42.4318220583 -71.5207464222 126. +41.6182980083 -70.6464418000 1. +41.9791904167 -71.0762261083 32. +42.0049182972 -70.9662052222 56. +41.7427700722 -70.4057319000 9. +41.7496318667 -70.4596665306 11. +42.1073155972 -72.5814205444 +42.1003675000 -72.5887332972 +42.1029753000 -72.5840541167 +42.1002615944 -72.5672584611 +42.1107020528 -72.5650059306 +42.1059998361 -72.5866302694 +42.1210856917 -72.5447659278 70. +42.1021890750 -72.5829148389 +42.1017970861 -72.5858447222 +42.0979985944 -72.5874389111 +42.1041788278 -72.5843067333 +42.1052833667 -72.5810466444 +42.0977121222 -72.5635666389 +41.7503951861 -70.4669840556 +42.1404605389 -72.5741634167 66. +41.8842267556 -70.9976777750 20. +42.6682289444 -73.0696689806 743. +42.6701063028 -73.0689760361 782. +41.8837863500 -71.0000022722 15. +41.8830257333 -70.9995687833 17. +41.3257508472 -69.9983010167 13. +42.6573964222 -70.6771783667 30. +42.2958637139 -71.0196796417 3.0 +42.3038019306 -71.0110510222 15. +42.2858472472 -71.0318902278 +42.2867956028 -71.0313678472 +42.2859694889 -71.0305169861 +42.2982005167 -71.0100673194 +42.3737808694 -71.0553854889 +41.6828991139 -70.9225829861 12. +42.3034111750 -71.0117963250 23.4 +41.8888783444 -71.0344581250 14. +41.8866269722 -71.0312210556 +41.8825208722 -71.0273205944 +41.3082340556 -70.7740053722 23. +42.4293146472 -71.0177527333 10.1 +41.6309099139 -70.3071725611 20. +42.0530640528 -72.6644156861 77.2 +42.0513935111 -72.6531815778 57.8 +41.6602272194 -70.9277773417 -0. +41.6230120750 -70.9251393722 -0. +42.3143645833 -71.0639425806 49. +42.3486111111 -71.1069444444 3.312 +41.7230418056 -71.1487615694 +41.7362470028 -71.1367660139 4. +42.3658980444 -71.1274835611 3. +42.4032839250 -71.0534220528 3.4 +42.6049319306 -70.6785343167 +41.6584068806 -69.9844713694 +41.6587018417 -69.9836891639 +42.3454974889 -71.0538305528 4. +42.0140474639 -70.6823377222 50. +42.3288920333 -70.9269573583 10. +42.0138973917 -70.6821819722 50. +42.4734393222 -70.9723244417 69. +41.7882542722 -70.6730461306 16. +41.9594444444 -70.6625000000 3.074 +41.7056510472 -71.1651973028 1. +42.3667832222 -71.0658995694 4. +41.9596251028 -70.6626392222 3. +42.3592863972 -71.0517588444 4. +42.0302595333 -72.1365488917 215.3 +41.2712644778 -70.2024795028 5. +41.8529659806 -69.9496224000 20. +41.7491065639 -71.1226153194 43. +41.7417266556 -71.1289964000 +42.1422686083 -72.2238901556 367. +42.4043855806 -72.1713971194 337. +42.2338739444 -70.9950700000 30. +42.8158895861 -70.9899383444 64. +42.8158739944 -70.9899337306 64. +42.3245648806 -73.3528892528 555.8 +41.7162273056 -70.6513552028 -0. +42.1569203667 -70.7420939944 +41.7160914806 -70.6512655306 -0. +42.6515653278 -70.6786891000 +42.8081712389 -70.8361821694 2. +42.8103453917 -70.8207055389 1. +42.2749188417 -71.0426806472 3. +42.4828500250 -71.0988882750 +42.4856990472 -71.0882588972 +42.6607524472 -70.5958013750 9. +42.0585674889 -71.0711058917 53. +41.8927105833 -71.0340382417 16. +41.7278450694 -70.7785233972 12. +41.8702273222 -71.0730919028 11. +41.9433839861 -71.0889395972 30. +42.1231942694 -71.1017500972 +42.0692508083 -70.1252641694 14. +41.7072510972 -69.9309249722 2. +42.4632768000 -71.5176201944 80.7 +42.4579550139 -71.5194842361 80.5 +42.6603110917 -70.5966497333 +42.6622574944 -70.5881423111 14. +42.3244111694 -71.8024277472 245.3 +42.2895244083 -70.8799024861 +42.2899142889 -70.8790859972 15. +42.2534467833 -70.7681609861 11. +42.2525926639 -70.7682801778 12. +42.2526416667 -70.7684194444 11.73 +42.2485209639 -70.7683922333 14. +42.2525916667 -70.7682805556 11.67 +42.2532121417 -70.7683476472 10. +42.3302199389 -70.9565118472 30.30 +41.7200720694 -69.9577047806 20. +42.3303851028 -70.9567785500 27. +42.3302666667 -70.9564583333 30.31 +42.3301944444 -70.9564101583 30.30 +41.6077458806 -69.9845282000 5. +42.1370211306 -70.8015504083 62. +41.8066605861 -70.7312015611 24. +42.1114114167 -72.0872182528 +41.5586824361 -70.4762544278 3. +41.5596053167 -70.4749620667 3. +41.5751142139 -70.4584468778 3. +42.6249763306 -70.7086999667 9.10 +42.4699660722 -72.5919003417 197. +42.0576548861 -71.8355691222 235. +42.3549727889 -71.1652414861 48. +42.2557904250 -71.1584577861 44. +42.4819170583 -70.8837901889 +42.4680082000 -70.9464055389 +42.4340133083 -71.0506441028 40. +42.3701407667 -71.0424327417 3.9 +42.4660425944 -72.5800112778 +42.4672653528 -72.5786349139 +42.2957043806 -70.9603939250 +42.2938566083 -70.9569400167 +42.6302593167 -70.6841895528 37. +42.3783622750 -71.0509499222 34.9 +41.2442768667 -70.0823296250 0. +41.7589445528 -70.1432012306 14. +42.6260726500 -70.7028539694 3.33 +42.2514847194 -70.7835342528 +42.6791432444 -71.1107737806 +42.4683088806 -70.9157217306 +42.4563428694 -70.8949341167 +42.4700716528 -70.9103804861 +42.4776653944 -70.9099944472 +42.4654400361 -70.9040732389 +41.6508767167 -70.1489941028 7. +41.7508460222 -71.2247710528 29. +41.7566737417 -71.1768856056 +41.7343539583 -71.1955261639 -0. +41.9022621833 -71.3577358944 30.031 +41.8987888556 -71.3684397194 30. +41.9021149556 -71.3579795000 30.673 +41.9024382917 -71.3579219167 30.417 +42.1066055111 -72.8885586917 444.3 +41.5727073806 -71.0751161361 13. +42.2276589111 -72.3244775083 230. +41.7321030083 -70.7512660139 16. +41.5672966028 -70.6413719083 47. +42.4060355083 -71.2111967889 86. +41.8937746639 -71.0386765222 9. +42.4451278667 -71.0682675306 13.3 +41.8963028917 -70.5957687806 76. +42.4239299611 -71.1618147389 81.5 +42.2558333333 -71.1252777778 15.088 +42.6391111111 -71.3165000000 30.295 +42.3953388889 -73.2461916667 296.180 +42.6680555556 -70.6248333333 20.59 +42.2975000000 -71.0161111111 2.52 +42.1241666667 -72.3077777778 100.99 +42.3355555556 -71.0905555556 3.705 +42.0355555556 -71.2177777778 53.100 +42.3623611111 -71.0784722222 3.355 +42.4816666667 -71.1438888889 41.185 +42.3807777778 -71.0897777778 10.873 +42.7688888889 -71.0336111111 3.907 +42.8697222222 -70.8697222222 23.223 +42.2830555556 -71.3913888889 48.537 +42.2575000000 -71.8016666667 141.406 +42.1497222222 -72.4544444444 73.388 +42.2602777778 -71.4633333333 57.137 +42.5102777778 -72.6047222222 71.903 +42.0483333333 -70.6916666667 18.356 +41.7538888889 -70.6375000000 12.596 +42.1808333333 -72.6308333333 64.128 +41.9037750000 -71.0818333333 4.419 +42.2847222222 -72.2155555556 146.383 +41.5508333333 -70.6338888889 14.896 +42.1747222222 -72.8330555556 101.363 +42.3077777778 -73.0738888889 482.595 +42.4438888889 -73.2608333333 298.184 +41.6486416667 -70.3056666667 10.018 +41.7912333333 -70.8681972222 25.043 +42.3041666667 -72.9886111111 211.821 +42.6400000000 -71.3252777778 32.482 +42.5855555556 -72.6011111111 60.213 +41.8460618944 -70.6515431222 50. +42.5767234167 -71.4420084861 143.2 +42.1359780778 -71.1015327667 79. +42.2940907444 -71.0848602194 17.1 +41.7017844667 -71.1667166944 +41.8755018028 -71.0211207944 8.60 +41.8810376583 -71.0192218667 9.98 +42.8203037694 -70.8236071028 1. +42.8146478472 -70.8096164556 -0. +41.2882345667 -70.1326842222 15. +42.2217825639 -70.7552462833 20. +42.3774350917 -71.0521352444 3. +41.6888728000 -70.6111531306 +42.1559968806 -72.5459975056 77.2 +41.7706759500 -70.6455873361 28. +41.4688143417 -70.7574964889 +41.4454922694 -70.6131181750 46. +41.4532155278 -70.6380931917 44. +41.9003527417 -71.0952177250 +41.9802890778 -71.0831805750 21. +41.9798915472 -71.0824375222 23. +41.9759916944 -71.0778018056 35. +41.9595306139 -71.0805406306 31. +41.9546145833 -71.0835341111 29. +41.9498307194 -71.0857015750 26. +41.9474802222 -71.0860300806 26. +41.9462477722 -71.0862776750 26. +41.9434750944 -71.0888433111 26. +41.9420058583 -71.0897694889 29. +41.9415441694 -71.0902077472 29. +41.9411948167 -71.0907230833 29. +41.9410401167 -71.0912802667 29. +41.9404507278 -71.0918751861 27. +41.9398926472 -71.0919442972 29. +41.9389925917 -71.0927008333 27. +41.8699945889 -71.0727590361 11. +41.9034704000 -71.0635266444 3. +41.8920894167 -71.0129394556 3. +41.8905082944 -71.0086222750 8. +41.8848992250 -71.0056733306 17. +41.8850335444 -71.0034599194 3. +41.8830162861 -71.0035989056 3. +41.8839351639 -71.0003248472 15. +41.8729698361 -71.0764469500 12. +41.8725697722 -71.0931462417 12. +41.8703863194 -71.1314085722 8. +41.8816198056 -71.0935303500 +41.9030146611 -71.0635597361 +42.6099585389 -70.6670994889 +41.5694904944 -70.5938363861 +42.2420000972 -71.5043117028 147. +42.3602395667 -71.0939577500 3. +41.7335665583 -70.4861567278 89. +41.8497662528 -71.1134728722 6. +41.8963458833 -70.5957925194 76. +42.0419559139 -70.1960101306 26. +42.1148469917 -70.6967877278 15. +41.6239690167 -69.9733133083 -0. +42.7099100722 -71.2161318306 62.2 +41.7161814222 -70.6630722667 6. +41.7208244444 -70.6678751083 +41.7431396667 -70.6589323139 +42.3974089444 -71.0870764389 17. +42.3972988389 -71.0871261111 17. +42.3987923722 -71.0885856333 3.5 +42.6018709917 -70.6655441694 9. +41.7753510194 -71.1114772417 14. +42.5950909944 -71.2035998472 26.8 +42.6000372056 -71.2059254389 26.1 +42.6432167611 -71.2458983389 +42.6363065806 -70.5790144500 13. +42.6368227833 -70.5749880056 +41.6927339694 -69.9545568611 23. +42.2309105333 -70.9690987611 +42.3651296222 -70.8692004306 30. +42.0490011583 -70.2186689806 14. +42.0211953833 -70.1918642389 4. +42.0321982556 -70.2086750667 6. +42.1804439167 -70.7167109056 15. +42.1801464194 -70.7170925833 24. +42.1762073639 -70.7151593944 15. +42.3326355944 -71.0463877500 39.3 +42.6115790944 -70.7298153694 82.8 +42.3194359528 -71.0080396167 15. +42.7991407528 -70.8129850139 +42.3204212194 -71.0064095111 17. +42.3180689722 -71.0071577778 +42.3204367694 -71.0064203306 17. +42.3187958917 -71.0066275583 +42.3177886000 -71.0061213472 +42.3201056556 -71.0061906444 17. +41.8728352833 -71.0874725889 12. +42.1835404806 -72.3555803722 +41.7762935250 -70.5003330250 4.7 +42.8205555556 -70.8266666667 1.343 +41.4568666667 -70.5561833333 4.526 +42.3741666667 -71.0533333333 2.751 +42.8138888889 -70.8736111111 3.057 +42.3033333333 -70.9213888889 2.44 +42.3278611111 -70.8913888889 6.09 +41.4711111111 -70.7600000000 1.746 +41.4194444444 -70.9269444444 8.597 +41.5981111111 -70.8363333333 3.468 +41.5863888889 -70.9458333333 2.70 +41.5077777778 -71.0925000000 1.271 +42.3366666667 -71.0477777778 13.375 +42.3281666667 -70.8915000000 3.25 +42.6579166667 -70.6163333333 3.99 +42.3327777778 -71.0455555556 43.606 +42.3330555556 -71.0447222222 33.758 +42.3747222222 -71.0541666667 2.651 +42.8147222222 -70.8738888889 3.779 +42.3033333333 -70.9219444444 2.48 +41.4711111111 -70.7600000000 2.084 +41.4177777778 -70.9300000000 18.599 +41.5969166667 -70.8347222222 9.488 +41.5865277778 -70.9455277778 1.46 +42.3755555556 -71.0527777778 2.545 +42.3191666667 -70.9300000000 2.40 +42.3280333333 -70.8913000000 6.04 +42.2530555556 -70.7711111111 4.72 +42.7977777778 -70.8194444444 2.402 +41.4719444444 -70.7608333333 1.316 +41.4191666667 -70.9297222222 20.211 +41.5966388889 -70.8334444444 11.522 +41.5078055556 -71.0929638889 0.769 +41.4575000000 -70.5586111111 6.864 +42.2847222222 -71.0402777778 2.722 +42.3275000000 -70.8919444444 4.40 +42.2533333333 -70.7697222222 4.71 +41.4722222222 -70.7613888889 1.578 +41.4247222222 -70.9183333333 1.670 +41.5077777778 -71.0925000000 2.173 +42.2847222222 -71.0402777778 2.591 +42.3275000000 -70.8919444444 3.93 +41.3488888889 -70.8350000000 40.824 +42.3508333333 -71.0425000000 4.343 +42.3505555556 -71.0422222222 3.760 +41.3486111111 -70.8347222222 40.370 +42.3505555556 -71.0422222222 3.783 +42.2852777778 -71.0402777778 3.000 +42.3194722222 -70.9300277778 2.92 +41.5940888889 -70.9008638889 2.13 +42.3469444444 -71.0438888889 7.292 +42.3279666667 -70.8912166667 6.18 +42.3366666667 -71.0475000000 14.230 +42.3280277778 -70.8910833333 5.44 +42.6577777778 -70.6161111111 3.86 +41.5442556917 -70.6074118444 1.1 +42.6813664972 -70.7924032389 50. +41.3647997333 -70.7059309583 70. +42.1601352833 -70.7048053000 19. +42.1598027778 -70.7047944444 18.33 +41.5928678389 -71.0756683528 +41.4588542417 -70.5862334472 5. +42.6358026972 -70.6860529944 +42.0181098556 -70.7324193528 15. +42.3767581611 -71.0548040944 3.9 +42.4879376083 -72.5376066833 386. +41.7138452056 -70.6237858444 +41.7140713917 -70.6238050306 11. +42.1318288917 -73.0248973083 +42.4948922583 -70.8296852889 +41.2519699833 -69.9971542028 17.0 +41.8870993278 -71.0043837222 20. +41.7477389861 -70.4270100389 4. +42.0395032611 -70.2147930861 +42.2210381139 -70.9124097806 26. +41.3553172028 -70.7349209222 +42.5041932611 -70.9640921861 76. +41.3037393472 -70.2515102722 +42.3775580833 -70.9845451361 12. +41.7955694806 -69.9820292750 3. +42.1410597611 -73.1343617139 538. +42.6870939472 -70.8422201083 24. +42.6538979167 -70.6041534250 26. +42.4478030694 -71.0438130083 29. +42.5332774667 -70.9346972083 50. +41.7898838194 -70.7677383694 19. +42.3736381528 -71.0535460750 2.696 +42.6491683861 -70.6823584278 +41.5274434583 -70.6784646444 +41.9461439667 -70.7728145000 80. +41.9453162556 -70.7714424917 80. +41.3486991444 -70.5274154444 +41.3766671278 -70.7071592056 +42.2573811917 -71.1129934417 31.1 +41.9984256222 -70.0537396556 38. +41.9982769694 -70.0545897583 +42.0635940500 -70.1473657722 3. +42.0638724111 -70.1473579306 3. +42.0645680278 -70.1469407194 3. +42.0646348528 -70.1469066306 3. +41.9666090972 -69.9985594472 8. +41.9670028806 -69.9991660167 8. +41.9661865278 -70.0002517028 15. +41.9660167639 -69.9995248972 15. +41.9810300778 -70.0435809167 +41.9982765444 -70.0563218889 +41.9579631944 -70.0764305111 9. +41.8183222222 -70.5523138889 32.423 +41.8706222222 -70.5352361111 9.054 +41.9357111111 -70.5877916667 80.553 +42.5666474750 -70.7789106972 7.2 +41.3042581167 -70.2517934667 15. +41.3039743778 -70.2518442667 15. +41.6427337667 -71.0074183861 53. +42.0692336000 -71.6356861056 143. +42.2607726972 -71.0946888278 14. +41.5709206000 -69.9953650694 2. +42.3166964833 -72.0838251861 354. +42.4095162750 -71.1231889361 38. +42.4073999722 -71.1200208250 30. +42.4403065028 -73.1597406528 635.2 +42.0328725028 -72.2713311278 352.7 +42.7965507056 -70.9200314111 41. +42.2403006889 -70.8534871472 11. +42.2399219944 -70.8528951417 56.61 +42.2398055556 -70.8526777778 56.58 +42.2395861111 -70.8531027778 62.90 +42.4324341611 -71.1733580056 113. +42.2404032722 -70.8534555833 57. +42.2402912694 -70.8535720639 11. +42.2408580167 -70.8536015278 11. +42.2436752583 -70.8551521111 11. +42.2436280194 -70.8542267917 11. +42.3348012583 -71.9384977444 355. +41.8389633250 -70.6925339139 +41.8388846472 -70.6925290694 +42.5883890444 -72.5202093694 107.71 +42.5957831361 -72.5277808667 104.26 +42.5914760583 -72.5233699000 105.42 +42.6661220944 -70.8902933333 81. +42.3981794694 -71.1435429472 6. +41.6444772972 -70.5642795361 25. +42.2576640056 -71.0282242389 76.8 +42.0086699861 -70.7236597639 5. +42.0605753333 -70.9077549778 +41.4922524972 -71.0760987389 +42.6601565528 -70.7186161389 15. +42.2566111111 -71.1211111111 23.168 +42.4191666667 -73.2463888889 303.686 +42.6502777778 -70.5991666667 21.31 +42.3022222222 -71.0036111111 6.89 +42.2925000000 -71.2511111111 33.55 +41.9047222222 -71.3175000000 31.639 +42.1575000000 -72.4241666667 70.615 +42.3305555556 -71.0622222222 7.626 +42.0316666667 -71.2205555556 45.645 +42.3752083333 -71.0845666667 10.378 +42.4802777778 -71.1250000000 20.171 +42.3886750000 -71.0967250000 10.598 +42.7688888889 -71.0336111111 4.498 +42.2795378000 -71.4054200806 48.077 +42.2602777778 -71.8138888889 155.595 +42.1501388889 -72.4353055556 80.764 +42.5255555556 -72.6069444444 49.202 +42.0463333333 -70.6718611111 2.075 +41.7575000000 -70.6591666667 3.639 +42.1986111111 -72.6308333333 78.294 +41.9044444444 -71.1033333333 13.940 +42.2733333333 -72.2247222222 178.486 +41.5446111111 -70.6484444444 19.207 +42.1788888889 -72.8425000000 89.054 +42.3122222222 -73.0900000000 464.529 +42.4433333333 -73.2711111111 304.324 +41.6369444444 -70.2908333333 2.647 +41.7969444444 -70.8594444444 20.224 +42.3100000000 -73.0250000000 279.220 +42.6400000000 -71.3186111111 30.445 +42.5861111111 -72.6027777778 61.926 +42.3136816861 -71.0334016222 8.3 +42.2227910806 -71.1720804028 39.6 +41.9964689000 -70.8977609139 10. +41.4546199194 -70.5581349972 +42.2985626333 -71.6806494528 162. +42.4529951333 -70.9419758833 +42.5580557694 -71.0135835361 50. +41.6422198861 -70.9173028833 3. +41.6510737278 -70.9174911556 5.7 +41.6387977111 -70.9185684250 4.8 +41.8827336278 -70.5334252556 47. +41.5155423694 -70.9540831528 9. +42.2858333333 -71.1200000000 12.997 +42.2327777778 -71.1602777778 34.898 +42.6397222222 -70.5986111111 22.23 +42.3077777778 -70.8844444444 35.80 +42.2147222222 -71.0697222222 71.73 +42.0252777778 -71.2250000000 43.385 +42.3975833333 -71.1043055556 22.713 +42.4602500000 -71.1342222222 10.155 +42.4557500000 -71.1357166667 5.618 +42.7630555556 -71.0330555556 6.869 +42.3603333333 -71.0891111111 3.798 +42.2766666667 -71.4186111111 49.440 +42.2694444444 -71.8433333333 172.368 +42.1527777778 -72.4144444444 71.460 +42.2811111111 -71.3997222222 47.152 +42.5391666667 -72.6027777778 46.364 +42.0275000000 -70.6752777778 10.508 +41.7653055556 -70.6819722222 6.490 +42.2110416667 -72.6300611111 83.322 +41.9108333333 -71.1250000000 17.975 +42.2633333333 -72.2363888889 158.275 +41.5300000000 -70.6580555556 23.649 +42.1860555556 -72.8561666667 105.032 +42.3200000000 -73.0908333333 436.822 +42.4402777778 -73.2825000000 302.165 +41.6424722222 -70.2855277778 4.138 +41.8066666667 -70.8477777778 37.299 +42.5716666667 -72.6219444444 76.555 +42.2416666667 -71.7088888889 114.181 +42.5977300861 -70.6491547972 +42.0372356167 -71.9888044111 232.9 +42.1774364833 -72.4634509944 112. +42.2876558750 -71.0301238083 15.4 +42.2677439833 -71.1529066083 67. +41.4454856306 -70.6131216583 +41.4541612083 -70.6051146556 +42.5507924417 -73.0953855028 629. +42.3000000000 -71.1141666667 16.361 +42.5638888889 -71.1983333333 31.953 +42.4483333333 -73.2613888889 307.037 +42.4483333333 -73.2613888889 302.55 +42.3009444444 -70.9268611111 3.03 +42.5161111111 -72.3477777778 329.33 +42.1247222222 -72.6127777778 18.552 +41.5611111111 -70.9558333333 12.23 +41.5277777778 -71.0325000000 18.99 +42.1600000000 -72.5063888889 50.968 +42.3472222222 -71.0794444444 7.677 +42.0180555556 -71.2255555556 44.283 +42.4037222222 -71.1143888889 8.908 +42.4566666667 -71.1372222222 6.543 +41.6730555556 -71.1847222222 78.511 +42.4694750000 -71.1249583333 8.632 +42.7438888889 -71.0211111111 24.557 +42.2731111111 -71.4413055556 56.100 +42.2802777778 -71.8725000000 244.780 +42.1522222222 -72.3961111111 105.352 +42.2833333333 -71.3819444444 47.048 +42.5536111111 -72.5988888889 42.302 +42.0222222222 -70.6838888889 12.893 +41.7694444444 -70.7030555556 6.553 +42.2250000000 -72.6288888889 79.731 +41.9163888889 -71.1463888889 21.227 +42.2563888889 -72.2502777778 122.990 +41.5230555556 -70.6682777778 7.678 +42.1900000000 -72.8569444444 95.460 +42.3250000000 -73.0836111111 396.055 +42.4394444444 -73.2994444444 324.777 +41.6514651639 -70.2798229556 4.571 +41.8136111111 -70.8341666667 30.039 +42.3333333333 -73.0822222222 365.595 +42.3546668722 -71.0435706333 -0. +42.6925000000 -72.0488888889 313.272 +42.5386111111 -72.6286111111 89.619 +41.6981408222 -70.3553573222 +41.6696298111 -70.1004129667 +42.4613986833 -70.9657720000 +42.1144524167 -72.6251001000 +42.1438843778 -72.6866900306 171. +42.4890514333 -71.8867395333 615.8 +42.4890544778 -71.8867415611 611.32 +42.4757144472 -71.2670518167 47. +42.4389504444 -71.0198176167 40. +42.5057410028 -71.0724377944 +42.5036449028 -71.0648749389 +42.5016074639 -71.0757068333 +41.5938237889 -70.9009209750 +41.9063492028 -71.0489129972 7. +42.6009171972 -73.0273730694 762. +42.0705369833 -70.6986674750 8. +41.6930502222 -71.1049359639 46. +42.3416887556 -72.8708851361 420.7 +42.5049746167 -71.1197002139 46.9 +42.3048820639 -71.1558885056 96. +42.2282430972 -70.8042891472 41. +42.3046758306 -71.1558088889 96. +42.4175056972 -71.0595818306 32. +42.1457446306 -71.2527858583 +42.3798562833 -71.2674292056 +42.3749459056 -71.2370501222 +42.3705716500 -71.2579043333 +42.3761218972 -71.2353554750 +42.4457866833 -71.2444664528 79. +42.4098829194 -71.2221045806 +42.4089979139 -71.2229508833 +42.4456347194 -71.2444155056 +42.3900793944 -71.2035839306 +42.3903811111 -71.2537037417 +42.3728701389 -71.2335644944 +42.3695988250 -71.2216300000 +42.4000464222 -71.2095248806 +42.4004634139 -71.2405192139 +42.3103199750 -71.2365840611 +42.3076938778 -71.2235995722 +42.3670628111 -71.2439764056 +42.3397866472 -71.0299154250 +42.3397837111 -71.0301292194 +42.3393349444 -71.0299601528 +42.3393326500 -71.0301343083 +41.5661762333 -70.5135680889 3. +41.5893885333 -70.5112015583 10. +41.5887701139 -70.5110463778 10. +41.5864549556 -70.5166643278 11. +41.5882715500 -70.5163088583 10. +41.5879617500 -70.5146425389 11. +41.5852716889 -70.5242462222 11. +42.6384556556 -72.3087112806 382. +42.7574368361 -71.1105815722 81. +42.7567414528 -71.1100723944 84. +42.5112160639 -70.9086071333 +41.7538399694 -70.7101946778 +41.7650533472 -70.7286172778 +41.8003622472 -69.9434001750 9. +42.3192763139 -70.9280492917 19.73 +42.0939134083 -70.9923519778 62. +42.2520828806 -71.1163643556 31.9 +42.3191333333 -70.9279722222 19.80 +42.3193194444 -70.9281305556 19.82 +41.7317558944 -69.9277463639 -0. +41.3538884250 -70.8336281000 +41.8903041722 -71.0319028639 8. +42.0084414972 -70.8963264111 28. +42.3680040250 -73.1421395778 626.1 +41.3612122333 -70.4664406306 +41.3782252944 -70.5191847667 20. +42.6967552889 -71.8925281000 558. +42.6967489861 -71.8925354694 559.3 +42.6966791583 -71.8926107444 558. +41.3477822972 -70.6101685583 0. +42.3397262833 -71.1734975861 93. +42.0365076694 -71.5613820528 138. +42.3615882194 -71.0509879528 4.6 +42.3617236417 -71.1655570389 +42.3609484111 -71.1752797361 +42.3618098528 -71.1622777833 +42.3724902639 -71.1548110000 +42.3714847722 -71.0624016444 5. +42.3737853250 -71.0565264083 +42.4867836056 -70.9440475472 49. +42.6089822889 -70.6640919750 +42.3772860139 -71.0952803000 7. +42.2580668389 -71.0296116250 46. +42.0563899222 -71.8172278917 +42.0501291361 -71.8672296389 +42.0485113333 -71.8732973694 +42.0545314806 -71.8768606556 +42.0502982944 -71.8743851861 +42.0504301306 -71.8743536083 +42.0800134944 -70.6792454472 +41.7507100444 -70.5468570861 85. +42.0495628306 -70.7599052806 41. +41.3339009944 -70.7410823889 15. +41.8857353778 -71.0412539528 3. +41.2436422222 -70.0978640306 3. +41.2430877861 -70.0933678000 2. +42.4214292556 -71.0434315472 16.3 +42.2886100583 -71.0684655583 28. +42.3198286389 -71.2464943333 +41.8719679944 -70.0688374972 -0. +41.9197923944 -70.0069460167 23. +41.9047672917 -69.9843046444 16. +41.8649506972 -69.9829080861 18. +42.4007860944 -71.0830022778 3.0 +42.2830610528 -71.0950825833 53. +41.6827638389 -70.6608969694 1. +41.6830507944 -70.6606236917 9. +42.6049498083 -70.8871062806 +42.6024896667 -70.8856684556 +42.6085074861 -71.4939710000 85.878 +41.6010303194 -71.0529119528 31. +41.6066011972 -70.4006390972 +42.2122266111 -72.6034490000 27. +42.2138463222 -71.0104544722 +41.7421651556 -70.1177769722 34. +42.0547326667 -71.0094837056 21. +42.0569905833 -71.0104219306 23. +42.0547439667 -71.0095692667 21. +42.0553242778 -71.0072243444 24. +42.0511079111 -71.0059198611 23. +42.0546522583 -71.0065253944 24. +42.0514061306 -71.0045163194 23. +42.0531641833 -70.9885110194 +41.7247349000 -71.1565777306 11. +41.6692214861 -70.0278650333 9. +41.4812285056 -70.5990313333 6. +41.4816042806 -70.6045679194 9. +41.4825555083 -70.6031369167 +41.4807957833 -70.5997816750 10. +42.0704322500 -70.9478906667 29. +42.2143709611 -71.2126798444 +42.0565138056 -70.7751230278 30. +41.5990031889 -70.6293655417 +41.6702203222 -70.1168819028 +42.4721342056 -71.0732563333 76. +41.5839770917 -70.8237643139 1.229 +41.5823445694 -70.8219555861 -0. +41.5826266806 -70.8219557917 -0. +41.5836694444 -70.8235305556 1.210 +41.5833055556 -70.8244638889 1.602 +42.6729316306 -72.5978077306 382. +42.8094138778 -70.9619453639 +42.7965058528 -70.9958535278 +42.8098509778 -70.9512127028 +42.7970337361 -70.9954987889 35. +42.8442736528 -70.9164965611 +42.1578066139 -70.8523440750 90. +41.2473938500 -69.9797220028 3. +41.7402171194 -70.6261672306 2. +41.3777171194 -70.7062006500 84. +41.3812505833 -70.6749195528 +41.6506220917 -70.2456598667 +42.4510949917 -70.9786600361 3. +42.1207881972 -72.7480272167 44. +42.6128202972 -71.4935927972 95.983 +42.6129390889 -71.4937932583 113.857 +42.6133263222 -71.4933244444 +42.6133465083 -71.4933245417 114.8 +42.6088888889 -71.4938888889 85.928 +42.6088888889 -71.4938888889 85.609 +42.6088888889 -71.4938888889 85.718 +42.6129854139 -71.4935757583 96.543 +42.6126858694 -71.4936941889 96.387 +42.6133143833 -71.4933389472 115.7 +42.6133143861 -71.4933389472 115.7 +42.6129394194 -71.4937930389 115.773 +42.6133263222 -71.4933244444 114.1 +42.5612836694 -71.9331132861 +42.5128887250 -73.1172052861 688.5 +42.3819901972 -71.3210456889 69. +42.3824627111 -71.3212175278 +42.3692862389 -71.2989276583 +41.5080335028 -71.0952221889 +41.5073374417 -71.0880854472 +41.5241165889 -71.0747676861 +41.5276438444 -71.0836742028 30. +42.4306892806 -70.9973818361 2.6 +42.2144090028 -70.9773025944 60.8 +42.2548872167 -70.9232944111 +42.2422516306 -70.9656671944 +42.2414995250 -70.9634600944 +42.2430622806 -70.9627867333 +42.2422605083 -70.9658355750 +42.2497722444 -70.9421393861 +42.1937382500 -70.9193484806 30. +42.2149278528 -70.9162965639 17. +42.2269806528 -70.9399044750 +42.2160841194 -70.9276857417 +42.2497470722 -70.9420247833 +42.2145248306 -70.9770552389 +42.2291468444 -70.9598618778 +42.2394117694 -70.9650930222 +42.2342804361 -70.9624759194 +42.5485288778 -70.7846304167 +42.4380262056 -72.6349152556 +41.7994382306 -71.0351301278 59. +42.3540402333 -71.1089946972 5. +41.5126203111 -70.6891932833 1. +41.7244989139 -71.1616563528 +42.1102211806 -70.7766990083 41. +41.7524284750 -71.1417543361 +42.8256732722 -70.8137659944 +42.2491204639 -70.7835970861 +41.2848505389 -70.1842864417 +41.5358016972 -70.6522882611 +41.7856061417 -71.1241343833 +41.5461777083 -70.5948114889 +41.8072337389 -70.6311912083 15. +42.1428393361 -72.1115985306 255. +42.4259103694 -70.9540820194 +41.5891246972 -71.0756323778 +41.4004582917 -70.5355328083 +42.2145160139 -70.9770897889 62. +42.3638016639 -71.8097449000 267. +41.4050322083 -70.7019250194 74. +42.1937850333 -70.9172915778 40. +42.1936232167 -70.9174761750 43. +42.1933665306 -70.9184073667 38. +42.0790582194 -70.9364407917 +42.0608628167 -70.9510457722 +42.0662576806 -70.9290906000 32. +42.0871986694 -70.9765291861 +42.0650190444 -70.9129024111 21. +42.4419431917 -72.2369528556 310. +42.6731186806 -71.3718759472 111. +41.7646550222 -70.4778768417 6. +42.1071684167 -72.4120872028 272. +42.1243080833 -72.4315279778 +41.7223258028 -71.1601030611 3. +41.6974943306 -70.9822416583 62. +41.9110976583 -71.0860558361 8. +42.2194968028 -73.2664828333 644. +41.6394430750 -70.6520230778 -0. +41.6738466611 -69.9492556750 14. +42.2277391361 -71.0283882222 75. +41.8785540333 -71.0974575611 10. +41.8519539111 -70.9866816000 50. +42.7110913806 -71.2167750889 +41.8753577694 -71.0961678806 10. +42.7134755250 -73.2098041833 +42.5502062778 -71.1843645528 +42.5234558056 -71.1749074167 +42.2812511833 -71.0695442417 29. +42.4643701056 -71.1204646556 46.9 +42.4526207694 -71.1388734972 +42.4456373806 -71.1655885806 +42.4528759833 -71.1345042389 +41.2775856722 -70.1011444694 23. +42.3030498250 -70.9220163250 +41.2777908278 -70.1132705139 21. +42.5030100250 -73.0649495306 659.1 +42.4975520389 -71.1006460778 34.3 +42.4423872556 -71.0404924444 79.6 +42.6431590750 -70.7005165056 43. +41.6802469361 -70.6612135389 +41.6802456972 -70.6612169583 10. +41.6804761750 -70.6616149778 5. +42.4352260806 -71.0692096750 13.3 +42.3963674083 -71.1002871639 43. +42.3690437194 -70.9893566056 9. +42.3502777778 -70.9572222222 25.27 +42.3782465667 -70.9858467056 +42.3906767472 -70.9845102694 +42.3902110056 -70.9859476056 +42.3899103083 -70.9849151611 +42.3896107778 -70.9838839139 +42.3891450722 -70.9853208417 +42.3796409167 -70.9829092778 +42.3677360056 -70.9678498722 31. +42.3678215500 -70.9684655333 31. +42.3677110167 -70.9676761917 31. +42.3678619083 -70.9677036028 +42.3617079472 -70.9796661111 +42.3767156333 -70.9838689278 +42.3767588972 -70.9862752694 +42.3689562833 -70.9892722972 6. +42.3775584361 -70.9845458250 +42.5147763167 -71.0744828028 27. +42.4788547083 -71.1519565556 +42.5181642917 -71.1449643139 +42.4959533833 -71.1230687528 +42.4778653889 -71.1186331194 +42.4551930278 -71.1793698917 +42.5795814778 -70.6937909833 3. +42.2721144278 -70.9986835667 3.6 +42.2606773250 -71.0202219583 +41.7508085194 -71.1404437806 17. +42.0226967361 -70.1870111194 7. +42.0209143667 -70.1917324833 +42.0208947167 -70.1914403083 +42.0209028056 -70.1936640861 +42.0212206250 -70.1934994917 5. +42.0482935000 -71.8156423556 277.3 +42.0483183611 -71.8155662722 278.1 +42.3747884833 -71.0159355000 3. +42.4037631417 -71.0717890139 7.5 +42.2751145306 -71.0808554028 39.3 +41.9051991417 -71.0453308722 8. +41.5273921167 -70.6610604806 36. +41.8552664417 -69.9509160778 17.93 +41.5246070611 -70.6715073000 +41.5259570972 -70.6615186167 +41.9327440667 -71.1624861861 20. +42.0989066167 -73.1577459444 543. +42.2634915667 -71.7931022472 +42.2997198861 -71.2043100028 50. +41.6063318944 -69.9728129583 -0. +42.0668955056 -71.3274369556 100. +42.0561999056 -71.3305635639 122. +42.4327098194 -71.1049345444 78.8 +42.2212139361 -70.9666465417 40. +41.8804909333 -69.9574409806 12. +42.4952160750 -71.1797268972 53.9 +42.3008333333 -71.1136111111 16.418 +42.4683333333 -73.2072222222 303.732 +42.5972222222 -70.6536111111 3.75 +42.3411111111 -70.8794444444 15.18 +42.2336111111 -70.8666666667 15.52 +42.1486111111 -72.6086111111 27.990 +42.3608508139 -71.5987978250 96.0 +42.6220998278 -71.3642024472 48.9 +42.3872222222 -72.0763888889 200.315 +42.4605555556 -71.2791666667 38.22 +42.1866833333 -71.1771500000 18.835 +42.0069444444 -71.2416666667 42.965 +42.2919444444 -71.0958333333 14.298 +42.6278611111 -71.2983055556 33.722 +42.4816666667 -71.1363888889 39.687 +42.7308333333 -71.0008333333 31.589 +42.2597194444 -71.4521638889 55.036 +42.2886111111 -71.8894444444 316.204 +42.1529932250 -72.3768301694 103.066 +42.2786111111 -71.8538888889 178.202 +42.2852777778 -71.3475000000 48.688 +42.5772222222 -72.5994444444 43.950 +42.0150000000 -70.6994444444 7.161 +41.7676944444 -70.7227500000 6.542 +42.2391666667 -72.6255555556 63.404 +41.9311111111 -71.1561111111 24.001 +42.2463888889 -72.2613888889 136.575 +42.7269916667 -72.4620416667 79.907 +42.1961111111 -72.8594444444 113.594 +42.3425000000 -73.0902777778 398.191 +42.4355555556 -73.3080555556 332.955 +41.6604444444 -70.2768888889 10.576 +42.3767000000 -73.1126222222 441.053 +42.6866666667 -72.0458333333 302.318 +42.5852777778 -72.7213888889 115.189 +42.0284086444 -72.5809338222 42.2 +42.5461111111 -71.1741666667 28.900 +42.4933333333 -73.2027777778 303.881 +42.5800277778 -70.7288055556 5.26 +42.3302777778 -70.8961111111 4.88 +42.2350000000 -70.8761111111 14.74 +42.1586111111 -72.5852777778 32.703 +42.1869987806 -71.1765425639 15.765 +42.0097222222 -71.2361111111 52.573 +42.2783333333 -71.0786111111 30.701 +42.6213888889 -71.2830555556 44.888 +42.5297222222 -71.1538888889 29.391 +42.7441666667 -70.9702777778 25.378 +42.2983333333 -71.9066666667 343.927 +42.1586111111 -72.3602777778 114.223 +42.2977777778 -71.2930555556 42.577 +42.6100000000 -72.5852777778 81.823 +42.0090833333 -70.7126416667 3.041 +41.7666666667 -70.7297222222 16.659 +42.2500277778 -72.6191944444 42.200 +41.9350000000 -71.1736111111 22.464 +42.2411111111 -72.2769444444 139.257 +42.1041666667 -72.5961111111 24.124 +42.2061111111 -72.8552777778 94.823 +42.3550000000 -73.0966666667 425.959 +42.4313888889 -73.3200000000 349.436 +41.6575000000 -70.2594444444 4.062 +42.6830555556 -72.0425000000 298.534 +42.5613888889 -72.6800000000 73.281 +42.2996020944 -71.1074567944 24. +41.7061735194 -70.2388616472 30. +41.6609211139 -70.1965735472 +41.6844507611 -70.2581985667 14. +41.6564939417 -70.2791640278 11. +41.7068362417 -70.2431389639 +41.7096973750 -70.2582481972 +41.5980938611 -70.8598253028 +42.2130752222 -71.0867660250 +42.0716480333 -73.2441034194 462. +42.2909656583 -71.0981265417 14.2 +42.7769444444 -70.9088888889 13.049 +42.5036111111 -71.1372222222 17.922 +42.5036111111 -71.1372222222 17.935 +42.5213888889 -73.1930555556 300.832 +42.5611111111 -70.7736111111 20.92 +42.3266666667 -70.9261111111 3.69 +42.3025000000 -70.9069444444 2.40 +42.1575000000 -72.5438888889 41.193 +42.3969444444 -71.9191666667 300.267 +42.1852222222 -71.1797777778 21.562 +41.9991666667 -71.2436111111 44.536 +42.2819444444 -71.0866666667 22.765 +42.6197222222 -71.2716666667 46.158 +42.7505555556 -70.9605555556 21.941 +42.2622222222 -71.4802777778 60.782 +42.3050000000 -71.9213888889 349.767 +42.1633053750 -72.3435610278 102.010 +42.3227777778 -71.2722222222 35.656 +42.6233333333 -72.5752777778 122.578 +41.9977777778 -70.7211111111 4.641 +41.7755555556 -70.7396388889 21.974 +42.2622222222 -72.6088888889 40.654 +41.9375000000 -71.1944444444 34.832 +42.2333333333 -72.2905555556 126.139 +42.1029098667 -72.5976481222 22.146 +42.2163888889 -72.8600000000 99.192 +42.3636111111 -73.1063888889 409.174 +42.4302777778 -73.3422222222 363.049 +41.6511111111 -70.2461111111 3.222 +42.6680555556 -72.0141666667 301.632 +42.5291666667 -72.6455555556 87.931 +42.4320092056 -71.0879601972 62.1