dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #38261
Re: [Branch ~dhis2-devs-core/dhis2/trunk] Rev 19296: WIP proper error reporting on failed GML parsing during import
Ok, so I had a closer look.
The issue is not a performance one like I first indicated, but rather a
combination of a few factors:
First, the GML does a pre-merge with the database before sending the
orgunit updates on to the meta data importer. Since your DB has
AttributeValues for the orgunit in question (three different
attributevalues) these are included in this pre-merge and are imported
along with the geospatial updates. Removing them (from the intermediate
dxf2 stream) causes the import to work again, but the attributevalues end
up being overwritten (i.e. removed from the DB), which we obviously don't
want.
Second: The core of the issue seems to be that the meta data importer can't
handle the attributevalues when they are present. This is also what's
reflected in the stacktraces given (which I was also able to reproduce on
the ZA database).
Could you please look into this, Morten? I've attached the generated
dxf-payload which is given to the metadata importer with this email. The DB
is given in an earlier email by Calle.
Halvdan
2015-06-26 11:44 GMT+02:00 Calle Hedberg <calle.hedberg@xxxxxxxxx>:
> Halvdan,
>
> Here's a stripped down version of the Free State instance (no records in
> the data value table). Restore it as za_fs_s (psql -U dhis
> -f za_fs_s_26062015ext.sql -d za_fs_s, password dhis)
>
> You have got that single-record country GML file already.
>
> I would appreciate any help in figuring out what's happening. Just note
> that I'm using Postgresql 9.4, Java 7.79 64bits, and tomcat 8.23.
>
> Best regards
> Calle
>
> On 26 June 2015 at 11:17, Calle Hedberg <calle.hedberg@xxxxxxxxx> wrote:
>
>> Hi,
>>
>> I ran it again (revision 19247) and pulled out the first part of the log
>> error:
>>
>> * INFO 2015-06-26 11:04:18,338 User 'Calle_Hedberg' started import at
>> Fri Jun 26 11:04:18 CAT 2015 (DefaultImportService.java [taskScheduler-1])
>> * INFO 2015-06-26 11:04:18,348 [Level: INFO, category: METADATA_IMPORT,
>> time: Fri Jun 26 11:04:18 CAT 2015, message: Importing meta-data]
>> (InMemoryNotifier.java [taskScheduler-1])
>> * INFO 2015-06-26 11:04:18,348 Building object-bridge maps
>> (preheatCache: true). (DefaultObjectBridge.java [taskScheduler-1])
>> * INFO 2015-06-26 11:04:21,141 Building object-bridge maps took 2.79
>> seconds. (DefaultObjectBridge.java [taskScheduler-1])
>> * INFO 2015-06-26 11:04:21,141 [Level: INFO, category: METADATA_IMPORT,
>> time: Fri Jun 26 11:04:21 CAT 2015, message: Importing 1 OrganisationUnits]
>> (InMemoryNotifier.java [taskScheduler-1])
>> * INFO 2015-06-26 11:04:21,151 Deleted objects associated with object of
>> type AttributeValue (DefaultDeletionManager.java [taskScheduler-1])
>> * INFO 2015-06-26 11:04:21,151 Deleted objects associated with object of
>> type AttributeValue (DefaultDeletionManager.java [taskScheduler-1])
>> * INFO 2015-06-26 11:04:21,151 Deleted objects associated with object of
>> type AttributeValue (DefaultDeletionManager.java [taskScheduler-1])
>> * ERROR 2015-06-26 11:04:21,432 Unexpected error occurred in scheduled
>> task. (TaskUtils.java [taskScheduler-1])
>> java.lang.StackOverflowError
>> at java.util.regex.Pattern$BmpCharProperty.<init>(Unknown Source)
>> at java.util.regex.Pattern$BmpCharProperty.<init>(Unknown Source)
>> at java.util.regex.Pattern$BitClass.<init>(Unknown Source)
>> at java.util.regex.Pattern.clazz(Unknown Source)
>> at java.util.regex.Pattern.sequence(Unknown Source)
>> at java.util.regex.Pattern.expr(Unknown Source)
>> at java.util.regex.Pattern.compile(Unknown Source)
>> at java.util.regex.Pattern.<init>(Unknown Source)
>> at java.util.regex.Pattern.compile(Unknown Source)
>> at java.lang.String.replaceAll(Unknown Source)
>> at com.google.common.base.MoreObjects.simpleName(MoreObjects.java:134)
>> at com.google.common.base.MoreObjects.toStringHelper(MoreObjects.java:95)
>> at org.hisp.dhis.attribute.Attribute.toString(Attribute.java:396)
>> at sun.reflect.GeneratedMethodAccessor626.invoke(Unknown Source)
>> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
>> at java.lang.reflect.Method.invoke(Unknown Source)
>> at
>> org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:196)
>> at
>> org.hisp.dhis.attribute.Attribute_$$_jvst804_10.toString(Attribute_$$_jvst804_10.java)
>> at java.lang.String.valueOf(Unknown Source)
>> at java.lang.StringBuilder.append(Unknown Source)
>> at
>> org.hisp.dhis.attribute.AttributeValue.toString(AttributeValue.java:122)
>> at java.lang.String.valueOf(Unknown Source)
>> at java.lang.StringBuilder.append(Unknown Source)
>> at java.util.AbstractCollection.toString(Unknown Source)
>> at
>> org.hibernate.collection.internal.PersistentSet.toString(PersistentSet.java:327)
>> at java.lang.String.valueOf(Unknown Source)
>> at java.lang.StringBuilder.append(Unknown Source)
>> at
>> com.google.common.base.MoreObjects$ToStringHelper.toString(MoreObjects.java:359)
>>
>> Any ideas?
>>
>> Regards
>> Calle
>>
>> On 26 June 2015 at 10:12, Calle Hedberg <calle.hedberg@xxxxxxxxx> wrote:
>>
>>> Hi,
>>>
>>> Firstly, yes we are using a custom revision - although it is SUPPOSED to
>>> be based on a 2.19 version from a few days ago. I will check that.
>>>
>>> BUT I have tried the import using revision 19247 too, and the
>>> problem/behaviour is exactly the same - it hangs. Whereas if I import into
>>> an older version of the same provincial instance that still runs on 2.18,
>>> it imports fine.
>>>
>>> The fact that the same GML file imports in the Sierra Leone demo - I
>>> cannot explain that, and the tomcat log only shows that
>>> Attribute.toString() looping...
>>>
>>> Can I create a stripped down version of the instance and upload it for
>>> you to test?
>>>
>>> Regards
>>> Calle
>>>
>>>
>>>
>>> On 26 June 2015 at 04:09, Morten Olav Hansen <mortenoh@xxxxxxxxx> wrote:
>>>
>>>> It seems to be looping in Attribute.toString(), I remember this was an
>>>> issue at some point.. but that was a long long time ago.. so maybe you need
>>>> a revision bump
>>>>
>>>> --
>>>> Morten
>>>>
>>>> On Fri, Jun 26, 2015 at 6:52 AM, Halvdan Grelland <halvdanhg@xxxxxxxxx>
>>>> wrote:
>>>>
>>>>> I tried your example GML on both our demo servers (dev on 2.20 and
>>>>> demo on 2.19, same rev as your server) and it works just fine.
>>>>>
>>>>> If you're experiencing it hanging and not finishing you might be
>>>>> experiencing some kind of performance and/or memory issue. The coordinate
>>>>> set is fairly large (though it works well on our demos, but does take some
>>>>> time to finish). You can verify by trying yourself to create the orgunit
>>>>> (with the exact name) and import the GML on the Sierra Leone demo.
>>>>>
>>>>> The fact that the dry run seems to "work" for you (as well as the
>>>>> stack trace you provided) also points at the issue not residing in the GML
>>>>> processing but rather in the actual import stage (the GML importer uses the
>>>>> metadata importer as it's backend).
>>>>>
>>>>> Another thing: The instance you linked to is using a revision of 16783
>>>>> and ver. 2.19, which is sept. 2014 (current is 2.19 is at 19247). Are
>>>>> you using a custom build? Does it contain customizations to the core in any
>>>>> way? That would also be a possible source of issues, obviously.
>>>>>
>>>>> You could try deploying this war
>>>>> https://apps.dhis2.org/ci/job/dhis-2.19/lastBuild/artifact/dhis-2/dhis-web/dhis-web-portal/target/dhis.war
>>>>> and replicate the issue using the za South Africa orgunit.
>>>>>
>>>>> 2015-06-26 0:35 GMT+02:00 Calle Hedberg <calle.hedberg@xxxxxxxxx>:
>>>>>
>>>>>> Halvdan,
>>>>>>
>>>>>> The GML files I'm trying to import using 2.19 is the same GML files
>>>>>> I've been using successfully for 2.17, 2.18 (so it's using NAME). Something
>>>>>> in the import has changed:
>>>>>>
>>>>>> I have attached the small GML file I'm trying to import - it has the
>>>>>> international boundary of SA, so there is only ONE GIS record (top node in
>>>>>> all our OrgHierarchies). It imports with no problems in 2.18.
>>>>>>
>>>>>> In 2.19, if I choose YES for dry run, it will complete with usual
>>>>>> import summary etc.
>>>>>>
>>>>>> If I choose NO for dry run, I get
>>>>>> 2015-06-25 22:18:15Importing 1 OrganisationUnits 2015-06-25 22:18:11Importing
>>>>>> meta-data
>>>>>> and there it hangs. Nothing gets imported.
>>>>>>
>>>>>> The online instance you can try to import into is
>>>>>> http://fs.dhis.dhmis.org/staging/
>>>>>>
>>>>>> When I try to import into a local instance, it seems to enter some
>>>>>> kind of endless loop based on the tomcat log:
>>>>>> at org.hisp.dhis.attribute.Attribute.toString(Attribute.java:397)
>>>>>> at sun.reflect.GeneratedMethodAccessor723.invoke(Unknown Source)
>>>>>> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
>>>>>> at java.lang.reflect.Method.invoke(Unknown Source)
>>>>>> at
>>>>>> org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:192)
>>>>>> at
>>>>>> org.hisp.dhis.attribute.Attribute_$$_javassist_16.toString(Attribute_$$_javassist_16.java)
>>>>>> at java.lang.String.valueOf(Unknown Source)
>>>>>> at java.lang.StringBuilder.append(Unknown Source)
>>>>>> at
>>>>>> org.hisp.dhis.attribute.AttributeValue.toString(AttributeValue.java:136)
>>>>>> at java.lang.String.valueOf(Unknown Source)
>>>>>> at java.lang.StringBuilder.append(Unknown Source)
>>>>>> at java.util.AbstractCollection.toString(Unknown Source)
>>>>>> at
>>>>>> org.hibernate.collection.internal.PersistentSet.toString(PersistentSet.java:327)
>>>>>> at java.lang.String.valueOf(Unknown Source)
>>>>>> at java.lang.StringBuilder.append(Unknown Source)
>>>>>> at
>>>>>> com.google.common.base.MoreObjects$ToStringHelper.toString(MoreObjects.java:359)
>>>>>> at org.hisp.dhis.attribute.Attribute.toString(Attribute.java:397)
>>>>>> at sun.reflect.GeneratedMethodAccessor723.invoke(Unknown Source)
>>>>>> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
>>>>>> at java.lang.reflect.Method.invoke(Unknown Source)
>>>>>> at
>>>>>> org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:192)
>>>>>> at
>>>>>> org.hisp.dhis.attribute.Attribute_$$_javassist_16.toString(Attribute_$$_javassist_16.java)
>>>>>> at java.lang.String.valueOf(Unknown Source)
>>>>>> at java.lang.StringBuilder.append(Unknown Source)
>>>>>> at
>>>>>> org.hisp.dhis.attribute.AttributeValue.toString(AttributeValue.java:136)
>>>>>> at java.lang.String.valueOf(Unknown Source)
>>>>>> at java.lang.StringBuilder.append(Unknown Source)
>>>>>> at java.util.AbstractCollection.toString(Unknown Source)
>>>>>> at
>>>>>> org.hibernate.collection.internal.PersistentSet.toString(PersistentSet.java:327)
>>>>>> at java.lang.String.valueOf(Unknown Source)
>>>>>> at java.lang.StringBuilder.append(Unknown Source)
>>>>>> at
>>>>>> com.google.common.base.MoreObjects$ToStringHelper.toString(MoreObjects.java:359)
>>>>>> at org.hisp.dhis.attribute.Attribute.toString(Attribute.java:397)
>>>>>> at sun.reflect.GeneratedMethodAccessor723.invoke(Unknown Source)
>>>>>> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
>>>>>> at java.lang.reflect.Method.invoke(Unknown Source)
>>>>>>
>>>>>> On 25 June 2015 at 18:16, Halvdan Grelland <halvdanhg@xxxxxxxxx>
>>>>>> wrote:
>>>>>>
>>>>>>> Hi Calle,
>>>>>>>
>>>>>>> The commit you've replied to implements (but not fully, therefore
>>>>>>> 'WIP', there's another commit following it pretty soon after) better error
>>>>>>> reporting feedback to the user through the interface. I.e. not having to
>>>>>>> see the stacktrace on the server to determine if and why something went
>>>>>>> wrong. I believe you have been among the people requesting this too :)
>>>>>>>
>>>>>>> Also, as you're referencing, we've made some other changes to GML
>>>>>>> import. In particular the importer will now match on uid, code or name, as
>>>>>>> oppsed to the former mode of matching only on name. This is not reflected
>>>>>>> in the UI as it is a backend enhancement only, and does not change the
>>>>>>> import options at all. It IS, however, documented and ready for you to read
>>>>>>> about. Short version: it matches on a prioritized list of uid -> code ->
>>>>>>> name. Long version:
>>>>>>> https://www.dhis2.org/doc/snapshot/en/user/html/ch18s02.html
>>>>>>>
>>>>>>> Be adviced that the commit you've referenced is towards development
>>>>>>> trunk, and is not backported to 2.19, the match on multiple identifiers,
>>>>>>> however, was introduced in 2.19 and should work in current 2.19 stable. If
>>>>>>> you're having problems with it you can send me a full stack trace and
>>>>>>> preferably the GML input data.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> 2015-06-25 17:54 GMT+02:00 Calle Hedberg <calle.hedberg@xxxxxxxxx>:
>>>>>>>
>>>>>>>> Hi,
>>>>>>>>
>>>>>>>> I'm unable to import GML files using 2.19 (the same files import
>>>>>>>> fine in 2.18) - the import simply hangs (endless rolling progress bar icon).
>>>>>>>>
>>>>>>>> Will the above bug-fix sort out that problem - I do not understand
>>>>>>>> what the above actually means, or if the GML format has changed in some way.
>>>>>>>>
>>>>>>>> Note also that the final 2.19 release was supposed to include a
>>>>>>>> more diversified GML import - but I cannot see WHERE to do that (I still
>>>>>>>> see the same two buttons: choose file and import, either dry run or not)
>>>>>>>>
>>>>>>>> Regards
>>>>>>>> Calle
>>>>>>>>
>>>>>>>> On 5 June 2015 at 14:57, <noreply@xxxxxxxxxxxxx> wrote:
>>>>>>>>
>>>>>>>>> ------------------------------------------------------------
>>>>>>>>> revno: 19296
>>>>>>>>> committer: Halvdan Hoem Grelland <halvdanhg@xxxxxxxxx>
>>>>>>>>> branch nick: dhis2
>>>>>>>>> timestamp: Fri 2015-06-05 14:56:34 +0200
>>>>>>>>> message:
>>>>>>>>> WIP proper error reporting on failed GML parsing during import
>>>>>>>>> added:
>>>>>>>>>
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/GmlPreProcessingResult.java
>>>>>>>>> modified:
>>>>>>>>>
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/DefaultGmlImportService.java
>>>>>>>>>
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/GmlImportService.java
>>>>>>>>>
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/test/java/org/hisp/dhis/dxf2/gml/GmlImportServiceTest.java
>>>>>>>>>
>>>>>>>>> dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/scheduling/SpringScheduler.java
>>>>>>>>>
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/dxf2/MetaDataImportAction.java
>>>>>>>>>
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/util/ImportMetaDataGmlTask.java
>>>>>>>>>
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/resources/org/hisp/dhis/importexport/i18n_module.properties
>>>>>>>>>
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/importMetaDataSummary.vm
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> lp:dhis2
>>>>>>>>> https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
>>>>>>>>>
>>>>>>>>> Your team DHIS 2 developers is subscribed to branch lp:dhis2.
>>>>>>>>> To unsubscribe from this branch go to
>>>>>>>>> https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
>>>>>>>>>
>>>>>>>>> === modified file
>>>>>>>>> 'dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/DefaultGmlImportService.java'
>>>>>>>>> ---
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/DefaultGmlImportService.java
>>>>>>>>> 2015-06-03 15:00:19 +0000
>>>>>>>>> +++
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/DefaultGmlImportService.java
>>>>>>>>> 2015-06-05 12:56:34 +0000
>>>>>>>>> @@ -32,6 +32,8 @@
>>>>>>>>> import com.google.common.base.Strings;
>>>>>>>>> import com.google.common.collect.Iterators;
>>>>>>>>> import com.google.common.collect.Maps;
>>>>>>>>> +import org.apache.commons.io.IOUtils;
>>>>>>>>> +import org.hibernate.Hibernate;
>>>>>>>>> import org.hisp.dhis.common.IdentifiableObjectManager;
>>>>>>>>> import org.hisp.dhis.common.IdentifiableProperty;
>>>>>>>>> import org.hisp.dhis.common.MergeStrategy;
>>>>>>>>> @@ -88,13 +90,91 @@
>>>>>>>>> // GmlImportService implementation
>>>>>>>>> //
>>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>>
>>>>>>>>> + @Transactional
>>>>>>>>> + @Override
>>>>>>>>> + public GmlPreProcessingResult preProcessGml( InputStream
>>>>>>>>> inputStream )
>>>>>>>>> + {
>>>>>>>>> + InputStream dxfStream = null;
>>>>>>>>> + MetaData metaData = null;
>>>>>>>>> +
>>>>>>>>> + try
>>>>>>>>> + {
>>>>>>>>> + dxfStream = transformGml( inputStream );
>>>>>>>>> + metaData = renderService.fromXml( dxfStream,
>>>>>>>>> MetaData.class );
>>>>>>>>> + }
>>>>>>>>> + catch ( IOException | TransformerException e )
>>>>>>>>> + {
>>>>>>>>> + return GmlPreProcessingResult.failure( e );
>>>>>>>>> + }
>>>>>>>>> + finally
>>>>>>>>> + {
>>>>>>>>> + IOUtils.closeQuietly( dxfStream );
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + Map<String, OrganisationUnit> uidMap =
>>>>>>>>> Maps.newHashMap(), codeMap = Maps.newHashMap(), nameMap = Maps.newHashMap();
>>>>>>>>> +
>>>>>>>>> + matchAndFilterOnIdentifiers(
>>>>>>>>> metaData.getOrganisationUnits(), uidMap, codeMap, nameMap );
>>>>>>>>> +
>>>>>>>>> + Map<String, OrganisationUnit> persistedUidMap =
>>>>>>>>> getMatchingPersistedOrgUnits( uidMap.keySet(), IdentifiableProperty.UID );
>>>>>>>>> + Map<String, OrganisationUnit> persistedCodeMap =
>>>>>>>>> getMatchingPersistedOrgUnits( codeMap.keySet(), IdentifiableProperty.CODE );
>>>>>>>>> + Map<String, OrganisationUnit> persistedNameMap =
>>>>>>>>> getMatchingPersistedOrgUnits( nameMap.keySet(), IdentifiableProperty.NAME );
>>>>>>>>> +
>>>>>>>>> + Iterator<OrganisationUnit> persistedIterator =
>>>>>>>>> Iterators.concat( persistedUidMap.values().iterator(),
>>>>>>>>> + persistedCodeMap.values().iterator(),
>>>>>>>>> persistedNameMap.values().iterator() );
>>>>>>>>> +
>>>>>>>>> + while ( persistedIterator.hasNext() )
>>>>>>>>> + {
>>>>>>>>> + OrganisationUnit persisted =
>>>>>>>>> persistedIterator.next(), imported = null;
>>>>>>>>> +
>>>>>>>>> + if ( !Strings.isNullOrEmpty( persisted.getUid() ) &&
>>>>>>>>> uidMap.containsKey( persisted.getUid() ) )
>>>>>>>>> + {
>>>>>>>>> + imported = uidMap.get( persisted.getUid() );
>>>>>>>>> + }
>>>>>>>>> + else if ( !Strings.isNullOrEmpty( persisted.getCode()
>>>>>>>>> ) && codeMap.containsKey( persisted.getCode() ) )
>>>>>>>>> + {
>>>>>>>>> + imported = codeMap.get( persisted.getCode() );
>>>>>>>>> + }
>>>>>>>>> + else if ( !Strings.isNullOrEmpty( persisted.getName()
>>>>>>>>> ) && nameMap.containsKey( persisted.getName() ) )
>>>>>>>>> + {
>>>>>>>>> + imported = nameMap.get( persisted.getName() );
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + if ( imported == null || imported.getCoordinates() ==
>>>>>>>>> null || imported.getFeatureType() == null )
>>>>>>>>> + {
>>>>>>>>> + continue; // Failed to dereference a persisted
>>>>>>>>> entity for this org unit or geo data incomplete/missing, therefore ignore
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + mergeNonGeoData( persisted, imported );
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + return GmlPreProcessingResult.success( metaData );
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> @Override
>>>>>>>>> public MetaData fromGml( InputStream inputStream )
>>>>>>>>> throws IOException, TransformerException
>>>>>>>>> {
>>>>>>>>> - InputStream dxfStream = transformGml( inputStream );
>>>>>>>>> - MetaData metaData = renderService.fromXml( dxfStream,
>>>>>>>>> MetaData.class );
>>>>>>>>> - dxfStream.close();
>>>>>>>>> + InputStream dxfStream;
>>>>>>>>> + MetaData metaData;
>>>>>>>>> +
>>>>>>>>> + try
>>>>>>>>> + {
>>>>>>>>> + dxfStream = transformGml( inputStream );
>>>>>>>>> + }
>>>>>>>>> + catch (Exception e)
>>>>>>>>> + {
>>>>>>>>> + dxfStream = null;
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + if(dxfStream != null)
>>>>>>>>> + {
>>>>>>>>> + metaData = renderService.fromXml( dxfStream,
>>>>>>>>> MetaData.class );
>>>>>>>>> + dxfStream.close();
>>>>>>>>> + }
>>>>>>>>> + else
>>>>>>>>> + {
>>>>>>>>> + return null;
>>>>>>>>> + }
>>>>>>>>>
>>>>>>>>> Map<String, OrganisationUnit> uidMap =
>>>>>>>>> Maps.newHashMap(), codeMap = Maps.newHashMap(), nameMap = Maps.newHashMap();
>>>>>>>>>
>>>>>>>>> @@ -143,6 +223,7 @@
>>>>>>>>> importService.importMetaData( userUid, fromGml(
>>>>>>>>> inputStream ), importOptions, taskId );
>>>>>>>>> }
>>>>>>>>>
>>>>>>>>> + @Transactional
>>>>>>>>> @Override
>>>>>>>>> public void importGml( MetaData metaData, String userUid,
>>>>>>>>> ImportOptions importOptions, TaskId taskId )
>>>>>>>>> {
>>>>>>>>>
>>>>>>>>> === modified file
>>>>>>>>> 'dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/GmlImportService.java'
>>>>>>>>> ---
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/GmlImportService.java
>>>>>>>>> 2015-06-03 15:00:19 +0000
>>>>>>>>> +++
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/GmlImportService.java
>>>>>>>>> 2015-06-05 12:56:34 +0000
>>>>>>>>> @@ -62,6 +62,24 @@
>>>>>>>>> throws IOException, TransformerException;
>>>>>>>>>
>>>>>>>>> /**
>>>>>>>>> + * Pre-process a GML document. The process, in short, entails
>>>>>>>>> the following:
>>>>>>>>> + * <ol>
>>>>>>>>> + * <li>Parse the GML payload and transform it into DXF2
>>>>>>>>> format</li>
>>>>>>>>> + * <li>Get the given identifiers (uid, code or name) from
>>>>>>>>> the parsed payload and fetch
>>>>>>>>> + * the corresponding entities from the DB</li>
>>>>>>>>> + * <li>Merge the geospatial data given in the input GML
>>>>>>>>> into DB entities and return</li>
>>>>>>>>> + * </ol>
>>>>>>>>> + *
>>>>>>>>> + * The result of this process in returned in a {@link
>>>>>>>>> GmlPreProcessingResult} which
>>>>>>>>> + * encapsulates the returned {@link MetaData} object or the
>>>>>>>>> exception in cause of parse
>>>>>>>>> + * failure due to IO errors or malformed input.
>>>>>>>>> + *
>>>>>>>>> + * @param gmlInputStream the InputStream providing the GML
>>>>>>>>> input.
>>>>>>>>> + * @return a GmlPreProcessingResult representing the end
>>>>>>>>> result of the process.
>>>>>>>>> + */
>>>>>>>>> + GmlPreProcessingResult preProcessGml( InputStream
>>>>>>>>> gmlInputStream );
>>>>>>>>> +
>>>>>>>>> + /**
>>>>>>>>> * Imports GML data and merges the geospatial data updates
>>>>>>>>> into the database.
>>>>>>>>> * See {@link #fromGml(InputStream)} for details on the
>>>>>>>>> underlying process.
>>>>>>>>> *
>>>>>>>>>
>>>>>>>>> === added file
>>>>>>>>> 'dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/GmlPreProcessingResult.java'
>>>>>>>>> ---
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/GmlPreProcessingResult.java
>>>>>>>>> 1970-01-01 00:00:00 +0000
>>>>>>>>> +++
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/gml/GmlPreProcessingResult.java
>>>>>>>>> 2015-06-05 12:56:34 +0000
>>>>>>>>> @@ -0,0 +1,70 @@
>>>>>>>>> +package org.hisp.dhis.dxf2.gml;
>>>>>>>>> +
>>>>>>>>> +import org.hisp.dhis.dxf2.metadata.MetaData;
>>>>>>>>> +
>>>>>>>>> +import java.io.InputStream;
>>>>>>>>> +
>>>>>>>>> +/**
>>>>>>>>> + * Wraps the result of {@link
>>>>>>>>> GmlImportService#preProcessGml(InputStream)}.
>>>>>>>>> + * This is necessary when performing GML import on a context
>>>>>>>>> where exceptions
>>>>>>>>> + * due to malformed input cannot be caught, thus leaving the user
>>>>>>>>> uninformed of
>>>>>>>>> + * the error. This class will wrap the failure and provide the
>>>>>>>>> Throwable to the
>>>>>>>>> + * consuming class on error or the resulting MetaData object on
>>>>>>>>> success.
>>>>>>>>> + *
>>>>>>>>> + * @author Halvdan Hoem grelland <halvdanhg@xxxxxxxxx>
>>>>>>>>> + */
>>>>>>>>> +public final class GmlPreProcessingResult
>>>>>>>>> +{
>>>>>>>>> + private boolean isSuccess;
>>>>>>>>> + private MetaData resultMetaData;
>>>>>>>>> + private Throwable throwable;
>>>>>>>>> +
>>>>>>>>> + private GmlPreProcessingResult(){}
>>>>>>>>> +
>>>>>>>>> + public static GmlPreProcessingResult success( MetaData
>>>>>>>>> resultMetaData ) {
>>>>>>>>> + GmlPreProcessingResult result = new
>>>>>>>>> GmlPreProcessingResult();
>>>>>>>>> + result.setResultMetaData( resultMetaData );
>>>>>>>>> + result.setSuccess( true );
>>>>>>>>> +
>>>>>>>>> + return result;
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + public static GmlPreProcessingResult failure( Throwable
>>>>>>>>> throwable )
>>>>>>>>> + {
>>>>>>>>> + GmlPreProcessingResult result = new
>>>>>>>>> GmlPreProcessingResult();
>>>>>>>>> + result.setThrowable( throwable );
>>>>>>>>> + result.setSuccess( false );
>>>>>>>>> +
>>>>>>>>> + return result;
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + private void setSuccess( boolean isSuccess )
>>>>>>>>> + {
>>>>>>>>> + this.isSuccess = isSuccess;
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + public boolean isSuccess()
>>>>>>>>> + {
>>>>>>>>> + return isSuccess;
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + private void setResultMetaData( MetaData resultMetaData )
>>>>>>>>> + {
>>>>>>>>> + this.resultMetaData = resultMetaData;
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + public MetaData getResultMetaData()
>>>>>>>>> + {
>>>>>>>>> + return resultMetaData;
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + private void setThrowable( Throwable throwable )
>>>>>>>>> + {
>>>>>>>>> + this.throwable = throwable;
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + public Throwable getThrowable()
>>>>>>>>> + {
>>>>>>>>> + return throwable;
>>>>>>>>> + }
>>>>>>>>> +}
>>>>>>>>>
>>>>>>>>> === modified file
>>>>>>>>> 'dhis-2/dhis-services/dhis-service-dxf2/src/test/java/org/hisp/dhis/dxf2/gml/GmlImportServiceTest.java'
>>>>>>>>> ---
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/test/java/org/hisp/dhis/dxf2/gml/GmlImportServiceTest.java
>>>>>>>>> 2015-01-17 07:41:26 +0000
>>>>>>>>> +++
>>>>>>>>> dhis-2/dhis-services/dhis-service-dxf2/src/test/java/org/hisp/dhis/dxf2/gml/GmlImportServiceTest.java
>>>>>>>>> 2015-06-05 12:56:34 +0000
>>>>>>>>> @@ -117,4 +117,6 @@
>>>>>>>>> assertEquals( 1, units.get(
>>>>>>>>> "Blindern").getCoordinatesAsList().get( 0 ).getNumberOfCoordinates() );
>>>>>>>>> assertEquals( 76, units.get( "Forskningsparken"
>>>>>>>>> ).getCoordinatesAsList().get(0).getNumberOfCoordinates() );
>>>>>>>>> }
>>>>>>>>> +
>>>>>>>>> + // TODO Add test for
>>>>>>>>> GmlImportService#preProcessGml(InputStream)
>>>>>>>>> }
>>>>>>>>>
>>>>>>>>> === modified file
>>>>>>>>> 'dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/scheduling/SpringScheduler.java'
>>>>>>>>> ---
>>>>>>>>> dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/scheduling/SpringScheduler.java
>>>>>>>>> 2015-05-30 13:36:07 +0000
>>>>>>>>> +++
>>>>>>>>> dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/scheduling/SpringScheduler.java
>>>>>>>>> 2015-06-05 12:56:34 +0000
>>>>>>>>> @@ -77,7 +77,7 @@
>>>>>>>>> {
>>>>>>>>> taskExecutor.execute( task );
>>>>>>>>> }
>>>>>>>>> -
>>>>>>>>> +
>>>>>>>>> @Override
>>>>>>>>> public boolean scheduleTask( String key, Runnable task,
>>>>>>>>> String cronExpr )
>>>>>>>>> {
>>>>>>>>>
>>>>>>>>> === modified file
>>>>>>>>> 'dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/dxf2/MetaDataImportAction.java'
>>>>>>>>> ---
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/dxf2/MetaDataImportAction.java
>>>>>>>>> 2015-05-28 16:10:07 +0000
>>>>>>>>> +++
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/dxf2/MetaDataImportAction.java
>>>>>>>>> 2015-06-05 12:56:34 +0000
>>>>>>>>> @@ -187,7 +187,7 @@
>>>>>>>>> }
>>>>>>>>> else if ( "gml".equals( importFormat ) )
>>>>>>>>> {
>>>>>>>>> - scheduler.executeTask( new ImportMetaDataGmlTask(
>>>>>>>>> userId, gmlImportService, importOptions, in, taskId ) );
>>>>>>>>> + scheduler.executeTask( new ImportMetaDataGmlTask(
>>>>>>>>> userId, gmlImportService, notifier, importOptions, in, taskId ) );
>>>>>>>>> }
>>>>>>>>> else if ( "json".equals( importFormat ) || "xml".equals(
>>>>>>>>> importFormat ) )
>>>>>>>>> {
>>>>>>>>>
>>>>>>>>> === modified file
>>>>>>>>> 'dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/util/ImportMetaDataGmlTask.java'
>>>>>>>>> ---
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/util/ImportMetaDataGmlTask.java
>>>>>>>>> 2015-04-11 14:06:51 +0000
>>>>>>>>> +++
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/util/ImportMetaDataGmlTask.java
>>>>>>>>> 2015-06-05 12:56:34 +0000
>>>>>>>>> @@ -28,14 +28,18 @@
>>>>>>>>> * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
>>>>>>>>> */
>>>>>>>>>
>>>>>>>>> +import org.apache.commons.lang.exception.ExceptionUtils;
>>>>>>>>> import org.apache.commons.logging.Log;
>>>>>>>>> import org.apache.commons.logging.LogFactory;
>>>>>>>>> import org.hisp.dhis.dxf2.common.ImportOptions;
>>>>>>>>> import org.hisp.dhis.dxf2.gml.GmlImportService;
>>>>>>>>> +import org.hisp.dhis.dxf2.gml.GmlPreProcessingResult;
>>>>>>>>> import org.hisp.dhis.scheduling.TaskId;
>>>>>>>>> +import org.hisp.dhis.system.notification.NotificationLevel;
>>>>>>>>> +import org.hisp.dhis.system.notification.Notifier;
>>>>>>>>> +import org.springframework.web.util.HtmlUtils;
>>>>>>>>> +import org.xml.sax.SAXParseException;
>>>>>>>>>
>>>>>>>>> -import javax.xml.transform.TransformerException;
>>>>>>>>> -import java.io.IOException;
>>>>>>>>> import java.io.InputStream;
>>>>>>>>>
>>>>>>>>> /**
>>>>>>>>> @@ -50,12 +54,15 @@
>>>>>>>>>
>>>>>>>>> private String userUid;
>>>>>>>>>
>>>>>>>>> +
>>>>>>>>> //
>>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>> // Dependencies
>>>>>>>>> //
>>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>>
>>>>>>>>> private GmlImportService gmlImportService;
>>>>>>>>>
>>>>>>>>> + private Notifier notifier;
>>>>>>>>> +
>>>>>>>>> private ImportOptions importOptions;
>>>>>>>>>
>>>>>>>>> private InputStream inputStream;
>>>>>>>>> @@ -64,11 +71,12 @@
>>>>>>>>> // Constructors
>>>>>>>>> //
>>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>>
>>>>>>>>> - public ImportMetaDataGmlTask( String userUid,
>>>>>>>>> GmlImportService gmlImportService,
>>>>>>>>> + public ImportMetaDataGmlTask( String userUid,
>>>>>>>>> GmlImportService gmlImportService, Notifier notifier,
>>>>>>>>> ImportOptions importOptions, InputStream inputStream,
>>>>>>>>> TaskId taskId )
>>>>>>>>> {
>>>>>>>>> this.userUid = userUid;
>>>>>>>>> this.gmlImportService = gmlImportService;
>>>>>>>>> + this.notifier = notifier;
>>>>>>>>> this.importOptions = importOptions;
>>>>>>>>> this.inputStream = inputStream;
>>>>>>>>> this.taskId = taskId;
>>>>>>>>> @@ -83,15 +91,37 @@
>>>>>>>>> {
>>>>>>>>> importOptions.setImportStrategy( "update" ); // Force
>>>>>>>>> update only for GML import
>>>>>>>>>
>>>>>>>>> - try
>>>>>>>>> - {
>>>>>>>>> - gmlImportService.importGml( inputStream, userUid,
>>>>>>>>> importOptions, taskId );
>>>>>>>>> - }
>>>>>>>>> - catch ( IOException | TransformerException e )
>>>>>>>>> - {
>>>>>>>>> - log.error( "Unable to read GML data from input
>>>>>>>>> stream", e );
>>>>>>>>> -
>>>>>>>>> - throw new RuntimeException( "Failed to parse GML
>>>>>>>>> input stream", e );
>>>>>>>>> - }
>>>>>>>>> + GmlPreProcessingResult gmlPreProcessingResult =
>>>>>>>>> gmlImportService.preProcessGml( inputStream );
>>>>>>>>> +
>>>>>>>>> + if ( !gmlPreProcessingResult.isSuccess() )
>>>>>>>>> + {
>>>>>>>>> + Throwable throwable =
>>>>>>>>> gmlPreProcessingResult.getThrowable();
>>>>>>>>> + String message = createErrorMessage( throwable );
>>>>>>>>> +
>>>>>>>>> + notifier.notify( taskId, NotificationLevel.ERROR,
>>>>>>>>> message, false );
>>>>>>>>> + log.error( "GML import failed: " + message, throwable
>>>>>>>>> );
>>>>>>>>> +
>>>>>>>>> + return;
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + gmlImportService.importGml(
>>>>>>>>> gmlPreProcessingResult.getResultMetaData(), userUid, importOptions, taskId
>>>>>>>>> );
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + private String createErrorMessage( Throwable throwable )
>>>>>>>>> + {
>>>>>>>>> + String message = "";
>>>>>>>>> + Throwable rootThrowable = ExceptionUtils.getRootCause(
>>>>>>>>> throwable );
>>>>>>>>> +
>>>>>>>>> + if ( rootThrowable instanceof SAXParseException )
>>>>>>>>> + {
>>>>>>>>> + SAXParseException e = (SAXParseException)
>>>>>>>>> rootThrowable;
>>>>>>>>> + message += "Syntax error on line " +
>>>>>>>>> e.getLineNumber() + ". " + e.getMessage();
>>>>>>>>> + }
>>>>>>>>> + else
>>>>>>>>> + {
>>>>>>>>> + message += rootThrowable.getMessage();
>>>>>>>>> + }
>>>>>>>>> +
>>>>>>>>> + return HtmlUtils.htmlEscape( message );
>>>>>>>>> }
>>>>>>>>> }
>>>>>>>>>
>>>>>>>>> === modified file
>>>>>>>>> 'dhis-2/dhis-web/dhis-web-importexport/src/main/resources/org/hisp/dhis/importexport/i18n_module.properties'
>>>>>>>>> ---
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/resources/org/hisp/dhis/importexport/i18n_module.properties
>>>>>>>>> 2015-02-20 11:17:31 +0000
>>>>>>>>> +++
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/resources/org/hisp/dhis/importexport/i18n_module.properties
>>>>>>>>> 2015-06-05 12:56:34 +0000
>>>>>>>>> @@ -300,6 +300,7 @@
>>>>>>>>> ignored=Ignored
>>>>>>>>> conflicts=Conflicts
>>>>>>>>> no_conflicts_found=No conflicts found
>>>>>>>>> +no_import_summary_available=No summary available
>>>>>>>>> type=Type
>>>>>>>>> count=Count
>>>>>>>>> export_as_xml=Export as XML
>>>>>>>>>
>>>>>>>>> === modified file
>>>>>>>>> 'dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/importMetaDataSummary.vm'
>>>>>>>>> ---
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/importMetaDataSummary.vm
>>>>>>>>> 2013-03-21 09:15:24 +0000
>>>>>>>>> +++
>>>>>>>>> dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/importMetaDataSummary.vm
>>>>>>>>> 2015-06-05 12:56:34 +0000
>>>>>>>>> @@ -1,4 +1,6 @@
>>>>>>>>> <h3>$i18n.getString( "import_summary" )</h3>
>>>>>>>>> +
>>>>>>>>> +#if( $summary ) ## ImportSummary can be null on failed GML import
>>>>>>>>> (pre-processing fails)
>>>>>>>>> <h4>$i18n.getString( "import_count" )</h4>
>>>>>>>>>
>>>>>>>>> $summary.importCount.imported Imported<br/>
>>>>>>>>> @@ -54,3 +56,6 @@
>>>>>>>>> #else
>>>>>>>>> <p>$i18n.getString( "no_conflicts_found" )</p>
>>>>>>>>> #end
>>>>>>>>> +#else
>>>>>>>>> + $i18n.getString( "no_summary_available" )
>>>>>>>>> +#end
>>>>>>>>> \ No newline at end of file
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> _______________________________________________
>>>>>>>>> Mailing list: https://launchpad.net/~dhis2-devs
>>>>>>>>> Post to : dhis2-devs@xxxxxxxxxxxxxxxxxxx
>>>>>>>>> Unsubscribe : https://launchpad.net/~dhis2-devs
>>>>>>>>> More help : https://help.launchpad.net/ListHelp
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> --
>>>>>>>>
>>>>>>>> *******************************************
>>>>>>>>
>>>>>>>> Calle Hedberg
>>>>>>>>
>>>>>>>> 46D Alma Road, 7700 Rosebank, SOUTH AFRICA
>>>>>>>>
>>>>>>>> Tel/fax (home): +27-21-685-6472
>>>>>>>>
>>>>>>>> Cell: +27-82-853-5352
>>>>>>>>
>>>>>>>> Iridium SatPhone: +8816-315-19274
>>>>>>>>
>>>>>>>> Email: calle.hedberg@xxxxxxxxx
>>>>>>>>
>>>>>>>> Skype: calle_hedberg
>>>>>>>>
>>>>>>>> *******************************************
>>>>>>>>
>>>>>>>>
>>>>>>>> _______________________________________________
>>>>>>>> Mailing list: https://launchpad.net/~dhis2-devs
>>>>>>>> Post to : dhis2-devs@xxxxxxxxxxxxxxxxxxx
>>>>>>>> Unsubscribe : https://launchpad.net/~dhis2-devs
>>>>>>>> More help : https://help.launchpad.net/ListHelp
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>>
>>>>>> *******************************************
>>>>>>
>>>>>> Calle Hedberg
>>>>>>
>>>>>> 46D Alma Road, 7700 Rosebank, SOUTH AFRICA
>>>>>>
>>>>>> Tel/fax (home): +27-21-685-6472
>>>>>>
>>>>>> Cell: +27-82-853-5352
>>>>>>
>>>>>> Iridium SatPhone: +8816-315-19274
>>>>>>
>>>>>> Email: calle.hedberg@xxxxxxxxx
>>>>>>
>>>>>> Skype: calle_hedberg
>>>>>>
>>>>>> *******************************************
>>>>>>
>>>>>>
>>>>>
>>>>> _______________________________________________
>>>>> Mailing list: https://launchpad.net/~dhis2-devs
>>>>> Post to : dhis2-devs@xxxxxxxxxxxxxxxxxxx
>>>>> Unsubscribe : https://launchpad.net/~dhis2-devs
>>>>> More help : https://help.launchpad.net/ListHelp
>>>>>
>>>>>
>>>>
>>>
>>>
>>> --
>>>
>>> *******************************************
>>>
>>> Calle Hedberg
>>>
>>> 46D Alma Road, 7700 Rosebank, SOUTH AFRICA
>>>
>>> Tel/fax (home): +27-21-685-6472
>>>
>>> Cell: +27-82-853-5352
>>>
>>> Iridium SatPhone: +8816-315-19274
>>>
>>> Email: calle.hedberg@xxxxxxxxx
>>>
>>> Skype: calle_hedberg
>>>
>>> *******************************************
>>>
>>>
>>
>>
>> --
>>
>> *******************************************
>>
>> Calle Hedberg
>>
>> 46D Alma Road, 7700 Rosebank, SOUTH AFRICA
>>
>> Tel/fax (home): +27-21-685-6472
>>
>> Cell: +27-82-853-5352
>>
>> Iridium SatPhone: +8816-315-19274
>>
>> Email: calle.hedberg@xxxxxxxxx
>>
>> Skype: calle_hedberg
>>
>> *******************************************
>>
>>
>
>
> --
>
> *******************************************
>
> Calle Hedberg
>
> 46D Alma Road, 7700 Rosebank, SOUTH AFRICA
>
> Tel/fax (home): +27-21-685-6472
>
> Cell: +27-82-853-5352
>
> Iridium SatPhone: +8816-315-19274
>
> Email: calle.hedberg@xxxxxxxxx
>
> Skype: calle_hedberg
>
> *******************************************
>
>
<?xml version='1.0' encoding='UTF-8'?>
<metaData xmlns="http://dhis2.org/schema/dxf/2.0">
<organisationUnits>
<organisationUnit code="640301" name="za South Africa (National Government)" created="2015-06-25T06:44:58.000+0000"
lastUpdated="2013-04-17T22:00:00.000+0000" shortName="South Africa" uuid="695681f9-480f-49b8-a49f-0e99c02746b5" level="1"
id="JLA7wl59oN3">
<externalAccess>false</externalAccess>
<openingDate>1994-01-01</openingDate>
<closedDate>9999-12-31</closedDate>
<comment>Included to ensure complete organisational hierarchy</comment>
<featureType>MultiPolygon</featureType>
<coordinates>[[[[29.0934,-32.0593],[29.092,-32.0607],[29.0914,-32.0635],[29.0875,-32.064],[29.0868,-32.0667],[29.0887,-32.0723],[29.0869,-32.0751],[29.089,-32.077],[29.0868,-32.0792],[29.08,-32.0806],[29.0795,-32.0793],[29.0759,-32.0806],[29.0756,-32.0826],[29.0677,-32.089],[29.0699,-32.0926],[29.0701,-32.0947],[29.0676,-32.0982],[29.0649,-32.0963],[29.062,-32.0978],[29.0625,-32.1008],[29.0613,-32.102],[29.0561,-32.1035],[29.054,-32.1027],[29.0507,-32.1033],[29.0461,-32.1068],[29.0458,-32.1082],[29.0419,-32.1108],[29.0384,-32.1145],[29.0358,-32.1159],[29.0321,-32.1153],[29.0324,-32.1176],[29.0293,-32.1186],[29.027,-32.1206],[29.0214,-32.1208],[29.0213,-32.1227],[29.0189,-32.1256],[29.0126,-32.1302],[29.0114,-32.1331],[29.0102,-32.1336],[29.0086,-32.1401],[29.0111,-32.1395],[29.0103,-32.1431],[29.0086,-32.1446],[29.0082,-32.1468],[29.0062,-32.1489],[29.0019,-32.1507],[28.9982,-32.1536],[28.995,-32.158],[28.9971,-32.1595],[28.9968,-32.1614],[28.995,-32.1625],[28.9929,-32.1655],[28.9891,-32.1691],[28.9866,-32.1708],[28.982,-32.1719],[28.9799,-32.1752],[28.9739,-32.1762],[28.9761,-32.1793],[28.9713,-32.1812],[28.9677,-32.1848],[28.9647,-32.1855],[28.9619,-32.1871],[28.9621,-32.1884],[28.9611,-32.1919],[28.959,-32.1941],[28.9545,-32.1952],[28.9502,-32.199],[28.95,-32.2007],[28.9464,-32.2048],[28.9484,-32.2065],[28.9499,-32.2094],[28.9469,-32.211],[28.9461,-32.2137],[28.9433,-32.214],[28.9428,-32.2153],[28.9433,-32.2184],[28.9385,-32.2206],[28.937,-32.2224],[28.9342,-32.224],[28.9311,-32.2248],[28.9278,-32.2267],[28.9274,-32.23],[28.9248,-32.231],[28.9241,-32.2323],[28.9205,-32.2358],[28.9212,-32.24],[28.9191,-32.2413],[28.9138,-32.2422],[28.9128,-32.244],[28.9094,-32.2457],[28.9041,-32.2459],[28.9019,-32.2466],[28.9001,-32.2448],[28.8978,-32.2452],[28.897,-32.2469],[28.8983,-32.2515],[28.896,-32.2548],[28.897,-32.2571],[28.8949,-32.2598],[28.8912,-32.2635],[28.8905,-32.2649],[28.8851,-32.2692],[28.8825,-32.2731],[28.8836,-32.2782],[28.8824,-32.2798],[28.8779,-32.2814],[28.8736,-32.2836],[28.8725,-32.2854],[28.8693,-32.2866],[28.8694,-32.2883],[28.8675,-32.289],[28.8659,-32.2877],[28.8599,-32.291],[28.8581,-32.2929],[28.8554,-32.2984],[28.8539,-32.2985],[28.8507,-32.3005],[28.8463,-32.3007],[28.8422,-32.2999],[28.8387,-32.3013],[28.8366,-32.3048],[28.8317,-32.3055],[28.8306,-32.3082],[28.8232,-32.3183],[28.8174,-32.3204],[28.8159,-32.3203],[28.8167,-32.3242],[28.8162,-32.3282],[28.8106,-32.3327],[28.8082,-32.3327],[28.8,-32.3383],[28.7941,-32.3409],[28.7919,-32.341],[28.7901,-32.3391],[28.7883,-32.3408],[28.7849,-32.3427],[28.785,-32.3445],[28.7784,-32.3494],[28.7768,-32.3546],[28.7741,-32.3577],[28.7726,-32.3606],[28.7702,-32.3626],[28.7658,-32.3649],[28.7638,-32.3651],[28.7595,-32.3707],[28.7579,-32.3708],[28.7519,-32.3743],[28.751,-32.3759],[28.752,-32.3795],[28.75,-32.3848],[28.7482,-32.3854],[28.7468,-32.391],[28.7467,-32.3932],[28.7448,-32.3954],[28.7401,-32.3978],[28.734,-32.3993],[28.7288,-32.4014],[28.7241,-32.4025],[28.7245,-32.405],[28.7188,-32.4098],[28.7134,-32.4137],[28.7106,-32.415],[28.7082,-32.4182],[28.7076,-32.422],[28.7037,-32.4266],[28.7021,-32.4257],[28.6998,-32.4275],[28.6965,-32.4285],[28.6961,-32.4298],[28.6925,-32.4297],[28.6916,-32.4337],[28.685,-32.4364],[28.6858,-32.4412],[28.6802,-32.4442],[28.6768,-32.4481],[28.6756,-32.4486],[28.6705,-32.4487],[28.6704,-32.4502],[28.6683,-32.4525],[28.6657,-32.453],[28.6593,-32.458],[28.6564,-32.462],[28.6559,-32.4649],[28.6539,-32.4668],[28.6547,-32.4696],[28.657,-32.4718],[28.6572,-32.4742],[28.6558,-32.4763],[28.6525,-32.4779],[28.6527,-32.4806],[28.65,-32.4837],[28.6474,-32.4828],[28.6452,-32.4809],[28.6411,-32.4826],[28.6371,-32.4835],[28.6361,-32.4857],[28.6337,-32.4857],[28.6276,-32.4895],[28.6225,-32.4914],[28.6159,-32.4926],[28.6132,-32.4943],[28.6101,-32.4986],[28.6069,-32.4991],[28.6036,-32.5028],[28.6035,-32.506],[28.6024,-32.508],[28.6028,-32.5127],[28.6009,-32.5162],[28.5986,-32.5181],[28.5961,-32.5191],[28.5934,-32.5184],[28.5908,-32.5188],[28.5887,-32.5207],[28.586,-32.521],[28.5825,-32.5231],[28.5814,-32.5272],[28.5787,-32.5306],[28.5766,-32.5366],[28.5719,-32.5419],[28.5674,-32.545],[28.5641,-32.5461],[28.5579,-32.5496],[28.5554,-32.552],[28.5533,-32.5567],[28.5539,-32.5592],[28.5556,-32.5611],[28.5542,-32.5622],[28.5519,-32.569],[28.5529,-32.5705],[28.5516,-32.5726],[28.5467,-32.5733],[28.5392,-32.5751],[28.5317,-32.5788],[28.5276,-32.5816],[28.5257,-32.5841],[28.5262,-32.5864],[28.525,-32.5902],[28.5185,-32.5982],[28.5117,-32.6032],[28.509,-32.6045],[28.5041,-32.6054],[28.501,-32.6045],[28.4965,-32.6061],[28.4851,-32.6091],[28.4799,-32.614],[28.4755,-32.6164],[28.4742,-32.619],[28.4726,-32.62],[28.47,-32.619],[28.4654,-32.6208],[28.4647,-32.622],[28.4608,-32.6217],[28.4572,-32.6223],[28.4507,-32.624],[28.447,-32.6261],[28.4441,-32.6266],[28.4429,-32.6278],[28.4396,-32.6285],[28.4342,-32.6311],[28.4315,-32.6332],[28.43,-32.6366],[28.43,-32.6392],[28.428,-32.6422],[28.4272,-32.6445],[28.4248,-32.6472],[28.4205,-32.65],[28.417,-32.6539],[28.4165,-32.6569],[28.4146,-32.6576],[28.4089,-32.6621],[28.4082,-32.6634],[28.402,-32.6661],[28.3994,-32.6678],[28.3917,-32.6746],[28.3894,-32.6788],[28.3876,-32.6796],[28.3835,-32.6828],[28.3826,-32.6845],[28.3795,-32.6864],[28.3785,-32.6887],[28.3762,-32.6888],[28.3745,-32.6904],[28.3738,-32.6954],[28.3729,-32.6984],[28.3738,-32.7016],[28.3736,-32.7049],[28.3694,-32.7063],[28.3687,-32.7075],[28.3643,-32.7095],[28.3615,-32.7085],[28.3584,-32.7083],[28.3522,-32.7088],[28.3439,-32.7079],[28.3426,-32.7097],[28.3399,-32.7107],[28.3374,-32.7136],[28.3373,-32.7148],[28.3329,-32.7145],[28.3308,-32.7163],[28.3304,-32.7183],[28.3271,-32.7174],[28.3254,-32.7177],[28.3223,-32.7213],[28.3176,-32.7246],[28.313,-32.7251],[28.3124,-32.7263],[28.3079,-32.7255],[28.3054,-32.7279],[28.3007,-32.7314],[28.2988,-32.7334],[28.2984,-32.7362],[28.2921,-32.7388],[28.2904,-32.7384],[28.2871,-32.7401],[28.2837,-32.7469],[28.281,-32.7484],[28.279,-32.7511],[28.2761,-32.7523],[28.2727,-32.7559],[28.269,-32.7589],[28.2654,-32.76],[28.2578,-32.7597],[28.255,-32.7609],[28.2545,-32.7625],[28.2504,-32.7657],[28.2455,-32.7654],[28.2415,-32.7679],[28.2392,-32.7705],[28.2365,-32.7703],[28.2293,-32.7739],[28.2222,-32.7752],[28.2178,-32.7771],[28.2101,-32.7789],[28.2069,-32.7804],[28.2007,-32.781],[28.1955,-32.7825],[28.1917,-32.783],[28.1786,-32.7863],[28.1665,-32.7908],[28.1561,-32.7959],[28.1529,-32.798],[28.1448,-32.8045],[28.1392,-32.8073],[28.1354,-32.8114],[28.1286,-32.8175],[28.1223,-32.8245],[28.1209,-32.8266],[28.1176,-32.8301],[28.1162,-32.8348],[28.1175,-32.8376],[28.1169,-32.8389],[28.1194,-32.8449],[28.1192,-32.8496],[28.1213,-32.8518],[28.1175,-32.8537],[28.1176,-32.8564],[28.1161,-32.8586],[28.1133,-32.8595],[28.1122,-32.8612],[28.1092,-32.8633],[28.1082,-32.8661],[28.1077,-32.8735],[28.1025,-32.8771],[28.1005,-32.8793],[28.1009,-32.8845],[28.0985,-32.886],[28.0991,-32.8884],[28.0971,-32.8897],[28.0962,-32.8931],[28.0935,-32.8915],[28.0916,-32.8926],[28.0896,-32.8963],[28.0855,-32.8975],[28.0811,-32.9025],[28.0777,-32.9044],[28.0755,-32.9078],[28.0787,-32.9087],[28.0808,-32.9105],[28.081,-32.9121],[28.0782,-32.9136],[28.0712,-32.9144],[28.0656,-32.9174],[28.0602,-32.9189],[28.057,-32.9191],[28.0458,-32.9277],[28.0385,-32.9311],[28.0368,-32.934],[28.0324,-32.9347],[28.0322,-32.9375],[28.0349,-32.9405],[28.0345,-32.9428],[28.0301,-32.943],[28.027,-32.944],[28.0221,-32.9499],[28.0199,-32.9509],[28.0138,-32.9523],[28.0132,-32.9535],[28.0091,-32.9551],[28.0028,-32.9559],[27.9997,-32.9588],[27.9921,-32.9623],[27.9907,-32.9647],[27.9882,-32.9668],[27.9865,-32.9694],[27.9826,-32.9706],[27.9691,-32.9737],[27.9664,-32.975],[27.9608,-32.9788],[27.9578,-32.9828],[27.9532,-32.9865],[27.9519,-32.9867],[27.9491,-32.991],[27.9492,-32.9926],[27.9522,-32.9955],[27.9524,-32.9975],[27.945,-32.9996],[27.9424,-33.0024],[27.9371,-33.0034],[27.9319,-33.0064],[27.9283,-33.0077],[27.9238,-33.0103],[27.9226,-33.0116],[27.9214,-33.0186],[27.9202,-33.0206],[27.9164,-33.024],[27.9165,-33.0267],[27.9212,-33.026],[27.9255,-33.0284],[27.9197,-33.0296],[27.9134,-33.0329],[27.9104,-33.0354],[27.9077,-33.0398],[27.9037,-33.0424],[27.8991,-33.0445],[27.8944,-33.0441],[27.8881,-33.0454],[27.878,-33.0514],[27.8752,-33.0521],[27.874,-33.0537],[27.8699,-33.056],[27.8635,-33.0572],[27.8631,-33.06],[27.8548,-33.0632],[27.8498,-33.0669],[27.8469,-33.0679],[27.8355,-33.0734],[27.8306,-33.0746],[27.8286,-33.076],[27.827,-33.0791],[27.825,-33.0808],[27.8246,-33.0829],[27.8256,-33.0847],[27.8244,-33.0863],[27.8216,-33.0871],[27.8189,-33.0863],[27.8166,-33.0865],[27.8062,-33.0889],[27.8018,-33.0911],[27.7961,-33.0949],[27.7907,-33.0977],[27.787,-33.1004],[27.7827,-33.1021],[27.7791,-33.1029],[27.7738,-33.1024],[27.7648,-33.1048],[27.7601,-33.1065],[27.7494,-33.1116],[27.7481,-33.1117],[27.7455,-33.1146],[27.7407,-33.117],[27.7368,-33.1172],[27.728,-33.1214],[27.7252,-33.1267],[27.7223,-33.1306],[27.7187,-33.1327],[27.7154,-33.1355],[27.7151,-33.1375],[27.7042,-33.1434],[27.7028,-33.1459],[27.7035,-33.1482],[27.7009,-33.1522],[27.6939,-33.1567],[27.6861,-33.1584],[27.6814,-33.1614],[27.6805,-33.1613],[27.6778,-33.1652],[27.678,-33.1669],[27.6728,-33.1686],[27.6696,-33.1706],[27.6641,-33.1727],[27.6631,-33.1747],[27.6593,-33.1779],[27.6593,-33.1804],[27.655,-33.1831],[27.6523,-33.1862],[27.6459,-33.1885],[27.6442,-33.1928],[27.6389,-33.1945],[27.6337,-33.1974],[27.6341,-33.2008],[27.6258,-33.2046],[27.6205,-33.2061],[27.619,-33.206],[27.6149,-33.2078],[27.6111,-33.2128],[27.6113,-33.2155],[27.6086,-33.2182],[27.6045,-33.2192],[27.6029,-33.2221],[27.5986,-33.2215],[27.5942,-33.2222],[27.59,-33.2243],[27.5887,-33.224],[27.5828,-33.2264],[27.5821,-33.2285],[27.5798,-33.2314],[27.5767,-33.2343],[27.5611,-33.2426],[27.5566,-33.2448],[27.5507,-33.2468],[27.546,-33.2493],[27.5366,-33.2524],[27.5326,-33.2545],[27.5295,-33.2555],[27.5221,-33.2607],[27.5175,-33.2686],[27.5073,-33.2754],[27.5,-33.2785],[27.4989,-33.2803],[27.4918,-33.282],[27.4842,-33.2874],[27.4812,-33.2914],[27.4816,-33.2972],[27.4798,-33.2987],[27.4734,-33.3014],[27.4689,-33.3038],[27.4638,-33.3072],[27.4569,-33.3091],[27.4554,-33.3089],[27.4509,-33.311],[27.4484,-33.3116],[27.4359,-33.3171],[27.4298,-33.3225],[27.4269,-33.3268],[27.4268,-33.3283],[27.4225,-33.3337],[27.4163,-33.3361],[27.4131,-33.3396],[27.4102,-33.341],[27.4023,-33.3429],[27.3992,-33.3444],[27.3938,-33.348],[27.387,-33.3503],[27.3813,-33.3536],[27.3804,-33.3547],[27.3759,-33.3568],[27.369,-33.3586],[27.3674,-33.3603],[27.3618,-33.3613],[27.3578,-33.3627],[27.3537,-33.3649],[27.3467,-33.3719],[27.3448,-33.3733],[27.3387,-33.379],[27.3305,-33.3818],[27.3265,-33.3822],[27.3207,-33.3861],[27.3186,-33.3887],[27.3126,-33.3917],[27.3093,-33.3928],[27.3036,-33.3964],[27.3006,-33.3988],[27.2972,-33.4004],[27.2943,-33.4033],[27.2889,-33.4069],[27.2817,-33.4107],[27.2804,-33.4122],[27.275,-33.4148],[27.2713,-33.4184],[27.2663,-33.4217],[27.2625,-33.423],[27.2527,-33.4282],[27.2428,-33.4319],[27.2379,-33.4349],[27.2302,-33.4407],[27.2266,-33.4452],[27.2264,-33.4491],[27.2233,-33.4521],[27.2212,-33.4528],[27.2178,-33.4584],[27.2106,-33.4625],[27.204,-33.463],[27.1991,-33.4628],[27.1959,-33.4632],[27.1902,-33.4649],[27.1866,-33.4655],[27.1782,-33.4684],[27.1725,-33.4724],[27.1714,-33.4712],[27.165,-33.4735],[27.1561,-33.4785],[27.1529,-33.4807],[27.1528,-33.4828],[27.1498,-33.4833],[27.1486,-33.4848],[27.1433,-33.4872],[27.141,-33.4922],[27.1425,-33.4933],[27.1426,-33.4951],[27.1409,-33.4958],[27.1385,-33.4942],[27.1356,-33.4963],[27.1327,-33.501],[27.1356,-33.5038],[27.1331,-33.5053],[27.1301,-33.5049],[27.1243,-33.509],[27.1202,-33.5159],[27.116,-33.5182],[27.1147,-33.5203],[27.1147,-33.5227],[27.111,-33.5253],[27.1001,-33.5264],[27.0943,-33.5277],[27.0915,-33.5274],[27.0885,-33.5293],[27.0852,-33.53],[27.0811,-33.5302],[27.0774,-33.5321],[27.0753,-33.5319],[27.0679,-33.5329],[27.0635,-33.5348],[27.0585,-33.5363],[27.054,-33.5389],[27.0492,-33.5408],[27.0452,-33.5436],[27.0418,-33.5477],[27.0417,-33.551],[27.0432,-33.5535],[27.0401,-33.5546],[27.033,-33.5562],[27.0306,-33.5576],[27.0231,-33.5593],[27.0154,-33.5619],[27.0105,-33.5653],[27.0089,-33.5674],[27.0095,-33.5689],[27.0084,-33.5706],[27.0018,-33.5711],[26.9861,-33.5711],[26.9819,-33.5715],[26.9725,-33.5733],[26.9691,-33.5734],[26.9663,-33.5747],[26.9597,-33.5756],[26.9563,-33.5777],[26.9485,-33.5781],[26.9412,-33.5807],[26.9363,-33.582],[26.9341,-33.5838],[26.9292,-33.5855],[26.9234,-33.5911],[26.9222,-33.593],[26.9188,-33.5955],[26.916,-33.5958],[26.9105,-33.5978],[26.9045,-33.5993],[26.9015,-33.6019],[26.9025,-33.6029],[26.8988,-33.606],[26.8949,-33.6075],[26.8913,-33.6094],[26.8895,-33.6142],[26.8841,-33.6149],[26.88,-33.6172],[26.8793,-33.6195],[26.875,-33.6222],[26.873,-33.6221],[26.8688,-33.6244],[26.8667,-33.6263],[26.8605,-33.6271],[26.8558,-33.6272],[26.8509,-33.6293],[26.843,-33.631],[26.832,-33.6316],[26.8256,-33.6322],[26.8107,-33.6363],[26.807,-33.637],[26.7951,-33.6408],[26.7859,-33.6424],[26.7812,-33.6449],[26.7776,-33.6446],[26.7666,-33.6463],[26.7617,-33.6476],[26.7598,-33.6487],[26.7517,-33.65],[26.7463,-33.652],[26.7454,-33.6519],[26.7355,-33.6559],[26.7341,-33.6572],[26.7323,-33.6603],[26.7223,-33.666],[26.7114,-33.6689],[26.7046,-33.6719],[26.7022,-33.6754],[26.6999,-33.6773],[26.7002,-33.6795],[26.6958,-33.6823],[26.6933,-33.6811],[26.6902,-33.6824],[26.6845,-33.683],[26.6732,-33.6927],[26.6666,-33.6966],[26.6626,-33.6945],[26.6599,-33.6963],[26.6547,-33.6971],[26.6492,-33.6991],[26.6461,-33.7011],[26.6413,-33.7051],[26.6397,-33.7081],[26.6364,-33.7094],[26.6318,-33.7101],[26.6292,-33.7131],[26.6282,-33.7168],[26.6257,-33.7175],[26.6259,-33.7191],[26.6218,-33.7198],[26.6206,-33.7183],[26.6096,-33.7201],[26.6063,-33.7201],[26.6,-33.721],[26.5941,-33.7228],[26.5897,-33.7248],[26.5862,-33.728],[26.5783,-33.7332],[26.5727,-33.7394],[26.5679,-33.7424],[26.5596,-33.7462],[26.5586,-33.7482],[26.5554,-33.7486],[26.551,-33.7499],[26.5484,-33.7501],[26.5465,-33.7515],[26.5401,-33.7531],[26.5376,-33.7527],[26.53,-33.7541],[26.5249,-33.7553],[26.5176,-33.7582],[26.5111,-33.7592],[26.4988,-33.7639],[26.4972,-33.7657],[26.4884,-33.765],[26.482,-33.7666],[26.4778,-33.7688],[26.4773,-33.7699],[26.4718,-33.7708],[26.4684,-33.7734],[26.459,-33.7712],[26.4558,-33.7713],[26.4482,-33.7704],[26.4376,-33.7677],[26.4335,-33.7657],[26.4283,-33.7646],[26.4139,-33.7624],[26.4111,-33.7624],[26.3994,-33.761],[26.3876,-33.7602],[26.3802,-33.7594],[26.3723,-33.7594],[26.3649,-33.7599],[26.36,-33.7607],[26.3521,-33.7613],[26.348,-33.7624],[26.3461,-33.7636],[26.3411,-33.765],[26.3367,-33.7654],[26.3267,-33.7676],[26.3219,-33.7678],[26.3044,-33.7645],[26.2943,-33.7635],[26.29,-33.7622],[26.2861,-33.7617],[26.2807,-33.7581],[26.2779,-33.7574],[26.2738,-33.755],[26.2672,-33.7526],[26.2596,-33.7492],[26.2544,-33.7477],[26.2498,-33.7456],[26.2424,-33.7435],[26.2351,-33.7411],[26.2176,-33.7349],[26.2079,-33.7321],[26.2043,-33.7306],[26.199,-33.7294],[26.1883,-33.7262],[26.1857,-33.7259],[26.177,-33.724],[26.1753,-33.7232],[26.1673,-33.7217],[26.1522,-33.7174],[26.1387,-33.7148],[26.1312,-33.7135],[26.1283,-33.7133],[26.1176,-33.7114],[26.0991,-33.7088],[26.0835,-33.7074],[26.0788,-33.7068],[26.0644,-33.7062],[26.0589,-33.7057],[26.0405,-33.7051],[26.0349,-33.7053],[26.0159,-33.7053],[26.007,-33.706],[25.9964,-33.7066],[25.9881,-33.7067],[25.9854,-33.7072],[25.9755,-33.7075],[25.9628,-33.7084],[25.9606,-33.7083],[25.9434,-33.7098],[25.9371,-33.7101],[25.9197,-33.7116],[25.9056,-33.7132],[25.8906,-33.7154],[25.8787,-33.7174],[25.8726,-33.7181],[25.867,-33.7199],[25.8641,-33.7201],[25.8538,-33.7221],[25.849,-33.7225],[25.836,-33.7256],[25.8327,-33.727],[25.827,-33.7288],[25.8192,-33.7316],[25.8167,-33.7334],[25.8126,-33.7352],[25.8012,-33.7388],[25.7949,-33.7418],[25.7912,-33.7426],[25.786,-33.7451],[25.7841,-33.7468],[25.7762,-33.75],[25.774,-33.752],[25.7721,-33.7522],[25.7671,-33.7553],[25.7629,-33.7593],[25.76,-33.7606],[25.7528,-33.765],[25.7477,-33.7668],[25.7388,-33.7707],[25.7303,-33.7756],[25.7216,-33.78],[25.7208,-33.7811],[25.7174,-33.7827],[25.7066,-33.7895],[25.704,-33.7905],[25.6997,-33.7941],[25.6931,-33.7989],[25.6864,-33.803],[25.6815,-33.8074],[25.6758,-33.8118],[25.6746,-33.8134],[25.6704,-33.817],[25.6676,-33.8203],[25.6653,-33.8219],[25.6504,-33.8396],[25.646,-33.8458],[25.6448,-33.8481],[25.6415,-33.8517],[25.6374,-33.8584],[25.637,-33.8608],[25.6349,-33.8636],[25.6317,-33.8648],[25.6333,-33.8661],[25.6326,-33.8704],[25.6302,-33.8742],[25.6268,-33.8824],[25.6245,-33.8869],[25.6218,-33.8943],[25.6168,-33.9102],[25.6146,-33.915],[25.6138,-33.9179],[25.6127,-33.9222],[25.6112,-33.9308],[25.6117,-33.944],[25.6125,-33.9483],[25.6158,-33.9519],[25.623,-33.9556],[25.6247,-33.9561],[25.6393,-33.9551],[25.6409,-33.9586],[25.6287,-33.9598],[25.6277,-33.961],[25.631,-33.9621],[25.6368,-33.9616],[25.637,-33.963],[25.6303,-33.9637],[25.6357,-33.9683],[25.6412,-33.9648],[25.644,-33.9648],[25.6464,-33.9709],[25.6474,-33.9751],[25.6528,-33.9772],[25.6544,-33.9787],[25.6585,-33.9796],[25.6608,-33.9811],[25.6654,-33.9818],[25.6697,-33.9834],[25.6714,-33.9831],[25.6741,-33.9879],[25.6818,-33.9943],[25.6855,-33.9993],[25.6881,-34.0019],[25.6911,-34.0097],[25.6922,-34.0108],[25.6933,-34.0147],[25.6954,-34.0182],[25.6966,-34.0211],[25.6988,-34.0232],[25.7002,-34.0258],[25.703,-34.0283],[25.7043,-34.0316],[25.6971,-34.0321],[25.6952,-34.031],[25.6876,-34.0301],[25.6858,-34.028],[25.6809,-34.0281],[25.6785,-34.0269],[25.6754,-34.0268],[25.6694,-34.0259],[25.6652,-34.026],[25.6639,-34.0268],[25.6594,-34.0266],[25.6569,-34.0276],[25.6529,-34.028],[25.6488,-34.0308],[25.6485,-34.0325],[25.6461,-34.0336],[25.6449,-34.0356],[25.645,-34.0383],[25.6386,-34.0406],[25.6387,-34.0423],[25.6342,-34.0465],[25.6296,-34.0461],[25.6284,-34.0469],[25.628,-34.0494],[25.6259,-34.0482],[25.621,-34.0466],[25.6185,-34.0467],[25.6116,-34.0452],[25.6085,-34.0451],[25.6053,-34.047],[25.6,-34.0476],[25.5991,-34.0483],[25.5953,-34.0475],[25.592,-34.0502],[25.5892,-34.0506],[25.5822,-34.0501],[25.5809,-34.0508],[25.5771,-34.0497],[25.575,-34.0479],[25.5719,-34.0464],[25.5669,-34.0452],[25.5638,-34.0459],[25.5609,-34.0442],[25.5573,-34.0445],[25.5477,-34.0438],[25.5437,-34.0419],[25.537,-34.0425],[25.5307,-34.0407],[25.5261,-34.0381],[25.521,-34.0372],[25.5198,-34.0363],[25.5167,-34.0366],[25.5121,-34.0381],[25.5109,-34.037],[25.5041,-34.0347],[25.4979,-34.036],[25.4958,-34.0349],[25.491,-34.0338],[25.4881,-34.0344],[25.4864,-34.0336],[25.4836,-34.0339],[25.4733,-34.0301],[25.4675,-34.0294],[25.4615,-34.0295],[25.4522,-34.0309],[25.4491,-34.0321],[25.4477,-34.0334],[25.4434,-34.0336],[25.4402,-34.0354],[25.435,-34.035],[25.4335,-34.034],[25.4285,-34.0336],[25.4219,-34.0345],[25.4183,-34.0335],[25.415,-34.0348],[25.4121,-34.0337],[25.408,-34.0358],[25.4031,-34.0333],[25.4001,-34.0336],[25.3949,-34.0314],[25.3926,-34.0285],[25.3864,-34.0258],[25.3843,-34.0251],[25.382,-34.023],[25.3716,-34.0212],[25.3634,-34.0191],[25.3618,-34.0194],[25.3552,-34.0161],[25.3535,-34.0163],[25.3507,-34.0153],[25.347,-34.0125],[25.3446,-34.0114],[25.3402,-34.0104],[25.3368,-34.008],[25.3286,-34.0053],[25.3283,-34.0041],[25.3255,-34.0037],[25.319,-33.9999],[25.3163,-33.9992],[25.3113,-33.9968],[25.3055,-33.993],[25.2986,-33.9917],[25.2926,-33.9889],[25.2913,-33.989],[25.2871,-33.987],[25.2749,-33.9839],[25.2709,-33.9822],[25.264,-33.981],[25.2548,-33.9781],[25.2488,-33.9774],[25.2447,-33.9757],[25.2399,-33.9751],[25.2385,-33.9741],[25.2334,-33.9738],[25.2278,-33.972],[25.2215,-33.9708],[25.2116,-33.9687],[25.1975,-33.9668],[25.186,-33.9661],[25.1739,-33.9646],[25.166,-33.9641],[25.1629,-33.9635],[25.1537,-33.9628],[25.1495,-33.963],[25.1455,-33.9627],[25.138,-33.9628],[25.1361,-33.9625],[25.1181,-33.9626],[25.1122,-33.963],[25.1058,-33.9627],[25.1026,-33.9633],[25.0881,-33.9641],[25.0822,-33.9653],[25.0778,-33.9647],[25.0579,-33.9676],[25.0529,-33.9679],[25.046,-33.9694],[25.0375,-33.9705],[25.0321,-33.9703],[25.0246,-33.9723],[25.0228,-33.9733],[25.0175,-33.973],[25.0088,-33.9751],[25.0039,-33.9771],[24.9997,-33.9771],[24.9916,-33.9799],[24.9888,-33.9802],[24.9751,-33.9851],[24.9628,-33.9906],[24.9553,-33.9948],[24.9496,-33.9974],[24.9471,-33.9995],[24.9434,-34.0012],[24.9368,-34.0055],[24.9321,-34.0112],[24.9281,-34.0155],[24.9293,-34.0207],[24.929,-34.024],[24.9314,-34.0271],[24.9334,-34.0314],[24.9339,-34.0341],[24.9318,-34.0362],[24.9318,-34.0394],[24.9292,-34.0425],[24.9273,-34.0492],[24.9251,-34.0535],[24.9255,-34.0575],[24.9272,-34.0602],[24.9258,-34.0641],[24.9232,-34.0671],[24.922,-34.0721],[24.9215,-34.0788],[24.9224,-34.0798],[24.9187,-34.0822],[24.9156,-34.0833],[24.9128,-34.0859],[24.9103,-34.0869],[24.9075,-34.0871],[24.9063,-34.0893],[24.9024,-34.0923],[24.8991,-34.0953],[24.8967,-34.0984],[24.8922,-34.1028],[24.8911,-34.1048],[24.8852,-34.111],[24.8804,-34.113],[24.8764,-34.1161],[24.8732,-34.1176],[24.8696,-34.1212],[24.866,-34.1228],[24.8589,-34.1284],[24.8572,-34.131],[24.8515,-34.136],[24.8489,-34.1389],[24.8463,-34.1405],[24.8429,-34.1416],[24.8397,-34.1515],[24.8339,-34.1614],[24.8322,-34.1675],[24.8345,-34.1707],[24.8366,-34.1715],[24.8405,-34.1743],[24.844,-34.1781],[24.8467,-34.1793],[24.8503,-34.1826],[24.8538,-34.184],[24.8589,-34.1866],[24.8599,-34.1891],[24.8622,-34.1901],[24.8669,-34.1935],[24.8681,-34.1936],[24.8714,-34.1967],[24.8642,-34.1958],[24.8617,-34.1946],[24.8503,-34.194],[24.8464,-34.1947],[24.8395,-34.1976],[24.8359,-34.2008],[24.8339,-34.2051],[24.8379,-34.2091],[24.8379,-34.2131],[24.8368,-34.2136],[24.8316,-34.2125],[24.8309,-34.2116],[24.8273,-34.2112],[24.8242,-34.2086],[24.8198,-34.2083],[24.8164,-34.207],[24.8027,-34.2001],[24.8004,-34.2004],[24.7959,-34.1977],[24.7922,-34.1973],[24.7865,-34.2003],[24.7782,-34.1994],[24.7766,-34.1971],[24.7727,-34.1984],[24.769,-34.1985],[24.7665,-34.1969],[24.7647,-34.1974],[24.7604,-34.196],[24.7586,-34.1944],[24.7559,-34.194],[24.7527,-34.1921],[24.7468,-34.1911],[24.7413,-34.1882],[24.7393,-34.1885],[24.7345,-34.1869],[24.7301,-34.1863],[24.7232,-34.1875],[24.7164,-34.1909],[24.7149,-34.1937],[24.7091,-34.1922],[24.7016,-34.1893],[24.6993,-34.1907],[24.6977,-34.1897],[24.6939,-34.1902],[24.6928,-34.1884],[24.6898,-34.1874],[24.6873,-34.1876],[24.6848,-34.1859],[24.6851,-34.1838],[24.681,-34.1845],[24.6776,-34.1827],[24.6758,-34.1826],[24.6717,-34.1798],[24.6701,-34.1801],[24.6656,-34.1775],[24.6625,-34.1767],[24.659,-34.1749],[24.6476,-34.1732],[24.6393,-34.1724],[24.6293,-34.1727],[24.6201,-34.1743],[24.6137,-34.1766],[24.6091,-34.1804],[24.6062,-34.1848],[24.6073,-34.1887],[24.6072,-34.1908],[24.6018,-34.1897],[24.5991,-34.1879],[24.5963,-34.1884],[24.5945,-34.1874],[24.5906,-34.1876],[24.5837,-34.1848],[24.5813,-34.1846],[24.5793,-34.1855],[24.5763,-34.1835],[24.5711,-34.182],[24.5667,-34.1813],[24.564,-34.179],[24.5573,-34.1762],[24.5541,-34.1755],[24.5518,-34.1761],[24.5485,-34.1753],[24.5462,-34.1735],[24.5435,-34.1735],[24.5411,-34.1745],[24.54,-34.1736],[24.5363,-34.1737],[24.5332,-34.1725],[24.5321,-34.1733],[24.5241,-34.1708],[24.5169,-34.1694],[24.5158,-34.1714],[24.5114,-34.1723],[24.5075,-34.17],[24.5054,-34.1701],[24.4988,-34.1673],[24.4912,-34.1676],[24.4851,-34.1651],[24.4819,-34.1643],[24.478,-34.1622],[24.4754,-34.1619],[24.47,-34.159],[24.4666,-34.1564],[24.4605,-34.1528],[24.4595,-34.1513],[24.455,-34.1496],[24.4499,-34.1462],[24.4465,-34.1449],[24.443,-34.1423],[24.4424,-34.141],[24.4399,-34.1397],[24.4411,-34.1383],[24.4394,-34.1363],[24.4365,-34.1347],[24.4318,-34.1302],[24.4269,-34.127],[24.418,-34.1219],[24.4132,-34.1202],[24.4083,-34.1178],[24.4017,-34.1172],[24.4002,-34.1146],[24.3967,-34.1131],[24.3961,-34.1112],[24.3924,-34.1106],[24.3891,-34.108],[24.3879,-34.108],[24.3819,-34.1031],[24.3779,-34.1029],[24.3768,-34.1036],[24.3734,-34.1028],[24.3689,-34.103],[24.3634,-34.1048],[24.3614,-34.1037],[24.3559,-34.1033],[24.3543,-34.104],[24.3511,-34.1019],[24.3461,-34.1034],[24.3444,-34.1026],[24.3354,-34.1023],[24.3324,-34.1032],[24.3239,-34.1034],[24.3181,-34.1013],[24.3101,-34.1017],[24.3089,-34.1004],[24.3043,-34.0998],[24.3034,-34.0986],[24.3005,-34.0974],[24.2983,-34.0975],[24.2971,-34.095],[24.2949,-34.0934],[24.2881,-34.0918],[24.284,-34.0921],[24.2801,-34.0898],[24.2748,-34.0887],[24.2744,-34.0872],[24.2681,-34.0873],[24.2648,-34.0853],[24.2594,-34.0841],[24.2498,-34.083],[24.2469,-34.0815],[24.2441,-34.0782],[24.2413,-34.0777],[24.2353,-34.0779],[24.2305,-34.0766],[24.2249,-34.0733],[24.2202,-34.0738],[24.2163,-34.0733],[24.2146,-34.0707],[24.2087,-34.0699],[24.2055,-34.0672],[24.2005,-34.0651],[24.1967,-34.0622],[24.196,-34.0605],[24.1938,-34.06],[24.1936,-34.066],[24.1897,-34.0671],[24.1828,-34.0645],[24.1806,-34.0645],[24.1778,-34.066],[24.1733,-34.0656],[24.171,-34.0644],[24.1688,-34.0648],[24.1655,-34.0625],[24.1617,-34.0639],[24.1596,-34.0628],[24.1544,-34.0621],[24.1502,-34.0609],[24.1474,-34.0594],[24.1417,-34.0603],[24.1343,-34.0597],[24.1287,-34.0582],[24.1266,-34.0607],[24.125,-34.0607],[24.12,-34.0625],[24.1187,-34.0608],[24.1133,-34.0592],[24.1091,-34.0591],[24.1005,-34.0571],[24.096,-34.0563],[24.0872,-34.056],[24.0827,-34.0553],[24.0764,-34.0527],[24.074,-34.0544],[24.0687,-34.0532],[24.0628,-34.0527],[24.0543,-34.0511],[24.0507,-34.05],[24.0481,-34.0501],[24.0446,-34.0492],[24.0429,-34.048],[24.0379,-34.0488],[24.0324,-34.0482],[24.0237,-34.0457],[24.0197,-34.0464],[24.0153,-34.0451],[24.0119,-34.0456],[24.0061,-34.0441],[24.0017,-34.0437],[23.9991,-34.0442],[23.9935,-34.0442],[23.9847,-34.0424],[23.9699,-34.0403],[23.9675,-34.0396],[23.9625,-34.0395],[23.9482,-34.0363],[23.9426,-34.0357],[23.9321,-34.033],[23.9238,-34.0327],[23.9115,-34.0308],[23.9033,-34.0291],[23.903,-34.0269],[23.8998,-34.0294],[23.8982,-34.0313],[23.8916,-34.0329],[23.877,-34.0285],[23.8702,-34.028],[23.864,-34.0286],[23.8465,-34.0271],[23.8401,-34.0252],[23.8267,-34.0229],[23.8214,-34.0201],[23.8084,-34.0181],[23.8035,-34.0165],[23.8007,-34.0185],[23.796,-34.0177],[23.7925,-34.0164],[23.7855,-34.0145],[23.7772,-34.0148],[23.7699,-34.0128],[23.7675,-34.0109],[23.7643,-34.012],[23.7608,-34.0101],[23.7573,-34.0073],[23.7507,-34.0051],[23.7476,-34.0067],[23.7385,-34.0056],[23.7315,-34.0036],[23.7208,-34.003],[23.706,-33.9995],[23.6998,-33.9978],[23.6938,-33.9974],[23.6888,-33.9962],[23.6628,-33.9912],[23.6529,-33.9896],[23.6449,-33.9896],[23.647,-33.9806],[23.6442,-33.98],[23.6415,-33.9819],[23.6361,-33.9825],[23.6246,-33.9816],[23.6234,-33.9806],[23.6184,-33.9808],[23.6167,-33.979],[23.6119,-33.9806],[23.6068,-33.9808],[23.5991,-33.98],[23.5988,-33.9811],[23.5936,-33.9816],[23.5916,-33.9832],[23.5866,-33.9831],[23.5844,-33.984],[23.5799,-33.9846],[23.5764,-33.9842],[23.5751,-33.9817],[23.5619,-33.9819],[23.5565,-33.9827],[23.5489,-33.9854],[23.5474,-33.9888],[23.541,-33.9905],[23.5379,-33.9907],[23.5362,-33.9897],[23.533,-33.9941],[23.5302,-33.9993],[23.5274,-34.0003],[23.5237,-34.0],[23.519,-34.0016],[23.5169,-34.0006],[23.5147,-34.0018],[23.5124,-34.0018],[23.5082,-34.0007],[23.5021,-34.0002],[23.4969,-34.0005],[23.4929,-34.004],[23.4909,-34.0028],[23.4847,-34.0029],[23.4844,-34.0022],[23.479,-34.0025],[23.4772,-34.0036],[23.4714,-34.0027],[23.4704,-34.0021],[23.4652,-34.0031],[23.4626,-34.0043],[23.4523,-34.005],[23.4477,-34.0063],[23.4379,-34.0086],[23.4312,-34.0109],[23.4227,-34.0142],[23.4151,-34.0179],[23.4069,-34.0226],[23.3966,-34.0298],[23.3897,-34.0363],[23.3845,-34.0401],[23.3842,-34.0415],[23.3788,-34.0493],[23.3779,-34.0512],[23.3785,-34.0598],[23.381,-34.0605],[23.3785,-34.0634],[23.3735,-34.0731],[23.3715,-34.0787],[23.3715,-34.0861],[23.3737,-34.0937],[23.3755,-34.0982],[23.3795,-34.0989],[23.3828,-34.1005],[23.3946,-34.1006],[23.3978,-34.1008],[23.4056,-34.1045],[23.4079,-34.1063],[23.4125,-34.1071],[23.4119,-34.1091],[23.4077,-34.1096],[23.4068,-34.1114],[23.4006,-34.1097],[23.3994,-34.1082],[23.3921,-34.1062],[23.3884,-34.1073],[23.3868,-34.1042],[23.383,-34.1019],[23.3801,-34.1022],[23.3747,-34.1015],[23.372,-34.1021],[23.3698,-34.1013],[23.3664,-34.1033],[23.3658,-34.1047],[23.3584,-34.1065],[23.3559,-34.1048],[23.352,-34.1048],[23.3503,-34.1031],[23.3473,-34.1024],[23.3453,-34.1007],[23.341,-34.102],[23.34,-34.1008],[23.3365,-34.1006],[23.334,-34.1021],[23.3305,-34.1025],[23.3271,-34.102],[23.3252,-34.1002],[23.3218,-34.0993],[23.3181,-34.1007],[23.3144,-34.103],[23.3108,-34.1024],[23.3063,-34.1032],[23.3056,-34.1016],[23.2999,-34.1022],[23.2982,-34.1009],[23.2934,-34.1018],[23.2934,-34.0999],[23.2913,-34.0996],[23.2864,-34.1017],[23.2799,-34.1001],[23.279,-34.0984],[23.2744,-34.1],[23.2705,-34.0998],[23.2676,-34.0986],[23.2677,-34.0966],[23.2651,-34.0956],[23.2629,-34.0937],[23.2585,-34.0932],[23.2559,-34.092],[23.2492,-34.0945],[23.246,-34.0917],[23.2433,-34.0936],[23.2399,-34.0912],[23.2361,-34.0908],[23.2354,-34.0894],[23.2289,-34.0892],[23.2248,-34.0869],[23.2226,-34.0878],[23.2198,-34.0878],[23.2153,-34.09],[23.2128,-34.0887],[23.2105,-34.0888],[23.2089,-34.0864],[23.2038,-34.0861],[23.2003,-34.087],[23.2003,-34.0851],[23.1982,-34.0846],[23.1965,-34.086],[23.1932,-34.085],[23.1904,-34.086],[23.1887,-34.0842],[23.1863,-34.0854],[23.182,-34.0846],[23.1738,-34.0851],[23.1718,-34.0864],[23.1684,-34.0859],[23.1684,-34.0837],[23.167,-34.0826],[23.1641,-34.0831],[23.1583,-34.0845],[23.1563,-34.0839],[23.154,-34.0854],[23.1502,-34.084],[23.147,-34.0843],[23.1443,-34.0857],[23.1395,-34.0856],[23.1384,-34.087],[23.1337,-34.0835],[23.1303,-34.0804],[23.126,-34.0801],[23.1204,-34.0819],[23.1181,-34.0802],[23.1144,-34.0806],[23.1095,-34.0819],[23.1064,-34.0819],[23.1007,-34.0789],[23.1002,-34.081],[23.0956,-34.0808],[23.0951,-34.0819],[23.0877,-34.0827],[23.0857,-34.0841],[23.0805,-34.0841],[23.0774,-34.0823],[23.0724,-34.0824],[23.0699,-34.0834],[23.0663,-34.0834],[23.0642,-34.082],[23.0575,-34.0828],[23.0566,-34.0843],[23.0532,-34.0848],[23.0489,-34.0841],[23.0418,-34.0838],[23.0422,-34.0822],[23.0412,-34.0793],[23.0362,-34.0787],[23.0318,-34.076],[23.0251,-34.0756],[23.0232,-34.0745],[23.0194,-34.0749],[23.0188,-34.0737],[23.0086,-34.072],[23.0036,-34.0718],[22.9883,-34.0742],[22.9811,-34.0772],[22.9767,-34.081],[22.9751,-34.0844],[22.9754,-34.0868],[22.9789,-34.0917],[22.9742,-34.0909],[22.9743,-34.0895],[22.972,-34.0884],[22.9703,-34.0861],[22.9654,-34.0848],[22.9621,-34.0851],[22.96,-34.0871],[22.9581,-34.0855],[22.958,-34.0827],[22.9535,-34.0791],[22.9494,-34.0771],[22.9464,-34.0763],[22.9442,-34.0749],[22.9319,-34.0703],[22.9293,-34.07],[22.9265,-34.0686],[22.9202,-34.067],[22.9191,-34.0662],[22.9116,-34.0639],[22.9089,-34.0637],[22.9054,-34.0622],[22.898,-34.0607],[22.8963,-34.0599],[22.8857,-34.0567],[22.877,-34.0549],[22.8744,-34.0547],[22.8654,-34.0519],[22.8532,-34.0501],[22.8426,-34.0477],[22.8383,-34.0473],[22.8331,-34.0456],[22.8285,-34.0433],[22.8122,-34.0376],[22.8065,-34.0364],[22.7991,-34.0335],[22.7963,-34.0312],[22.7801,-34.0277],[22.773,-34.0269],[22.7705,-34.0274],[22.7649,-34.0318],[22.7647,-34.034],[22.7667,-34.0359],[22.7656,-34.0375],[22.7634,-34.0346],[22.7551,-34.032],[22.749,-34.0306],[22.7434,-34.0289],[22.7374,-34.0265],[22.7278,-34.0238],[22.7241,-34.0222],[22.7193,-34.0213],[22.7129,-34.0197],[22.6879,-34.014],[22.6788,-34.0113],[22.6647,-34.0083],[22.6541,-34.0065],[22.6487,-34.0052],[22.6325,-34.003],[22.626,-34.0025],[22.6181,-34.0013],[22.6115,-33.9998],[22.6096,-33.9999],[22.5978,-33.998],[22.5918,-33.9969],[22.5888,-33.997],[22.5793,-33.9958],[22.5636,-33.9961],[22.561,-33.9984],[22.5565,-33.9981],[22.5568,-34.0022],[22.5528,-34.0049],[22.5488,-34.0049],[22.5485,-34.0095],[22.5438,-34.0131],[22.5417,-34.0169],[22.5386,-34.0189],[22.534,-34.0193],[22.5307,-34.0209],[22.5261,-34.0223],[22.5244,-34.0246],[22.5218,-34.0245],[22.518,-34.0273],[22.5143,-34.0272],[22.5121,-34.028],[22.5106,-34.0302],[22.51,-34.033],[22.5081,-34.035],[22.5041,-34.0352],[22.5007,-34.0372],[22.4986,-34.0366],[22.4975,-34.0415],[22.4931,-34.0445],[22.4904,-34.0445],[22.4884,-34.0456],[22.4858,-34.0489],[22.4846,-34.0513],[22.4805,-34.0506],[22.478,-34.0491],[22.4733,-34.0484],[22.471,-34.0504],[22.468,-34.0482],[22.464,-34.0494],[22.4626,-34.0493],[22.4583,-34.0515],[22.4567,-34.0535],[22.4504,-34.0563],[22.4466,-34.0562],[22.442,-34.0584],[22.44,-34.0586],[22.4357,-34.0561],[22.4327,-34.059],[22.4282,-34.0566],[22.4245,-34.0601],[22.4212,-34.0594],[22.4202,-34.0581],[22.4158,-34.0583],[22.4144,-34.0574],[22.4103,-34.0579],[22.4035,-34.0559],[22.3945,-34.0572],[22.3936,-34.0548],[22.3914,-34.0547],[22.3874,-34.0561],[22.3856,-34.0605],[22.3836,-34.0603],[22.3806,-34.0617],[22.3724,-34.0588],[22.3685,-34.0592],[22.3665,-34.0582],[22.3644,-34.0584],[22.3589,-34.0556],[22.3568,-34.0558],[22.3546,-34.0544],[22.3468,-34.0541],[22.3443,-34.0547],[22.3423,-34.0536],[22.3399,-34.054],[22.3379,-34.0532],[22.3338,-34.0529],[22.3311,-34.0521],[22.3225,-34.0518],[22.3209,-34.0515],[22.3113,-34.0512],[22.2982,-34.0512],[22.2865,-34.0519],[22.2812,-34.0519],[22.2709,-34.0527],[22.2621,-34.0539],[22.2514,-34.0559],[22.2441,-34.0566],[22.2345,-34.0582],[22.2261,-34.0601],[22.216,-34.063],[22.2022,-34.0675],[22.1981,-34.0686],[22.1935,-34.0708],[22.185,-34.074],[22.1714,-34.0798],[22.1606,-34.0841],[22.1595,-34.0841],[22.1512,-34.0901],[22.1473,-34.0948],[22.1405,-34.1014],[22.138,-34.1032],[22.1306,-34.1103],[22.1291,-34.1113],[22.1259,-34.1149],[22.1209,-34.1243],[22.1172,-34.1326],[22.1154,-34.1348],[22.1126,-34.1414],[22.1114,-34.1474],[22.1117,-34.1514],[22.1113,-34.1578],[22.112,-34.1632],[22.1127,-34.1647],[22.1224,-34.1674],[22.1234,-34.1696],[22.1272,-34.1704],[22.1292,-34.172],[22.1332,-34.1723],[22.136,-34.1739],[22.1378,-34.1773],[22.1401,-34.1793],[22.1443,-34.1789],[22.1465,-34.1808],[22.1487,-34.1811],[22.1491,-34.1787],[22.1563,-34.181],[22.1581,-34.181],[22.1586,-34.1834],[22.1605,-34.1848],[22.1579,-34.1869],[22.154,-34.1871],[22.1523,-34.1882],[22.1515,-34.1919],[22.1426,-34.1961],[22.1404,-34.1943],[22.1378,-34.1968],[22.1358,-34.1976],[22.1314,-34.1978],[22.1301,-34.199],[22.1232,-34.2003],[22.1199,-34.2017],[22.1143,-34.2024],[22.1122,-34.2038],[22.1104,-34.2035],[22.1054,-34.2042],[22.1031,-34.2034],[22.0989,-34.2042],[22.0971,-34.2029],[22.0946,-34.2035],[22.0925,-34.2069],[22.0898,-34.2092],[22.0846,-34.2085],[22.0809,-34.2086],[22.0735,-34.2056],[22.0703,-34.2057],[22.0642,-34.205],[22.0612,-34.2056],[22.0482,-34.2059],[22.0415,-34.2069],[22.0328,-34.2078],[22.0299,-34.2086],[22.0257,-34.2085],[22.017,-34.2104],[22.0103,-34.2111],[21.9996,-34.214],[21.9975,-34.2139],[21.9876,-34.2163],[21.9767,-34.22],[21.9647,-34.2248],[21.9571,-34.2287],[21.9483,-34.2341],[21.9394,-34.24],[21.9351,-34.2435],[21.9322,-34.2451],[21.9273,-34.2495],[21.9215,-34.2566],[21.9177,-34.2606],[21.9147,-34.2661],[21.9122,-34.2737],[21.9117,-34.2784],[21.912,-34.2845],[21.9136,-34.2894],[21.915,-34.2911],[21.9219,-34.2925],[21.9264,-34.2924],[21.9292,-34.2937],[21.9322,-34.2934],[21.9363,-34.2944],[21.9377,-34.2972],[21.9394,-34.2976],[21.9427,-34.2999],[21.9462,-34.2996],[21.9436,-34.3025],[21.9404,-34.3011],[21.939,-34.3038],[21.9364,-34.3052],[21.9309,-34.3042],[21.9296,-34.3061],[21.9268,-34.3064],[21.92,-34.3098],[21.9115,-34.3157],[21.9073,-34.3202],[21.9049,-34.3249],[21.9037,-34.3299],[21.9041,-34.3326],[21.9062,-34.3351],[21.9098,-34.3371],[21.9145,-34.3383],[21.9088,-34.342],[21.9069,-34.3421],[21.9041,-34.3444],[21.8988,-34.3446],[21.896,-34.3438],[21.8898,-34.3445],[21.887,-34.3436],[21.8838,-34.3476],[21.8845,-34.3512],[21.8841,-34.3533],[21.88,-34.3558],[21.8773,-34.3569],[21.872,-34.3607],[21.871,-34.3629],[21.8669,-34.3633],[21.8605,-34.3628],[21.8572,-34.3634],[21.8541,-34.3667],[21.85,-34.3687],[21.8504,-34.3695],[21.8397,-34.3738],[21.8355,-34.3752],[21.8337,-34.3744],[21.8302,-34.3763],[21.8279,-34.3759],[21.8202,-34.3776],[21.8168,-34.3779],[21.8123,-34.3806],[21.8086,-34.3795],[21.8056,-34.3795],[21.8042,-34.3812],[21.8014,-34.3812],[21.7978,-34.3833],[21.7942,-34.3812],[21.7886,-34.3816],[21.7855,-34.3831],[21.781,-34.3827],[21.7741,-34.3838],[21.773,-34.3835],[21.7649,-34.3853],[21.7613,-34.3841],[21.759,-34.3856],[21.7553,-34.3868],[21.742,-34.3866],[21.738,-34.3881],[21.735,-34.3942],[21.7313,-34.3939],[21.73,-34.3955],[21.7262,-34.3955],[21.7252,-34.394],[21.7224,-34.3932],[21.7194,-34.3955],[21.7159,-34.3933],[21.714,-34.3931],[21.7103,-34.3944],[21.7073,-34.3942],[21.7039,-34.3951],[21.6962,-34.395],[21.6941,-34.3939],[21.6924,-34.3916],[21.6872,-34.3927],[21.6829,-34.3922],[21.6822,-34.3912],[21.6787,-34.3901],[21.6761,-34.3887],[21.6729,-34.3892],[21.67,-34.3886],[21.6659,-34.3863],[21.6625,-34.3872],[21.6552,-34.3851],[21.6522,-34.3851],[21.6491,-34.3831],[21.6428,-34.3814],[21.6349,-34.3811],[21.6337,-34.3802],[21.6307,-34.3802],[21.6299,-34.3791],[21.627,-34.3789],[21.6214,-34.3771],[21.612,-34.3728],[21.602,-34.37],[21.5928,-34.3672],[21.5854,-34.3657],[21.5828,-34.3636],[21.5786,-34.3628],[21.5761,-34.3642],[21.5736,-34.3641],[21.5727,-34.3629],[21.5668,-34.3617],[21.5637,-34.3604],[21.5577,-34.3606],[21.5559,-34.3613],[21.5523,-34.3612],[21.5427,-34.3591],[21.5394,-34.3573],[21.5357,-34.3564],[21.5298,-34.3566],[21.5271,-34.3576],[21.5226,-34.3571],[21.52,-34.3581],[21.5166,-34.3611],[21.5104,-34.3596],[21.5034,-34.3617],[21.4995,-34.3639],[21.4964,-34.3643],[21.4913,-34.3664],[21.4867,-34.3662],[21.4812,-34.3676],[21.4753,-34.3659],[21.4728,-34.3669],[21.4645,-34.3665],[21.4593,-34.3669],[21.4581,-34.3678],[21.4501,-34.3675],[21.4434,-34.3691],[21.432,-34.3726],[21.4283,-34.3743],[21.4226,-34.3796],[21.4233,-34.3848],[21.4274,-34.3865],[21.428,-34.3885],[21.4304,-34.3912],[21.4281,-34.3939],[21.4243,-34.3906],[21.4212,-34.392],[21.4174,-34.3915],[21.4153,-34.393],[21.4148,-34.395],[21.4129,-34.3958],[21.4124,-34.3976],[21.4144,-34.3993],[21.4131,-34.4014],[21.4063,-34.4036],[21.4042,-34.4035],[21.4017,-34.4053],[21.399,-34.4061],[21.3984,-34.4084],[21.3967,-34.41],[21.3923,-34.4101],[21.3905,-34.4085],[21.3878,-34.4085],[21.386,-34.4103],[21.3824,-34.4111],[21.3798,-34.4149],[21.3762,-34.4173],[21.3761,-34.4187],[21.3735,-34.4223],[21.369,-34.4228],[21.3685,-34.4214],[21.3647,-34.4206],[21.3632,-34.4212],[21.3611,-34.4198],[21.3542,-34.4194],[21.351,-34.4208],[21.3507,-34.422],[21.3475,-34.4247],[21.3427,-34.4274],[21.3387,-34.4266],[21.3359,-34.4302],[21.3365,-34.4334],[21.3329,-34.4346],[21.3283,-34.4331],[21.3272,-34.4335],[21.3201,-34.4312],[21.3188,-34.4334],[21.3162,-34.4331],[21.3138,-34.4343],[21.311,-34.4379],[21.3038,-34.4382],[21.3008,-34.439],[21.299,-34.4386],[21.2978,-34.4368],[21.2923,-34.4364],[21.2907,-34.4368],[21.2872,-34.4348],[21.2834,-34.4333],[21.28,-34.4308],[21.277,-34.4297],[21.2742,-34.4301],[21.2714,-34.4295],[21.2676,-34.4277],[21.2634,-34.4269],[21.2632,-34.4255],[21.2595,-34.4247],[21.2571,-34.4232],[21.2518,-34.4222],[21.2512,-34.4213],[21.2458,-34.4195],[21.2424,-34.4192],[21.2362,-34.4199],[21.2327,-34.418],[21.2319,-34.4162],[21.2259,-34.4178],[21.2228,-34.4154],[21.2199,-34.4164],[21.2174,-34.4134],[21.2155,-34.4135],[21.2146,-34.4115],[21.2084,-34.4105],[21.2082,-34.4079],[21.2071,-34.4067],[21.2014,-34.4042],[21.1949,-34.4021],[21.1825,-34.3975],[21.177,-34.3958],[21.1733,-34.395],[21.1669,-34.3929],[21.1637,-34.3925],[21.1564,-34.3898],[21.1451,-34.387],[21.137,-34.3846],[21.1343,-34.3835],[21.1274,-34.3823],[21.1215,-34.3808],[21.1161,-34.3807],[21.1106,-34.3788],[21.1021,-34.3769],[21.0995,-34.377],[21.0851,-34.3746],[21.068,-34.3727],[21.0588,-34.3712],[21.0513,-34.3709],[21.0471,-34.3697],[21.0376,-34.3708],[21.0327,-34.3703],[21.0262,-34.3688],[21.0195,-34.3682],[21.018,-34.3672],[21.0016,-34.3663],[21.0012,-34.365],[20.9835,-34.3649],[20.9794,-34.366],[20.9785,-34.3654],[20.9709,-34.3651],[20.9655,-34.3656],[20.9647,-34.3652],[20.9571,-34.3652],[20.951,-34.3663],[20.9423,-34.3657],[20.9389,-34.3666],[20.9334,-34.366],[20.914,-34.3702],[20.9128,-34.3709],[20.9041,-34.3725],[20.8926,-34.3763],[20.8808,-34.3821],[20.8674,-34.3912],[20.8606,-34.3944],[20.8546,-34.3978],[20.85,-34.4034],[20.8485,-34.4075],[20.8487,-34.4088],[20.8526,-34.4116],[20.8534,-34.4149],[20.8558,-34.4184],[20.8566,-34.422],[20.8586,-34.4237],[20.8614,-34.4248],[20.8664,-34.4255],[20.8696,-34.4292],[20.8681,-34.4308],[20.8681,-34.4352],[20.8704,-34.4375],[20.8703,-34.4416],[20.8709,-34.4423],[20.8704,-34.4459],[20.8715,-34.4478],[20.8702,-34.4494],[20.872,-34.4507],[20.8714,-34.4524],[20.8697,-34.4528],[20.869,-34.455],[20.8655,-34.4584],[20.8657,-34.4605],[20.87,-34.4646],[20.8688,-34.4662],[20.8623,-34.4655],[20.8587,-34.4645],[20.8561,-34.4649],[20.8521,-34.4676],[20.8536,-34.4709],[20.8484,-34.4723],[20.8462,-34.4744],[20.8437,-34.472],[20.8427,-34.4722],[20.8389,-34.4703],[20.8349,-34.4699],[20.8321,-34.4704],[20.8297,-34.4716],[20.8261,-34.4718],[20.8245,-34.4709],[20.8204,-34.4719],[20.8161,-34.469],[20.8127,-34.469],[20.8086,-34.4675],[20.8064,-34.4681],[20.8017,-34.4665],[20.7965,-34.4663],[20.7944,-34.464],[20.785,-34.4625],[20.7812,-34.4609],[20.7762,-34.4607],[20.7733,-34.4615],[20.7664,-34.4592],[20.7592,-34.4588],[20.753,-34.4563],[20.743,-34.4556],[20.7367,-34.4556],[20.7343,-34.4537],[20.7308,-34.4524],[20.7253,-34.455],[20.722,-34.4538],[20.7173,-34.4529],[20.7141,-34.4536],[20.7071,-34.4521],[20.6989,-34.4519],[20.6959,-34.4505],[20.6927,-34.4509],[20.6911,-34.4503],[20.6884,-34.4523],[20.683,-34.4531],[20.6789,-34.4524],[20.6767,-34.4505],[20.665,-34.4504],[20.6565,-34.45],[20.6467,-34.45],[20.644,-34.4504],[20.6277,-34.4514],[20.625,-34.4523],[20.6212,-34.4519],[20.6147,-34.4531],[20.6086,-34.4549],[20.6059,-34.4545],[20.6013,-34.4556],[20.5978,-34.4553],[20.5941,-34.4563],[20.5903,-34.4566],[20.586,-34.4579],[20.5811,-34.4582],[20.5732,-34.4604],[20.5716,-34.4616],[20.5665,-34.4615],[20.5629,-34.4636],[20.559,-34.4636],[20.5568,-34.4652],[20.5429,-34.4676],[20.5334,-34.47],[20.5268,-34.4726],[20.522,-34.4754],[20.5153,-34.4767],[20.5128,-34.4778],[20.5001,-34.4822],[20.4977,-34.4827],[20.4761,-34.4923],[20.4692,-34.4964],[20.4618,-34.5],[20.4571,-34.5034],[20.4523,-34.506],[20.4469,-34.5099],[20.4449,-34.5108],[20.4385,-34.5159],[20.4349,-34.52],[20.4277,-34.5264],[20.4221,-34.5336],[20.4199,-34.5384],[20.4183,-34.5432],[20.4162,-34.5455],[20.4132,-34.5513],[20.4141,-34.553],[20.4114,-34.5554],[20.4084,-34.559],[20.4092,-34.5599],[20.4072,-34.5634],[20.406,-34.5636],[20.4045,-34.5661],[20.4019,-34.5673],[20.397,-34.5723],[20.3897,-34.5731],[20.3788,-34.5772],[20.368,-34.5824],[20.3642,-34.5836],[20.3477,-34.5901],[20.3424,-34.5932],[20.3392,-34.5967],[20.3381,-34.5993],[20.3313,-34.6068],[20.331,-34.6085],[20.3276,-34.6109],[20.3243,-34.6115],[20.322,-34.6133],[20.3193,-34.6138],[20.3135,-34.618],[20.3027,-34.6222],[20.3002,-34.6228],[20.2953,-34.6254],[20.2923,-34.6262],[20.2864,-34.6268],[20.2835,-34.6282],[20.2718,-34.6324],[20.2588,-34.6383],[20.2488,-34.6441],[20.2433,-34.6485],[20.2394,-34.6522],[20.2359,-34.6573],[20.2335,-34.66],[20.2327,-34.6647],[20.2327,-34.6676],[20.2355,-34.6701],[20.233,-34.672],[20.232,-34.6763],[20.2347,-34.6801],[20.233,-34.682],[20.2339,-34.6834],[20.2336,-34.6862],[20.2356,-34.6878],[20.236,-34.6916],[20.2326,-34.6896],[20.2265,-34.6891],[20.2249,-34.6882],[20.2166,-34.688],[20.2146,-34.6892],[20.2106,-34.6887],[20.207,-34.6897],[20.2024,-34.6893],[20.1939,-34.6904],[20.1856,-34.6919],[20.1706,-34.6952],[20.1629,-34.6975],[20.1543,-34.7008],[20.1499,-34.7022],[20.1439,-34.7047],[20.1411,-34.7054],[20.1359,-34.708],[20.1326,-34.709],[20.127,-34.7115],[20.1228,-34.7129],[20.1149,-34.7169],[20.111,-34.7186],[20.0973,-34.7252],[20.0923,-34.7283],[20.0798,-34.7365],[20.0784,-34.7381],[20.0724,-34.7428],[20.0652,-34.7493],[20.0575,-34.7572],[20.0518,-34.7658],[20.0482,-34.7736],[20.0471,-34.7795],[20.0467,-34.7883],[20.0504,-34.796],[20.0524,-34.7983],[20.0563,-34.7984],[20.0584,-34.8006],[20.0625,-34.8008],[20.0648,-34.8031],[20.0638,-34.806],[20.0575,-34.8096],[20.0582,-34.812],[20.0565,-34.8122],[20.0537,-34.8142],[20.0493,-34.8145],[20.0456,-34.8138],[20.0437,-34.8145],[20.0412,-34.814],[20.0343,-34.8149],[20.0307,-34.8143],[20.0306,-34.8157],[20.0283,-34.8173],[20.0291,-34.8202],[20.0277,-34.8226],[20.0279,-34.8243],[20.0226,-34.8248],[20.0202,-34.8241],[20.0172,-34.8242],[20.0164,-34.8271],[20.0127,-34.8291],[20.0143,-34.8317],[20.0112,-34.8315],[20.0081,-34.832],[20.0071,-34.8339],[20.0018,-34.833],[19.9984,-34.8341],[19.9943,-34.8324],[19.9917,-34.8324],[19.9892,-34.8334],[19.9849,-34.8312],[19.9827,-34.8288],[19.9775,-34.8279],[19.9737,-34.8246],[19.9697,-34.8244],[19.9657,-34.8216],[19.9608,-34.8212],[19.9571,-34.819],[19.9562,-34.8153],[19.953,-34.8145],[19.9523,-34.8154],[19.9447,-34.8144],[19.9437,-34.8162],[19.9408,-34.8142],[19.9399,-34.8119],[19.937,-34.8109],[19.9359,-34.8081],[19.9332,-34.8063],[19.9277,-34.8003],[19.9211,-34.7952],[19.916,-34.7921],[19.9126,-34.7909],[19.9123,-34.79],[19.9063,-34.7868],[19.9039,-34.7844],[19.9012,-34.7837],[19.8932,-34.7829],[19.8901,-34.7822],[19.8867,-34.7744],[19.8853,-34.7725],[19.8826,-34.7722],[19.8815,-34.7701],[19.8775,-34.7678],[19.8722,-34.7659],[19.8699,-34.7671],[19.8639,-34.7677],[19.8636,-34.7669],[19.8585,-34.7663],[19.8575,-34.7656],[19.8547,-34.7677],[19.8505,-34.7689],[19.8437,-34.7674],[19.8383,-34.7666],[19.8318,-34.7648],[19.8261,-34.7651],[19.8258,-34.7633],[19.8232,-34.7624],[19.8188,-34.7633],[19.8164,-34.7626],[19.8088,-34.764],[19.8086,-34.7653],[19.8037,-34.7669],[19.8019,-34.7667],[19.7984,-34.7678],[19.7918,-34.766],[19.7882,-34.7664],[19.7855,-34.7652],[19.7808,-34.7655],[19.7761,-34.7644],[19.7681,-34.7647],[19.7626,-34.7659],[19.759,-34.7685],[19.7562,-34.7692],[19.7538,-34.7709],[19.7496,-34.7698],[19.7462,-34.7708],[19.741,-34.7688],[19.7376,-34.7685],[19.7268,-34.7681],[19.7247,-34.7672],[19.7204,-34.7656],[19.7103,-34.7636],[19.7068,-34.7639],[19.7019,-34.7637],[19.6999,-34.7626],[19.6913,-34.7632],[19.6875,-34.7656],[19.6857,-34.7651],[19.6837,-34.7665],[19.6841,-34.7685],[19.6825,-34.7717],[19.6797,-34.7723],[19.6767,-34.7748],[19.674,-34.7752],[19.6724,-34.7776],[19.6739,-34.78],[19.6764,-34.7804],[19.6776,-34.7819],[19.6752,-34.7831],[19.6708,-34.7837],[19.6658,-34.7849],[19.6611,-34.7877],[19.6617,-34.7844],[19.6577,-34.7844],[19.6559,-34.7859],[19.6495,-34.7859],[19.6468,-34.7825],[19.6444,-34.7813],[19.6415,-34.7834],[19.6384,-34.7827],[19.6359,-34.781],[19.6368,-34.7791],[19.6385,-34.7794],[19.6415,-34.7765],[19.642,-34.7733],[19.6408,-34.7682],[19.6366,-34.7619],[19.6339,-34.7566],[19.6294,-34.7535],[19.6235,-34.7538],[19.6204,-34.7559],[19.6153,-34.7576],[19.6092,-34.7566],[19.6071,-34.7544],[19.6059,-34.7512],[19.6031,-34.7517],[19.6003,-34.7508],[19.5995,-34.7484],[19.596,-34.7467],[19.5979,-34.741],[19.5994,-34.7391],[19.5974,-34.7344],[19.5934,-34.7358],[19.5945,-34.7311],[19.5911,-34.7261],[19.5875,-34.7242],[19.5872,-34.7276],[19.5859,-34.7286],[19.578,-34.7283],[19.5763,-34.729],[19.5732,-34.7283],[19.5695,-34.7247],[19.5747,-34.7214],[19.5728,-34.72],[19.5686,-34.7203],[19.5644,-34.7152],[19.5591,-34.7128],[19.5562,-34.7122],[19.5529,-34.7131],[19.5496,-34.7116],[19.5466,-34.7076],[19.5467,-34.7054],[19.5447,-34.7034],[19.5457,-34.6978],[19.5439,-34.6958],[19.5401,-34.6951],[19.5398,-34.6919],[19.537,-34.6921],[19.5367,-34.6901],[19.532,-34.6906],[19.5301,-34.6897],[19.5292,-34.688],[19.5296,-34.6849],[19.5324,-34.6828],[19.5325,-34.6807],[19.5297,-34.6771],[19.5205,-34.6713],[19.5158,-34.6697],[19.5126,-34.6713],[19.5083,-34.6724],[19.5036,-34.672],[19.5028,-34.6709],[19.4985,-34.6723],[19.4949,-34.6721],[19.4941,-34.67],[19.4904,-34.6678],[19.4905,-34.6651],[19.4886,-34.6636],[19.4823,-34.6628],[19.478,-34.663],[19.4783,-34.6647],[19.4765,-34.6657],[19.4745,-34.6647],[19.4731,-34.6612],[19.4673,-34.6604],[19.4601,-34.658],[19.4526,-34.6564],[19.4491,-34.6546],[19.4464,-34.6512],[19.446,-34.6486],[19.4429,-34.6435],[19.4414,-34.64],[19.4401,-34.6345],[19.4387,-34.631],[19.4324,-34.623],[19.4276,-34.6178],[19.4211,-34.6117],[19.418,-34.61],[19.4116,-34.6074],[19.4085,-34.6065],[19.4022,-34.6064],[19.3973,-34.6088],[19.3951,-34.6089],[19.3934,-34.6101],[19.3874,-34.6115],[19.3855,-34.6149],[19.3766,-34.6135],[19.3734,-34.6154],[19.37,-34.6138],[19.3669,-34.6164],[19.3638,-34.6166],[19.3604,-34.6151],[19.3557,-34.616],[19.3533,-34.6192],[19.3536,-34.6212],[19.3518,-34.6237],[19.348,-34.6263],[19.3453,-34.6263],[19.3402,-34.6277],[19.3389,-34.6263],[19.3362,-34.6265],[19.3341,-34.6251],[19.3308,-34.6244],[19.3284,-34.6255],[19.3206,-34.626],[19.3191,-34.6239],[19.3163,-34.6232],[19.3134,-34.6284],[19.3092,-34.6294],[19.306,-34.6333],[19.303,-34.6325],[19.3014,-34.6343],[19.2997,-34.633],[19.297,-34.6325],[19.2967,-34.6295],[19.2935,-34.63],[19.2935,-34.6278],[19.2974,-34.6239],[19.3003,-34.6227],[19.3004,-34.6214],[19.3025,-34.6193],[19.3015,-34.617],[19.3062,-34.6143],[19.3105,-34.6125],[19.311,-34.6112],[19.3146,-34.6117],[19.3205,-34.6101],[19.3237,-34.6108],[19.3262,-34.6102],[19.3301,-34.6061],[19.3308,-34.6033],[19.3333,-34.5991],[19.3334,-34.5972],[19.3352,-34.5949],[19.3389,-34.5879],[19.3415,-34.5882],[19.3439,-34.5874],[19.3457,-34.5849],[19.3462,-34.5826],[19.3422,-34.5791],[19.3446,-34.5749],[19.3469,-34.5735],[19.3469,-34.5721],[19.3522,-34.5669],[19.3512,-34.5656],[19.3514,-34.563],[19.353,-34.56],[19.3553,-34.5582],[19.3579,-34.5585],[19.3596,-34.5569],[19.3637,-34.556],[19.3641,-34.5539],[19.367,-34.5514],[19.3689,-34.5509],[19.3726,-34.5466],[19.3782,-34.5456],[19.379,-34.544],[19.3768,-34.5367],[19.3751,-34.5328],[19.3759,-34.5312],[19.3746,-34.5256],[19.3722,-34.5194],[19.3714,-34.5146],[19.37,-34.5117],[19.3665,-34.5024],[19.3636,-34.4971],[19.3617,-34.4923],[19.3577,-34.4855],[19.346,-34.4678],[19.3329,-34.4516],[19.3294,-34.4476],[19.3217,-34.4396],[19.3193,-34.4378],[19.3125,-34.4314],[19.3029,-34.4238],[19.2886,-34.4146],[19.282,-34.4127],[19.282,-34.4119],[19.2754,-34.4091],[19.269,-34.4098],[19.2677,-34.4094],[19.2648,-34.4114],[19.2616,-34.412],[19.2546,-34.4141],[19.252,-34.4136],[19.2499,-34.4165],[19.2454,-34.4185],[19.2418,-34.4228],[19.2383,-34.4218],[19.2329,-34.4267],[19.2303,-34.4298],[19.2278,-34.4297],[19.2255,-34.4327],[19.2258,-34.4356],[19.2237,-34.4356],[19.2185,-34.4381],[19.2075,-34.4367],[19.2065,-34.4352],[19.2033,-34.4355],[19.2029,-34.4336],[19.2041,-34.4319],[19.2042,-34.4287],[19.1987,-34.4288],[19.1959,-34.4297],[19.1936,-34.4295],[19.1898,-34.4267],[19.1895,-34.4241],[19.1879,-34.423],[19.1832,-34.422],[19.1816,-34.4199],[19.1724,-34.4205],[19.1722,-34.4169],[19.1702,-34.416],[19.1656,-34.4184],[19.1584,-34.4194],[19.1553,-34.4218],[19.1476,-34.4216],[19.1437,-34.4231],[19.1412,-34.4232],[19.1393,-34.4203],[19.1349,-34.4201],[19.1334,-34.4186],[19.126,-34.4172],[19.1213,-34.4151],[19.1222,-34.4121],[19.1177,-34.4092],[19.1197,-34.4024],[19.1223,-34.4018],[19.1252,-34.3998],[19.1252,-34.3974],[19.1234,-34.393],[19.1174,-34.3857],[19.1139,-34.3822],[19.1047,-34.3744],[19.1026,-34.3721],[19.0991,-34.3698],[19.0955,-34.3668],[19.092,-34.3649],[19.0906,-34.3633],[19.0869,-34.3616],[19.0837,-34.3592],[19.0773,-34.3562],[19.0691,-34.3512],[19.0512,-34.3438],[19.0492,-34.3437],[19.0471,-34.3422],[19.0421,-34.3411],[19.0387,-34.3413],[19.0347,-34.3449],[19.0306,-34.3446],[19.0288,-34.3453],[19.0262,-34.3448],[19.0233,-34.3458],[19.0209,-34.3454],[19.0154,-34.3475],[19.0079,-34.3461],[19.0046,-34.3463],[18.9994,-34.3436],[18.9946,-34.3448],[18.9938,-34.3465],[18.9866,-34.3488],[18.9862,-34.3507],[18.9796,-34.354],[18.9788,-34.357],[18.9767,-34.3591],[18.9748,-34.3599],[18.971,-34.3596],[18.9672,-34.3606],[18.968,-34.3622],[18.9646,-34.363],[18.9612,-34.3615],[18.9556,-34.3614],[18.9501,-34.3601],[18.9501,-34.3588],[18.944,-34.3589],[18.9409,-34.3582],[18.9387,-34.3566],[18.934,-34.3559],[18.9337,-34.3579],[18.9318,-34.3587],[18.9275,-34.358],[18.9227,-34.3591],[18.9204,-34.357],[18.9177,-34.3578],[18.9155,-34.3572],[18.9113,-34.3577],[18.9077,-34.3589],[18.9051,-34.3609],[18.9057,-34.3635],[18.903,-34.3639],[18.9012,-34.3656],[18.901,-34.3688],[18.8988,-34.3678],[18.8951,-34.3707],[18.8973,-34.3742],[18.8923,-34.3752],[18.8904,-34.3735],[18.8876,-34.3725],[18.885,-34.3727],[18.8854,-34.3746],[18.8817,-34.3732],[18.878,-34.3701],[18.8744,-34.3691],[18.8717,-34.3694],[18.8655,-34.3711],[18.8619,-34.3731],[18.8614,-34.3751],[18.8588,-34.3747],[18.8571,-34.3765],[18.8579,-34.3783],[18.8571,-34.3811],[18.8607,-34.3863],[18.8601,-34.3888],[18.8564,-34.3885],[18.8557,-34.391],[18.8525,-34.3886],[18.8543,-34.3873],[18.855,-34.3846],[18.85,-34.3839],[18.8484,-34.381],[18.8436,-34.3781],[18.8398,-34.3793],[18.8369,-34.3784],[18.8348,-34.3787],[18.832,-34.3805],[18.8318,-34.3817],[18.8347,-34.385],[18.8371,-34.3866],[18.8358,-34.3882],[18.8326,-34.3873],[18.8266,-34.3883],[18.826,-34.3867],[18.8268,-34.3844],[18.822,-34.3828],[18.823,-34.3805],[18.8265,-34.3806],[18.8271,-34.3761],[18.8246,-34.3734],[18.8191,-34.3732],[18.8195,-34.3703],[18.8177,-34.3683],[18.8171,-34.3655],[18.8151,-34.3643],[18.8164,-34.3599],[18.8159,-34.3551],[18.8095,-34.3487],[18.81,-34.3475],[18.8128,-34.347],[18.8169,-34.3478],[18.8193,-34.3476],[18.822,-34.3461],[18.825,-34.3455],[18.8258,-34.3465],[18.829,-34.3456],[18.8309,-34.3433],[18.8308,-34.3404],[18.8318,-34.3391],[18.8294,-34.3374],[18.8274,-34.3379],[18.8249,-34.337],[18.8203,-34.3311],[18.821,-34.3294],[18.8196,-34.3252],[18.818,-34.3231],[18.818,-34.321],[18.8156,-34.3178],[18.8172,-34.3166],[18.8159,-34.3148],[18.8192,-34.3132],[18.8186,-34.3109],[18.8172,-34.3106],[18.8132,-34.3118],[18.8115,-34.3108],[18.8107,-34.3085],[18.8127,-34.3079],[18.8133,-34.3054],[18.8125,-34.3024],[18.8123,-34.2977],[18.8193,-34.2982],[18.8214,-34.3001],[18.8227,-34.2988],[18.8208,-34.2954],[18.8201,-34.2913],[18.8205,-34.2897],[18.8239,-34.287],[18.8236,-34.2852],[18.8258,-34.2823],[18.8285,-34.2766],[18.8317,-34.274],[18.8347,-34.2739],[18.8369,-34.2726],[18.8407,-34.272],[18.8458,-34.2696],[18.851,-34.2659],[18.8526,-34.2636],[18.8524,-34.2615],[18.8544,-34.2576],[18.8559,-34.2524],[18.8539,-34.249],[18.855,-34.247],[18.8525,-34.2445],[18.8536,-34.2418],[18.8528,-34.2381],[18.8486,-34.2332],[18.8417,-34.2273],[18.8405,-34.2252],[18.8367,-34.2235],[18.8341,-34.2215],[18.8339,-34.2199],[18.8308,-34.2176],[18.8304,-34.2164],[18.8326,-34.2149],[18.8317,-34.2102],[18.8318,-34.2075],[18.8298,-34.2048],[18.8262,-34.2024],[18.8226,-34.1991],[18.8186,-34.1931],[18.8184,-34.19],[18.8197,-34.1853],[18.8244,-34.1804],[18.8292,-34.1781],[18.8292,-34.1774],[18.8378,-34.1723],[18.8422,-34.1717],[18.8494,-34.1688],[18.8556,-34.1673],[18.8587,-34.166],[18.8607,-34.1636],[18.8639,-34.163],[18.8681,-34.1605],[18.868,-34.1586],[18.866,-34.1553],[18.8624,-34.1546],[18.8587,-34.1507],[18.8559,-34.151],[18.8551,-34.1486],[18.8524,-34.1465],[18.851,-34.1443],[18.8475,-34.1417],[18.8449,-34.1377],[18.8417,-34.1348],[18.8401,-34.1319],[18.8379,-34.1295],[18.831,-34.1238],[18.8304,-34.1208],[18.8232,-34.1159],[18.8222,-34.1143],[18.8211,-34.1096],[18.8134,-34.1013],[18.813,-34.1002],[18.8087,-34.0986],[18.8035,-34.0952],[18.7979,-34.0927],[18.7931,-34.0911],[18.7877,-34.0884],[18.7804,-34.0854],[18.7734,-34.083],[18.7626,-34.0807],[18.759,-34.0793],[18.7545,-34.0781],[18.7501,-34.0776],[18.7388,-34.0753],[18.7297,-34.0744],[18.7231,-34.0741],[18.7142,-34.0729],[18.6947,-34.0721],[18.6893,-34.0726],[18.6877,-34.0748],[18.6766,-34.0735],[18.673,-34.0737],[18.6693,-34.073],[18.6622,-34.0727],[18.6496,-34.0729],[18.6308,-34.0733],[18.6223,-34.0748],[18.6214,-34.0756],[18.6168,-34.0751],[18.6119,-34.0753],[18.5974,-34.0776],[18.5894,-34.0793],[18.5801,-34.0817],[18.5722,-34.0833],[18.567,-34.0848],[18.5575,-34.087],[18.5536,-34.0889],[18.5503,-34.0886],[18.5376,-34.0902],[18.5158,-34.095],[18.5131,-34.096],[18.5031,-34.0973],[18.4953,-34.0999],[18.4903,-34.1012],[18.4804,-34.1045],[18.4691,-34.1091],[18.467,-34.1116],[18.4667,-34.1135],[18.4614,-34.1169],[18.4593,-34.1187],[18.4588,-34.1204],[18.4568,-34.1207],[18.4542,-34.1225],[18.4509,-34.1261],[18.4489,-34.1272],[18.4494,-34.1306],[18.4471,-34.1326],[18.4454,-34.1329],[18.4393,-34.1322],[18.4342,-34.1369],[18.4321,-34.1408],[18.4375,-34.1441],[18.44,-34.1498],[18.4392,-34.1521],[18.437,-34.1545],[18.4353,-34.1579],[18.4327,-34.1583],[18.431,-34.1615],[18.4332,-34.166],[18.4287,-34.172],[18.428,-34.1756],[18.4264,-34.1772],[18.4252,-34.1847],[18.4264,-34.1882],[18.4284,-34.1915],[18.4335,-34.1924],[18.435,-34.1908],[18.4381,-34.1906],[18.4415,-34.1912],[18.4429,-34.1906],[18.4458,-34.1924],[18.4466,-34.1943],[18.4531,-34.1972],[18.4562,-34.2001],[18.4572,-34.2019],[18.457,-34.2041],[18.4596,-34.2078],[18.4614,-34.2083],[18.4636,-34.2142],[18.4649,-34.2161],[18.4658,-34.22],[18.4657,-34.2225],[18.4675,-34.2252],[18.4697,-34.2266],[18.4721,-34.2301],[18.4754,-34.2304],[18.4767,-34.2328],[18.4748,-34.2338],[18.4757,-34.2383],[18.4766,-34.2391],[18.4748,-34.2417],[18.4748,-34.2452],[18.4766,-34.248],[18.4764,-34.2564],[18.4744,-34.2574],[18.4727,-34.26],[18.4706,-34.2602],[18.4667,-34.2656],[18.4666,-34.2681],[18.4682,-34.2714],[18.4749,-34.2758],[18.474,-34.2792],[18.4696,-34.2877],[18.4682,-34.2909],[18.4663,-34.2928],[18.4672,-34.2963],[18.4641,-34.3043],[18.4629,-34.3084],[18.4607,-34.3105],[18.4618,-34.3129],[18.4652,-34.3154],[18.4631,-34.3169],[18.4612,-34.317],[18.4608,-34.3195],[18.4621,-34.3219],[18.4651,-34.3236],[18.4676,-34.3281],[18.4675,-34.3324],[18.4699,-34.3362],[18.4698,-34.3381],[18.474,-34.3413],[18.4756,-34.3415],[18.4769,-34.3437],[18.4827,-34.3476],[18.4869,-34.3475],[18.4909,-34.3509],[18.4925,-34.3527],[18.4948,-34.3536],[18.4971,-34.3556],[18.4961,-34.3571],[18.4913,-34.355],[18.4844,-34.355],[18.4815,-34.354],[18.4798,-34.3564],[18.4758,-34.3583],[18.4728,-34.3574],[18.4725,-34.3546],[18.4664,-34.3479],[18.4647,-34.3478],[18.4608,-34.3449],[18.4592,-34.3444],[18.4597,-34.342],[18.4572,-34.3386],[18.4532,-34.3367],[18.448,-34.3363],[18.4435,-34.3374],[18.4408,-34.3355],[18.4385,-34.3352],[18.4373,-34.3338],[18.4332,-34.3329],[18.4304,-34.3311],[18.4287,-34.3314],[18.4211,-34.3261],[18.422,-34.3243],[18.4202,-34.3229],[18.4153,-34.3213],[18.4146,-34.3166],[18.4126,-34.3162],[18.4082,-34.3137],[18.406,-34.3111],[18.4022,-34.3097],[18.4004,-34.3077],[18.4032,-34.3072],[18.4047,-34.3059],[18.4049,-34.3034],[18.4038,-34.3006],[18.4021,-34.2984],[18.4005,-34.2949],[18.3969,-34.2901],[18.3968,-34.2884],[18.394,-34.2861],[18.3923,-34.286],[18.392,-34.2834],[18.3898,-34.2823],[18.3903,-34.2795],[18.3893,-34.2771],[18.3876,-34.2761],[18.3837,-34.2757],[18.3795,-34.273],[18.3797,-34.2705],[18.3833,-34.2684],[18.3841,-34.2658],[18.3812,-34.2634],[18.3803,-34.2615],[18.3805,-34.2587],[18.3821,-34.2583],[18.382,-34.2549],[18.3783,-34.2533],[18.3805,-34.2523],[18.3808,-34.2487],[18.3802,-34.2465],[18.3772,-34.2425],[18.3765,-34.2401],[18.3782,-34.2359],[18.3787,-34.2303],[18.3777,-34.2258],[18.3762,-34.2241],[18.3754,-34.2211],[18.3725,-34.2161],[18.3728,-34.2149],[18.3711,-34.2119],[18.3701,-34.2086],[18.3705,-34.2068],[18.3695,-34.2037],[18.3718,-34.2025],[18.3724,-34.2001],[18.3709,-34.1982],[18.369,-34.1932],[18.3678,-34.1923],[18.3653,-34.1877],[18.3628,-34.1844],[18.3592,-34.1825],[18.3578,-34.1805],[18.3521,-34.1767],[18.3472,-34.1763],[18.3456,-34.1769],[18.3434,-34.1797],[18.3401,-34.1774],[18.3393,-34.1778],[18.3362,-34.1723],[18.3335,-34.1698],[18.3316,-34.1649],[18.3287,-34.1614],[18.3273,-34.158],[18.3227,-34.1559],[18.3207,-34.1508],[18.3193,-34.1495],[18.3183,-34.1459],[18.319,-34.1447],[18.323,-34.1426],[18.3219,-34.1402],[18.3227,-34.1381],[18.3252,-34.1368],[18.3296,-34.1372],[18.334,-34.1349],[18.3353,-34.1321],[18.3391,-34.1273],[18.3425,-34.1279],[18.3463,-34.1301],[18.3487,-34.1292],[18.3511,-34.1258],[18.3537,-34.1182],[18.3531,-34.1162],[18.3553,-34.1142],[18.3569,-34.1104],[18.3569,-34.1057],[18.3564,-34.0992],[18.3556,-34.0975],[18.3538,-34.0971],[18.3527,-34.0949],[18.3504,-34.0926],[18.3497,-34.0908],[18.3552,-34.0872],[18.3532,-34.0854],[18.3551,-34.0835],[18.3558,-34.0806],[18.3552,-34.0768],[18.357,-34.0756],[18.3624,-34.074],[18.365,-34.0709],[18.3659,-34.0677],[18.3669,-34.0674],[18.3688,-34.0627],[18.3652,-34.0597],[18.362,-34.0491],[18.3608,-34.0476],[18.3573,-34.0457],[18.3532,-34.0456],[18.3497,-34.0465],[18.3453,-34.0507],[18.346,-34.0535],[18.3481,-34.0544],[18.347,-34.0575],[18.3433,-34.0605],[18.3407,-34.0615],[18.3366,-34.0607],[18.3333,-34.0587],[18.3292,-34.0574],[18.3295,-34.0563],[18.3257,-34.0545],[18.324,-34.0503],[18.3219,-34.0471],[18.3201,-34.0458],[18.3106,-34.0433],[18.3072,-34.0395],[18.3085,-34.0376],[18.3132,-34.0367],[18.3174,-34.03],[18.3152,-34.0288],[18.3223,-34.0272],[18.3293,-34.0252],[18.3322,-34.0232],[18.3318,-34.0207],[18.3333,-34.0175],[18.3345,-34.0169],[18.3342,-34.0125],[18.3355,-34.0109],[18.3399,-34.0099],[18.3416,-34.0083],[18.3414,-34.006],[18.3429,-34.0041],[18.342,-34.0023],[18.3423,-33.9995],[18.3447,-33.9975],[18.344,-33.9934],[18.3456,-33.9902],[18.3481,-33.9889],[18.3486,-33.9869],[18.3513,-33.9876],[18.3536,-33.9871],[18.3558,-33.9844],[18.3569,-33.9847],[18.3594,-33.9822],[18.3618,-33.982],[18.3698,-33.9746],[18.3713,-33.9722],[18.3707,-33.9686],[18.3729,-33.9669],[18.3719,-33.9632],[18.3731,-33.9621],[18.3725,-33.9596],[18.376,-33.9594],[18.3773,-33.9584],[18.3756,-33.9564],[18.376,-33.9535],[18.3779,-33.951],[18.3787,-33.9497],[18.378,-33.9466],[18.3726,-33.9446],[18.3718,-33.9409],[18.3755,-33.9409],[18.3775,-33.9379],[18.3775,-33.9334],[18.3757,-33.9323],[18.3753,-33.928],[18.3784,-33.9266],[18.3773,-33.9247],[18.3773,-33.9221],[18.3812,-33.9201],[18.3818,-33.9192],[18.386,-33.9172],[18.3885,-33.9112],[18.3907,-33.9093],[18.3937,-33.9086],[18.3975,-33.905],[18.3983,-33.9009],[18.4033,-33.8995],[18.4067,-33.8995],[18.4121,-33.8988],[18.4186,-33.9025],[18.4207,-33.9012],[18.425,-33.9014],[18.4204,-33.9049],[18.4201,-33.9075],[18.4174,-33.9085],[18.4185,-33.9098],[18.4208,-33.9097],[18.421,-33.9075],[18.4223,-33.9063],[18.424,-33.9083],[18.4287,-33.9045],[18.4306,-33.9057],[18.4256,-33.9097],[18.4401,-33.9204],[18.4459,-33.9203],[18.4436,-33.9183],[18.4464,-33.9159],[18.4417,-33.9119],[18.4397,-33.912],[18.4374,-33.9088],[18.4449,-33.9142],[18.4482,-33.9162],[18.4472,-33.9174],[18.4501,-33.9196],[18.455,-33.9155],[18.4446,-33.9067],[18.446,-33.9056],[18.4538,-33.9119],[18.4557,-33.9124],[18.4652,-33.9121],[18.468,-33.9111],[18.4722,-33.9077],[18.475,-33.9043],[18.4803,-33.8964],[18.4826,-33.8912],[18.4842,-33.8909],[18.4842,-33.8885],[18.4877,-33.8792],[18.4894,-33.8703],[18.4891,-33.8571],[18.4887,-33.8519],[18.4859,-33.8428],[18.4821,-33.8337],[18.4757,-33.8212],[18.4685,-33.8102],[18.4656,-33.8064],[18.4624,-33.8047],[18.4575,-33.8002],[18.4588,-33.7977],[18.4534,-33.7869],[18.4498,-33.7818],[18.446,-33.772],[18.4432,-33.7629],[18.4418,-33.7562],[18.4415,-33.7471],[18.439,-33.7406],[18.4355,-33.736],[18.4352,-33.7316],[18.4363,-33.7298],[18.4402,-33.7277],[18.4431,-33.7237],[18.4442,-33.72],[18.4433,-33.7159],[18.444,-33.7133],[18.4413,-33.7025],[18.438,-33.6926],[18.4349,-33.6887],[18.4353,-33.6883],[18.4311,-33.6793],[18.4273,-33.6722],[18.4266,-33.6694],[18.4252,-33.6676],[18.4202,-33.6576],[18.4124,-33.6464],[18.4068,-33.6406],[18.4052,-33.6357],[18.4033,-33.6326],[18.3998,-33.6291],[18.3956,-33.6234],[18.3915,-33.6212],[18.3885,-33.6206],[18.3859,-33.6213],[18.3836,-33.6189],[18.381,-33.6195],[18.3766,-33.6177],[18.374,-33.6129],[18.3719,-33.6115],[18.3739,-33.608],[18.3706,-33.6027],[18.3679,-33.5996],[18.3661,-33.5989],[18.3622,-33.5986],[18.3607,-33.5997],[18.357,-33.5989],[18.3616,-33.5945],[18.3614,-33.5923],[18.3588,-33.5913],[18.3612,-33.5899],[18.3605,-33.5871],[18.3581,-33.5822],[18.355,-33.5786],[18.3452,-33.5713],[18.343,-33.5706],[18.3392,-33.5714],[18.338,-33.5695],[18.3332,-33.5691],[18.3313,-33.5704],[18.3282,-33.5711],[18.3256,-33.5706],[18.3256,-33.5742],[18.3235,-33.5754],[18.3196,-33.5745],[18.3181,-33.5717],[18.3161,-33.5704],[18.3101,-33.568],[18.3092,-33.5643],[18.3118,-33.5626],[18.311,-33.5596],[18.3089,-33.5561],[18.3094,-33.5508],[18.3107,-33.5489],[18.3106,-33.5468],[18.3129,-33.5463],[18.3126,-33.5421],[18.3119,-33.5409],[18.3164,-33.5399],[18.3174,-33.5373],[18.315,-33.5334],[18.3149,-33.5312],[18.3164,-33.53],[18.3169,-33.5262],[18.3179,-33.5234],[18.3195,-33.5214],[18.3219,-33.5217],[18.3229,-33.5195],[18.3245,-33.5193],[18.3253,-33.5166],[18.3212,-33.5158],[18.319,-33.512],[18.3158,-33.5088],[18.3142,-33.5088],[18.3129,-33.5059],[18.3151,-33.5037],[18.3136,-33.5006],[18.3155,-33.4996],[18.3164,-33.497],[18.3146,-33.4961],[18.3127,-33.4975],[18.3102,-33.4962],[18.3117,-33.4942],[18.3078,-33.4888],[18.3065,-33.485],[18.3075,-33.4825],[18.3046,-33.4816],[18.3035,-33.4783],[18.3004,-33.4744],[18.2978,-33.4722],[18.2942,-33.467],[18.2908,-33.4638],[18.2888,-33.4608],[18.2845,-33.4567],[18.2835,-33.4548],[18.2787,-33.4501],[18.2744,-33.4452],[18.2688,-33.4403],[18.2657,-33.4366],[18.2551,-33.4268],[18.2502,-33.4227],[18.2451,-33.419],[18.2388,-33.4134],[18.2355,-33.4115],[18.2292,-33.4059],[18.2187,-33.3995],[18.2123,-33.3945],[18.2074,-33.392],[18.2044,-33.39],[18.1978,-33.3868],[18.1945,-33.3846],[18.1842,-33.3788],[18.1765,-33.3751],[18.166,-33.3686],[18.1623,-33.3682],[18.1627,-33.3663],[18.1601,-33.3653],[18.1578,-33.362],[18.1562,-33.361],[18.1555,-33.3587],[18.1513,-33.3542],[18.1485,-33.3536],[18.1465,-33.3512],[18.146,-33.3487],[18.1472,-33.3467],[18.1503,-33.3462],[18.1534,-33.347],[18.1566,-33.3439],[18.1601,-33.3431],[18.1604,-33.3376],[18.1599,-33.3316],[18.1574,-33.3234],[18.1562,-33.3206],[18.148,-33.3042],[18.1357,-33.2818],[18.1276,-33.2691],[18.1221,-33.2617],[18.1164,-33.2535],[18.1114,-33.2476],[18.1065,-33.2407],[18.0997,-33.2336],[18.0966,-33.2292],[18.092,-33.2241],[18.0786,-33.21],[18.0757,-33.2079],[18.074,-33.2055],[18.0687,-33.2004],[18.0636,-33.196],[18.0608,-33.1927],[18.0528,-33.1862],[18.051,-33.1841],[18.0481,-33.1821],[18.0442,-33.1783],[18.039,-33.1739],[18.0359,-33.1719],[18.0314,-33.1679],[18.0233,-33.1626],[18.0194,-33.1586],[18.0167,-33.1572],[18.0154,-33.1555],[18.0083,-33.1506],[18.0069,-33.1491],[18.0037,-33.1477],[17.999,-33.1492],[17.9979,-33.1481],[17.9978,-33.1458],[17.9911,-33.145],[17.9859,-33.1426],[17.9782,-33.1423],[17.9763,-33.1414],[17.9739,-33.1386],[17.9723,-33.1384],[17.9701,-33.1365],[17.9707,-33.1352],[17.9706,-33.1314],[17.975,-33.1298],[17.9764,-33.1282],[17.9753,-33.1224],[17.9717,-33.1164],[17.9693,-33.1156],[17.9664,-33.1134],[17.961,-33.1132],[17.9601,-33.1118],[17.9553,-33.1106],[17.9522,-33.107],[17.9525,-33.1046],[17.9548,-33.103],[17.9579,-33.1027],[17.9566,-33.0988],[17.9583,-33.0957],[17.9623,-33.0968],[17.9648,-33.0991],[17.9663,-33.0995],[17.9705,-33.0971],[17.9704,-33.095],[17.9763,-33.0955],[17.9785,-33.0925],[17.98,-33.0887],[17.9798,-33.0842],[17.9789,-33.0822],[17.9758,-33.0819],[17.975,-33.0782],[17.9735,-33.0759],[17.9764,-33.0723],[17.975,-33.0704],[17.9724,-33.0691],[17.9722,-33.0677],[17.9778,-33.0666],[17.9842,-33.0689],[17.9891,-33.0698],[17.9895,-33.0713],[17.9923,-33.0702],[17.9952,-33.0701],[17.9967,-33.0721],[17.995,-33.0772],[17.9974,-33.0785],[18.0001,-33.0777],[18.0035,-33.0778],[18.0046,-33.0786],[18.0037,-33.0812],[18.002,-33.0828],[18.0041,-33.0862],[18.0041,-33.088],[18.0005,-33.0883],[17.9972,-33.088],[17.9914,-33.0899],[17.9851,-33.0895],[17.982,-33.0927],[17.9837,-33.0943],[17.9859,-33.0947],[17.9911,-33.0925],[17.9983,-33.0929],[18.0015,-33.0938],[18.0023,-33.0928],[18.0075,-33.0931],[18.0132,-33.0956],[18.0134,-33.0965],[18.011,-33.0984],[18.0101,-33.1012],[18.0134,-33.1067],[18.0145,-33.117],[18.0131,-33.1193],[18.0133,-33.1209],[18.0157,-33.1228],[18.0251,-33.1248],[18.0276,-33.1258],[18.0307,-33.1283],[18.0312,-33.131],[18.0285,-33.1335],[18.0274,-33.1369],[18.0255,-33.1375],[18.0233,-33.1424],[18.0261,-33.1453],[18.0314,-33.147],[18.0346,-33.1502],[18.0388,-33.1512],[18.0406,-33.1532],[18.05,-33.1545],[18.0486,-33.1563],[18.0494,-33.1614],[18.0512,-33.1631],[18.0591,-33.1677],[18.0605,-33.1709],[18.0654,-33.1762],[18.069,-33.1771],[18.0729,-33.1808],[18.0784,-33.1813],[18.0813,-33.1827],[18.0836,-33.1858],[18.0868,-33.1866],[18.0904,-33.1901],[18.0914,-33.1936],[18.0893,-33.1961],[18.0897,-33.1988],[18.0921,-33.2017],[18.0966,-33.2047],[18.1021,-33.2039],[18.1079,-33.2021],[18.1082,-33.2],[18.1133,-33.1984],[18.1193,-33.1958],[18.123,-33.1922],[18.1255,-33.1863],[18.1239,-33.1805],[18.1172,-33.1797],[18.1115,-33.1807],[18.1103,-33.1797],[18.106,-33.1842],[18.1033,-33.1817],[18.1045,-33.1804],[18.099,-33.1766],[18.094,-33.1768],[18.0875,-33.1752],[18.0847,-33.1738],[18.083,-33.1716],[18.0814,-33.1679],[18.0827,-33.1655],[18.087,-33.165],[18.0899,-33.1671],[18.0951,-33.169],[18.0961,-33.1677],[18.0931,-33.1657],[18.0896,-33.1641],[18.0921,-33.1582],[18.0948,-33.1564],[18.0952,-33.1532],[18.0933,-33.1514],[18.0926,-33.1464],[18.0901,-33.1425],[18.0869,-33.1406],[18.0815,-33.1384],[18.0749,-33.1368],[18.0734,-33.1344],[18.0712,-33.1334],[18.0638,-33.1309],[18.0601,-33.1291],[18.0589,-33.1276],[18.057,-33.1227],[18.0559,-33.1218],[18.0517,-33.1208],[18.0488,-33.1158],[18.0476,-33.1146],[18.0411,-33.1114],[18.0394,-33.1113],[18.0377,-33.1092],[18.0348,-33.1075],[18.0331,-33.1054],[18.0323,-33.1026],[18.029,-33.0982],[18.0305,-33.0927],[18.0304,-33.0895],[18.0296,-33.0865],[18.0279,-33.0843],[18.0294,-33.082],[18.0322,-33.0799],[18.0346,-33.0769],[18.039,-33.0701],[18.0402,-33.0689],[18.0417,-33.0638],[18.0411,-33.0628],[18.0423,-33.0603],[18.0425,-33.0561],[18.0411,-33.0545],[18.0425,-33.0529],[18.0427,-33.0487],[18.0409,-33.0462],[18.037,-33.0452],[18.036,-33.0423],[18.0376,-33.0405],[18.0346,-33.0312],[18.0301,-33.0239],[18.0234,-33.0169],[18.0185,-33.0132],[18.0088,-33.0079],[18.0045,-33.0097],[17.9982,-33.0078],[17.9949,-33.0088],[17.9911,-33.0172],[17.99,-33.0206],[17.9867,-33.0242],[17.9918,-33.013],[17.9915,-33.0117],[17.9945,-33.0052],[17.9946,-33.0026],[17.9964,-32.9999],[17.9927,-32.9972],[17.9859,-32.9957],[17.9745,-32.9956],[17.9682,-32.9962],[17.9605,-32.9978],[17.9564,-32.9991],[17.9497,-33.0026],[17.9461,-33.006],[17.9461,-33.0073],[17.9484,-33.0085],[17.9511,-33.0112],[17.9502,-33.014],[17.9471,-33.0175],[17.948,-33.0211],[17.9557,-33.0241],[17.9587,-33.0268],[17.9607,-33.0268],[17.962,-33.0246],[17.9647,-33.0271],[17.9649,-33.0294],[17.9678,-33.0309],[17.973,-33.0352],[17.9737,-33.0395],[17.9717,-33.0419],[17.9718,-33.0438],[17.9682,-33.0453],[17.9652,-33.0433],[17.9652,-33.0416],[17.9682,-33.0425],[17.9702,-33.0414],[17.9715,-33.0375],[17.9687,-33.0338],[17.9658,-33.0318],[17.9594,-33.0288],[17.9562,-33.0299],[17.9537,-33.0287],[17.9523,-33.0263],[17.9476,-33.0256],[17.9429,-33.0256],[17.9416,-33.0268],[17.9378,-33.027],[17.9347,-33.0292],[17.9337,-33.031],[17.9342,-33.033],[17.9368,-33.0341],[17.9368,-33.036],[17.9387,-33.0377],[17.934,-33.0393],[17.9312,-33.0409],[17.9256,-33.0418],[17.9239,-33.0437],[17.9206,-33.0448],[17.9189,-33.0464],[17.9129,-33.0501],[17.9111,-33.0518],[17.9093,-33.0507],[17.909,-33.0486],[17.9055,-33.0481],[17.9033,-33.0463],[17.9038,-33.0436],[17.9018,-33.042],[17.9017,-33.0402],[17.8991,-33.04],[17.8952,-33.0417],[17.8938,-33.0401],[17.8959,-33.0385],[17.8971,-33.0359],[17.8959,-33.035],[17.8914,-33.0286],[17.8894,-33.0269],[17.8926,-33.0264],[17.8966,-33.0292],[17.8999,-33.0274],[17.9021,-33.0245],[17.9035,-33.0207],[17.9032,-33.0152],[17.9001,-33.009],[17.898,-33.0065],[17.8953,-33.0045],[17.8894,-33.0018],[17.887,-33.0012],[17.8841,-33.0016],[17.882,-33.0037],[17.8821,-33.0054],[17.88,-33.0064],[17.8764,-33.004],[17.8773,-33.0013],[17.8725,-32.999],[17.8741,-32.9955],[17.8715,-32.9928],[17.8723,-32.9907],[17.8762,-32.9894],[17.8774,-32.9856],[17.8768,-32.9843],[17.8841,-32.9806],[17.8859,-32.9793],[17.8858,-32.9776],[17.8833,-32.9765],[17.8848,-32.9748],[17.8836,-32.9733],[17.8856,-32.9722],[17.8852,-32.967],[17.8876,-32.9652],[17.8865,-32.9641],[17.8839,-32.9639],[17.8837,-32.9589],[17.8816,-32.9571],[17.8819,-32.9549],[17.8853,-32.951],[17.8865,-32.9479],[17.8853,-32.9451],[17.8868,-32.9422],[17.8839,-32.9295],[17.8817,-32.9234],[17.8788,-32.919],[17.8716,-32.9164],[17.8706,-32.915],[17.8706,-32.9126],[17.8658,-32.9101],[17.8639,-32.9114],[17.8601,-32.9111],[17.859,-32.9093],[17.859,-32.9043],[17.8633,-32.9016],[17.8626,-32.8997],[17.8658,-32.899],[17.8663,-32.897],[17.8684,-32.8962],[17.8684,-32.8945],[17.8633,-32.8929],[17.8659,-32.8913],[17.8641,-32.8887],[17.8669,-32.8865],[17.8708,-32.8857],[17.8733,-32.8869],[17.8754,-32.8857],[17.8787,-32.8854],[17.8817,-32.8821],[17.8841,-32.8771],[17.8847,-32.8709],[17.8823,-32.8688],[17.8811,-32.8657],[17.8829,-32.8651],[17.8829,-32.863],[17.8818,-32.8607],[17.8799,-32.8597],[17.8808,-32.8571],[17.8805,-32.8537],[17.8792,-32.851],[17.8734,-32.8458],[17.8703,-32.8454],[17.866,-32.8419],[17.8632,-32.8437],[17.8623,-32.8427],[17.8595,-32.8433],[17.8612,-32.8394],[17.8579,-32.8388],[17.8574,-32.8371],[17.8533,-32.8338],[17.8505,-32.8339],[17.8482,-32.8325],[17.8476,-32.8311],[17.8483,-32.8279],[17.8451,-32.8282],[17.8456,-32.8255],[17.8481,-32.8245],[17.8513,-32.8223],[17.8522,-32.8191],[17.8535,-32.8183],[17.8578,-32.8179],[17.864,-32.818],[17.8674,-32.8134],[17.8707,-32.8154],[17.8724,-32.8154],[17.8794,-32.8125],[17.881,-32.8124],[17.8833,-32.8094],[17.8823,-32.8061],[17.8851,-32.8073],[17.8898,-32.8079],[17.8938,-32.8068],[17.8987,-32.8029],[17.9009,-32.8026],[17.9026,-32.8009],[17.9053,-32.7965],[17.9077,-32.7874],[17.908,-32.7828],[17.9069,-32.7679],[17.9032,-32.7573],[17.9018,-32.7546],[17.8987,-32.753],[17.8974,-32.7501],[17.8951,-32.7483],[17.8966,-32.746],[17.8959,-32.7426],[17.897,-32.7406],[17.9025,-32.7362],[17.9098,-32.7362],[17.9134,-32.7339],[17.9158,-32.7308],[17.9167,-32.7278],[17.9186,-32.7283],[17.9219,-32.7259],[17.922,-32.7232],[17.9236,-32.7212],[17.9228,-32.7175],[17.9201,-32.716],[17.9207,-32.7139],[17.9256,-32.7162],[17.9305,-32.7198],[17.9318,-32.7198],[17.9372,-32.7174],[17.9397,-32.7155],[17.9416,-32.7174],[17.9398,-32.72],[17.9438,-32.7223],[17.9486,-32.7223],[17.9515,-32.7214],[17.9577,-32.7181],[17.9612,-32.7148],[17.9651,-32.7101],[17.9681,-32.7043],[17.9669,-32.7026],[17.9674,-32.7004],[17.9715,-32.7026],[17.9733,-32.705],[17.9772,-32.7054],[17.9793,-32.7049],[17.9798,-32.7072],[17.9775,-32.7103],[17.9775,-32.7125],[17.9794,-32.715],[17.9748,-32.7184],[17.9751,-32.7214],[17.9786,-32.7254],[17.9847,-32.7293],[17.9918,-32.7302],[17.9948,-32.7324],[17.9994,-32.7341],[18.0038,-32.735],[18.0067,-32.737],[18.0107,-32.7389],[18.0153,-32.7404],[18.0138,-32.7425],[18.0107,-32.7428],[18.0141,-32.7499],[18.0201,-32.7522],[18.0216,-32.754],[18.0276,-32.7557],[18.0282,-32.7577],[18.0308,-32.7603],[18.0328,-32.7605],[18.0377,-32.7648],[18.0416,-32.7664],[18.0431,-32.7685],[18.0449,-32.7694],[18.0518,-32.7772],[18.0516,-32.778],[18.0543,-32.7816],[18.0551,-32.7837],[18.0567,-32.7841],[18.0604,-32.7835],[18.0633,-32.7818],[18.066,-32.7819],[18.0703,-32.7808],[18.0738,-32.779],[18.0767,-32.7785],[18.0788,-32.7767],[18.0815,-32.778],[18.0845,-32.7767],[18.0877,-32.7774],[18.0901,-32.7804],[18.0926,-32.7806],[18.0955,-32.7778],[18.0983,-32.7804],[18.0997,-32.781],[18.1042,-32.78],[18.105,-32.7784],[18.1084,-32.7803],[18.1126,-32.7803],[18.1141,-32.7794],[18.1177,-32.7794],[18.1202,-32.7778],[18.1248,-32.7778],[18.1284,-32.7774],[18.1345,-32.7745],[18.1389,-32.7733],[18.1452,-32.7689],[18.1518,-32.7651],[18.1557,-32.7622],[18.1615,-32.7587],[18.167,-32.7542],[18.1707,-32.7503],[18.1757,-32.7443],[18.1807,-32.7365],[18.183,-32.734],[18.1876,-32.7301],[18.1933,-32.7231],[18.1978,-32.7161],[18.2026,-32.7121],[18.2163,-32.7036],[18.2233,-32.6984],[18.2267,-32.6965],[18.2327,-32.6918],[18.2365,-32.6879],[18.2435,-32.6816],[18.2465,-32.6784],[18.2517,-32.6717],[18.2549,-32.6682],[18.2598,-32.6618],[18.2647,-32.6535],[18.2698,-32.6461],[18.2736,-32.6416],[18.2794,-32.6332],[18.2842,-32.6255],[18.2887,-32.6175],[18.2945,-32.606],[18.2971,-32.6016],[18.2999,-32.5949],[18.3047,-32.5862],[18.3079,-32.5785],[18.3111,-32.5718],[18.3164,-32.5574],[18.3203,-32.5478],[18.3214,-32.5434],[18.3241,-32.5348],[18.3251,-32.5278],[18.3267,-32.5224],[18.3286,-32.5133],[18.3303,-32.5032],[18.3313,-32.5001],[18.3324,-32.4934],[18.3336,-32.4816],[18.3342,-32.474],[18.3339,-32.4713],[18.3348,-32.4643],[18.3348,-32.4496],[18.3345,-32.4429],[18.3338,-32.4298],[18.333,-32.4248],[18.3331,-32.4225],[18.3324,-32.413],[18.3309,-32.4007],[18.3282,-32.3863],[18.3257,-32.3713],[18.3247,-32.3682],[18.323,-32.3601],[18.322,-32.358],[18.3203,-32.3509],[18.3183,-32.3452],[18.3179,-32.3424],[18.3154,-32.3365],[18.3169,-32.3337],[18.3151,-32.3251],[18.3155,-32.3213],[18.3142,-32.3165],[18.3168,-32.3147],[18.3209,-32.3174],[18.3237,-32.3178],[18.3276,-32.3158],[18.3316,-32.3154],[18.3348,-32.3161],[18.3375,-32.314],[18.3398,-32.3103],[18.3416,-32.3063],[18.3425,-32.2994],[18.3441,-32.2937],[18.3447,-32.2904],[18.3443,-32.2839],[18.3447,-32.2823],[18.3438,-32.2754],[18.3429,-32.2733],[18.3422,-32.2692],[18.3422,-32.2657],[18.3406,-32.2613],[18.3401,-32.2572],[18.3381,-32.2514],[18.3381,-32.2495],[18.3341,-32.2359],[18.3298,-32.2252],[18.3296,-32.2229],[18.3278,-32.2179],[18.3259,-32.2151],[18.3241,-32.2096],[18.3255,-32.2088],[18.3261,-32.2063],[18.3253,-32.2032],[18.322,-32.1942],[18.3186,-32.1883],[18.3172,-32.1851],[18.3126,-32.1771],[18.3103,-32.1726],[18.312,-32.1704],[18.3105,-32.1696],[18.3095,-32.1673],[18.3112,-32.1662],[18.3113,-32.1599],[18.3068,-32.1509],[18.3055,-32.1449],[18.3055,-32.1394],[18.3043,-32.1354],[18.3053,-32.1339],[18.3036,-32.1282],[18.3039,-32.1226],[18.3026,-32.1204],[18.3014,-32.1123],[18.3038,-32.1063],[18.3037,-32.104],[18.3019,-32.1003],[18.3028,-32.0985],[18.3004,-32.096],[18.3021,-32.0922],[18.3046,-32.091],[18.3087,-32.0899],[18.3112,-32.0878],[18.3139,-32.0836],[18.3149,-32.0791],[18.3147,-32.074],[18.3117,-32.0623],[18.308,-32.052],[18.3067,-32.0498],[18.3053,-32.0458],[18.302,-32.0388],[18.2992,-32.0339],[18.297,-32.0287],[18.2945,-32.0251],[18.2932,-32.0221],[18.295,-32.0194],[18.2949,-32.0172],[18.292,-32.0098],[18.2903,-32.0067],[18.2866,-32.0004],[18.2851,-31.9996],[18.2838,-31.9968],[18.2824,-31.9955],[18.2824,-31.9914],[18.2844,-31.9909],[18.2865,-31.9886],[18.2868,-31.9866],[18.2854,-31.9824],[18.2813,-31.9752],[18.2811,-31.973],[18.2797,-31.9708],[18.2785,-31.9659],[18.2773,-31.9649],[18.2751,-31.959],[18.2734,-31.9576],[18.2728,-31.9556],[18.2678,-31.9484],[18.2681,-31.9465],[18.2663,-31.9437],[18.2654,-31.9396],[18.2655,-31.934],[18.2701,-31.9339],[18.2729,-31.9325],[18.2749,-31.9298],[18.2759,-31.924],[18.2753,-31.9177],[18.2726,-31.9129],[18.2736,-31.912],[18.2778,-31.9122],[18.28,-31.9084],[18.2801,-31.8982],[18.2788,-31.8934],[18.2764,-31.8883],[18.2743,-31.8811],[18.2722,-31.8779],[18.2688,-31.8713],[18.266,-31.8653],[18.263,-31.8603],[18.2602,-31.8569],[18.2589,-31.8545],[18.2504,-31.8431],[18.2456,-31.8371],[18.2418,-31.8315],[18.2398,-31.8295],[18.2376,-31.8257],[18.2336,-31.8207],[18.2334,-31.8177],[18.2354,-31.8132],[18.234,-31.8098],[18.2318,-31.8067],[18.2315,-31.8035],[18.2289,-31.7994],[18.2326,-31.7969],[18.2328,-31.7951],[18.2307,-31.7909],[18.2307,-31.7872],[18.2283,-31.7859],[18.2262,-31.7812],[18.2256,-31.7786],[18.2255,-31.773],[18.2244,-31.7712],[18.2236,-31.766],[18.2245,-31.7636],[18.2218,-31.7625],[18.221,-31.7604],[18.2228,-31.7597],[18.2216,-31.7571],[18.2236,-31.7563],[18.2253,-31.754],[18.2242,-31.7484],[18.2224,-31.7477],[18.2228,-31.7443],[18.2175,-31.7389],[18.2144,-31.7338],[18.2106,-31.7295],[18.2094,-31.7274],[18.2047,-31.7217],[18.2029,-31.7174],[18.1936,-31.706],[18.1903,-31.7029],[18.1893,-31.7006],[18.1861,-31.7014],[18.1839,-31.696],[18.1841,-31.6933],[18.1816,-31.6915],[18.1798,-31.6871],[18.1775,-31.6841],[18.1735,-31.6799],[18.172,-31.68],[18.171,-31.6779],[18.1682,-31.6749],[18.1643,-31.6689],[18.1627,-31.6674],[18.1605,-31.6632],[18.156,-31.6573],[18.1547,-31.6562],[18.1521,-31.6558],[18.152,-31.6541],[18.1504,-31.653],[18.1503,-31.6492],[18.1464,-31.6426],[18.1472,-31.6401],[18.1453,-31.6371],[18.1428,-31.6358],[18.1375,-31.6269],[18.1365,-31.6276],[18.1337,-31.6251],[18.1338,-31.623],[18.1318,-31.6215],[18.1327,-31.6163],[18.1297,-31.6131],[18.1296,-31.6108],[18.1274,-31.6081],[18.1183,-31.6027],[18.1199,-31.6014],[18.1172,-31.6],[18.1155,-31.5978],[18.1174,-31.5937],[18.118,-31.5882],[18.1168,-31.5835],[18.1147,-31.5801],[18.1127,-31.5789],[18.1107,-31.5745],[18.1078,-31.5715],[18.1056,-31.568],[18.1027,-31.5651],[18.0978,-31.5594],[18.0929,-31.5549],[18.0916,-31.553],[18.0892,-31.5516],[18.0861,-31.5485],[18.0843,-31.5454],[18.0732,-31.5344],[18.0691,-31.5307],[18.0662,-31.5274],[18.0615,-31.5238],[18.0573,-31.5226],[18.0558,-31.5215],[18.0543,-31.5179],[18.0501,-31.5163],[18.0502,-31.5141],[18.0472,-31.5133],[18.0461,-31.5113],[18.0425,-31.5098],[18.042,-31.506],[18.0407,-31.5034],[18.0384,-31.5031],[18.0369,-31.4995],[18.0327,-31.4961],[18.0336,-31.4943],[18.0326,-31.4928],[18.0289,-31.4912],[18.0268,-31.4885],[18.0249,-31.4881],[18.0237,-31.4862],[18.0209,-31.4844],[18.0204,-31.4827],[18.0177,-31.4804],[18.0163,-31.4782],[18.0119,-31.4758],[18.0089,-31.4734],[18.0066,-31.4704],[18.0042,-31.4653],[18.003,-31.4644],[18.0023,-31.4618],[18.0006,-31.4614],[18.0003,-31.4591],[17.9979,-31.4575],[17.9951,-31.4566],[17.9923,-31.4537],[17.99,-31.45],[17.9881,-31.4453],[17.9864,-31.4427],[17.9796,-31.4347],[17.9775,-31.4344],[17.9756,-31.4301],[17.9722,-31.4282],[17.971,-31.4246],[17.9659,-31.4197],[17.9608,-31.4175],[17.9604,-31.4162],[17.9578,-31.4151],[17.9561,-31.4116],[17.9529,-31.4101],[17.9503,-31.4067],[17.9487,-31.4062],[17.9463,-31.4029],[17.9448,-31.3978],[17.9406,-31.3927],[17.938,-31.3907],[17.9387,-31.3886],[17.9346,-31.3852],[17.9348,-31.3835],[17.9316,-31.382],[17.9313,-31.3796],[17.9284,-31.3757],[17.924,-31.3711],[17.9193,-31.3676],[17.9164,-31.3673],[17.9131,-31.3646],[17.9121,-31.3614],[17.9087,-31.36],[17.9077,-31.357],[17.9049,-31.3551],[17.9034,-31.3532],[17.9004,-31.3521],[17.9006,-31.3485],[17.8996,-31.3438],[17.8967,-31.3418],[17.8931,-31.3373],[17.8908,-31.3337],[17.8894,-31.3305],[17.8864,-31.3288],[17.8865,-31.3272],[17.8851,-31.325],[17.8819,-31.3228],[17.8808,-31.3208],[17.8785,-31.3194],[17.8782,-31.3143],[17.8801,-31.3103],[17.8771,-31.3097],[17.8771,-31.3074],[17.88,-31.3044],[17.8793,-31.3028],[17.8824,-31.302],[17.8811,-31.2963],[17.8818,-31.2929],[17.8797,-31.292],[17.8818,-31.2886],[17.8801,-31.2835],[17.8771,-31.2817],[17.8773,-31.2788],[17.8747,-31.2747],[17.8715,-31.2713],[17.8692,-31.2706],[17.8689,-31.2672],[17.8663,-31.2639],[17.8658,-31.2618],[17.8634,-31.2576],[17.8572,-31.2509],[17.8506,-31.2468],[17.8477,-31.2444],[17.8439,-31.2404],[17.8428,-31.2399],[17.8413,-31.237],[17.8389,-31.2359],[17.8388,-31.2345],[17.8352,-31.2324],[17.8331,-31.2302],[17.8261,-31.2261],[17.8251,-31.2246],[17.8224,-31.2231],[17.8201,-31.2237],[17.8178,-31.2228],[17.8169,-31.2181],[17.8126,-31.2157],[17.8117,-31.2134],[17.8085,-31.2123],[17.806,-31.2099],[17.8026,-31.2055],[17.801,-31.2027],[17.7973,-31.2021],[17.7937,-31.1974],[17.7939,-31.1946],[17.7863,-31.1849],[17.7848,-31.1837],[17.7837,-31.1806],[17.779,-31.1773],[17.7773,-31.1751],[17.7733,-31.1725],[17.7716,-31.1683],[17.7691,-31.1669],[17.7685,-31.1646],[17.7655,-31.1625],[17.7652,-31.1611],[17.7627,-31.16],[17.7614,-31.1564],[17.758,-31.153],[17.7576,-31.152],[17.7564,-31.1515],[17.7531,-31.1463],[17.75,-31.1448],[17.7488,-31.1412],[17.7469,-31.1386],[17.7474,-31.1363],[17.7436,-31.1361],[17.7429,-31.1339],[17.7462,-31.1293],[17.7456,-31.1278],[17.7388,-31.1253],[17.7362,-31.1233],[17.7359,-31.1212],[17.7379,-31.1141],[17.7366,-31.1098],[17.7321,-31.1053],[17.7264,-31.0965],[17.723,-31.0948],[17.7234,-31.0907],[17.721,-31.0873],[17.7213,-31.085],[17.7165,-31.0796],[17.7143,-31.078],[17.7123,-31.073],[17.7104,-31.0697],[17.7071,-31.069],[17.7068,-31.0673],[17.704,-31.0664],[17.7035,-31.0645],[17.7053,-31.0604],[17.7064,-31.0592],[17.7062,-31.0568],[17.7026,-31.0538],[17.7009,-31.05],[17.7015,-31.0488],[17.6997,-31.0464],[17.6982,-31.0418],[17.6957,-31.0398],[17.6935,-31.0371],[17.6925,-31.0293],[17.6875,-31.0263],[17.6869,-31.0216],[17.6892,-31.0187],[17.6881,-31.0178],[17.6883,-31.0155],[17.6837,-31.0115],[17.6814,-31.0051],[17.6819,-31.0026],[17.68,-31.0023],[17.6794,-30.9991],[17.6755,-30.9943],[17.6722,-30.9923],[17.6716,-30.9901],[17.6661,-30.9836],[17.6623,-30.9829],[17.6631,-30.9794],[17.662,-30.9768],[17.6599,-30.975],[17.6597,-30.9726],[17.6584,-30.9703],[17.6555,-30.9676],[17.6557,-30.9657],[17.6523,-30.9621],[17.6493,-30.9615],[17.6466,-30.9595],[17.6466,-30.957],[17.6447,-30.9547],[17.6411,-30.9522],[17.64,-30.9504],[17.6372,-30.9496],[17.6356,-30.9462],[17.6322,-30.9441],[17.6298,-30.9393],[17.6293,-30.9362],[17.6259,-30.9344],[17.6247,-30.9319],[17.6208,-30.9292],[17.6203,-30.9269],[17.6175,-30.9249],[17.6137,-30.921],[17.6116,-30.92],[17.6106,-30.9182],[17.608,-30.9169],[17.6037,-30.9162],[17.6041,-30.9143],[17.6031,-30.9124],[17.6024,-30.907],[17.6,-30.9061],[17.6004,-30.9038],[17.5991,-30.9015],[17.5953,-30.9],[17.5951,-30.8956],[17.5961,-30.893],[17.5955,-30.8907],[17.5914,-30.8893],[17.5902,-30.8846],[17.5876,-30.8828],[17.5881,-30.8806],[17.5844,-30.8776],[17.5843,-30.8727],[17.5824,-30.8721],[17.5813,-30.8701],[17.5805,-30.8662],[17.5784,-30.8654],[17.5785,-30.8626],[17.5747,-30.8575],[17.5757,-30.8551],[17.5748,-30.8542],[17.5757,-30.8506],[17.5772,-30.848],[17.5758,-30.8454],[17.5734,-30.8453],[17.5715,-30.8436],[17.5695,-30.8403],[17.5696,-30.836],[17.5663,-30.8333],[17.5644,-30.8276],[17.5635,-30.8263],[17.559,-30.8229],[17.5549,-30.8175],[17.5544,-30.8139],[17.5548,-30.8113],[17.5523,-30.8058],[17.5494,-30.8021],[17.546,-30.7947],[17.5402,-30.7884],[17.5374,-30.783],[17.5354,-30.7777],[17.5334,-30.775],[17.5344,-30.7718],[17.5345,-30.7688],[17.533,-30.7647],[17.5327,-30.7612],[17.5315,-30.7614],[17.5307,-30.7582],[17.5294,-30.7497],[17.528,-30.7476],[17.5268,-30.7426],[17.5248,-30.7402],[17.5236,-30.7356],[17.5211,-30.7332],[17.521,-30.7317],[17.5184,-30.73],[17.5184,-30.7283],[17.5115,-30.7205],[17.5062,-30.7153],[17.5024,-30.7127],[17.4996,-30.7086],[17.4967,-30.7059],[17.4956,-30.704],[17.493,-30.7029],[17.4912,-30.7006],[17.488,-30.6994],[17.4861,-30.6966],[17.4839,-30.6953],[17.4798,-30.6906],[17.4783,-30.6867],[17.4769,-30.6853],[17.474,-30.6841],[17.4726,-30.6848],[17.4702,-30.6828],[17.4704,-30.6783],[17.4715,-30.6778],[17.4708,-30.672],[17.4696,-30.6693],[17.4666,-30.6661],[17.4634,-30.6634],[17.4624,-30.658],[17.4615,-30.6556],[17.4633,-30.6535],[17.461,-30.6496],[17.4561,-30.6448],[17.4536,-30.6438],[17.4517,-30.6415],[17.4495,-30.6409],[17.4485,-30.6338],[17.4458,-30.6319],[17.4443,-30.6297],[17.4451,-30.6282],[17.4426,-30.6264],[17.44,-30.6261],[17.4369,-30.624],[17.434,-30.6208],[17.4331,-30.6185],[17.4355,-30.6166],[17.4348,-30.615],[17.4355,-30.6128],[17.4395,-30.6098],[17.4392,-30.6076],[17.4411,-30.6023],[17.4435,-30.601],[17.4421,-30.5993],[17.4423,-30.5963],[17.4352,-30.5871],[17.4294,-30.5818],[17.4216,-30.5716],[17.4174,-30.5685],[17.4146,-30.5657],[17.4134,-30.5655],[17.4108,-30.5619],[17.4125,-30.5595],[17.4135,-30.556],[17.4125,-30.5534],[17.4094,-30.5514],[17.4082,-30.5483],[17.4055,-30.5461],[17.4035,-30.5403],[17.4058,-30.5384],[17.405,-30.536],[17.4005,-30.5339],[17.4001,-30.5288],[17.3973,-30.5268],[17.3946,-30.5262],[17.3932,-30.5235],[17.393,-30.5214],[17.3897,-30.5194],[17.3867,-30.5146],[17.3824,-30.5115],[17.3823,-30.5099],[17.3785,-30.5065],[17.3765,-30.502],[17.3707,-30.4993],[17.3687,-30.4944],[17.3686,-30.4924],[17.3651,-30.4901],[17.3646,-30.488],[17.3665,-30.4865],[17.3634,-30.4837],[17.3607,-30.4839],[17.3606,-30.4816],[17.3589,-30.4811],[17.3587,-30.4778],[17.3558,-30.4759],[17.3589,-30.4742],[17.3584,-30.4702],[17.3561,-30.4659],[17.354,-30.4663],[17.3498,-30.4623],[17.35,-30.4587],[17.3535,-30.4566],[17.3535,-30.4543],[17.3513,-30.4538],[17.3502,-30.452],[17.3461,-30.4531],[17.3428,-30.4486],[17.3427,-30.4455],[17.3414,-30.4431],[17.3416,-30.4397],[17.3426,-30.4384],[17.3407,-30.4363],[17.3388,-30.4358],[17.3369,-30.4339],[17.3344,-30.4289],[17.3307,-30.4256],[17.3306,-30.4224],[17.3283,-30.4196],[17.3256,-30.4135],[17.3239,-30.4118],[17.3216,-30.4067],[17.3225,-30.4052],[17.3194,-30.404],[17.3166,-30.4001],[17.3124,-30.3954],[17.3112,-30.3931],[17.308,-30.3912],[17.3086,-30.387],[17.3077,-30.3863],[17.3067,-30.3824],[17.3082,-30.3807],[17.3077,-30.3776],[17.3053,-30.3749],[17.3025,-30.3739],[17.3002,-30.3716],[17.2956,-30.3697],[17.2945,-30.3666],[17.2901,-30.3628],[17.2888,-30.3596],[17.2869,-30.3596],[17.2859,-30.3576],[17.2878,-30.3568],[17.2866,-30.353],[17.2841,-30.35],[17.2827,-30.3473],[17.2799,-30.3471],[17.2783,-30.3459],[17.278,-30.3412],[17.2755,-30.3379],[17.2738,-30.3346],[17.2721,-30.3345],[17.2727,-30.3281],[17.2748,-30.326],[17.2718,-30.3245],[17.2705,-30.323],[17.2717,-30.3212],[17.2709,-30.3199],[17.2713,-30.3173],[17.2747,-30.3167],[17.2749,-30.3147],[17.2736,-30.3134],[17.2699,-30.3123],[17.2682,-30.308],[17.2703,-30.3074],[17.2721,-30.3051],[17.2712,-30.2975],[17.2682,-30.2975],[17.2684,-30.2958],[17.2701,-30.293],[17.2686,-30.287],[17.2662,-30.2864],[17.265,-30.2788],[17.2636,-30.2774],[17.2639,-30.2751],[17.2618,-30.2738],[17.2598,-30.2739],[17.2587,-30.2702],[17.2575,-30.2684],[17.2567,-30.2639],[17.2594,-30.2628],[17.2598,-30.26],[17.2583,-30.2565],[17.2528,-30.2487],[17.2503,-30.2478],[17.2477,-30.2421],[17.2454,-30.2416],[17.2437,-30.2377],[17.244,-30.2352],[17.2403,-30.2319],[17.2394,-30.2285],[17.2382,-30.2264],[17.2352,-30.2246],[17.2364,-30.222],[17.2367,-30.2192],[17.2347,-30.2168],[17.2323,-30.2164],[17.2329,-30.214],[17.2315,-30.2131],[17.2312,-30.2091],[17.2331,-30.2052],[17.2322,-30.2034],[17.2321,-30.1998],[17.2292,-30.192],[17.2265,-30.1899],[17.224,-30.1892],[17.223,-30.1869],[17.2238,-30.1853],[17.223,-30.1805],[17.2219,-30.1778],[17.2226,-30.1724],[17.2223,-30.1697],[17.2234,-30.1675],[17.2234,-30.1651],[17.2204,-30.1602],[17.2165,-30.1559],[17.2118,-30.1547],[17.2104,-30.1535],[17.2102,-30.1516],[17.2074,-30.149],[17.205,-30.1478],[17.2038,-30.1457],[17.2033,-30.1426],[17.2012,-30.1422],[17.2009,-30.1392],[17.1992,-30.1368],[17.1982,-30.134],[17.1941,-30.1359],[17.1949,-30.1328],[17.1948,-30.1304],[17.1961,-30.1292],[17.1957,-30.1259],[17.1937,-30.1257],[17.1919,-30.1229],[17.193,-30.1214],[17.1924,-30.1183],[17.1902,-30.1153],[17.1893,-30.1116],[17.1919,-30.109],[17.1922,-30.1059],[17.1899,-30.1036],[17.1907,-30.1016],[17.1886,-30.101],[17.1863,-30.1023],[17.1843,-30.1009],[17.1853,-30.0988],[17.1844,-30.097],[17.185,-30.0953],[17.1823,-30.0924],[17.1828,-30.0895],[17.1856,-30.0872],[17.1841,-30.0862],[17.1849,-30.0838],[17.1838,-30.0812],[17.1812,-30.0785],[17.1798,-30.0692],[17.18,-30.0652],[17.1816,-30.0628],[17.181,-30.0617],[17.1794,-30.0607],[17.1791,-30.058],[17.1778,-30.0551],[17.177,-30.0515],[17.1776,-30.0466],[17.1738,-30.0454],[17.1719,-30.0386],[17.1698,-30.0356],[17.1662,-30.0336],[17.1654,-30.0323],[17.1656,-30.029],[17.1671,-30.0262],[17.164,-30.0225],[17.1636,-30.0173],[17.1624,-30.0148],[17.1592,-30.0116],[17.1592,-30.0092],[17.1607,-30.009],[17.161,-30.0058],[17.1624,-30.0052],[17.1624,-30.0027],[17.1611,-29.9999],[17.1573,-29.9943],[17.158,-29.9912],[17.1601,-29.9898],[17.1596,-29.985],[17.1586,-29.9824],[17.1564,-29.9804],[17.1566,-29.9787],[17.1551,-29.9758],[17.1525,-29.9737],[17.1514,-29.9712],[17.1487,-29.9702],[17.1469,-29.9661],[17.1469,-29.9636],[17.1448,-29.9629],[17.1424,-29.9589],[17.1423,-29.9562],[17.1367,-29.9496],[17.1347,-29.9462],[17.1312,-29.9442],[17.1295,-29.9443],[17.1275,-29.942],[17.1286,-29.9398],[17.1272,-29.9376],[17.1238,-29.9344],[17.1201,-29.9345],[17.1179,-29.9321],[17.1194,-29.9304],[17.1196,-29.9271],[17.1185,-29.9236],[17.1164,-29.9217],[17.116,-29.9198],[17.1173,-29.9159],[17.1159,-29.9147],[17.1125,-29.9145],[17.1115,-29.9079],[17.1121,-29.9068],[17.1117,-29.9034],[17.1107,-29.9014],[17.1118,-29.8982],[17.1102,-29.8957],[17.1077,-29.8946],[17.1063,-29.8918],[17.107,-29.8881],[17.1045,-29.8858],[17.1021,-29.8858],[17.1014,-29.8843],[17.103,-29.8804],[17.1043,-29.8792],[17.103,-29.8751],[17.1033,-29.8727],[17.1052,-29.8708],[17.1055,-29.8685],[17.1044,-29.8675],[17.1015,-29.8675],[17.0996,-29.86],[17.0952,-29.8559],[17.093,-29.8551],[17.0909,-29.8531],[17.0895,-29.8492],[17.0891,-29.8465],[17.0898,-29.8449],[17.0888,-29.8427],[17.0889,-29.8401],[17.0872,-29.839],[17.0871,-29.8373],[17.0835,-29.8329],[17.082,-29.8279],[17.0798,-29.8255],[17.0795,-29.8207],[17.0771,-29.8195],[17.0767,-29.8154],[17.0748,-29.8145],[17.0744,-29.8128],[17.0765,-29.8119],[17.0796,-29.8124],[17.0812,-29.8107],[17.0802,-29.8076],[17.0806,-29.8051],[17.0776,-29.8027],[17.0777,-29.801],[17.0751,-29.8],[17.0744,-29.7986],[17.0752,-29.7954],[17.077,-29.7917],[17.0749,-29.789],[17.0748,-29.7874],[17.0731,-29.7862],[17.0738,-29.7832],[17.0716,-29.7815],[17.0701,-29.7775],[17.069,-29.7774],[17.069,-29.7713],[17.0668,-29.7687],[17.0646,-29.7678],[17.063,-29.7653],[17.0594,-29.7553],[17.0593,-29.7527],[17.0608,-29.749],[17.0596,-29.7455],[17.0576,-29.7444],[17.058,-29.7382],[17.0572,-29.7372],[17.059,-29.7314],[17.0604,-29.7285],[17.0602,-29.724],[17.0583,-29.7209],[17.0594,-29.7172],[17.0594,-29.7133],[17.0584,-29.7112],[17.0533,-29.7093],[17.0533,-29.7063],[17.0552,-29.6997],[17.0571,-29.698],[17.0561,-29.6964],[17.0562,-29.6921],[17.0553,-29.6884],[17.0533,-29.685],[17.0533,-29.6818],[17.0516,-29.678],[17.0451,-29.6724],[17.0428,-29.6663],[17.0412,-29.659],[17.0397,-29.6566],[17.0376,-29.6505],[17.0365,-29.65],[17.0368,-29.6468],[17.0365,-29.6433],[17.0343,-29.6378],[17.0338,-29.6339],[17.0349,-29.6308],[17.0325,-29.627],[17.0349,-29.625],[17.0344,-29.6222],[17.0346,-29.6184],[17.034,-29.6165],[17.0285,-29.6082],[17.0256,-29.6054],[17.0217,-29.6032],[17.0193,-29.5988],[17.0184,-29.5982],[17.0154,-29.5917],[17.0117,-29.587],[17.0063,-29.5828],[17.0046,-29.5799],[17.0007,-29.576],[16.999,-29.5725],[16.9984,-29.5691],[17.0031,-29.567],[17.0036,-29.565],[17.007,-29.5634],[17.0064,-29.5582],[17.0056,-29.5568],[17.0063,-29.5544],[17.0056,-29.5526],[17.0036,-29.5509],[17.0038,-29.5477],[17.0012,-29.5448],[17.0008,-29.542],[16.9985,-29.541],[16.998,-29.5396],[16.9986,-29.5366],[16.9975,-29.5353],[16.997,-29.5296],[16.9974,-29.5268],[16.9994,-29.5238],[16.9956,-29.5188],[16.9937,-29.5187],[16.9926,-29.5166],[16.9946,-29.515],[16.9947,-29.5124],[16.9924,-29.5084],[16.9885,-29.5072],[16.9862,-29.5054],[16.9843,-29.503],[16.9857,-29.5021],[16.9847,-29.4995],[16.9846,-29.4924],[16.9857,-29.4897],[16.9834,-29.4865],[16.9812,-29.4851],[16.9812,-29.482],[16.9795,-29.4798],[16.9779,-29.4765],[16.9791,-29.4715],[16.9783,-29.4642],[16.9749,-29.4633],[16.9734,-29.4559],[16.9719,-29.4559],[16.9711,-29.452],[16.9698,-29.45],[16.9693,-29.4441],[16.9713,-29.4382],[16.9683,-29.4354],[16.9694,-29.4346],[16.9671,-29.4323],[16.9671,-29.4296],[16.9625,-29.426],[16.9578,-29.4194],[16.9553,-29.419],[16.9548,-29.4155],[16.9524,-29.4133],[16.9512,-29.41],[16.9462,-29.408],[16.9466,-29.4038],[16.9436,-29.3997],[16.944,-29.3973],[16.9429,-29.394],[16.9439,-29.3934],[16.943,-29.3873],[16.941,-29.3856],[16.9414,-29.3833],[16.9408,-29.3746],[16.9419,-29.3719],[16.9396,-29.3701],[16.938,-29.3673],[16.9382,-29.3653],[16.9363,-29.3642],[16.9351,-29.3596],[16.9325,-29.3578],[16.9297,-29.3572],[16.9266,-29.3545],[16.9275,-29.3508],[16.9261,-29.3492],[16.9209,-29.3453],[16.916,-29.3425],[16.915,-29.3408],[16.9116,-29.3383],[16.9087,-29.3336],[16.9096,-29.3292],[16.9059,-29.325],[16.902,-29.3241],[16.8987,-29.3201],[16.8971,-29.3168],[16.897,-29.3131],[16.8921,-29.3071],[16.89,-29.307],[16.8876,-29.3053],[16.8866,-29.3028],[16.8846,-29.3002],[16.8828,-29.2996],[16.8814,-29.2975],[16.8798,-29.2969],[16.8774,-29.2925],[16.8792,-29.287],[16.8796,-29.2822],[16.8804,-29.2805],[16.8799,-29.2775],[16.8772,-29.2728],[16.8743,-29.2723],[16.8724,-29.2667],[16.8694,-29.2669],[16.87,-29.2645],[16.8697,-29.2601],[16.868,-29.2572],[16.8684,-29.2547],[16.8679,-29.2527],[16.8677,-29.2476],[16.8667,-29.2459],[16.8641,-29.2443],[16.8609,-29.2432],[16.8591,-29.2411],[16.8573,-29.2405],[16.854,-29.2411],[16.855,-29.2362],[16.8534,-29.2335],[16.8503,-29.232],[16.8486,-29.2284],[16.8469,-29.2273],[16.8486,-29.2232],[16.8475,-29.2215],[16.8459,-29.222],[16.8406,-29.2159],[16.838,-29.211],[16.8383,-29.2088],[16.8397,-29.2065],[16.8426,-29.205],[16.8446,-29.1996],[16.8438,-29.1978],[16.8436,-29.1944],[16.8421,-29.1909],[16.8432,-29.186],[16.8402,-29.1793],[16.8368,-29.1785],[16.8367,-29.1728],[16.8327,-29.1693],[16.8327,-29.1658],[16.832,-29.1634],[16.8329,-29.1624],[16.8364,-29.1625],[16.8365,-29.1606],[16.832,-29.1552],[16.8322,-29.1532],[16.8284,-29.1441],[16.8261,-29.1398],[16.8256,-29.1366],[16.8234,-29.134],[16.8235,-29.125],[16.8219,-29.1226],[16.8219,-29.1211],[16.8197,-29.1182],[16.8151,-29.1153],[16.8164,-29.1128],[16.8137,-29.1104],[16.8138,-29.1092],[16.8165,-29.1056],[16.8155,-29.1046],[16.8157,-29.1013],[16.8186,-29.0985],[16.8186,-29.0961],[16.8174,-29.0933],[16.8151,-29.0903],[16.8122,-29.0886],[16.8115,-29.0866],[16.8088,-29.0851],[16.8067,-29.0826],[16.8048,-29.0826],[16.8039,-29.0795],[16.7996,-29.077],[16.7987,-29.0745],[16.7953,-29.0738],[16.7938,-29.0714],[16.7883,-29.0666],[16.787,-29.0645],[16.7845,-29.063],[16.7841,-29.0618],[16.7768,-29.0564],[16.7665,-29.0506],[16.7637,-29.0496],[16.7614,-29.0478],[16.7579,-29.048],[16.755,-29.0454],[16.7479,-29.0425],[16.7455,-29.0382],[16.7429,-29.0356],[16.7423,-29.0314],[16.7388,-29.0286],[16.7352,-29.023],[16.7333,-29.0211],[16.731,-29.02],[16.7298,-29.0178],[16.7263,-29.0134],[16.725,-29.0102],[16.725,-29.0071],[16.7186,-29.0035],[16.718,-28.9994],[16.7193,-28.9938],[16.7212,-28.9921],[16.722,-28.9883],[16.7223,-28.9839],[16.7209,-28.9828],[16.721,-28.9782],[16.7187,-28.9779],[16.7174,-28.9765],[16.7141,-28.9768],[16.7116,-28.9731],[16.7092,-28.966],[16.703,-28.9654],[16.7022,-28.9634],[16.703,-28.962],[16.7021,-28.9573],[16.701,-28.9555],[16.6988,-28.9548],[16.6968,-28.9529],[16.6967,-28.9511],[16.6978,-28.9475],[16.6961,-28.9404],[16.6943,-28.9378],[16.6936,-28.9355],[16.6914,-28.9345],[16.6897,-28.9296],[16.6898,-28.927],[16.6871,-28.9241],[16.6831,-28.9221],[16.6804,-28.9198],[16.6789,-28.9167],[16.6753,-28.9137],[16.6733,-28.9129],[16.6699,-28.9101],[16.6687,-28.9103],[16.6654,-28.9079],[16.6614,-28.9036],[16.658,-28.9011],[16.6533,-28.899],[16.6486,-28.8957],[16.6369,-28.8907],[16.63,-28.8895],[16.6252,-28.8855],[16.6232,-28.8829],[16.6178,-28.8785],[16.6131,-28.8763],[16.6096,-28.8763],[16.6073,-28.8771],[16.6048,-28.8767],[16.6026,-28.8748],[16.6031,-28.8718],[16.6025,-28.8668],[16.6002,-28.8628],[16.6008,-28.8559],[16.5996,-28.8544],[16.5994,-28.8507],[16.598,-28.8494],[16.5963,-28.8417],[16.5974,-28.8402],[16.5959,-28.8372],[16.5933,-28.8363],[16.5926,-28.8349],[16.5884,-28.8332],[16.5884,-28.8312],[16.5848,-28.8299],[16.585,-28.8267],[16.5821,-28.8233],[16.5825,-28.8194],[16.5823,-28.8161],[16.5846,-28.8113],[16.5845,-28.8092],[16.5831,-28.8077],[16.5834,-28.8034],[16.5831,-28.8003],[16.581,-28.7983],[16.5812,-28.7963],[16.5782,-28.7939],[16.5744,-28.7943],[16.5752,-28.7897],[16.5726,-28.786],[16.5727,-28.7834],[16.5742,-28.78],[16.5725,-28.776],[16.5732,-28.7721],[16.5708,-28.769],[16.5674,-28.7691],[16.5675,-28.7656],[16.5648,-28.7647],[16.5631,-28.7654],[16.5616,-28.762],[16.5619,-28.759],[16.5645,-28.7547],[16.5667,-28.7537],[16.5692,-28.751],[16.5702,-28.7474],[16.5706,-28.7422],[16.5724,-28.7396],[16.5721,-28.7371],[16.5707,-28.7363],[16.5693,-28.7304],[16.5704,-28.7277],[16.5661,-28.7253],[16.5633,-28.7222],[16.5623,-28.7191],[16.5601,-28.7179],[16.559,-28.7163],[16.5553,-28.7169],[16.5538,-28.7149],[16.5546,-28.7128],[16.5516,-28.71],[16.5487,-28.7093],[16.5458,-28.7073],[16.5416,-28.7091],[16.5352,-28.7061],[16.5344,-28.7033],[16.5319,-28.7014],[16.531,-28.6955],[16.53,-28.6957],[16.5274,-28.6931],[16.5241,-28.6916],[16.5234,-28.6892],[16.5202,-28.6868],[16.5184,-28.6869],[16.5159,-28.6843],[16.5151,-28.6813],[16.5153,-28.6794],[16.5133,-28.6775],[16.5103,-28.6763],[16.5096,-28.6733],[16.5103,-28.6702],[16.5061,-28.6713],[16.5052,-28.6692],[16.5055,-28.6667],[16.5041,-28.6654],[16.4976,-28.6632],[16.4942,-28.6597],[16.494,-28.6584],[16.4917,-28.6579],[16.4904,-28.6559],[16.4885,-28.6562],[16.4869,-28.6537],[16.481,-28.6491],[16.4778,-28.647],[16.4675,-28.6418],[16.4645,-28.6396],[16.4621,-28.6387],[16.4564,-28.6344],[16.4519,-28.6321],[16.452,-28.626],[16.4534,-28.6215],[16.4533,-28.6188],[16.4523,-28.615],[16.4522,-28.6123],[16.4543,-28.6032],[16.4559,-28.5942],[16.4556,-28.5928],[16.4567,-28.5905],[16.4618,-28.5856],[16.4644,-28.5841],[16.4664,-28.5814],[16.4661,-28.5787],[16.4682,-28.5729],[16.4718,-28.5716],[16.4761,-28.5684],[16.4788,-28.5676],[16.4802,-28.5655],[16.4884,-28.5629],[16.497,-28.5618],[16.5004,-28.5619],[16.5022,-28.5589],[16.5143,-28.5583],[16.5181,-28.5562],[16.5223,-28.5559],[16.5252,-28.5546],[16.5302,-28.5545],[16.5352,-28.5529],[16.5392,-28.5511],[16.5415,-28.5493],[16.5498,-28.5461],[16.5544,-28.5456],[16.56,-28.5438],[16.5656,-28.5411],[16.5694,-28.5399],[16.5742,-28.5393],[16.5756,-28.5383],[16.5865,-28.5366],[16.5925,-28.5354],[16.5958,-28.5339],[16.5977,-28.5323],[16.6024,-28.5304],[16.6032,-28.529],[16.606,-28.5268],[16.6127,-28.5203],[16.6145,-28.5174],[16.6145,-28.5145],[16.6167,-28.5086],[16.6178,-28.5067],[16.6174,-28.5049],[16.6211,-28.5001],[16.6294,-28.4947],[16.6341,-28.4927],[16.6402,-28.4889],[16.6437,-28.4878],[16.6447,-28.4865],[16.6488,-28.4843],[16.6587,-28.4806],[16.6618,-28.4789],[16.6659,-28.4755],[16.6695,-28.4744],[16.6727,-28.4723],[16.6785,-28.4712],[16.681,-28.4701],[16.6885,-28.4705],[16.6911,-28.4719],[16.6954,-28.4753],[16.6975,-28.4798],[16.6974,-28.4852],[16.6977,-28.4918],[16.7009,-28.4968],[16.7063,-28.4989],[16.7156,-28.5002],[16.7193,-28.5009],[16.7241,-28.4997],[16.7312,-28.4961],[16.734,-28.4943],[16.7345,-28.4925],[16.7402,-28.4842],[16.7439,-28.4758],[16.7455,-28.4729],[16.7478,-28.4669],[16.7554,-28.4591],[16.7612,-28.4557],[16.7656,-28.4548],[16.7689,-28.453],[16.7752,-28.4448],[16.7768,-28.4401],[16.7754,-28.4335],[16.7692,-28.4184],[16.7671,-28.4086],[16.7671,-28.4049],[16.7688,-28.3973],[16.7694,-28.3961],[16.7732,-28.3927],[16.7746,-28.3922],[16.7799,-28.3887],[16.7886,-28.3816],[16.7922,-28.378],[16.7958,-28.3735],[16.7974,-28.3708],[16.8029,-28.365],[16.808,-28.3629],[16.8082,-28.3608],[16.8009,-28.3542],[16.7926,-28.3496],[16.79,-28.3473],[16.7878,-28.3445],[16.7849,-28.3367],[16.7837,-28.3312],[16.7819,-28.3251],[16.7792,-28.3211],[16.7742,-28.3182],[16.7662,-28.3142],[16.7594,-28.308],[16.755,-28.302],[16.7531,-28.2973],[16.7521,-28.2937],[16.752,-28.2874],[16.7526,-28.282],[16.7534,-28.2806],[16.7546,-28.2726],[16.7571,-28.2684],[16.7581,-28.2644],[16.7626,-28.2615],[16.7692,-28.26],[16.7774,-28.2591],[16.7818,-28.2605],[16.7864,-28.2652],[16.7931,-28.271],[16.8,-28.2749],[16.8072,-28.2763],[16.8133,-28.2766],[16.8193,-28.2746],[16.8215,-28.2729],[16.8258,-28.2671],[16.8268,-28.2631],[16.8274,-28.2524],[16.826,-28.2451],[16.8247,-28.2433],[16.8195,-28.2398],[16.8122,-28.2362],[16.8101,-28.2357],[16.8067,-28.2335],[16.8033,-28.2272],[16.8031,-28.222],[16.8072,-28.2165],[16.8071,-28.2156],[16.8115,-28.2137],[16.8159,-28.2149],[16.8168,-28.2161],[16.8199,-28.2171],[16.8326,-28.2176],[16.8365,-28.2166],[16.8456,-28.2165],[16.8503,-28.2153],[16.8555,-28.2125],[16.857,-28.2092],[16.857,-28.2069],[16.8549,-28.2025],[16.8508,-28.1978],[16.8439,-28.1932],[16.8369,-28.1906],[16.8315,-28.1852],[16.8301,-28.1832],[16.8268,-28.1755],[16.8273,-28.1719],[16.8285,-28.1691],[16.8305,-28.1672],[16.8346,-28.1653],[16.8395,-28.1643],[16.8429,-28.1645],[16.8559,-28.1694],[16.8636,-28.1733],[16.8666,-28.1761],[16.8695,-28.1814],[16.8707,-28.182],[16.8777,-28.1805],[16.8847,-28.1768],[16.8879,-28.1729],[16.8881,-28.1717],[16.8859,-28.1675],[16.8851,-28.1629],[16.8854,-28.1587],[16.8844,-28.1538],[16.8842,-28.1497],[16.8879,-28.1457],[16.8895,-28.1387],[16.8904,-28.1313],[16.8897,-28.1255],[16.8896,-28.1193],[16.888,-28.1143],[16.8846,-28.112],[16.8829,-28.1071],[16.8815,-28.1004],[16.882,-28.0957],[16.8843,-28.0915],[16.8846,-28.0899],[16.8882,-28.0854],[16.8908,-28.084],[16.8927,-28.0819],[16.8965,-28.0797],[16.8983,-28.0749],[16.9008,-28.0727],[16.9071,-28.0704],[16.9152,-28.0708],[16.9172,-28.0699],[16.9232,-28.0693],[16.9284,-28.0696],[16.9324,-28.0708],[16.9364,-28.0727],[16.9418,-28.0747],[16.9479,-28.0764],[16.9539,-28.076],[16.9598,-28.0732],[16.9646,-28.0685],[16.9713,-28.0602],[16.9734,-28.0588],[16.9809,-28.0601],[16.9846,-28.0621],[16.9886,-28.0658],[16.9905,-28.0702],[16.9951,-28.0732],[17.0009,-28.0755],[17.0048,-28.0746],[17.0082,-28.0724],[17.0108,-28.0685],[17.0122,-28.0677],[17.0154,-28.0622],[17.017,-28.0576],[17.0194,-28.0537],[17.0212,-28.0523],[17.026,-28.0505],[17.0292,-28.0507],[17.0384,-28.0505],[17.0463,-28.0493],[17.0508,-28.0492],[17.0568,-28.047],[17.0601,-28.0445],[17.0632,-28.0432],[17.0661,-28.043],[17.0703,-28.039],[17.0727,-28.0346],[17.0788,-28.0328],[17.0825,-28.0331],[17.0891,-28.0384],[17.0912,-28.0383],[17.0951,-28.0407],[17.1027,-28.0465],[17.1069,-28.0505],[17.1168,-28.0585],[17.1193,-28.0624],[17.1228,-28.066],[17.1257,-28.0674],[17.1276,-28.0728],[17.129,-28.0791],[17.1308,-28.083],[17.1314,-28.0855],[17.1355,-28.0907],[17.1394,-28.0937],[17.1445,-28.0957],[17.1538,-28.0968],[17.1566,-28.0977],[17.1597,-28.0978],[17.1632,-28.0996],[17.1663,-28.1003],[17.1729,-28.0995],[17.1747,-28.0986],[17.1782,-28.0986],[17.1833,-28.1005],[17.1895,-28.1048],[17.1919,-28.1082],[17.1945,-28.1144],[17.1945,-28.1248],[17.1963,-28.1278],[17.1962,-28.1314],[17.1948,-28.1381],[17.1944,-28.1458],[17.1932,-28.1515],[17.1911,-28.1573],[17.19,-28.1637],[17.1887,-28.1658],[17.1877,-28.1694],[17.1856,-28.1723],[17.1832,-28.1831],[17.1837,-28.1868],[17.1839,-28.1926],[17.183,-28.1947],[17.1821,-28.1999],[17.1825,-28.2035],[17.1842,-28.2088],[17.1882,-28.2168],[17.191,-28.2197],[17.1953,-28.2277],[17.1972,-28.2294],[17.2013,-28.2342],[17.2039,-28.2362],[17.2052,-28.2388],[17.2123,-28.2448],[17.215,-28.2481],[17.2232,-28.2504],[17.2287,-28.2509],[17.2326,-28.2503],[17.2408,-28.2473],[17.2472,-28.2413],[17.2504,-28.239],[17.256,-28.2378],[17.2614,-28.2391],[17.2641,-28.2406],[17.2677,-28.2418],[17.2703,-28.2437],[17.2735,-28.245],[17.2781,-28.2454],[17.2819,-28.2442],[17.2893,-28.2388],[17.2903,-28.237],[17.2984,-28.2312],[17.3038,-28.2257],[17.3088,-28.2238],[17.3122,-28.2239],[17.3175,-28.2248],[17.329,-28.2252],[17.334,-28.2261],[17.337,-28.2288],[17.3394,-28.2328],[17.3391,-28.2342],[17.3421,-28.2356],[17.3501,-28.245],[17.3521,-28.2487],[17.3551,-28.2514],[17.3562,-28.2535],[17.3575,-28.2615],[17.3589,-28.2668],[17.3623,-28.2745],[17.3708,-28.2785],[17.373,-28.2818],[17.3777,-28.2876],[17.3791,-28.2913],[17.3823,-28.2959],[17.3829,-28.298],[17.3827,-28.3017],[17.378,-28.3107],[17.3764,-28.3156],[17.3758,-28.3212],[17.377,-28.3238],[17.3792,-28.3265],[17.3817,-28.3307],[17.3848,-28.3325],[17.3877,-28.3361],[17.3943,-28.3417],[17.4052,-28.356],[17.4078,-28.3631],[17.4102,-28.3709],[17.414,-28.376],[17.4136,-28.3796],[17.411,-28.3894],[17.4105,-28.3972],[17.4088,-28.4033],[17.4066,-28.4083],[17.4012,-28.4169],[17.4004,-28.4191],[17.3981,-28.4223],[17.3965,-28.4274],[17.3921,-28.432],[17.3863,-28.4354],[17.3844,-28.4371],[17.3804,-28.4368],[17.3683,-28.4373],[17.3632,-28.4369],[17.3553,-28.4368],[17.3489,-28.4388],[17.3478,-28.4406],[17.3474,-28.444],[17.3444,-28.4481],[17.3419,-28.4497],[17.3391,-28.4525],[17.3393,-28.4559],[17.3373,-28.4596],[17.3355,-28.4644],[17.3331,-28.4749],[17.3341,-28.4804],[17.3363,-28.4833],[17.3394,-28.4909],[17.3402,-28.4955],[17.3453,-28.5],[17.3583,-28.5037],[17.3606,-28.5049],[17.3657,-28.509],[17.3668,-28.5113],[17.3673,-28.5149],[17.3696,-28.5171],[17.3715,-28.5209],[17.3725,-28.527],[17.3751,-28.5318],[17.3753,-28.5356],[17.3773,-28.5365],[17.3777,-28.5386],[17.3771,-28.5433],[17.377,-28.5487],[17.3763,-28.5522],[17.376,-28.5578],[17.3766,-28.5638],[17.3802,-28.5689],[17.3845,-28.5711],[17.3891,-28.5712],[17.3924,-28.5698],[17.3973,-28.5658],[17.4018,-28.5641],[17.4128,-28.5626],[17.4221,-28.5646],[17.4267,-28.5673],[17.4297,-28.5699],[17.4318,-28.5742],[17.4326,-28.578],[17.4322,-28.5832],[17.427,-28.5947],[17.4258,-28.5963],[17.4248,-28.601],[17.4262,-28.6041],[17.4298,-28.6087],[17.4311,-28.612],[17.4312,-28.6193],[17.4298,-28.6244],[17.4259,-28.6318],[17.4254,-28.6367],[17.426,-28.6404],[17.428,-28.6462],[17.4282,-28.6494],[17.4266,-28.6559],[17.4221,-28.6602],[17.4174,-28.6661],[17.4153,-28.6679],[17.414,-28.6712],[17.4137,-28.674],[17.4149,-28.6804],[17.4151,-28.6849],[17.417,-28.6925],[17.4173,-28.6961],[17.4151,-28.7037],[17.4134,-28.7062],[17.4105,-28.7135],[17.411,-28.7153],[17.4151,-28.7174],[17.4187,-28.722],[17.4215,-28.7232],[17.4269,-28.7226],[17.4302,-28.7216],[17.4419,-28.7125],[17.4462,-28.7111],[17.4539,-28.708],[17.4592,-28.7047],[17.4618,-28.7024],[17.4646,-28.7021],[17.4716,-28.7052],[17.4739,-28.7046],[17.4782,-28.7005],[17.4795,-28.6986],[17.4842,-28.6954],[17.4937,-28.6928],[17.4979,-28.6935],[17.4999,-28.6945],[17.5058,-28.6954],[17.5097,-28.6966],[17.5165,-28.6977],[17.5243,-28.6994],[17.5322,-28.7001],[17.5392,-28.7011],[17.5439,-28.7008],[17.5477,-28.6993],[17.5529,-28.6957],[17.5536,-28.6948],[17.5537,-28.6901],[17.5556,-28.6886],[17.5605,-28.6867],[17.5677,-28.6856],[17.572,-28.6863],[17.5772,-28.6883],[17.5822,-28.6891],[17.5851,-28.6885],[17.5898,-28.6888],[17.5952,-28.6918],[17.5989,-28.6946],[17.6008,-28.6979],[17.6023,-28.6995],[17.6051,-28.704],[17.606,-28.7078],[17.61,-28.713],[17.6103,-28.7166],[17.6095,-28.7204],[17.6124,-28.7239],[17.6126,-28.7285],[17.612,-28.7324],[17.6102,-28.7399],[17.6088,-28.7448],[17.6097,-28.75],[17.6132,-28.7551],[17.6158,-28.7601],[17.6187,-28.7642],[17.6223,-28.7648],[17.6222,-28.7628],[17.625,-28.7632],[17.629,-28.765],[17.6333,-28.7681],[17.6425,-28.7714],[17.6475,-28.7738],[17.6511,-28.7739],[17.6571,-28.7725],[17.6629,-28.7726],[17.6661,-28.7721],[17.6705,-28.7708],[17.6733,-28.769],[17.6791,-28.7665],[17.6824,-28.7642],[17.6853,-28.7613],[17.6877,-28.7575],[17.6886,-28.7549],[17.6926,-28.7503],[17.6985,-28.7462],[17.7018,-28.7458],[17.7043,-28.7447],[17.7068,-28.7446],[17.7107,-28.7456],[17.7145,-28.7482],[17.7202,-28.7568],[17.7231,-28.7602],[17.7275,-28.761],[17.7318,-28.7599],[17.7358,-28.7567],[17.7391,-28.7483],[17.7423,-28.7427],[17.7461,-28.7406],[17.7515,-28.7402],[17.7608,-28.746],[17.7636,-28.7493],[17.7664,-28.7513],[17.7728,-28.7552],[17.7814,-28.7579],[17.7919,-28.7557],[17.7986,-28.7554],[17.8072,-28.7544],[17.8125,-28.7546],[17.8172,-28.7553],[17.8213,-28.7554],[17.8279,-28.7608],[17.8413,-28.7611],[17.8449,-28.7615],[17.8535,-28.7632],[17.8619,-28.7623],[17.8666,-28.7633],[17.8684,-28.7627],[17.8717,-28.7637],[17.8803,-28.7639],[17.8868,-28.7656],[17.8908,-28.7661],[17.8984,-28.7681],[17.9024,-28.7699],[17.9067,-28.7723],[17.9081,-28.7719],[17.9125,-28.765],[17.9173,-28.764],[17.9213,-28.7653],[17.9257,-28.7688],[17.9278,-28.7721],[17.929,-28.7752],[17.932,-28.7807],[17.9323,-28.7846],[17.9353,-28.7875],[17.9381,-28.7888],[17.9422,-28.7893],[17.9454,-28.789],[17.9497,-28.7877],[17.9566,-28.7846],[17.9621,-28.7848],[17.9634,-28.7853],[17.9699,-28.7903],[17.9722,-28.7916],[17.9759,-28.7957],[17.9783,-28.8014],[17.9821,-28.8065],[17.985,-28.8075],[17.9877,-28.8062],[17.9906,-28.8074],[17.9944,-28.8103],[17.9996,-28.8175],[18.0032,-28.8188],[18.006,-28.8212],[18.0066,-28.8227],[18.0097,-28.8249],[18.0124,-28.828],[18.0116,-28.8317],[18.0117,-28.8345],[18.0147,-28.8391],[18.0193,-28.8431],[18.0214,-28.8441],[18.024,-28.8442],[18.0266,-28.8467],[18.0313,-28.8543],[18.0339,-28.8607],[18.0356,-28.8633],[18.0405,-28.8679],[18.0461,-28.8743],[18.0502,-28.8761],[18.054,-28.8769],[18.0595,-28.8768],[18.0658,-28.875],[18.0679,-28.8734],[18.071,-28.8728],[18.0792,-28.8699],[18.086,-28.8717],[18.0898,-28.8736],[18.0937,-28.8742],[18.1007,-28.8773],[18.1091,-28.8846],[18.1213,-28.8923],[18.1298,-28.8956],[18.1341,-28.8956],[18.1401,-28.8944],[18.1449,-28.8927],[18.1503,-28.8933],[18.1551,-28.8955],[18.1621,-28.8974],[18.1657,-28.899],[18.1698,-28.9021],[18.1738,-28.9031],[18.1777,-28.9065],[18.1791,-28.9094],[18.181,-28.9116],[18.185,-28.9148],[18.1884,-28.9162],[18.1914,-28.9161],[18.1938,-28.9153],[18.1963,-28.9133],[18.2007,-28.9107],[18.2083,-28.9048],[18.2131,-28.9002],[18.2145,-28.8976],[18.2169,-28.8955],[18.2207,-28.894],[18.2268,-28.894],[18.232,-28.8956],[18.2391,-28.8963],[18.2416,-28.897],[18.2478,-28.8975],[18.2513,-28.8967],[18.2541,-28.8952],[18.2569,-28.8908],[18.2588,-28.883],[18.2606,-28.8804],[18.2635,-28.8794],[18.2683,-28.8793],[18.2721,-28.8798],[18.2795,-28.8818],[18.286,-28.8824],[18.295,-28.8843],[18.3032,-28.8846],[18.3151,-28.883],[18.3199,-28.8832],[18.3256,-28.883],[18.3296,-28.8824],[18.3327,-28.8826],[18.3363,-28.8838],[18.339,-28.8825],[18.3457,-28.8811],[18.3508,-28.8808],[18.3559,-28.8841],[18.3602,-28.8896],[18.363,-28.8919],[18.367,-28.8934],[18.3775,-28.8948],[18.3829,-28.8952],[18.3946,-28.8972],[18.4055,-28.8965],[18.4164,-28.9002],[18.4184,-28.9007],[18.4235,-28.9008],[18.4288,-28.8994],[18.4311,-28.8984],[18.4373,-28.8969],[18.4416,-28.8964],[18.448,-28.8942],[18.454,-28.8918],[18.4595,-28.887],[18.4636,-28.885],[18.4711,-28.8833],[18.4768,-28.8832],[18.4836,-28.8837],[18.4858,-28.8854],[18.4907,-28.8872],[18.4937,-28.8872],[18.498,-28.8892],[18.5056,-28.8906],[18.5121,-28.8895],[18.5136,-28.8889],[18.5152,-28.8864],[18.5194,-28.8831],[18.5213,-28.881],[18.5252,-28.8779],[18.5282,-28.874],[18.5307,-28.8717],[18.5328,-28.8682],[18.5381,-28.866],[18.5482,-28.8634],[18.5563,-28.8609],[18.563,-28.8595],[18.5658,-28.8575],[18.5714,-28.8565],[18.5747,-28.8564],[18.5891,-28.8578],[18.596,-28.8567],[18.6006,-28.8556],[18.6079,-28.8534],[18.6153,-28.8492],[18.6189,-28.8477],[18.6208,-28.8451],[18.6254,-28.8418],[18.6276,-28.8412],[18.6358,-28.84],[18.6426,-28.84],[18.6505,-28.8415],[18.6535,-28.8427],[18.6597,-28.8442],[18.6638,-28.8431],[18.6666,-28.8431],[18.6701,-28.8416],[18.6804,-28.8422],[18.6851,-28.8418],[18.6881,-28.8422],[18.6908,-28.8415],[18.6993,-28.8405],[18.7056,-28.8389],[18.7085,-28.8387],[18.7126,-28.836],[18.7164,-28.8342],[18.7218,-28.8327],[18.7287,-28.8317],[18.7352,-28.832],[18.7387,-28.8327],[18.7472,-28.8335],[18.7519,-28.8346],[18.7552,-28.8359],[18.7642,-28.8409],[18.768,-28.8397],[18.7707,-28.8397],[18.7744,-28.8414],[18.778,-28.844],[18.7804,-28.8443],[18.7828,-28.8434],[18.7858,-28.8411],[18.7899,-28.8408],[18.7922,-28.8412],[18.7944,-28.8434],[18.7992,-28.8435],[18.8035,-28.8449],[18.8129,-28.8466],[18.8153,-28.8463],[18.8193,-28.8435],[18.8232,-28.8431],[18.8309,-28.845],[18.8339,-28.8475],[18.8379,-28.8487],[18.8472,-28.8489],[18.8502,-28.8462],[18.8543,-28.8444],[18.8591,-28.8453],[18.8643,-28.847],[18.8667,-28.8469],[18.8694,-28.8481],[18.8725,-28.8471],[18.8777,-28.8481],[18.8832,-28.8499],[18.8852,-28.8509],[18.8916,-28.8517],[18.8938,-28.8525],[18.8967,-28.852],[18.9011,-28.8547],[18.9052,-28.8556],[18.9147,-28.8557],[18.9264,-28.8554],[18.9309,-28.856],[18.9356,-28.8572],[18.9472,-28.8637],[18.9564,-28.867],[18.961,-28.8695],[18.9693,-28.8698],[18.9719,-28.8704],[18.9753,-28.8723],[18.9775,-28.8745],[18.9796,-28.8755],[18.9836,-28.8788],[18.989,-28.8858],[18.993,-28.8872],[18.9965,-28.8922],[18.9972,-28.898],[19.0005,-28.9029],[19.004,-28.9105],[19.0039,-28.9148],[19.0059,-28.9243],[19.0077,-28.9281],[19.0091,-28.9292],[19.015,-28.9312],[19.0211,-28.9307],[19.0233,-28.9296],[19.0286,-28.9287],[19.0326,-28.9298],[19.0365,-28.9298],[19.0398,-28.9312],[19.042,-28.9314],[19.0497,-28.9357],[19.0565,-28.9408],[19.0594,-28.9454],[19.0608,-28.9458],[19.0667,-28.9499],[19.0691,-28.9529],[19.0719,-28.9577],[19.0754,-28.9592],[19.0795,-28.9591],[19.0858,-28.9608],[19.0926,-28.9639],[19.0973,-28.9656],[19.1046,-28.9672],[19.1091,-28.9678],[19.1129,-28.969],[19.1183,-28.9694],[19.1259,-28.9672],[19.1295,-28.9636],[19.1326,-28.9628],[19.1359,-28.9607],[19.1397,-28.9623],[19.143,-28.963],[19.1485,-28.9631],[19.1551,-28.9619],[19.1603,-28.9592],[19.1662,-28.9579],[19.1697,-28.9577],[19.1739,-28.9563],[19.1762,-28.9545],[19.1827,-28.9528],[19.1904,-28.9504],[19.1967,-28.947],[19.1976,-28.9459],[19.2052,-28.9396],[19.2121,-28.9326],[19.2182,-28.9289],[19.2213,-28.9255],[19.2234,-28.924],[19.2252,-28.9212],[19.2259,-28.9184],[19.2299,-28.9123],[19.2334,-28.9094],[19.2378,-28.908],[19.245,-28.9026],[19.2493,-28.9016],[19.2546,-28.9019],[19.2626,-28.904],[19.2641,-28.9048],[19.2716,-28.9062],[19.2738,-28.9072],[19.2812,-28.9092],[19.2849,-28.9086],[19.2869,-28.9058],[19.2928,-28.8996],[19.2964,-28.8932],[19.2969,-28.8892],[19.2963,-28.8852],[19.2909,-28.8775],[19.2838,-28.8726],[19.2814,-28.872],[19.2776,-28.8725],[19.2758,-28.8721],[19.2724,-28.8726],[19.2682,-28.8718],[19.265,-28.8696],[19.2597,-28.8625],[19.2555,-28.8558],[19.2549,-28.8525],[19.2502,-28.8439],[19.2502,-28.8395],[19.2487,-28.8364],[19.2469,-28.8356],[19.2448,-28.8332],[19.242,-28.8271],[19.2417,-28.8233],[19.2408,-28.8208],[19.2405,-28.8155],[19.2393,-28.8134],[19.2393,-28.8095],[19.2398,-28.8058],[19.242,-28.7999],[19.2452,-28.7929],[19.2457,-28.789],[19.2482,-28.785],[19.2494,-28.7822],[19.2546,-28.7737],[19.2551,-28.7701],[19.2572,-28.762],[19.2582,-28.7591],[19.2597,-28.7573],[19.2632,-28.7504],[19.2639,-28.7501],[19.2677,-28.7439],[19.2698,-28.742],[19.2758,-28.7395],[19.2801,-28.7383],[19.2865,-28.7359],[19.289,-28.7354],[19.2963,-28.7325],[19.3029,-28.7319],[19.3135,-28.7362],[19.3187,-28.7374],[19.323,-28.7374],[19.3255,-28.7361],[19.3289,-28.7356],[19.3337,-28.7361],[19.3391,-28.7381],[19.346,-28.7417],[19.3503,-28.7429],[19.3522,-28.7429],[19.3584,-28.7406],[19.3639,-28.7402],[19.375,-28.7373],[19.3787,-28.7376],[19.3823,-28.7365],[19.3847,-28.7347],[19.387,-28.7338],[19.3907,-28.734],[19.4005,-28.7367],[19.4054,-28.7363],[19.4113,-28.7326],[19.4164,-28.7305],[19.4269,-28.7237],[19.4311,-28.7203],[19.4385,-28.7199],[19.4433,-28.7182],[19.4468,-28.7163],[19.4515,-28.7129],[19.4557,-28.7115],[19.4587,-28.7098],[19.4615,-28.7089],[19.4666,-28.7062],[19.468,-28.7049],[19.4698,-28.7015],[19.4774,-28.6916],[19.48,-28.6876],[19.4838,-28.6846],[19.4897,-28.682],[19.4911,-28.6806],[19.4917,-28.6783],[19.4918,-28.6691],[19.4935,-28.6623],[19.4947,-28.66],[19.4946,-28.6573],[19.4953,-28.6522],[19.4948,-28.6475],[19.4951,-28.6424],[19.4967,-28.6364],[19.502,-28.6293],[19.5012,-28.625],[19.5022,-28.6243],[19.5022,-28.6192],[19.5016,-28.6104],[19.5007,-28.6083],[19.5011,-28.6066],[19.5034,-28.6033],[19.504,-28.6009],[19.5068,-28.5978],[19.5093,-28.5965],[19.5142,-28.5952],[19.5234,-28.5904],[19.5273,-28.5902],[19.5361,-28.5871],[19.5378,-28.5842],[19.5403,-28.5813],[19.5419,-28.5784],[19.544,-28.5701],[19.544,-28.5662],[19.5474,-28.5559],[19.5477,-28.5533],[19.5456,-28.5485],[19.546,-28.544],[19.5485,-28.5408],[19.5538,-28.5371],[19.5574,-28.5353],[19.559,-28.5329],[19.5631,-28.5295],[19.5676,-28.5267],[19.5722,-28.5262],[19.5751,-28.527],[19.5778,-28.5288],[19.5818,-28.5297],[19.5863,-28.5289],[19.5894,-28.5253],[19.5972,-28.5207],[19.6006,-28.5196],[19.6064,-28.5184],[19.6105,-28.5163],[19.6142,-28.5131],[19.6219,-28.511],[19.627,-28.5111],[19.6332,-28.5126],[19.6393,-28.5163],[19.6448,-28.5201],[19.65,-28.5218],[19.6544,-28.524],[19.6587,-28.5249],[19.6603,-28.5259],[19.6629,-28.5295],[19.6647,-28.5308],[19.6683,-28.5311],[19.6708,-28.5294],[19.6721,-28.5254],[19.6723,-28.5229],[19.6735,-28.5218],[19.6809,-28.5204],[19.686,-28.5188],[19.6926,-28.5188],[19.6968,-28.5176],[19.7012,-28.5145],[19.7105,-28.5068],[19.7128,-28.5037],[19.7158,-28.4981],[19.7223,-28.4929],[19.73,-28.4879],[19.732,-28.4872],[19.7386,-28.4857],[19.742,-28.4857],[19.7503,-28.4875],[19.7542,-28.4878],[19.7617,-28.4893],[19.7655,-28.4916],[19.769,-28.4926],[19.7737,-28.4959],[19.7774,-28.5001],[19.7809,-28.5017],[19.7855,-28.5012],[19.7899,-28.5018],[19.7949,-28.5036],[19.7994,-28.5067],[19.8038,-28.5072],[19.8081,-28.5084],[19.813,-28.5083],[19.8215,-28.5051],[19.8243,-28.503],[19.829,-28.4972],[19.8323,-28.491],[19.8347,-28.4873],[19.8376,-28.4848],[19.841,-28.4805],[19.8413,-28.4788],[19.84,-28.4747],[19.84,-28.4708],[19.8421,-28.4672],[19.8472,-28.4601],[19.8497,-28.4579],[19.8548,-28.4569],[19.8597,-28.4577],[19.8635,-28.4571],[19.8649,-28.4563],[19.8678,-28.4523],[19.8688,-28.4502],[19.8738,-28.4445],[19.878,-28.4424],[19.884,-28.4423],[19.8887,-28.4408],[19.893,-28.4418],[19.8957,-28.4416],[19.8989,-28.4432],[19.9046,-28.4451],[19.9147,-28.4453],[19.9188,-28.4442],[19.9233,-28.4424],[19.9329,-28.4392],[19.9476,-28.4365],[19.9512,-28.4353],[19.9556,-28.4329],[19.9588,-28.4307],[19.9619,-28.4299],[19.9648,-28.4283],[19.9724,-28.4259],[19.9777,-28.4254],[19.9829,-28.4259],[19.9892,-28.4256],[19.9969,-28.4275],[19.9992,-28.4277],[19.9993,-28.2987],[19.9994,-28.2496],[19.9995,-28.2136],[19.9998,-28.133],[20.0002,-28.0532],[20.0004,-27.9841],[20.0003,-27.8883],[20.0002,-27.774],[20.0001,-27.7],[20.0,-27.627],[19.9999,-27.5471],[19.9999,-27.4893],[19.9999,-27.4055],[20.0,-27.3476],[20.0,-27.2711],[20.0001,-27.1908],[20.0002,-27.0442],[20.0002,-26.961],[20.0,-26.9115],[19.9997,-26.8208],[19.9991,-26.6735],[19.9988,-26.6187],[19.9991,-26.5383],[19.9993,-26.4569],[19.9992,-26.4508],[19.9992,-26.3984],[19.9992,-26.3472],[19.9994,-26.278],[19.9994,-26.2441],[19.9994,-26.1937],[19.9994,-26.1426],[19.9991,-26.1151],[19.9991,-26.0957],[19.999,-26.056],[19.9989,-25.9988],[19.9991,-25.9225],[19.9995,-25.7803],[19.9994,-25.7134],[19.9993,-25.6527],[19.9993,-25.6242],[20.0002,-25.5316],[20.0001,-25.4864],[20.0001,-25.4188],[19.9997,-25.3345],[19.9994,-25.2761],[19.9993,-25.2243],[19.9991,-25.1725],[19.9989,-25.1035],[19.9989,-25.0484],[19.9989,-24.9777],[19.9989,-24.91],[19.9988,-24.836],[19.9989,-24.7843],[19.9989,-24.7659],[20.0005,-24.7673],[20.0012,-24.7692],[20.0078,-24.7743],[20.0133,-24.7777],[20.0236,-24.7846],[20.0297,-24.7885],[20.031,-24.7933],[20.0343,-24.8018],[20.0383,-24.8096],[20.0436,-24.8108],[20.0563,-24.8124],[20.065,-24.814],[20.0656,-24.8146],[20.0668,-24.8202],[20.0668,-24.8285],[20.0711,-24.8307],[20.0785,-24.8312],[20.0859,-24.83],[20.0902,-24.8328],[20.0905,-24.8338],[20.0897,-24.8402],[20.0865,-24.845],[20.0876,-24.8518],[20.0881,-24.8526],[20.0928,-24.8553],[20.0994,-24.8595],[20.1092,-24.8624],[20.112,-24.8682],[20.1131,-24.8746],[20.1158,-24.8809],[20.1217,-24.8849],[20.1305,-24.8808],[20.139,-24.8799],[20.1498,-24.8794],[20.1579,-24.8834],[20.1605,-24.889],[20.1641,-24.8917],[20.1703,-24.8982],[20.1798,-24.9099],[20.1819,-24.9118],[20.1895,-24.9104],[20.1945,-24.9039],[20.1973,-24.8973],[20.2037,-24.8965],[20.2077,-24.9],[20.2137,-24.9078],[20.2165,-24.9158],[20.2174,-24.9169],[20.2225,-24.9199],[20.2327,-24.9139],[20.2382,-24.915],[20.2483,-24.9182],[20.2543,-24.9231],[20.2591,-24.9236],[20.2657,-24.9285],[20.2707,-24.9386],[20.2722,-24.9469],[20.2758,-24.9504],[20.2843,-24.9514],[20.2872,-24.9551],[20.2881,-24.9601],[20.2861,-24.9696],[20.2965,-24.9806],[20.2983,-24.9813],[20.3114,-24.9845],[20.3174,-24.9867],[20.3227,-24.9915],[20.3268,-24.9989],[20.3282,-25.0055],[20.3357,-25.008],[20.3425,-25.0082],[20.348,-25.0091],[20.3495,-25.0098],[20.3512,-25.0141],[20.3538,-25.0184],[20.3566,-25.0244],[20.3618,-25.0262],[20.3689,-25.0278],[20.3734,-25.0302],[20.3802,-25.0321],[20.3842,-25.0343],[20.3867,-25.0389],[20.3857,-25.0437],[20.3856,-25.05],[20.3789,-25.0615],[20.3816,-25.0666],[20.3858,-25.0684],[20.3873,-25.0697],[20.3922,-25.0766],[20.4,-25.0794],[20.4078,-25.0807],[20.4126,-25.0827],[20.4157,-25.0888],[20.4127,-25.0935],[20.41,-25.0991],[20.4107,-25.1034],[20.4148,-25.1054],[20.4193,-25.1044],[20.4229,-25.1081],[20.4246,-25.112],[20.4291,-25.116],[20.4295,-25.1209],[20.4254,-25.1241],[20.424,-25.1282],[20.426,-25.1328],[20.4313,-25.1356],[20.4313,-25.1415],[20.4278,-25.1441],[20.4276,-25.1494],[20.4309,-25.1543],[20.4349,-25.1572],[20.4374,-25.1579],[20.4448,-25.1582],[20.4491,-25.1566],[20.4535,-25.1532],[20.4592,-25.15],[20.4653,-25.1522],[20.469,-25.1569],[20.4697,-25.1618],[20.4688,-25.1716],[20.4674,-25.1761],[20.4618,-25.1838],[20.4537,-25.1859],[20.4475,-25.1886],[20.4442,-25.194],[20.4464,-25.199],[20.4504,-25.2018],[20.4619,-25.2116],[20.4636,-25.2195],[20.4661,-25.2241],[20.4715,-25.2283],[20.4759,-25.2252],[20.4801,-25.2246],[20.4889,-25.2226],[20.4958,-25.2247],[20.4989,-25.2284],[20.4946,-25.2418],[20.4917,-25.2483],[20.4874,-25.2528],[20.4884,-25.2561],[20.493,-25.2624],[20.4964,-25.269],[20.5017,-25.274],[20.5059,-25.2755],[20.5118,-25.2745],[20.5185,-25.2749],[20.5233,-25.2781],[20.5235,-25.2842],[20.5279,-25.2877],[20.5307,-25.2877],[20.5391,-25.2871],[20.5457,-25.2862],[20.5457,-25.287],[20.5429,-25.2926],[20.5382,-25.2942],[20.5312,-25.2987],[20.5257,-25.3044],[20.5173,-25.3065],[20.514,-25.3115],[20.5139,-25.3172],[20.5169,-25.3233],[20.5217,-25.3247],[20.532,-25.3228],[20.5366,-25.319],[20.5419,-25.3181],[20.5465,-25.32],[20.5488,-25.3245],[20.5481,-25.3287],[20.5419,-25.3362],[20.5392,-25.3445],[20.5421,-25.349],[20.5455,-25.3561],[20.5477,-25.3632],[20.5511,-25.3713],[20.5544,-25.3758],[20.5601,-25.3847],[20.5614,-25.3893],[20.5657,-25.3945],[20.5786,-25.3965],[20.5843,-25.3942],[20.592,-25.39],[20.5966,-25.3907],[20.6018,-25.3949],[20.6046,-25.3987],[20.6053,-25.4045],[20.6036,-25.4099],[20.6008,-25.4139],[20.5983,-25.4217],[20.6012,-25.4274],[20.6082,-25.4297],[20.6114,-25.4288],[20.618,-25.4259],[20.6253,-25.4216],[20.6298,-25.4242],[20.6311,-25.4255],[20.6337,-25.431],[20.6298,-25.4355],[20.6198,-25.4407],[20.616,-25.4456],[20.6186,-25.4535],[20.6223,-25.4616],[20.6311,-25.4636],[20.6374,-25.4645],[20.6441,-25.4627],[20.6484,-25.4595],[20.6504,-25.4554],[20.6539,-25.4495],[20.6597,-25.4461],[20.6661,-25.4457],[20.6714,-25.4485],[20.6744,-25.4532],[20.6744,-25.458],[20.6728,-25.4635],[20.6678,-25.4695],[20.6627,-25.4719],[20.6555,-25.472],[20.6483,-25.4704],[20.641,-25.4704],[20.6362,-25.4735],[20.6345,-25.4783],[20.6365,-25.4841],[20.6412,-25.4917],[20.6435,-25.4976],[20.6429,-25.5005],[20.6402,-25.5041],[20.633,-25.5089],[20.6288,-25.5128],[20.6282,-25.5172],[20.6292,-25.525],[20.6324,-25.5296],[20.6389,-25.5313],[20.6476,-25.5316],[20.6542,-25.5357],[20.6639,-25.5451],[20.67,-25.5498],[20.6729,-25.5543],[20.6746,-25.5595],[20.6797,-25.5679],[20.6835,-25.5732],[20.6874,-25.5793],[20.6934,-25.5854],[20.6969,-25.5896],[20.6982,-25.5951],[20.696,-25.5996],[20.6908,-25.603],[20.6824,-25.6046],[20.6715,-25.6041],[20.6654,-25.604],[20.6611,-25.6085],[20.6596,-25.6149],[20.6569,-25.6203],[20.6529,-25.6253],[20.6504,-25.6324],[20.6518,-25.6375],[20.6575,-25.6398],[20.663,-25.6381],[20.6669,-25.6339],[20.6724,-25.6298],[20.677,-25.6302],[20.6823,-25.6317],[20.6879,-25.6355],[20.689,-25.6402],[20.6889,-25.6467],[20.6872,-25.652],[20.6818,-25.6598],[20.677,-25.6655],[20.6747,-25.6718],[20.6765,-25.687],[20.6779,-25.6904],[20.6826,-25.6945],[20.6935,-25.6993],[20.7027,-25.7042],[20.7086,-25.7081],[20.7133,-25.7125],[20.717,-25.7171],[20.7221,-25.725],[20.7243,-25.7306],[20.7278,-25.7417],[20.7308,-25.7479],[20.7312,-25.7532],[20.7298,-25.7684],[20.7317,-25.7717],[20.7364,-25.7736],[20.7422,-25.7734],[20.7483,-25.7716],[20.7541,-25.7725],[20.7606,-25.7766],[20.7635,-25.7804],[20.7645,-25.7874],[20.7622,-25.791],[20.7496,-25.7991],[20.7446,-25.8044],[20.7423,-25.8106],[20.7391,-25.8156],[20.7392,-25.8224],[20.7436,-25.8258],[20.748,-25.8271],[20.7535,-25.8262],[20.7593,-25.8222],[20.762,-25.8156],[20.7665,-25.8097],[20.7729,-25.8048],[20.7775,-25.802],[20.7829,-25.8007],[20.7882,-25.8031],[20.7901,-25.8083],[20.7887,-25.8128],[20.7858,-25.8185],[20.786,-25.8232],[20.7886,-25.8296],[20.7894,-25.8335],[20.7874,-25.8389],[20.7834,-25.8441],[20.7815,-25.8488],[20.7827,-25.855],[20.7867,-25.8606],[20.7908,-25.8618],[20.799,-25.8616],[20.8042,-25.8621],[20.809,-25.8644],[20.8131,-25.8697],[20.8136,-25.8758],[20.8132,-25.884],[20.8121,-25.8903],[20.8096,-25.8932],[20.8045,-25.8953],[20.7981,-25.8996],[20.7983,-25.903],[20.8018,-25.9097],[20.8026,-25.9163],[20.8029,-25.921],[20.8051,-25.9253],[20.8114,-25.9309],[20.8172,-25.9346],[20.8242,-25.9402],[20.8288,-25.9444],[20.8374,-25.9507],[20.8404,-25.9559],[20.8402,-25.9616],[20.8366,-25.9662],[20.8313,-25.9722],[20.8307,-25.9825],[20.8285,-25.9885],[20.8241,-25.9949],[20.8187,-26.0006],[20.8154,-26.0059],[20.8166,-26.0102],[20.8232,-26.0152],[20.8286,-26.0188],[20.8327,-26.024],[20.8345,-26.0298],[20.8361,-26.0361],[20.8361,-26.0415],[20.8328,-26.047],[20.8261,-26.0503],[20.8206,-26.0547],[20.8186,-26.0583],[20.821,-26.0623],[20.8244,-26.0696],[20.8274,-26.0727],[20.8393,-26.0766],[20.8417,-26.0801],[20.8409,-26.085],[20.839,-26.0892],[20.8339,-26.0945],[20.8257,-26.098],[20.8207,-26.1011],[20.8209,-26.1055],[20.8252,-26.1099],[20.8288,-26.1129],[20.8382,-26.1185],[20.8404,-26.1235],[20.8436,-26.1255],[20.8524,-26.1222],[20.8577,-26.1238],[20.8624,-26.1282],[20.8633,-26.1327],[20.8608,-26.1368],[20.8563,-26.1412],[20.8539,-26.149],[20.8491,-26.1558],[20.8438,-26.1621],[20.838,-26.1676],[20.8353,-26.1696],[20.8269,-26.1729],[20.8228,-26.1765],[20.8193,-26.1823],[20.8152,-26.1924],[20.8147,-26.1992],[20.8159,-26.2071],[20.8164,-26.2131],[20.8161,-26.2149],[20.8119,-26.2226],[20.8078,-26.2293],[20.8071,-26.2335],[20.8062,-26.2433],[20.8041,-26.2472],[20.7953,-26.2548],[20.7923,-26.2601],[20.7922,-26.267],[20.7903,-26.2714],[20.7845,-26.2753],[20.7795,-26.2774],[20.7727,-26.2821],[20.7633,-26.2841],[20.7589,-26.287],[20.7568,-26.2918],[20.7563,-26.2968],[20.7493,-26.3099],[20.7485,-26.3118],[20.744,-26.3178],[20.7372,-26.3241],[20.7267,-26.329],[20.7199,-26.3338],[20.7168,-26.3389],[20.7148,-26.3459],[20.7122,-26.3509],[20.7076,-26.3564],[20.7002,-26.3638],[20.6973,-26.3691],[20.6974,-26.3741],[20.6986,-26.3832],[20.6976,-26.3903],[20.6933,-26.3978],[20.6875,-26.3992],[20.6785,-26.397],[20.6746,-26.3999],[20.6709,-26.4054],[20.6605,-26.416],[20.6556,-26.4255],[20.6514,-26.4316],[20.6461,-26.4351],[20.6361,-26.4346],[20.6263,-26.4349],[20.6256,-26.4352],[20.6173,-26.444],[20.6171,-26.454],[20.6165,-26.4682],[20.6148,-26.4728],[20.6116,-26.4879],[20.6118,-26.4992],[20.6098,-26.5043],[20.6072,-26.5082],[20.6048,-26.5147],[20.6046,-26.5214],[20.6099,-26.5344],[20.6102,-26.5358],[20.6097,-26.5465],[20.6086,-26.5541],[20.61,-26.5599],[20.614,-26.5658],[20.6185,-26.5685],[20.6264,-26.5777],[20.6282,-26.5794],[20.6315,-26.584],[20.6326,-26.5918],[20.6316,-26.5954],[20.6325,-26.5999],[20.6319,-26.6045],[20.6335,-26.6092],[20.6337,-26.6179],[20.633,-26.6216],[20.6308,-26.6248],[20.6296,-26.6307],[20.6292,-26.6428],[20.6304,-26.6506],[20.6317,-26.6558],[20.6341,-26.6602],[20.6353,-26.6653],[20.6338,-26.6687],[20.6279,-26.672],[20.6216,-26.6744],[20.6169,-26.6773],[20.6145,-26.6871],[20.6159,-26.6935],[20.6166,-26.7022],[20.6191,-26.7055],[20.6195,-26.7097],[20.6209,-26.7135],[20.6261,-26.7198],[20.6335,-26.725],[20.6345,-26.7263],[20.6327,-26.7287],[20.6331,-26.7324],[20.6325,-26.7351],[20.6293,-26.7409],[20.6288,-26.7427],[20.6258,-26.749],[20.6289,-26.754],[20.6333,-26.7585],[20.6375,-26.7651],[20.6371,-26.7701],[20.6351,-26.7748],[20.6286,-26.7803],[20.625,-26.7843],[20.6224,-26.7862],[20.6238,-26.7894],[20.6263,-26.7906],[20.6365,-26.7941],[20.645,-26.8019],[20.6505,-26.8097],[20.649,-26.8132],[20.6449,-26.8181],[20.6434,-26.8208],[20.6426,-26.8236],[20.6448,-26.8284],[20.6485,-26.8301],[20.6514,-26.8326],[20.6555,-26.8345],[20.6629,-26.8356],[20.6671,-26.8369],[20.6822,-26.8401],[20.6833,-26.8442],[20.6851,-26.848],[20.6836,-26.8498],[20.6805,-26.8515],[20.6771,-26.8574],[20.6761,-26.8613],[20.6795,-26.8682],[20.6801,-26.8762],[20.6795,-26.8801],[20.6814,-26.8864],[20.6847,-26.8937],[20.6871,-26.9024],[20.6856,-26.9073],[20.6907,-26.9045],[20.6974,-26.8996],[20.7004,-26.8955],[20.7043,-26.8865],[20.7067,-26.8792],[20.7091,-26.8743],[20.7144,-26.8704],[20.7201,-26.8682],[20.7286,-26.8664],[20.7403,-26.8658],[20.748,-26.8668],[20.757,-26.8673],[20.7631,-26.8665],[20.7691,-26.8629],[20.7729,-26.8598],[20.7757,-26.855],[20.7797,-26.8506],[20.7824,-26.8466],[20.7862,-26.842],[20.7895,-26.8407],[20.7942,-26.8403],[20.8052,-26.8429],[20.8134,-26.8434],[20.8174,-26.8407],[20.8188,-26.8378],[20.8188,-26.8313],[20.8178,-26.8268],[20.8178,-26.823],[20.8188,-26.821],[20.8208,-26.8192],[20.8246,-26.8181],[20.8289,-26.8179],[20.8441,-26.8187],[20.8515,-26.8159],[20.8556,-26.8131],[20.867,-26.8068],[20.8714,-26.8038],[20.8767,-26.8015],[20.8852,-26.7973],[20.8928,-26.7971],[20.8981,-26.7963],[20.9045,-26.7968],[20.9097,-26.7977],[20.9187,-26.8016],[20.9248,-26.8052],[20.9282,-26.8061],[20.9376,-26.811],[20.9462,-26.8138],[20.9477,-26.8138],[20.9537,-26.8119],[20.962,-26.8069],[20.9685,-26.8063],[20.9718,-26.8072],[20.9778,-26.8115],[20.9812,-26.8175],[20.986,-26.8252],[20.9964,-26.8349],[21.0003,-26.8383],[21.0066,-26.8443],[21.0109,-26.8467],[21.0164,-26.8477],[21.0265,-26.8477],[21.0327,-26.8466],[21.0374,-26.847],[21.0415,-26.8467],[21.0516,-26.8493],[21.0582,-26.8513],[21.0607,-26.8516],[21.0662,-26.8503],[21.0712,-26.8484],[21.0789,-26.8485],[21.0837,-26.85],[21.0911,-26.8543],[21.0985,-26.8567],[21.1099,-26.8575],[21.1158,-26.8596],[21.1193,-26.8639],[21.1237,-26.8687],[21.1286,-26.8721],[21.1342,-26.8738],[21.139,-26.8727],[21.1554,-26.8672],[21.1621,-26.8674],[21.1689,-26.8687],[21.1773,-26.8664],[21.1819,-26.8628],[21.1882,-26.8565],[21.1919,-26.8535],[21.1993,-26.8499],[21.2092,-26.8477],[21.2217,-26.8438],[21.2264,-26.8433],[21.2326,-26.844],[21.2411,-26.846],[21.2447,-26.8463],[21.2488,-26.8456],[21.256,-26.8402],[21.2599,-26.8387],[21.2646,-26.8375],[21.2686,-26.8375],[21.2747,-26.8391],[21.2866,-26.848],[21.2885,-26.849],[21.2955,-26.8496],[21.3031,-26.8486],[21.3103,-26.8454],[21.3172,-26.8412],[21.3204,-26.8385],[21.3233,-26.8346],[21.3288,-26.828],[21.3323,-26.8257],[21.3366,-26.8251],[21.3449,-26.8256],[21.3578,-26.8293],[21.3652,-26.8302],[21.372,-26.8298],[21.3761,-26.8306],[21.3822,-26.8282],[21.3886,-26.8248],[21.3973,-26.8228],[21.4054,-26.8221],[21.4133,-26.8226],[21.4172,-26.8233],[21.432,-26.8266],[21.4401,-26.8271],[21.4456,-26.829],[21.4501,-26.8315],[21.4558,-26.8381],[21.4619,-26.8407],[21.4685,-26.841],[21.4742,-26.8403],[21.4815,-26.8405],[21.4859,-26.8415],[21.4905,-26.8445],[21.494,-26.8481],[21.4983,-26.8508],[21.5077,-26.8553],[21.5172,-26.8592],[21.5251,-26.8618],[21.5288,-26.8608],[21.5337,-26.8555],[21.5354,-26.8527],[21.5383,-26.8467],[21.5409,-26.8431],[21.5457,-26.8433],[21.5495,-26.8443],[21.5566,-26.8492],[21.5618,-26.85],[21.5645,-26.8483],[21.5753,-26.8399],[21.5867,-26.8404],[21.5943,-26.8412],[21.5967,-26.8419],[21.6045,-26.8459],[21.6096,-26.8521],[21.6155,-26.8575],[21.6181,-26.861],[21.6241,-26.8652],[21.6271,-26.8667],[21.6349,-26.8657],[21.6422,-26.8637],[21.6496,-26.8636],[21.6581,-26.8651],[21.6633,-26.8644],[21.6688,-26.8616],[21.6712,-26.8593],[21.6747,-26.8549],[21.6779,-26.854],[21.6817,-26.8545],[21.6852,-26.8558],[21.6918,-26.8604],[21.6948,-26.8612],[21.6992,-26.8596],[21.7033,-26.8574],[21.7078,-26.8524],[21.722,-26.8412],[21.7332,-26.8315],[21.7421,-26.825],[21.754,-26.8184],[21.7638,-26.8121],[21.7718,-26.8029],[21.776,-26.8018],[21.7802,-26.8025],[21.7817,-26.7993],[21.782,-26.7922],[21.784,-26.7846],[21.7918,-26.7757],[21.793,-26.7718],[21.7929,-26.7696],[21.7902,-26.7631],[21.7872,-26.7576],[21.7848,-26.7509],[21.785,-26.7462],[21.7861,-26.7392],[21.7874,-26.7229],[21.787,-26.7214],[21.7837,-26.7162],[21.7708,-26.7047],[21.7692,-26.6957],[21.7716,-26.6895],[21.7874,-26.6761],[21.7938,-26.6732],[21.8083,-26.6704],[21.8188,-26.6627],[21.8233,-26.6598],[21.8299,-26.6597],[21.835,-26.6622],[21.8387,-26.6647],[21.8454,-26.664],[21.8537,-26.6655],[21.8567,-26.6666],[21.8687,-26.6692],[21.877,-26.6697],[21.8831,-26.6707],[21.8886,-26.6701],[21.891,-26.6693],[21.8945,-26.669],[21.9027,-26.6701],[21.9229,-26.6659],[21.9263,-26.6648],[21.9288,-26.6648],[21.932,-26.6662],[21.9359,-26.6666],[21.9399,-26.6689],[21.9438,-26.67],[21.9493,-26.6699],[21.9531,-26.6687],[21.9657,-26.6617],[21.9705,-26.6588],[21.9798,-26.6525],[21.9861,-26.6499],[21.9924,-26.6493],[21.9977,-26.6479],[22.0004,-26.6482],[22.005,-26.6453],[22.0066,-26.6434],[22.0109,-26.6396],[22.0141,-26.6379],[22.0219,-26.6352],[22.0305,-26.634],[22.0384,-26.634],[22.0443,-26.6351],[22.0482,-26.635],[22.0522,-26.6329],[22.055,-26.6289],[22.0639,-26.6174],[22.0692,-26.6084],[22.0704,-26.6059],[22.0732,-26.597],[22.0754,-26.5869],[22.077,-26.5818],[22.0817,-26.5766],[22.0867,-26.5744],[22.0949,-26.5729],[22.0985,-26.5706],[22.1017,-26.5653],[22.1035,-26.5548],[22.107,-26.5501],[22.1128,-26.5465],[22.1179,-26.5461],[22.1235,-26.5474],[22.1288,-26.5471],[22.1326,-26.5448],[22.1335,-26.5436],[22.1335,-26.5396],[22.132,-26.5335],[22.1321,-26.5308],[22.1331,-26.5261],[22.1364,-26.5224],[22.1416,-26.5192],[22.1495,-26.5159],[22.1544,-26.5136],[22.158,-26.5124],[22.1608,-26.5108],[22.1635,-26.5083],[22.1657,-26.5036],[22.1651,-26.4987],[22.1597,-26.4927],[22.1583,-26.4884],[22.1601,-26.4833],[22.1674,-26.4772],[22.1708,-26.4752],[22.18,-26.4717],[22.1814,-26.4704],[22.1842,-26.4658],[22.1854,-26.4615],[22.1854,-26.459],[22.1841,-26.4546],[22.1813,-26.4491],[22.1811,-26.4418],[22.1815,-26.4392],[22.1835,-26.436],[22.1882,-26.4335],[22.1956,-26.4304],[22.1975,-26.4289],[22.2002,-26.4248],[22.2009,-26.4208],[22.2003,-26.4183],[22.1984,-26.4134],[22.1915,-26.4058],[22.1902,-26.4008],[22.1928,-26.3959],[22.1948,-26.394],[22.1992,-26.3915],[22.214,-26.3861],[22.2162,-26.3841],[22.2209,-26.3812],[22.2263,-26.3767],[22.2313,-26.375],[22.2379,-26.3713],[22.2395,-26.3693],[22.2383,-26.3662],[22.2377,-26.3624],[22.2377,-26.3579],[22.2385,-26.3553],[22.2423,-26.3499],[22.2473,-26.347],[22.2494,-26.3472],[22.2594,-26.3464],[22.2692,-26.345],[22.2726,-26.3432],[22.279,-26.3412],[22.2853,-26.34],[22.2888,-26.3399],[22.2913,-26.3412],[22.3032,-26.3444],[22.3069,-26.3441],[22.3113,-26.3423],[22.3138,-26.3395],[22.3179,-26.3284],[22.3213,-26.3241],[22.3259,-26.3223],[22.3367,-26.3205],[22.3395,-26.3204],[22.3419,-26.3215],[22.3518,-26.3274],[22.3559,-26.3278],[22.3589,-26.3276],[22.3634,-26.3251],[22.3668,-26.3192],[22.3672,-26.3146],[22.3664,-26.3016],[22.3624,-26.2907],[22.3622,-26.289],[22.3631,-26.2858],[22.3686,-26.2842],[22.3801,-26.2862],[22.3862,-26.285],[22.3959,-26.2781],[22.4029,-26.2727],[22.4059,-26.2682],[22.406,-26.2644],[22.4046,-26.2616],[22.3996,-26.2553],[22.3985,-26.2511],[22.3988,-26.2481],[22.4028,-26.2438],[22.4096,-26.2417],[22.413,-26.24],[22.416,-26.2367],[22.4183,-26.2276],[22.4205,-26.2241],[22.4222,-26.2232],[22.4268,-26.2236],[22.4332,-26.2269],[22.4429,-26.2292],[22.4535,-26.2281],[22.4579,-26.2247],[22.461,-26.2217],[22.4639,-26.2115],[22.4656,-26.2068],[22.4679,-26.2033],[22.4701,-26.2014],[22.4742,-26.1997],[22.4797,-26.2015],[22.4852,-26.2052],[22.4911,-26.2085],[22.4956,-26.2107],[22.4991,-26.2112],[22.5066,-26.2134],[22.5122,-26.2154],[22.5165,-26.2176],[22.5253,-26.2251],[22.5288,-26.2267],[22.5336,-26.2275],[22.5385,-26.2274],[22.5443,-26.2266],[22.5497,-26.2261],[22.5527,-26.225],[22.5574,-26.2218],[22.5594,-26.2178],[22.5606,-26.2117],[22.5634,-26.206],[22.5745,-26.1966],[22.5777,-26.1916],[22.5787,-26.1862],[22.5786,-26.1728],[22.5789,-26.1711],[22.5796,-26.1584],[22.5794,-26.1567],[22.5769,-26.1507],[22.5762,-26.1473],[22.5786,-26.142],[22.5815,-26.1404],[22.584,-26.1404],[22.5876,-26.1416],[22.5898,-26.144],[22.592,-26.1475],[22.5951,-26.15],[22.5995,-26.152],[22.605,-26.1492],[22.6064,-26.1433],[22.605,-26.1355],[22.607,-26.13],[22.6097,-26.1272],[22.6179,-26.1241],[22.6281,-26.1235],[22.6322,-26.1213],[22.6348,-26.1191],[22.6368,-26.1163],[22.637,-26.1131],[22.6317,-26.1073],[22.6291,-26.1026],[22.6294,-26.0977],[22.6324,-26.0943],[22.6363,-26.0914],[22.639,-26.0903],[22.6462,-26.0881],[22.6496,-26.0868],[22.6581,-26.0817],[22.662,-26.0797],[22.6659,-26.0784],[22.6687,-26.0769],[22.6731,-26.0737],[22.6728,-26.0685],[22.6706,-26.0607],[22.6703,-26.0546],[22.6718,-26.0496],[22.6717,-26.0432],[22.6685,-26.0351],[22.6679,-26.0321],[22.6638,-26.0254],[22.6645,-26.021],[22.6657,-26.0179],[22.6692,-26.0139],[22.6726,-26.0132],[22.6788,-26.0131],[22.6811,-26.014],[22.6921,-26.0173],[22.6995,-26.0192],[22.7041,-26.0195],[22.7084,-26.0203],[22.7141,-26.0199],[22.721,-26.0186],[22.7241,-26.016],[22.7257,-26.0129],[22.7246,-26.0068],[22.7245,-26.0005],[22.7259,-25.9885],[22.7275,-25.9828],[22.7293,-25.9787],[22.7294,-25.9731],[22.7288,-25.9701],[22.7276,-25.9681],[22.7265,-25.9645],[22.7248,-25.9615],[22.723,-25.9565],[22.7239,-25.9501],[22.7249,-25.9484],[22.7261,-25.9425],[22.7286,-25.9389],[22.7327,-25.9346],[22.7346,-25.932],[22.7371,-25.9299],[22.7421,-25.9272],[22.7432,-25.9259],[22.7484,-25.9227],[22.7493,-25.9202],[22.749,-25.9173],[22.7475,-25.9151],[22.7449,-25.9134],[22.7357,-25.9117],[22.7278,-25.909],[22.7229,-25.9084],[22.7182,-25.9056],[22.7159,-25.9037],[22.7126,-25.8993],[22.7119,-25.8935],[22.7134,-25.8899],[22.7182,-25.8872],[22.7239,-25.8868],[22.733,-25.8842],[22.7374,-25.8824],[22.7402,-25.8794],[22.7412,-25.8761],[22.7402,-25.8727],[22.7364,-25.8662],[22.7347,-25.8613],[22.7355,-25.8574],[22.7381,-25.855],[22.7449,-25.8532],[22.7498,-25.8525],[22.7587,-25.8494],[22.7658,-25.8444],[22.7709,-25.8418],[22.7733,-25.8399],[22.7789,-25.8333],[22.7814,-25.8288],[22.7817,-25.8239],[22.7801,-25.8187],[22.7776,-25.8152],[22.7724,-25.8127],[22.7691,-25.8117],[22.7614,-25.8105],[22.7551,-25.8071],[22.7503,-25.8057],[22.7472,-25.803],[22.7389,-25.7988],[22.7359,-25.7965],[22.7346,-25.7937],[22.7368,-25.7889],[22.7385,-25.7878],[22.7426,-25.7878],[22.7519,-25.7898],[22.7573,-25.79],[22.7601,-25.7876],[22.7626,-25.7832],[22.7637,-25.7787],[22.7638,-25.7615],[22.7651,-25.7479],[22.7662,-25.7403],[22.7675,-25.7362],[22.7693,-25.7328],[22.7713,-25.731],[22.7743,-25.73],[22.7772,-25.7299],[22.7842,-25.7288],[22.7887,-25.7285],[22.7943,-25.7267],[22.7999,-25.7231],[22.8058,-25.7158],[22.8086,-25.7116],[22.8131,-25.7029],[22.8215,-25.6905],[22.822,-25.6878],[22.8212,-25.6837],[22.8215,-25.6774],[22.8247,-25.67],[22.8287,-25.665],[22.8303,-25.6624],[22.8302,-25.6578],[22.8277,-25.655],[22.8161,-25.6552],[22.812,-25.6533],[22.8083,-25.6509],[22.8058,-25.6475],[22.8048,-25.6452],[22.8018,-25.6414],[22.7995,-25.6352],[22.8004,-25.6328],[22.8051,-25.6296],[22.8104,-25.6281],[22.8122,-25.6271],[22.8198,-25.6241],[22.8319,-25.6206],[22.8358,-25.6208],[22.844,-25.6221],[22.8478,-25.6214],[22.8515,-25.6184],[22.8537,-25.6136],[22.8535,-25.6116],[22.8489,-25.608],[22.8474,-25.6056],[22.8423,-25.6027],[22.8369,-25.5987],[22.8354,-25.5969],[22.8264,-25.5895],[22.8234,-25.588],[22.8182,-25.5863],[22.8141,-25.5824],[22.8148,-25.5788],[22.8181,-25.5766],[22.8235,-25.5751],[22.8267,-25.5723],[22.8297,-25.5679],[22.8343,-25.5579],[22.8378,-25.5493],[22.8401,-25.5447],[22.8448,-25.5404],[22.8526,-25.5355],[22.8537,-25.5329],[22.8536,-25.53],[22.8521,-25.5277],[22.852,-25.521],[22.8541,-25.5168],[22.8584,-25.5118],[22.8604,-25.5076],[22.8601,-25.5063],[22.8573,-25.5028],[22.8522,-25.4995],[22.8483,-25.4973],[22.8466,-25.4948],[22.8464,-25.4902],[22.8515,-25.4841],[22.8541,-25.4835],[22.8583,-25.481],[22.8638,-25.4796],[22.8706,-25.4809],[22.8847,-25.4845],[22.8919,-25.488],[22.8969,-25.4889],[22.9004,-25.4868],[22.9012,-25.4848],[22.9007,-25.4813],[22.8962,-25.4803],[22.8892,-25.4779],[22.8867,-25.4748],[22.8856,-25.4705],[22.8857,-25.4684],[22.8884,-25.4649],[22.8927,-25.4606],[22.8976,-25.4565],[22.8986,-25.4551],[22.9006,-25.449],[22.9034,-25.443],[22.9066,-25.4343],[22.9066,-25.4313],[22.9099,-25.4223],[22.9147,-25.4162],[22.9191,-25.4122],[22.9285,-25.4077],[22.9358,-25.4032],[22.9426,-25.3983],[22.9492,-25.394],[22.9513,-25.3935],[22.957,-25.3895],[22.9645,-25.385],[22.9676,-25.3834],[22.97,-25.3811],[22.9765,-25.3707],[22.9764,-25.3655],[22.9754,-25.3614],[22.9737,-25.3587],[22.9746,-25.3524],[22.9732,-25.3502],[22.9728,-25.3467],[22.9764,-25.3413],[22.9779,-25.3399],[22.9825,-25.3385],[22.9881,-25.3381],[22.9922,-25.3385],[22.9982,-25.3397],[23.0033,-25.3399],[23.009,-25.3379],[23.0113,-25.3359],[23.0129,-25.333],[23.0134,-25.3296],[23.0105,-25.3183],[23.0066,-25.3081],[23.0063,-25.3015],[23.0078,-25.2982],[23.011,-25.2972],[23.0141,-25.2982],[23.0206,-25.3026],[23.0239,-25.3066],[23.0278,-25.3102],[23.0282,-25.3125],[23.0326,-25.3126],[23.0362,-25.3085],[23.0416,-25.3044],[23.0447,-25.3014],[23.0477,-25.2969],[23.0489,-25.2941],[23.0516,-25.2908],[23.0544,-25.2895],[23.0584,-25.2899],[23.0613,-25.2937],[23.062,-25.3034],[23.061,-25.3056],[23.0561,-25.3119],[23.0542,-25.3179],[23.0563,-25.322],[23.0598,-25.326],[23.0625,-25.3268],[23.0664,-25.3296],[23.0702,-25.3302],[23.0751,-25.3318],[23.0793,-25.3318],[23.0824,-25.3307],[23.0857,-25.3283],[23.0879,-25.325],[23.0883,-25.3231],[23.0876,-25.3146],[23.09,-25.3124],[23.0953,-25.3123],[23.0991,-25.3104],[23.1042,-25.3059],[23.1085,-25.3038],[23.1136,-25.3036],[23.1186,-25.3068],[23.1224,-25.3099],[23.125,-25.3131],[23.1285,-25.3164],[23.1317,-25.3177],[23.1365,-25.3168],[23.1388,-25.3148],[23.1426,-25.3082],[23.148,-25.3033],[23.1537,-25.3027],[23.1598,-25.3046],[23.162,-25.3048],[23.1655,-25.3039],[23.1688,-25.3008],[23.1703,-25.2981],[23.171,-25.2929],[23.1731,-25.2897],[23.1755,-25.2876],[23.181,-25.2841],[23.1866,-25.2795],[23.1923,-25.2773],[23.1969,-25.2766],[23.2056,-25.2764],[23.2078,-25.2757],[23.212,-25.2734],[23.215,-25.2732],[23.2187,-25.2743],[23.2296,-25.2795],[23.2346,-25.2808],[23.2381,-25.2803],[23.2429,-25.2781],[23.2458,-25.2758],[23.2498,-25.2759],[23.253,-25.2782],[23.2582,-25.2795],[23.261,-25.2795],[23.2688,-25.2772],[23.2738,-25.2746],[23.278,-25.2741],[23.2796,-25.2745],[23.2849,-25.2796],[23.2876,-25.2846],[23.2891,-25.2903],[23.292,-25.2931],[23.294,-25.294],[23.2984,-25.2935],[23.304,-25.2911],[23.3055,-25.2891],[23.3071,-25.2855],[23.3089,-25.2828],[23.3113,-25.2818],[23.3155,-25.2827],[23.3193,-25.2891],[23.3216,-25.2913],[23.3241,-25.2924],[23.3274,-25.2918],[23.3341,-25.2882],[23.3386,-25.2869],[23.3484,-25.2851],[23.3555,-25.2851],[23.3605,-25.2862],[23.3627,-25.2888],[23.3664,-25.3006],[23.3684,-25.3034],[23.3741,-25.3038],[23.3781,-25.3031],[23.3883,-25.3041],[23.4035,-25.3072],[23.4051,-25.3083],[23.41,-25.314],[23.4129,-25.3157],[23.4163,-25.3158],[23.4199,-25.3137],[23.4235,-25.3092],[23.4284,-25.3015],[23.4328,-25.2957],[23.4386,-25.2853],[23.4415,-25.2777],[23.4448,-25.2755],[23.4492,-25.2749],[23.4586,-25.2764],[23.4658,-25.2768],[23.4683,-25.2795],[23.4673,-25.282],[23.4641,-25.2865],[23.46,-25.2909],[23.4579,-25.2943],[23.4581,-25.2977],[23.4596,-25.2997],[23.4624,-25.3009],[23.4645,-25.301],[23.4684,-25.3],[23.4723,-25.2982],[23.4757,-25.2979],[23.4784,-25.2985],[23.4804,-25.3013],[23.4814,-25.3075],[23.4821,-25.3095],[23.4844,-25.3117],[23.4896,-25.3143],[23.4932,-25.3166],[23.495,-25.3191],[23.4978,-25.3254],[23.4995,-25.3282],[23.5004,-25.3318],[23.4998,-25.3353],[23.4975,-25.3401],[23.4958,-25.3472],[23.4962,-25.3516],[23.4983,-25.3527],[23.5016,-25.352],[23.5059,-25.3492],[23.5114,-25.3465],[23.5217,-25.3405],[23.5241,-25.3401],[23.5269,-25.341],[23.5306,-25.3459],[23.5337,-25.3521],[23.537,-25.353],[23.5456,-25.3521],[23.5484,-25.3521],[23.5596,-25.3547],[23.5615,-25.3577],[23.5601,-25.3606],[23.5567,-25.3654],[23.5561,-25.3693],[23.5573,-25.3717],[23.5588,-25.3723],[23.5655,-25.3701],[23.5692,-25.3702],[23.5754,-25.3729],[23.5844,-25.3756],[23.5853,-25.38],[23.5846,-25.3841],[23.5843,-25.3908],[23.5861,-25.3948],[23.5893,-25.3965],[23.5944,-25.397],[23.5973,-25.3962],[23.5996,-25.394],[23.6018,-25.3858],[23.6044,-25.3828],[23.6076,-25.3813],[23.6148,-25.3833],[23.618,-25.3851],[23.6202,-25.3886],[23.6203,-25.3899],[23.6183,-25.3937],[23.6128,-25.3976],[23.6107,-25.4005],[23.6115,-25.4035],[23.6125,-25.4045],[23.6189,-25.4064],[23.6259,-25.4067],[23.6297,-25.408],[23.6332,-25.4116],[23.634,-25.4147],[23.6333,-25.4192],[23.634,-25.4254],[23.6353,-25.4287],[23.6375,-25.4316],[23.6408,-25.433],[23.6444,-25.4329],[23.653,-25.4311],[23.6559,-25.4293],[23.6574,-25.4271],[23.6574,-25.4216],[23.658,-25.4171],[23.6603,-25.415],[23.6626,-25.4147],[23.6684,-25.4161],[23.6728,-25.4211],[23.6765,-25.4265],[23.6752,-25.4295],[23.6705,-25.4324],[23.6672,-25.4363],[23.6662,-25.4393],[23.6667,-25.442],[23.6693,-25.4443],[23.6731,-25.4462],[23.6803,-25.4473],[23.6847,-25.4447],[23.6896,-25.4437],[23.6938,-25.4443],[23.6998,-25.4479],[23.702,-25.452],[23.7011,-25.4601],[23.7025,-25.4624],[23.704,-25.4626],[23.7093,-25.4599],[23.714,-25.456],[23.7172,-25.4528],[23.7209,-25.4471],[23.7248,-25.4453],[23.729,-25.4464],[23.7309,-25.4491],[23.7311,-25.4532],[23.7327,-25.4572],[23.7339,-25.4585],[23.7374,-25.4602],[23.7448,-25.4612],[23.7537,-25.4649],[23.7562,-25.4665],[23.7583,-25.4693],[23.7575,-25.4721],[23.7529,-25.4759],[23.7514,-25.4799],[23.7515,-25.4821],[23.7546,-25.4844],[23.7591,-25.4858],[23.7619,-25.4878],[23.7635,-25.4899],[23.7635,-25.4931],[23.7618,-25.4969],[23.7611,-25.5004],[23.7629,-25.5032],[23.7653,-25.5036],[23.7728,-25.5028],[23.7764,-25.5037],[23.7831,-25.5112],[23.7855,-25.5125],[23.792,-25.5123],[23.7961,-25.511],[23.7995,-25.5092],[23.8044,-25.5084],[23.8119,-25.5087],[23.8166,-25.5098],[23.8201,-25.512],[23.8218,-25.5138],[23.8212,-25.5171],[23.8146,-25.5239],[23.8079,-25.5277],[23.8049,-25.5332],[23.8055,-25.54],[23.8085,-25.5452],[23.811,-25.5474],[23.8161,-25.5502],[23.8205,-25.5506],[23.8245,-25.5484],[23.8283,-25.543],[23.8318,-25.5408],[23.8352,-25.5411],[23.8373,-25.5428],[23.843,-25.5503],[23.8435,-25.5535],[23.8417,-25.558],[23.8385,-25.5609],[23.8376,-25.5643],[23.8397,-25.5679],[23.8445,-25.5708],[23.8577,-25.5727],[23.8656,-25.5716],[23.8694,-25.5724],[23.8766,-25.5753],[23.8802,-25.5774],[23.8822,-25.5826],[23.8807,-25.5873],[23.8807,-25.5914],[23.8828,-25.5949],[23.8882,-25.5986],[23.898,-25.6007],[23.9041,-25.6028],[23.9072,-25.6061],[23.9036,-25.6155],[23.9017,-25.6221],[23.9034,-25.6268],[23.9081,-25.6286],[23.9136,-25.6285],[23.9185,-25.6295],[23.9215,-25.6315],[23.9255,-25.6367],[23.9285,-25.6382],[23.935,-25.6369],[23.9385,-25.6376],[23.9421,-25.6375],[23.9462,-25.6384],[23.9485,-25.6377],[23.9515,-25.635],[23.9524,-25.6317],[23.9502,-25.6256],[23.9508,-25.6228],[23.9545,-25.6217],[23.9588,-25.6234],[23.9622,-25.6228],[23.9635,-25.6192],[23.9666,-25.615],[23.9726,-25.6149],[23.9774,-25.6161],[23.9822,-25.621],[23.9853,-25.6218],[23.9899,-25.6213],[23.9957,-25.6216],[24.0048,-25.6204],[24.0082,-25.6219],[24.012,-25.6245],[24.0127,-25.6258],[24.0123,-25.6287],[24.0042,-25.6327],[24.0029,-25.635],[24.0037,-25.6419],[24.0028,-25.6474],[24.0035,-25.6502],[24.0065,-25.6515],[24.009,-25.6508],[24.0134,-25.6476],[24.0171,-25.6457],[24.0242,-25.6455],[24.0263,-25.6443],[24.0274,-25.6423],[24.0266,-25.637],[24.0283,-25.6347],[24.0299,-25.6343],[24.0334,-25.6355],[24.0357,-25.6369],[24.0388,-25.6402],[24.0409,-25.6437],[24.0431,-25.6457],[24.0515,-25.651],[24.0552,-25.6518],[24.0586,-25.6519],[24.0633,-25.6511],[24.0663,-25.65],[24.0672,-25.6484],[24.0677,-25.6443],[24.0645,-25.6384],[24.0645,-25.6342],[24.0669,-25.6314],[24.0738,-25.6297],[24.0769,-25.6304],[24.0784,-25.6315],[24.0797,-25.6385],[24.0808,-25.641],[24.0843,-25.6434],[24.0874,-25.6424],[24.0893,-25.6389],[24.0929,-25.6352],[24.0981,-25.6326],[24.1043,-25.6304],[24.1075,-25.6302],[24.1107,-25.6314],[24.115,-25.6317],[24.1231,-25.629],[24.1251,-25.6281],[24.1315,-25.6274],[24.1354,-25.6283],[24.1386,-25.6281],[24.1405,-25.6259],[24.1405,-25.6208],[24.1391,-25.6164],[24.1409,-25.6139],[24.1496,-25.6108],[24.1527,-25.6085],[24.1577,-25.6084],[24.1606,-25.6106],[24.1631,-25.6152],[24.1623,-25.6183],[24.1579,-25.6227],[24.1568,-25.6269],[24.1594,-25.6301],[24.1677,-25.6318],[24.1708,-25.6311],[24.1738,-25.6292],[24.1799,-25.6264],[24.1845,-25.6212],[24.1876,-25.6204],[24.1918,-25.6204],[24.1941,-25.6211],[24.1991,-25.6284],[24.2018,-25.6304],[24.2074,-25.6322],[24.2099,-25.635],[24.2111,-25.6374],[24.2119,-25.6408],[24.2151,-25.6442],[24.2197,-25.6449],[24.2232,-25.6433],[24.226,-25.6433],[24.2277,-25.6456],[24.2268,-25.6534],[24.2262,-25.6549],[24.2278,-25.6579],[24.2338,-25.6626],[24.2341,-25.6651],[24.2366,-25.6699],[24.242,-25.6732],[24.2474,-25.6721],[24.2491,-25.6726],[24.2516,-25.6746],[24.2514,-25.6767],[24.2472,-25.6834],[24.248,-25.6855],[24.2546,-25.6876],[24.2607,-25.6919],[24.2612,-25.6947],[24.2598,-25.6975],[24.2589,-25.7027],[24.2595,-25.7062],[24.2628,-25.7079],[24.2659,-25.7082],[24.2731,-25.7052],[24.2745,-25.7013],[24.2787,-25.6967],[24.2832,-25.6938],[24.2862,-25.693],[24.2884,-25.6943],[24.2901,-25.6968],[24.2912,-25.7013],[24.2916,-25.7053],[24.291,-25.7068],[24.2888,-25.7082],[24.2832,-25.7094],[24.2785,-25.7133],[24.2786,-25.7172],[24.2802,-25.7202],[24.2836,-25.7248],[24.2857,-25.7267],[24.2884,-25.7262],[24.2961,-25.7178],[24.3008,-25.7142],[24.3055,-25.7135],[24.3149,-25.714],[24.3195,-25.7127],[24.3224,-25.7106],[24.3249,-25.7101],[24.3264,-25.7109],[24.3279,-25.7132],[24.3276,-25.7153],[24.3237,-25.7197],[24.3224,-25.7247],[24.323,-25.7296],[24.3257,-25.7331],[24.3288,-25.7352],[24.3325,-25.737],[24.3343,-25.7387],[24.3392,-25.7455],[24.345,-25.7474],[24.3502,-25.75],[24.3539,-25.7563],[24.3592,-25.7589],[24.3645,-25.7592],[24.3702,-25.7622],[24.3745,-25.764],[24.3808,-25.7649],[24.3828,-25.7635],[24.3841,-25.7605],[24.3872,-25.7572],[24.3907,-25.7551],[24.3924,-25.7549],[24.3942,-25.7563],[24.3966,-25.7613],[24.3993,-25.7627],[24.4013,-25.7625],[24.4035,-25.761],[24.4039,-25.7511],[24.4049,-25.7476],[24.4082,-25.7456],[24.4119,-25.7461],[24.4189,-25.7497],[24.4236,-25.7515],[24.426,-25.7515],[24.4296,-25.7495],[24.4322,-25.7462],[24.4328,-25.7442],[24.4321,-25.7374],[24.4323,-25.7348],[24.4346,-25.7338],[24.436,-25.7349],[24.4374,-25.7378],[24.4393,-25.74],[24.4419,-25.7408],[24.4439,-25.7393],[24.4439,-25.735],[24.4454,-25.7336],[24.4485,-25.7341],[24.4523,-25.7387],[24.4567,-25.7423],[24.4587,-25.7431],[24.462,-25.7431],[24.4633,-25.7421],[24.4647,-25.7382],[24.4674,-25.7375],[24.4705,-25.7397],[24.471,-25.7414],[24.4706,-25.7451],[24.4719,-25.7472],[24.4812,-25.7483],[24.4853,-25.7494],[24.4908,-25.7512],[24.4978,-25.7543],[24.4998,-25.7547],[24.5136,-25.7603],[24.5169,-25.7621],[24.5201,-25.7627],[24.5227,-25.7643],[24.5246,-25.7644],[24.5334,-25.7681],[24.5355,-25.7683],[24.5381,-25.7698],[24.5443,-25.772],[24.5488,-25.7728],[24.5543,-25.7722],[24.5559,-25.7716],[24.5615,-25.7709],[24.5651,-25.7713],[24.5716,-25.7736],[24.5769,-25.7765],[24.5795,-25.7788],[24.5821,-25.7827],[24.583,-25.7829],[24.5894,-25.7898],[24.5956,-25.7922],[24.5995,-25.7948],[24.6027,-25.7958],[24.6064,-25.7992],[24.6089,-25.8006],[24.6137,-25.8021],[24.6164,-25.802],[24.6229,-25.8035],[24.6363,-25.8074],[24.6408,-25.8078],[24.6453,-25.8109],[24.6501,-25.8119],[24.6555,-25.8147],[24.6597,-25.8152],[24.6632,-25.8179],[24.6661,-25.8185],[24.6734,-25.8177],[24.679,-25.8192],[24.6818,-25.8237],[24.6859,-25.8233],[24.6884,-25.8201],[24.6906,-25.8189],[24.6923,-25.8166],[24.6929,-25.8146],[24.6948,-25.8123],[24.6975,-25.811],[24.6999,-25.8107],[24.7074,-25.8082],[24.7116,-25.8058],[24.7297,-25.8041],[24.7341,-25.8063],[24.7376,-25.8085],[24.7382,-25.8097],[24.7422,-25.8126],[24.7492,-25.8143],[24.752,-25.8145],[24.7559,-25.8114],[24.758,-25.8109],[24.7617,-25.811],[24.767,-25.8126],[24.7747,-25.8182],[24.7784,-25.8198],[24.78,-25.8195],[24.7827,-25.8175],[24.7875,-25.8175],[24.7893,-25.8185],[24.7919,-25.8216],[24.793,-25.8247],[24.7963,-25.8246],[24.7985,-25.8211],[24.8033,-25.8185],[24.809,-25.8188],[24.8111,-25.8166],[24.8111,-25.8128],[24.8123,-25.8108],[24.8142,-25.8104],[24.8156,-25.8116],[24.8153,-25.8133],[24.8162,-25.8161],[24.8184,-25.817],[24.8203,-25.8159],[24.8246,-25.8117],[24.8281,-25.8127],[24.83,-25.8146],[24.8343,-25.8152],[24.8422,-25.8113],[24.8434,-25.8097],[24.8462,-25.8088],[24.8502,-25.8089],[24.8575,-25.8064],[24.8614,-25.8076],[24.8696,-25.8054],[24.8718,-25.8063],[24.874,-25.8087],[24.8765,-25.8092],[24.8812,-25.8072],[24.8873,-25.8074],[24.8935,-25.81],[24.8969,-25.8108],[24.8986,-25.8083],[24.8962,-25.8054],[24.8979,-25.8024],[24.904,-25.8027],[24.9052,-25.8024],[24.9078,-25.7984],[24.9126,-25.7978],[24.9135,-25.7954],[24.9135,-25.7921],[24.9125,-25.7853],[24.9153,-25.7842],[24.9179,-25.7872],[24.9184,-25.7889],[24.9203,-25.79],[24.9259,-25.7887],[24.929,-25.7868],[24.9312,-25.7828],[24.9317,-25.7791],[24.9338,-25.7766],[24.941,-25.7758],[24.9499,-25.7731],[24.9514,-25.7717],[24.9511,-25.7691],[24.9536,-25.7686],[24.9533,-25.7667],[24.9517,-25.7636],[24.9522,-25.7616],[24.955,-25.7601],[24.9615,-25.7661],[24.9667,-25.7661],[24.9689,-25.7645],[24.9703,-25.7621],[24.9705,-25.7601],[24.9723,-25.758],[24.9728,-25.7559],[24.9763,-25.7535],[24.9828,-25.7547],[24.986,-25.7525],[24.9873,-25.7484],[24.9894,-25.7457],[24.9934,-25.7443],[24.9973,-25.7415],[25.0036,-25.7387],[25.0038,-25.7357],[25.0012,-25.7334],[24.9998,-25.7312],[25.0006,-25.7296],[25.0035,-25.7283],[25.0131,-25.7256],[25.0153,-25.7256],[25.0176,-25.7279],[25.0181,-25.7301],[25.0213,-25.7313],[25.0229,-25.731],[25.0274,-25.7278],[25.0357,-25.7228],[25.0379,-25.7223],[25.0428,-25.7244],[25.05,-25.7254],[25.052,-25.7267],[25.0528,-25.73],[25.0546,-25.7319],[25.0617,-25.7355],[25.0673,-25.7351],[25.0711,-25.7363],[25.0762,-25.7317],[25.078,-25.7307],[25.0809,-25.7304],[25.0826,-25.7332],[25.083,-25.7356],[25.0851,-25.7395],[25.087,-25.7409],[25.0905,-25.7417],[25.1002,-25.7423],[25.103,-25.741],[25.1052,-25.7425],[25.1021,-25.7461],[25.1022,-25.748],[25.1047,-25.7489],[25.109,-25.7484],[25.1103,-25.7502],[25.1087,-25.7534],[25.1103,-25.7558],[25.1128,-25.7562],[25.1161,-25.7607],[25.1198,-25.7632],[25.1238,-25.7637],[25.1271,-25.7627],[25.1322,-25.7601],[25.134,-25.7583],[25.1422,-25.7564],[25.1455,-25.7572],[25.1474,-25.7592],[25.1502,-25.7596],[25.1541,-25.7587],[25.1563,-25.7594],[25.1602,-25.7593],[25.1656,-25.7619],[25.1677,-25.7647],[25.1701,-25.7659],[25.1756,-25.7663],[25.1836,-25.7628],[25.1921,-25.7625],[25.1997,-25.7592],[25.2035,-25.7584],[25.2068,-25.7596],[25.2084,-25.762],[25.2099,-25.7629],[25.2134,-25.7626],[25.2177,-25.7642],[25.2198,-25.7659],[25.2239,-25.7635],[25.2306,-25.7648],[25.2367,-25.7645],[25.2408,-25.7656],[25.2485,-25.7656],[25.2523,-25.7675],[25.2561,-25.7675],[25.2599,-25.7686],[25.2624,-25.7683],[25.2644,-25.7666],[25.2704,-25.7667],[25.2734,-25.7679],[25.2796,-25.7675],[25.2852,-25.7654],[25.2884,-25.7662],[25.2958,-25.7662],[25.2985,-25.7657],[25.3017,-25.7659],[25.3061,-25.7681],[25.3111,-25.7689],[25.313,-25.7699],[25.3151,-25.7722],[25.3195,-25.7728],[25.3248,-25.7715],[25.3292,-25.7697],[25.3341,-25.771],[25.3393,-25.7693],[25.3409,-25.7693],[25.3475,-25.7661],[25.3487,-25.764],[25.3516,-25.7617],[25.354,-25.7616],[25.3668,-25.7579],[25.3694,-25.7558],[25.3702,-25.7538],[25.3728,-25.752],[25.3782,-25.7503],[25.3857,-25.7448],[25.3935,-25.7419],[25.3964,-25.7416],[25.3998,-25.7404],[25.4073,-25.7385],[25.4151,-25.7346],[25.4209,-25.7329],[25.4276,-25.729],[25.4313,-25.7246],[25.4339,-25.7224],[25.4376,-25.721],[25.446,-25.7138],[25.4481,-25.7134],[25.4503,-25.711],[25.4523,-25.7101],[25.4549,-25.7102],[25.4586,-25.7052],[25.4653,-25.7012],[25.4681,-25.6967],[25.4699,-25.6957],[25.4739,-25.6964],[25.48,-25.696],[25.485,-25.6942],[25.4892,-25.6889],[25.4934,-25.6905],[25.4961,-25.6905],[25.498,-25.6895],[25.5001,-25.6907],[25.5027,-25.6886],[25.5047,-25.6886],[25.5071,-25.686],[25.5106,-25.6856],[25.5137,-25.6843],[25.5175,-25.6805],[25.5199,-25.6788],[25.5207,-25.6765],[25.5239,-25.6745],[25.5275,-25.671],[25.5311,-25.67],[25.5352,-25.665],[25.5381,-25.6638],[25.5443,-25.6591],[25.5517,-25.6548],[25.5576,-25.6498],[25.5593,-25.6487],[25.5637,-25.6487],[25.5673,-25.6468],[25.571,-25.6431],[25.5737,-25.6422],[25.5775,-25.6387],[25.5809,-25.6388],[25.6061,-25.5867],[25.6298,-25.5378],[25.6308,-25.5334],[25.6537,-25.4861],[25.6598,-25.4744],[25.6624,-25.4665],[25.672,-25.4333],[25.6808,-25.404],[25.6882,-25.376],[25.69,-25.3645],[25.6919,-25.3478],[25.6939,-25.3351],[25.6959,-25.3179],[25.6998,-25.291],[25.7019,-25.2894],[25.7069,-25.2833],[25.7291,-25.2569],[25.755,-25.1927],[25.8012,-25.0785],[25.8299,-25.0074],[25.8409,-24.9803],[25.8433,-24.9737],[25.8618,-24.9261],[25.8608,-24.9243],[25.8622,-24.923],[25.8707,-24.9213],[25.8725,-24.9189],[25.8782,-24.9174],[25.881,-24.9156],[25.8817,-24.9131],[25.8766,-24.9101],[25.8728,-24.9066],[25.874,-24.9035],[25.8759,-24.903],[25.8799,-24.9033],[25.8804,-24.9008],[25.8771,-24.8988],[25.8764,-24.8977],[25.8759,-24.8921],[25.8766,-24.8883],[25.88,-24.8866],[25.8844,-24.8877],[25.8885,-24.8843],[25.8886,-24.8822],[25.8855,-24.881],[25.8844,-24.8775],[25.8829,-24.8759],[25.8819,-24.8723],[25.8831,-24.8694],[25.8815,-24.8633],[25.8817,-24.8598],[25.8806,-24.8584],[25.8772,-24.8571],[25.8763,-24.8561],[25.8768,-24.8524],[25.874,-24.8464],[25.875,-24.8427],[25.8749,-24.839],[25.8732,-24.8317],[25.8725,-24.8279],[25.8695,-24.827],[25.869,-24.8252],[25.8674,-24.8235],[25.8655,-24.8236],[25.8623,-24.8269],[25.8597,-24.8269],[25.8584,-24.8221],[25.861,-24.8171],[25.8615,-24.8139],[25.8627,-24.8117],[25.8632,-24.8085],[25.8584,-24.8054],[25.855,-24.8017],[25.8477,-24.7961],[25.8423,-24.7898],[25.8437,-24.7876],[25.8433,-24.783],[25.8449,-24.7794],[25.8467,-24.7781],[25.8502,-24.7768],[25.8512,-24.7754],[25.8516,-24.7686],[25.8508,-24.7608],[25.8499,-24.7584],[25.8478,-24.7562],[25.8483,-24.755],[25.8583,-24.7572],[25.9114,-24.7537],[25.9171,-24.7455],[25.9282,-24.7466],[25.9644,-24.7494],[26.0074,-24.7243],[26.064,-24.7131],[26.0965,-24.7062],[26.187,-24.6875],[26.2403,-24.6745],[26.2849,-24.6629],[26.3417,-24.6494],[26.3933,-24.6366],[26.4088,-24.6461],[26.4105,-24.6434],[26.4122,-24.643],[26.4153,-24.6408],[26.4217,-24.6334],[26.4221,-24.6257],[26.4242,-24.6224],[26.4257,-24.6186],[26.4282,-24.6195],[26.4299,-24.6186],[26.4328,-24.6186],[26.438,-24.6162],[26.4403,-24.6142],[26.441,-24.6122],[26.4439,-24.6118],[26.4459,-24.6128],[26.4482,-24.6129],[26.4518,-24.6106],[26.4553,-24.607],[26.4579,-24.6029],[26.4584,-24.6007],[26.4612,-24.5967],[26.4695,-24.5909],[26.4716,-24.5882],[26.4747,-24.5811],[26.4772,-24.5779],[26.4785,-24.5737],[26.482,-24.5669],[26.4806,-24.5621],[26.4812,-24.557],[26.4848,-24.5542],[26.4877,-24.5511],[26.4885,-24.5488],[26.488,-24.5457],[26.4901,-24.5419],[26.4897,-24.5386],[26.4927,-24.5361],[26.4931,-24.5337],[26.4965,-24.53],[26.4976,-24.5258],[26.5003,-24.5224],[26.5006,-24.5179],[26.5016,-24.5156],[26.5013,-24.5133],[26.5026,-24.5101],[26.5011,-24.51],[26.5021,-24.5071],[26.5034,-24.5064],[26.5062,-24.5067],[26.5102,-24.5028],[26.511,-24.4995],[26.5097,-24.4984],[26.5095,-24.4951],[26.5117,-24.4952],[26.5112,-24.49],[26.5105,-24.4879],[26.5135,-24.4869],[26.5158,-24.4847],[26.519,-24.4844],[26.5213,-24.482],[26.5239,-24.4807],[26.5268,-24.4784],[26.5282,-24.4763],[26.5331,-24.4766],[26.5361,-24.4752],[26.536,-24.473],[26.5386,-24.4692],[26.5379,-24.4665],[26.5404,-24.4635],[26.5431,-24.4636],[26.545,-24.4654],[26.5501,-24.4613],[26.5516,-24.456],[26.5509,-24.4547],[26.5526,-24.4518],[26.555,-24.4515],[26.5596,-24.4536],[26.563,-24.4469],[26.566,-24.4445],[26.5658,-24.4426],[26.5681,-24.4381],[26.5677,-24.4364],[26.5691,-24.4346],[26.5713,-24.4336],[26.5746,-24.4346],[26.5761,-24.4334],[26.5741,-24.432],[26.5789,-24.4285],[26.5814,-24.429],[26.5841,-24.4264],[26.5817,-24.4259],[26.5822,-24.4222],[26.5853,-24.4223],[26.588,-24.416],[26.5877,-24.4113],[26.5902,-24.4092],[26.5946,-24.4102],[26.596,-24.4086],[26.5992,-24.41],[26.6001,-24.409],[26.6028,-24.4103],[26.6053,-24.4096],[26.6086,-24.4071],[26.6117,-24.4072],[26.6133,-24.4064],[26.6139,-24.4025],[26.6171,-24.3984],[26.6188,-24.3995],[26.622,-24.3969],[26.6225,-24.3955],[26.6253,-24.3938],[26.6282,-24.3948],[26.6297,-24.394],[26.6326,-24.3956],[26.6342,-24.3933],[26.6359,-24.3921],[26.6354,-24.3907],[26.6372,-24.3894],[26.6356,-24.3875],[26.6387,-24.3861],[26.6421,-24.3856],[26.6444,-24.3845],[26.6471,-24.3818],[26.6513,-24.3844],[26.6539,-24.3844],[26.6551,-24.3859],[26.658,-24.3844],[26.6573,-24.3821],[26.6587,-24.3809],[26.6608,-24.3818],[26.6631,-24.3813],[26.6654,-24.379],[26.6654,-24.3762],[26.6678,-24.3731],[26.6689,-24.3725],[26.669,-24.3689],[26.6701,-24.3678],[26.6662,-24.3638],[26.6658,-24.3621],[26.6679,-24.3592],[26.6677,-24.3576],[26.6709,-24.3547],[26.6728,-24.3512],[26.6753,-24.3486],[26.6767,-24.3484],[26.6772,-24.3454],[26.6756,-24.3442],[26.6803,-24.3426],[26.6844,-24.3418],[26.6839,-24.3402],[26.6852,-24.3381],[26.6869,-24.3385],[26.6886,-24.3369],[26.6943,-24.3379],[26.6966,-24.3393],[26.6971,-24.3355],[26.7002,-24.3347],[26.7023,-24.3315],[26.7021,-24.3255],[26.7052,-24.3246],[26.704,-24.3218],[26.7059,-24.3205],[26.7095,-24.32],[26.7105,-24.3183],[26.7134,-24.3208],[26.7159,-24.3204],[26.7164,-24.3189],[26.7202,-24.3185],[26.7215,-24.3165],[26.7277,-24.3128],[26.7291,-24.3111],[26.731,-24.3113],[26.7308,-24.3087],[26.7328,-24.306],[26.733,-24.3045],[26.7421,-24.3044],[26.7443,-24.306],[26.7471,-24.3065],[26.7472,-24.3088],[26.746,-24.3111],[26.7477,-24.3124],[26.75,-24.3119],[26.7519,-24.3132],[26.7545,-24.3112],[26.7564,-24.3117],[26.7604,-24.3103],[26.7626,-24.3087],[26.7638,-24.3053],[26.7664,-24.3048],[26.7737,-24.3049],[26.7753,-24.3025],[26.7779,-24.3002],[26.7811,-24.3001],[26.7831,-24.301],[26.7839,-24.305],[26.7856,-24.3066],[26.789,-24.3034],[26.7897,-24.3013],[26.7918,-24.3018],[26.7973,-24.3001],[26.7999,-24.3],[26.8023,-24.2973],[26.8028,-24.2934],[26.8014,-24.2881],[26.8049,-24.2887],[26.8099,-24.2883],[26.8106,-24.2858],[26.8144,-24.2854],[26.8168,-24.2843],[26.8192,-24.2821],[26.8188,-24.2792],[26.8199,-24.2788],[26.8232,-24.2797],[26.8244,-24.2778],[26.8245,-24.2746],[26.8256,-24.2723],[26.8279,-24.2733],[26.8292,-24.2727],[26.8333,-24.2737],[26.8378,-24.2728],[26.8397,-24.2716],[26.8408,-24.2747],[26.8444,-24.273],[26.8457,-24.2704],[26.8473,-24.2696],[26.8485,-24.2674],[26.8515,-24.2672],[26.8503,-24.2647],[26.8519,-24.2628],[26.8539,-24.2624],[26.8558,-24.2634],[26.8553,-24.2583],[26.8572,-24.2553],[26.8595,-24.255],[26.8595,-24.2531],[26.8659,-24.251],[26.8643,-24.2491],[26.8663,-24.2476],[26.8654,-24.2456],[26.868,-24.2451],[26.8688,-24.2438],[26.8663,-24.2396],[26.8628,-24.2382],[26.8627,-24.2361],[26.8646,-24.2344],[26.8634,-24.2324],[26.8633,-24.2305],[26.8615,-24.2297],[26.8603,-24.2255],[26.8591,-24.2248],[26.8626,-24.2189],[26.8616,-24.2175],[26.8647,-24.2152],[26.8674,-24.2158],[26.8708,-24.2154],[26.871,-24.2125],[26.8721,-24.2108],[26.873,-24.2069],[26.8744,-24.2052],[26.8773,-24.2041],[26.88,-24.1998],[26.8806,-24.1966],[26.8801,-24.1929],[26.8829,-24.1909],[26.8828,-24.1885],[26.8793,-24.1914],[26.8773,-24.19],[26.8747,-24.1896],[26.8718,-24.1912],[26.8693,-24.1907],[26.8676,-24.189],[26.868,-24.185],[26.8675,-24.1821],[26.8644,-24.1786],[26.8655,-24.172],[26.871,-24.1715],[26.8737,-24.1706],[26.8782,-24.1669],[26.8787,-24.1656],[26.8791,-24.1601],[26.8759,-24.1526],[26.8748,-24.1475],[26.872,-24.1466],[26.8706,-24.1454],[26.8665,-24.1437],[26.863,-24.1405],[26.8617,-24.1375],[26.8648,-24.1316],[26.8675,-24.1245],[26.8674,-24.123],[26.8642,-24.1124],[26.8626,-24.11],[26.8603,-24.1083],[26.8602,-24.1066],[26.8624,-24.1005],[26.8632,-24.0997],[26.8689,-24.0987],[26.8729,-24.0976],[26.8817,-24.0941],[26.8834,-24.0924],[26.8855,-24.0877],[26.8869,-24.083],[26.8878,-24.0781],[26.8886,-24.0759],[26.889,-24.0716],[26.8883,-24.067],[26.8889,-24.0618],[26.8884,-24.0589],[26.889,-24.0556],[26.8906,-24.0515],[26.8932,-24.0474],[26.8938,-24.0452],[26.8969,-24.0413],[26.9014,-24.0369],[26.903,-24.0338],[26.9047,-24.032],[26.9089,-24.0292],[26.9105,-24.0202],[26.9113,-24.0192],[26.9117,-24.0134],[26.9125,-24.0114],[26.9101,-24.0045],[26.9104,-24.0002],[26.9124,-23.9977],[26.9128,-23.9953],[26.9123,-23.9918],[26.9113,-23.9907],[26.9113,-23.9871],[26.9125,-23.9855],[26.9123,-23.9804],[26.9135,-23.9767],[26.9146,-23.9714],[26.9192,-23.9672],[26.9221,-23.9632],[26.9237,-23.9633],[26.9268,-23.9613],[26.9312,-23.957],[26.9325,-23.9531],[26.9312,-23.9403],[26.9317,-23.9368],[26.9307,-23.9348],[26.93,-23.9306],[26.9277,-23.9236],[26.9292,-23.9198],[26.9328,-23.9153],[26.938,-23.9096],[26.9404,-23.9047],[26.9423,-23.9037],[26.942,-23.9004],[26.9424,-23.8971],[26.9412,-23.894],[26.9434,-23.89],[26.9425,-23.8872],[26.9448,-23.8841],[26.9486,-23.8804],[26.9514,-23.8795],[26.9553,-23.8736],[26.954,-23.8695],[26.9539,-23.8672],[26.951,-23.8627],[26.9484,-23.8602],[26.9424,-23.8591],[26.9404,-23.8576],[26.9365,-23.8564],[26.9339,-23.8568],[26.9329,-23.8546],[26.9323,-23.8511],[26.9365,-23.8473],[26.9381,-23.8448],[26.9403,-23.8437],[26.9514,-23.841],[26.9562,-23.8328],[26.9585,-23.8299],[26.9541,-23.8259],[26.9488,-23.8235],[26.9493,-23.8177],[26.9492,-23.8134],[26.9522,-23.8089],[26.9533,-23.8061],[26.9532,-23.8001],[26.9517,-23.7945],[26.9542,-23.7893],[26.9575,-23.784],[26.9597,-23.7823],[26.964,-23.7772],[26.9634,-23.7743],[26.9641,-23.7708],[26.9655,-23.7693],[26.9647,-23.7656],[26.9628,-23.7635],[26.9639,-23.7577],[26.9654,-23.7545],[26.9642,-23.7515],[26.9629,-23.7502],[26.9614,-23.7469],[26.9637,-23.7426],[26.9648,-23.7389],[26.9644,-23.7367],[26.9667,-23.7333],[26.9666,-23.7299],[26.9696,-23.729],[26.9704,-23.7259],[26.9684,-23.7239],[26.9698,-23.7195],[26.9701,-23.7163],[26.9743,-23.7134],[26.9737,-23.7078],[26.9711,-23.7028],[26.9742,-23.7002],[26.9794,-23.6966],[26.9877,-23.6943],[26.9895,-23.6927],[26.9932,-23.6919],[26.9952,-23.6904],[27.0011,-23.689],[27.0026,-23.687],[27.0002,-23.6807],[26.9979,-23.6783],[26.9979,-23.6762],[26.9996,-23.6715],[27.0014,-23.6708],[27.0027,-23.6674],[27.0025,-23.6642],[27.0008,-23.6607],[27.0009,-23.6579],[26.9978,-23.6563],[26.9958,-23.6537],[26.9972,-23.6518],[26.9997,-23.6524],[27.0023,-23.6451],[27.0039,-23.6437],[27.0063,-23.6437],[27.0081,-23.6427],[27.0094,-23.6393],[27.0115,-23.6378],[27.0146,-23.6396],[27.0194,-23.6438],[27.0245,-23.6436],[27.0259,-23.6447],[27.0254,-23.6473],[27.026,-23.651],[27.0213,-23.654],[27.022,-23.6563],[27.0274,-23.66],[27.031,-23.6598],[27.0322,-23.6575],[27.034,-23.6563],[27.0366,-23.6565],[27.0356,-23.6615],[27.0351,-23.6671],[27.0334,-23.6699],[27.0323,-23.6736],[27.0311,-23.6752],[27.0316,-23.677],[27.038,-23.6827],[27.0419,-23.6835],[27.0456,-23.6827],[27.0492,-23.6807],[27.0512,-23.679],[27.0588,-23.6762],[27.0632,-23.6719],[27.0658,-23.6705],[27.0707,-23.6706],[27.0722,-23.6659],[27.0746,-23.6628],[27.0775,-23.6612],[27.0775,-23.6576],[27.0745,-23.6558],[27.0765,-23.6539],[27.0783,-23.6539],[27.0809,-23.6554],[27.0811,-23.6518],[27.079,-23.6489],[27.0794,-23.6458],[27.0811,-23.6433],[27.0787,-23.6404],[27.0772,-23.6371],[27.0751,-23.6355],[27.0743,-23.6321],[27.0699,-23.6302],[27.0688,-23.6256],[27.0657,-23.6261],[27.0628,-23.6253],[27.0612,-23.6216],[27.0615,-23.6167],[27.0594,-23.6126],[27.0619,-23.6114],[27.0655,-23.6114],[27.0715,-23.6095],[27.0713,-23.6126],[27.074,-23.6147],[27.0764,-23.6147],[27.08,-23.6135],[27.084,-23.6107],[27.0825,-23.609],[27.0797,-23.6072],[27.0804,-23.6027],[27.0795,-23.6005],[27.0816,-23.5989],[27.086,-23.5993],[27.0896,-23.6007],[27.0941,-23.6006],[27.0965,-23.6013],[27.0976,-23.6028],[27.0997,-23.6029],[27.0993,-23.6002],[27.1009,-23.5982],[27.1055,-23.5975],[27.1073,-23.5951],[27.1076,-23.5919],[27.1086,-23.5899],[27.1066,-23.5842],[27.1065,-23.5828],[27.1083,-23.5793],[27.1073,-23.5732],[27.1081,-23.57],[27.1133,-23.5705],[27.1164,-23.5675],[27.1172,-23.5652],[27.1168,-23.5625],[27.1178,-23.5621],[27.1208,-23.5661],[27.1253,-23.569],[27.1289,-23.5685],[27.1312,-23.5694],[27.1315,-23.5713],[27.1296,-23.5735],[27.1311,-23.5741],[27.1348,-23.5732],[27.1381,-23.5741],[27.14,-23.5729],[27.1433,-23.5734],[27.1448,-23.5748],[27.1498,-23.5728],[27.1511,-23.5703],[27.1505,-23.5679],[27.1527,-23.5674],[27.1533,-23.5643],[27.15,-23.5594],[27.1497,-23.5566],[27.148,-23.5512],[27.1425,-23.5523],[27.14,-23.5533],[27.1361,-23.5456],[27.1347,-23.5438],[27.1342,-23.5415],[27.134,-23.5366],[27.1348,-23.5336],[27.1365,-23.5313],[27.1392,-23.53],[27.1384,-23.5271],[27.1361,-23.5272],[27.1343,-23.5287],[27.133,-23.5279],[27.1338,-23.5254],[27.1366,-23.5229],[27.139,-23.5229],[27.1437,-23.5248],[27.1472,-23.5236],[27.1488,-23.5258],[27.1531,-23.5289],[27.1546,-23.5312],[27.1545,-23.534],[27.1556,-23.5352],[27.1591,-23.534],[27.1589,-23.5362],[27.1612,-23.5372],[27.1644,-23.5366],[27.1657,-23.5314],[27.1673,-23.529],[27.166,-23.525],[27.1732,-23.5222],[27.1762,-23.5251],[27.179,-23.526],[27.1876,-23.5326],[27.1918,-23.534],[27.1937,-23.5315],[27.1962,-23.5344],[27.1991,-23.535],[27.2021,-23.5328],[27.2009,-23.5302],[27.2019,-23.5287],[27.2053,-23.5267],[27.2104,-23.5274],[27.2109,-23.526],[27.2091,-23.5214],[27.2031,-23.5193],[27.1996,-23.5155],[27.1943,-23.515],[27.1928,-23.5092],[27.1935,-23.5012],[27.1921,-23.4985],[27.197,-23.4961],[27.2016,-23.4947],[27.2037,-23.4934],[27.2073,-23.4921],[27.2093,-23.49],[27.2166,-23.4884],[27.2196,-23.4868],[27.2255,-23.4852],[27.227,-23.4855],[27.2235,-23.493],[27.2238,-23.4947],[27.2257,-23.4968],[27.2326,-23.4961],[27.2354,-23.4946],[27.2355,-23.4875],[27.2364,-23.4849],[27.2391,-23.4829],[27.2421,-23.4834],[27.2466,-23.4786],[27.2507,-23.4786],[27.2552,-23.4772],[27.2568,-23.4758],[27.2579,-23.4731],[27.2603,-23.4722],[27.261,-23.474],[27.2628,-23.4759],[27.2636,-23.4781],[27.268,-23.4778],[27.2738,-23.4754],[27.2793,-23.4721],[27.2836,-23.4711],[27.2851,-23.4696],[27.2856,-23.4672],[27.2869,-23.4656],[27.2876,-23.4623],[27.2944,-23.4601],[27.2969,-23.4604],[27.303,-23.4627],[27.3049,-23.4599],[27.306,-23.4567],[27.3054,-23.4532],[27.3084,-23.4509],[27.3106,-23.4523],[27.3129,-23.451],[27.3131,-23.4497],[27.3107,-23.4484],[27.3117,-23.4464],[27.3135,-23.4473],[27.3161,-23.447],[27.3166,-23.4446],[27.3141,-23.4428],[27.3129,-23.44],[27.3157,-23.4365],[27.3148,-23.4346],[27.3118,-23.4336],[27.3127,-23.4309],[27.3157,-23.4298],[27.3167,-23.426],[27.3189,-23.4238],[27.3201,-23.4207],[27.3241,-23.4182],[27.3258,-23.4148],[27.3242,-23.4112],[27.3254,-23.4087],[27.3252,-23.4066],[27.3266,-23.405],[27.3298,-23.4031],[27.3329,-23.4026],[27.3359,-23.4009],[27.3388,-23.4003],[27.3422,-23.3988],[27.3446,-23.3987],[27.3488,-23.3975],[27.3523,-23.3977],[27.3563,-23.3994],[27.357,-23.4024],[27.3555,-23.4037],[27.3567,-23.4067],[27.3564,-23.4106],[27.3552,-23.4123],[27.3527,-23.4133],[27.3502,-23.4209],[27.3482,-23.4221],[27.3482,-23.4238],[27.3504,-23.4266],[27.3536,-23.4275],[27.3599,-23.4278],[27.3637,-23.4272],[27.3698,-23.427],[27.371,-23.4266],[27.3743,-23.4271],[27.3762,-23.4224],[27.3795,-23.4216],[27.3807,-23.42],[27.3728,-23.41],[27.3731,-23.4076],[27.3761,-23.405],[27.3769,-23.4029],[27.377,-23.3995],[27.3792,-23.3973],[27.3833,-23.3947],[27.3855,-23.3913],[27.388,-23.3899],[27.3957,-23.39],[27.3996,-23.3888],[27.4072,-23.3888],[27.4103,-23.3904],[27.4108,-23.3942],[27.4102,-23.3996],[27.4086,-23.4022],[27.401,-23.412],[27.4012,-23.413],[27.404,-23.4165],[27.4051,-23.4197],[27.4083,-23.4229],[27.4121,-23.4253],[27.4173,-23.4266],[27.4218,-23.4265],[27.427,-23.4258],[27.4282,-23.4249],[27.4306,-23.4186],[27.4309,-23.4159],[27.4333,-23.4129],[27.4336,-23.408],[27.4352,-23.3974],[27.4368,-23.3967],[27.4409,-23.3931],[27.4421,-23.3883],[27.442,-23.3847],[27.4453,-23.3849],[27.4477,-23.3865],[27.4508,-23.3857],[27.4553,-23.3858],[27.457,-23.3842],[27.4612,-23.384],[27.4645,-23.3859],[27.4688,-23.3861],[27.4703,-23.3847],[27.4753,-23.3865],[27.478,-23.3858],[27.4806,-23.3861],[27.4828,-23.3846],[27.4932,-23.387],[27.4941,-23.3843],[27.4969,-23.3843],[27.5044,-23.3881],[27.5138,-23.3856],[27.5186,-23.3854],[27.522,-23.3873],[27.5249,-23.3869],[27.5286,-23.3853],[27.5286,-23.3828],[27.5323,-23.3778],[27.5366,-23.3757],[27.5372,-23.371],[27.5385,-23.3658],[27.5416,-23.365],[27.548,-23.3582],[27.5535,-23.3574],[27.555,-23.3555],[27.5552,-23.3533],[27.5581,-23.3502],[27.5621,-23.3499],[27.5639,-23.3482],[27.5651,-23.3446],[27.5676,-23.3397],[27.5684,-23.332],[27.5707,-23.326],[27.5698,-23.3246],[27.5618,-23.3174],[27.5603,-23.3154],[27.5604,-23.3137],[27.5622,-23.311],[27.5638,-23.3058],[27.5683,-23.303],[27.568,-23.3004],[27.569,-23.2982],[27.5731,-23.2942],[27.5726,-23.2904],[27.5755,-23.2843],[27.5763,-23.2809],[27.5754,-23.2767],[27.5741,-23.2756],[27.573,-23.2711],[27.574,-23.2697],[27.5729,-23.2653],[27.5756,-23.2613],[27.5808,-23.2582],[27.5825,-23.2576],[27.5864,-23.2583],[27.589,-23.2565],[27.5913,-23.2569],[27.5938,-23.2552],[27.5972,-23.2517],[27.5981,-23.2497],[27.6007,-23.2479],[27.6016,-23.2462],[27.6009,-23.2434],[27.5964,-23.2354],[27.5965,-23.2282],[27.5978,-23.2261],[27.5966,-23.2237],[27.5979,-23.2197],[27.5993,-23.2179],[27.6036,-23.2158],[27.6048,-23.2159],[27.6095,-23.2186],[27.6131,-23.2197],[27.6169,-23.2196],[27.6194,-23.2181],[27.6224,-23.2185],[27.6248,-23.2207],[27.6295,-23.2212],[27.6315,-23.2234],[27.639,-23.2261],[27.6414,-23.2248],[27.6471,-23.2258],[27.6505,-23.2252],[27.6524,-23.2219],[27.656,-23.2215],[27.6583,-23.2222],[27.6604,-23.2207],[27.6602,-23.2178],[27.6623,-23.2163],[27.6669,-23.2111],[27.6677,-23.2089],[27.6679,-23.2049],[27.672,-23.2005],[27.6822,-23.1976],[27.6864,-23.1973],[27.6893,-23.1962],[27.6967,-23.1993],[27.6998,-23.2],[27.7037,-23.2037],[27.7069,-23.2124],[27.7113,-23.2201],[27.712,-23.2221],[27.7118,-23.226],[27.7134,-23.2282],[27.7154,-23.2292],[27.7177,-23.2293],[27.719,-23.2304],[27.7221,-23.2289],[27.7244,-23.2292],[27.7262,-23.2329],[27.73,-23.2325],[27.7331,-23.2332],[27.7365,-23.2329],[27.7387,-23.2314],[27.7416,-23.2304],[27.7512,-23.2205],[27.7526,-23.2176],[27.7511,-23.213],[27.7508,-23.2057],[27.7536,-23.2042],[27.7564,-23.1985],[27.7586,-23.1972],[27.76,-23.1952],[27.7596,-23.1906],[27.7657,-23.1856],[27.768,-23.1849],[27.7694,-23.1826],[27.7692,-23.1812],[27.7712,-23.1797],[27.7806,-23.1772],[27.7846,-23.1725],[27.7858,-23.168],[27.7856,-23.1647],[27.7846,-23.1628],[27.7833,-23.1577],[27.7818,-23.1557],[27.7778,-23.1525],[27.7701,-23.1451],[27.7653,-23.1424],[27.7653,-23.1368],[27.7673,-23.1335],[27.7745,-23.1309],[27.7785,-23.1318],[27.7799,-23.133],[27.7808,-23.1358],[27.7794,-23.1386],[27.7803,-23.1423],[27.7836,-23.143],[27.7876,-23.141],[27.7914,-23.1412],[27.7938,-23.1375],[27.7985,-23.1367],[27.8066,-23.1358],[27.8097,-23.1344],[27.8115,-23.1309],[27.8184,-23.1281],[27.8196,-23.1243],[27.8195,-23.1209],[27.8133,-23.1154],[27.8121,-23.1095],[27.8141,-23.1065],[27.8196,-23.1046],[27.8223,-23.108],[27.8247,-23.1081],[27.8273,-23.1071],[27.8305,-23.1076],[27.8327,-23.1089],[27.8356,-23.1082],[27.8442,-23.1051],[27.8479,-23.1048],[27.8509,-23.1026],[27.8531,-23.1001],[27.8582,-23.0989],[27.8611,-23.0971],[27.8632,-23.0969],[27.8693,-23.0944],[27.8727,-23.0925],[27.8756,-23.0922],[27.8811,-23.0905],[27.887,-23.0864],[27.8934,-23.0829],[27.8949,-23.0828],[27.8974,-23.0795],[27.8997,-23.0781],[27.9044,-23.0765],[27.9082,-23.076],[27.9124,-23.0736],[27.9159,-23.0699],[27.9205,-23.0678],[27.926,-23.0591],[27.9298,-23.0554],[27.9346,-23.0529],[27.9383,-23.0483],[27.9424,-23.0392],[27.9435,-23.0362],[27.9436,-23.0313],[27.9431,-23.0282],[27.9391,-23.0187],[27.9377,-23.0162],[27.9373,-23.0126],[27.938,-23.0106],[27.9374,-23.0073],[27.9386,-23.0033],[27.9414,-23.0005],[27.9427,-22.9942],[27.9408,-22.9841],[27.9406,-22.9806],[27.9372,-22.972],[27.9353,-22.9656],[27.9358,-22.9618],[27.9398,-22.9563],[27.9432,-22.9563],[27.9451,-22.9597],[27.9484,-22.9611],[27.955,-22.9616],[27.9597,-22.9606],[27.9662,-22.9546],[27.9725,-22.9512],[27.9794,-22.9482],[27.9817,-22.9457],[27.9868,-22.9418],[27.9936,-22.9374],[27.9955,-22.9365],[28.0033,-22.9346],[28.0138,-22.931],[28.0158,-22.929],[28.0206,-22.9233],[28.0248,-22.9197],[28.0313,-22.9159],[28.0335,-22.9152],[28.0368,-22.913],[28.0407,-22.9088],[28.0431,-22.9046],[28.0456,-22.8986],[28.0451,-22.894],[28.0469,-22.8913],[28.05,-22.8891],[28.0513,-22.8838],[28.0507,-22.881],[28.0475,-22.8768],[28.0445,-22.8719],[28.0462,-22.868],[28.0474,-22.8606],[28.0463,-22.8569],[28.0439,-22.853],[28.0412,-22.8479],[28.0391,-22.8419],[28.0405,-22.8348],[28.0423,-22.8323],[28.0457,-22.8301],[28.0515,-22.8291],[28.0562,-22.8278],[28.0621,-22.8287],[28.0649,-22.8288],[28.0691,-22.8271],[28.0714,-22.8239],[28.0755,-22.8213],[28.0791,-22.8201],[28.0826,-22.8172],[28.0866,-22.8153],[28.0915,-22.8148],[28.0948,-22.8137],[28.0969,-22.8111],[28.1029,-22.8071],[28.1052,-22.8046],[28.1101,-22.8005],[28.1129,-22.7972],[28.1175,-22.7911],[28.1177,-22.7896],[28.1195,-22.7881],[28.1214,-22.7845],[28.125,-22.7828],[28.1279,-22.7825],[28.1317,-22.7812],[28.1343,-22.7796],[28.1365,-22.7792],[28.1451,-22.7748],[28.1496,-22.7704],[28.1511,-22.7695],[28.1567,-22.7606],[28.1624,-22.7559],[28.1632,-22.7508],[28.1643,-22.7474],[28.1636,-22.7397],[28.1616,-22.7333],[28.1582,-22.7243],[28.1583,-22.7223],[28.1597,-22.7183],[28.164,-22.7116],[28.1686,-22.7058],[28.1759,-22.6984],[28.1783,-22.6955],[28.1797,-22.6922],[28.1826,-22.6886],[28.1849,-22.6873],[28.1891,-22.6838],[28.191,-22.6828],[28.1964,-22.6791],[28.2015,-22.674],[28.2033,-22.6712],[28.2097,-22.6645],[28.2127,-22.6638],[28.2184,-22.6647],[28.2212,-22.6636],[28.2261,-22.6605],[28.2323,-22.6588],[28.2366,-22.657],[28.2406,-22.6562],[28.2457,-22.6567],[28.2474,-22.6555],[28.2499,-22.6514],[28.2527,-22.6481],[28.2572,-22.6437],[28.261,-22.6429],[28.266,-22.6401],[28.2695,-22.6355],[28.271,-22.6325],[28.2715,-22.6282],[28.2739,-22.6213],[28.2768,-22.6166],[28.2792,-22.6146],[28.2842,-22.6143],[28.2875,-22.613],[28.2929,-22.6117],[28.2988,-22.6087],[28.3057,-22.6092],[28.3112,-22.6063],[28.3174,-22.6014],[28.3257,-22.5971],[28.3289,-22.5946],[28.3327,-22.591],[28.3368,-22.5854],[28.3391,-22.5811],[28.3407,-22.576],[28.3426,-22.5737],[28.3479,-22.5718],[28.354,-22.5717],[28.3595,-22.5728],[28.3665,-22.573],[28.3713,-22.5721],[28.3774,-22.57],[28.3818,-22.5693],[28.3859,-22.5693],[28.3928,-22.5705],[28.3965,-22.5705],[28.4061,-22.5696],[28.4116,-22.5711],[28.4226,-22.5731],[28.4359,-22.5711],[28.4428,-22.569],[28.45,-22.5694],[28.4529,-22.5705],[28.4558,-22.5723],[28.4611,-22.5726],[28.4637,-22.572],[28.468,-22.5719],[28.4754,-22.5707],[28.48,-22.571],[28.4829,-22.5718],[28.491,-22.5755],[28.4989,-22.58],[28.5027,-22.5831],[28.5058,-22.5869],[28.509,-22.5891],[28.515,-22.5891],[28.518,-22.5878],[28.5235,-22.5874],[28.5277,-22.5852],[28.5328,-22.5816],[28.5413,-22.5789],[28.5463,-22.5753],[28.5485,-22.5725],[28.5531,-22.5697],[28.557,-22.5667],[28.5602,-22.5629],[28.5627,-22.5614],[28.5712,-22.5598],[28.585,-22.5603],[28.5906,-22.5611],[28.6007,-22.561],[28.6089,-22.5622],[28.6174,-22.5625],[28.6254,-22.5611],[28.633,-22.5587],[28.6393,-22.5587],[28.6427,-22.5574],[28.6525,-22.5523],[28.658,-22.5483],[28.6634,-22.5407],[28.6639,-22.5394],[28.6687,-22.5354],[28.6709,-22.5341],[28.6765,-22.5322],[28.6808,-22.532],[28.686,-22.5339],[28.6878,-22.5335],[28.6914,-22.5315],[28.6974,-22.5274],[28.7005,-22.5264],[28.7011,-22.5206],[28.7064,-22.5168],[28.7104,-22.5148],[28.7188,-22.5132],[28.7223,-22.512],[28.7389,-22.5041],[28.7448,-22.5035],[28.7533,-22.5035],[28.7566,-22.5027],[28.7602,-22.5031],[28.7647,-22.501],[28.7719,-22.5003],[28.7762,-22.5007],[28.7847,-22.4978],[28.7901,-22.4964],[28.7967,-22.4952],[28.8068,-22.4928],[28.8124,-22.4917],[28.8183,-22.4915],[28.8228,-22.4908],[28.8311,-22.4883],[28.8332,-22.4849],[28.8338,-22.4809],[28.8334,-22.4788],[28.8297,-22.473],[28.8287,-22.4691],[28.8294,-22.4653],[28.8325,-22.4618],[28.8402,-22.4583],[28.8453,-22.4566],[28.855,-22.4516],[28.8621,-22.4494],[28.8678,-22.4479],[28.8708,-22.4476],[28.8777,-22.4474],[28.8809,-22.4478],[28.8867,-22.4505],[28.8923,-22.4515],[28.8993,-22.453],[28.9029,-22.455],[28.9076,-22.4586],[28.9092,-22.4604],[28.9118,-22.4614],[28.9168,-22.4614],[28.9219,-22.4584],[28.9233,-22.457],[28.9245,-22.4541],[28.9277,-22.4494],[28.9325,-22.4446],[28.9341,-22.4417],[28.9361,-22.4406],[28.9397,-22.4366],[28.9431,-22.4339],[28.9446,-22.4315],[28.9443,-22.4268],[28.9458,-22.4239],[28.9491,-22.4203],[28.9512,-22.4155],[28.9516,-22.4083],[28.9524,-22.4041],[28.9562,-22.3979],[28.9599,-22.393],[28.9664,-22.3858],[28.9714,-22.377],[28.9722,-22.3727],[28.9718,-22.368],[28.9703,-22.3642],[28.9694,-22.359],[28.9681,-22.3541],[28.9662,-22.3509],[28.9645,-22.3495],[28.9635,-22.3472],[28.9642,-22.3384],[28.9633,-22.3314],[28.9627,-22.3295],[28.9638,-22.3192],[28.9655,-22.3127],[28.9666,-22.3075],[28.9687,-22.305],[28.9742,-22.302],[28.9761,-22.3005],[28.9775,-22.2979],[28.9779,-22.2954],[28.9776,-22.2913],[28.9787,-22.2895],[28.9807,-22.2882],[28.9817,-22.2856],[28.9849,-22.284],[28.9894,-22.2837],[28.9974,-22.2799],[29.0028,-22.2747],[29.0045,-22.2675],[29.0042,-22.2664],[29.0052,-22.2621],[29.0079,-22.261],[29.0134,-22.2575],[29.0138,-22.2538],[29.0132,-22.2409],[29.0128,-22.2374],[29.0139,-22.2314],[29.0146,-22.2303],[29.0194,-22.2262],[29.0217,-22.2263],[29.0268,-22.229],[29.0294,-22.228],[29.0304,-22.2259],[29.0304,-22.2214],[29.0322,-22.219],[29.0369,-22.2163],[29.0454,-22.2169],[29.0484,-22.2191],[29.056,-22.2182],[29.0631,-22.2188],[29.0711,-22.2182],[29.0782,-22.2208],[29.0813,-22.2211],[29.0857,-22.2208],[29.0988,-22.2164],[29.1051,-22.2127],[29.1087,-22.2124],[29.1149,-22.2133],[29.1165,-22.2139],[29.1249,-22.2146],[29.1306,-22.2136],[29.1345,-22.2138],[29.1407,-22.216],[29.1454,-22.2165],[29.15,-22.2159],[29.155,-22.2145],[29.1585,-22.2125],[29.1607,-22.2099],[29.1662,-22.2074],[29.173,-22.2021],[29.1772,-22.1976],[29.1805,-22.1928],[29.1826,-22.1914],[29.1866,-22.1898],[29.1908,-22.1858],[29.1946,-22.1841],[29.1988,-22.1833],[29.2082,-22.1827],[29.2115,-22.182],[29.2172,-22.1783],[29.2219,-22.1782],[29.227,-22.1788],[29.2383,-22.1818],[29.2464,-22.1868],[29.2517,-22.1891],[29.2557,-22.193],[29.259,-22.1933],[29.266,-22.1894],[29.2687,-22.1902],[29.2712,-22.1932],[29.2772,-22.1926],[29.2805,-22.1888],[29.2842,-22.1861],[29.2862,-22.186],[29.2892,-22.1877],[29.2933,-22.1879],[29.2984,-22.186],[29.3019,-22.1861],[29.3086,-22.1883],[29.3122,-22.1881],[29.3171,-22.187],[29.3206,-22.187],[29.3241,-22.1891],[29.3252,-22.1922],[29.326,-22.1979],[29.3275,-22.2003],[29.332,-22.2042],[29.3361,-22.2046],[29.3402,-22.2021],[29.3418,-22.2],[29.3461,-22.193],[29.3486,-22.1927],[29.3501,-22.1938],[29.3515,-22.1968],[29.3528,-22.198],[29.3591,-22.1997],[29.3652,-22.1989],[29.3714,-22.1967],[29.3856,-22.1921],[29.3884,-22.1908],[29.3992,-22.1842],[29.4058,-22.1833],[29.408,-22.1818],[29.4096,-22.1782],[29.4148,-22.1758],[29.4197,-22.1742],[29.4246,-22.1729],[29.4502,-22.1689],[29.4556,-22.1676],[29.4641,-22.1661],[29.4722,-22.1656],[29.4757,-22.1659],[29.4845,-22.1676],[29.4905,-22.1696],[29.4991,-22.172],[29.5002,-22.173],[29.5063,-22.1755],[29.5108,-22.1769],[29.5179,-22.1781],[29.5256,-22.1783],[29.528,-22.178],[29.5316,-22.1754],[29.5348,-22.1703],[29.5352,-22.1665],[29.5341,-22.1588],[29.5355,-22.1552],[29.5392,-22.1527],[29.541,-22.1523],[29.5556,-22.1511],[29.561,-22.1502],[29.5638,-22.1494],[29.5676,-22.1472],[29.5733,-22.1431],[29.5788,-22.1409],[29.5826,-22.1412],[29.5883,-22.1434],[29.5917,-22.1456],[29.5998,-22.1532],[29.6054,-22.1557],[29.6088,-22.156],[29.614,-22.1544],[29.6165,-22.1521],[29.62,-22.1447],[29.6221,-22.1415],[29.6254,-22.138],[29.6287,-22.1353],[29.6327,-22.1335],[29.6399,-22.1325],[29.6426,-22.1314],[29.6472,-22.1283],[29.6544,-22.125],[29.6588,-22.1254],[29.6628,-22.1276],[29.6663,-22.1317],[29.6701,-22.1373],[29.672,-22.1387],[29.677,-22.139],[29.6922,-22.1364],[29.7013,-22.1373],[29.7076,-22.1405],[29.716,-22.1433],[29.7194,-22.1433],[29.7244,-22.1422],[29.7331,-22.1413],[29.7395,-22.1418],[29.7497,-22.1409],[29.7605,-22.1405],[29.7692,-22.1405],[29.7736,-22.1414],[29.7765,-22.143],[29.7831,-22.1473],[29.7882,-22.1514],[29.7954,-22.1558],[29.7984,-22.1579],[29.8029,-22.1637],[29.8052,-22.1655],[29.8127,-22.169],[29.825,-22.1733],[29.8298,-22.1747],[29.8339,-22.1751],[29.8393,-22.1748],[29.8531,-22.1744],[29.8599,-22.1752],[29.8638,-22.178],[29.8688,-22.1833],[29.8746,-22.1886],[29.8791,-22.1921],[29.8845,-22.1946],[29.8903,-22.1952],[29.8964,-22.1938],[29.9072,-22.1909],[29.916,-22.1896],[29.9231,-22.1892],[29.9266,-22.1903],[29.9352,-22.1962],[29.9397,-22.2002],[29.9482,-22.2055],[29.954,-22.2096],[29.9605,-22.213],[29.9678,-22.2211],[29.9699,-22.2242],[29.9738,-22.2244],[29.9793,-22.2236],[29.9819,-22.2235],[29.9892,-22.225],[29.9998,-22.2288],[30.0021,-22.2277],[30.0112,-22.2274],[30.015,-22.2279],[30.0179,-22.2291],[30.0198,-22.2334],[30.0192,-22.2414],[30.0194,-22.2439],[30.0219,-22.2498],[30.0256,-22.2536],[30.0278,-22.255],[30.0315,-22.256],[30.0354,-22.2559],[30.0451,-22.2551],[30.0518,-22.2551],[30.0547,-22.2556],[30.0611,-22.2592],[30.0645,-22.2622],[30.0693,-22.268],[30.0742,-22.273],[30.0785,-22.276],[30.0826,-22.2779],[30.092,-22.2814],[30.0974,-22.2842],[30.1013,-22.2867],[30.1052,-22.2905],[30.1098,-22.296],[30.1216,-22.3087],[30.1238,-22.3102],[30.1291,-22.3115],[30.133,-22.311],[30.1383,-22.3086],[30.1467,-22.3037],[30.1502,-22.3019],[30.1552,-22.3003],[30.1637,-22.2991],[30.169,-22.2989],[30.1834,-22.2972],[30.1878,-22.2964],[30.1932,-22.2961],[30.2032,-22.2965],[30.2127,-22.2958],[30.22,-22.2949],[30.2275,-22.295],[30.2322,-22.2963],[30.2345,-22.2978],[30.2371,-22.301],[30.2397,-22.3076],[30.2419,-22.3094],[30.2474,-22.3124],[30.2552,-22.318],[30.2576,-22.3207],[30.2626,-22.3297],[30.2662,-22.3374],[30.2711,-22.3439],[30.2737,-22.3469],[30.2796,-22.352],[30.2829,-22.354],[30.291,-22.3563],[30.2944,-22.3563],[30.302,-22.3544],[30.306,-22.3525],[30.3102,-22.3498],[30.3163,-22.3477],[30.3195,-22.3478],[30.331,-22.3501],[30.3394,-22.3507],[30.3432,-22.3505],[30.3532,-22.3486],[30.3622,-22.3482],[30.3668,-22.349],[30.3747,-22.3508],[30.379,-22.3513],[30.3829,-22.3507],[30.3916,-22.347],[30.3992,-22.3447],[30.4101,-22.3424],[30.428,-22.3389],[30.4366,-22.3368],[30.4454,-22.334],[30.4522,-22.3315],[30.4593,-22.328],[30.4669,-22.3235],[30.4757,-22.3191],[30.483,-22.3169],[30.4894,-22.3164],[30.4919,-22.3166],[30.4969,-22.3185],[30.4997,-22.3202],[30.5058,-22.3226],[30.5165,-22.3229],[30.5237,-22.3244],[30.5326,-22.3269],[30.5396,-22.3284],[30.5494,-22.3313],[30.5546,-22.3315],[30.5567,-22.3304],[30.5603,-22.3273],[30.5625,-22.3242],[30.5671,-22.3216],[30.5754,-22.3204],[30.5784,-22.3192],[30.5874,-22.3188],[30.5947,-22.3197],[30.6024,-22.3212],[30.6058,-22.3223],[30.6091,-22.3242],[30.6129,-22.3281],[30.6196,-22.3334],[30.6237,-22.3357],[30.6261,-22.3363],[30.6317,-22.3363],[30.6367,-22.3342],[30.6425,-22.3288],[30.6507,-22.318],[30.6526,-22.3161],[30.6577,-22.3129],[30.6633,-22.311],[30.6669,-22.3104],[30.6767,-22.3117],[30.6818,-22.3129],[30.704,-22.3171],[30.708,-22.3172],[30.713,-22.3163],[30.7168,-22.3149],[30.727,-22.3104],[30.7417,-22.3084],[30.7498,-22.3079],[30.7577,-22.3049],[30.761,-22.3041],[30.7691,-22.3045],[30.7744,-22.3044],[30.7781,-22.3038],[30.7847,-22.3019],[30.7882,-22.3014],[30.7931,-22.3013],[30.7991,-22.3003],[30.804,-22.2985],[30.8112,-22.2967],[30.8254,-22.2935],[30.8336,-22.2921],[30.8392,-22.2921],[30.8445,-22.2932],[30.8612,-22.2974],[30.8654,-22.2977],[30.8714,-22.2992],[30.8805,-22.3041],[30.8823,-22.3048],[30.8855,-22.3043],[30.8918,-22.3006],[30.8953,-22.299],[30.8979,-22.297],[30.9002,-22.2964],[30.9055,-22.2967],[30.9114,-22.2984],[30.9169,-22.3006],[30.9231,-22.301],[30.9291,-22.3011],[30.9319,-22.3018],[30.9338,-22.303],[30.9416,-22.3125],[30.9454,-22.3147],[30.9481,-22.3153],[30.9589,-22.3149],[30.9632,-22.3141],[30.9669,-22.3143],[30.9701,-22.3165],[30.9726,-22.323],[30.9762,-22.3262],[30.9809,-22.3276],[30.9865,-22.3276],[30.9915,-22.3257],[30.9929,-22.3241],[30.9941,-22.3194],[30.9966,-22.3167],[30.9997,-22.3164],[31.0032,-22.3173],[31.0068,-22.3191],[31.014,-22.3213],[31.022,-22.3245],[31.0259,-22.3269],[31.0341,-22.3301],[31.0388,-22.3327],[31.0501,-22.3371],[31.0595,-22.3398],[31.0648,-22.3407],[31.068,-22.3423],[31.074,-22.3441],[31.0771,-22.3457],[31.0828,-22.3478],[31.0884,-22.349],[31.0941,-22.3487],[31.1031,-22.3457],[31.1084,-22.3432],[31.1142,-22.3417],[31.1182,-22.3396],[31.1213,-22.3388],[31.1266,-22.3366],[31.1325,-22.335],[31.1349,-22.3336],[31.141,-22.3319],[31.1471,-22.331],[31.1558,-22.3287],[31.162,-22.3284],[31.1741,-22.3315],[31.1787,-22.3337],[31.183,-22.3368],[31.1874,-22.3389],[31.1904,-22.3426],[31.1932,-22.3486],[31.1955,-22.3522],[31.1962,-22.3541],[31.2009,-22.3609],[31.2025,-22.3623],[31.2076,-22.3653],[31.2097,-22.367],[31.2162,-22.3697],[31.2209,-22.3698],[31.2287,-22.3678],[31.2311,-22.3674],[31.2401,-22.3645],[31.2484,-22.3629],[31.2539,-22.3634],[31.2631,-22.3649],[31.2685,-22.3676],[31.27,-22.3693],[31.2737,-22.3748],[31.2747,-22.3777],[31.276,-22.3847],[31.2771,-22.3878],[31.2795,-22.3925],[31.2841,-22.3988],[31.2865,-22.4036],[31.2885,-22.4059],[31.2913,-22.408],[31.298,-22.412],[31.3025,-22.4164],[31.3094,-22.422],[31.3074,-22.4235],[31.3092,-22.4276],[31.3268,-22.4804],[31.3474,-22.542],[31.4753,-22.9256],[31.5458,-23.1372],[31.5636,-23.1982],[31.5614,-23.2243],[31.5612,-23.2269],[31.5611,-23.2287],[31.5592,-23.2312],[31.5559,-23.2691],[31.5507,-23.4103],[31.561,-23.482],[31.5797,-23.5014],[31.6658,-23.5914],[31.6905,-23.6294],[31.6974,-23.7219],[31.7692,-23.8878],[31.8807,-23.9551],[31.8809,-23.9679],[31.8838,-23.9846],[31.8868,-24.0013],[31.8954,-24.0747],[31.908,-24.1824],[31.9518,-24.2509],[31.9813,-24.2973],[31.9871,-24.3022],[31.9995,-24.3747],[32.0131,-24.4546],[32.0089,-24.5752],[31.9983,-24.6897],[32.0155,-24.9251],[32.0302,-25.0657],[32.0336,-25.1325],[32.032,-25.1831],[32.0288,-25.2414],[32.0226,-25.3099],[32.018,-25.3544],[32.0159,-25.3774],[32.0146,-25.3856],[32.0135,-25.3881],[32.0088,-25.3963],[32.007,-25.3999],[31.9997,-25.4126],[31.994,-25.4231],[31.9905,-25.429],[31.9895,-25.4317],[31.989,-25.4353],[31.9895,-25.4377],[31.9796,-25.4571],[31.9789,-25.4666],[31.9774,-25.4747],[31.9776,-25.4936],[31.9774,-25.5098],[31.9813,-25.5238],[31.9958,-25.5263],[32.0009,-25.5853],[32.0056,-25.626],[32.0061,-25.6452],[31.9959,-25.6767],[31.9786,-25.6937],[31.9625,-25.7426],[31.957,-25.7598],[31.9376,-25.8186],[31.9305,-25.8408],[31.9488,-25.8884],[31.9737,-25.9532],[31.9384,-25.9687],[31.8679,-25.9996],[31.7928,-25.9531],[31.7204,-25.9081],[31.6679,-25.8754],[31.6034,-25.8353],[31.5396,-25.795],[31.4925,-25.7659],[31.4163,-25.7188],[31.3159,-25.743],[31.2749,-25.7951],[31.2636,-25.8096],[31.2104,-25.8528],[31.1846,-25.8739],[31.1532,-25.8994],[31.1266,-25.9211],[31.1226,-25.9389],[31.1208,-25.9463],[31.1176,-25.961],[31.1128,-25.9826],[31.1037,-26.0004],[31.1032,-26.0016],[31.0916,-26.023],[31.0896,-26.0262],[31.071,-26.0673],[31.0417,-26.1189],[31.0193,-26.1586],[30.9905,-26.2102],[30.982,-26.2253],[30.9684,-26.2497],[30.9614,-26.2617],[30.9211,-26.2961],[30.8957,-26.3178],[30.8919,-26.3208],[30.8769,-26.3486],[30.8676,-26.3654],[30.8576,-26.3838],[30.8359,-26.4062],[30.831,-26.4112],[30.8051,-26.4667],[30.8003,-26.5041],[30.7955,-26.5412],[30.7939,-26.5522],[30.7918,-26.5691],[30.7917,-26.5882],[30.7914,-26.6055],[30.7915,-26.6262],[30.7914,-26.6472],[30.7912,-26.6482],[30.7912,-26.6569],[30.791,-26.6873],[30.791,-26.6956],[30.7908,-26.7123],[30.7914,-26.7205],[30.7928,-26.7321],[30.7942,-26.7459],[30.7945,-26.7507],[30.7999,-26.7982],[30.8027,-26.824],[30.8071,-26.8331],[30.8132,-26.8445],[30.8204,-26.8424],[30.8248,-26.8404],[30.8306,-26.8349],[30.8345,-26.8299],[30.8361,-26.8269],[30.8408,-26.8253],[30.844,-26.8251],[30.8466,-26.8222],[30.8467,-26.8204],[30.848,-26.819],[30.854,-26.8177],[30.859,-26.819],[30.8617,-26.8187],[30.8647,-26.8165],[30.8711,-26.8099],[30.8768,-26.808],[30.8873,-26.8036],[30.8888,-26.8018],[30.8877,-26.799],[30.8896,-26.7942],[30.8889,-26.7911],[30.8897,-26.788],[30.8922,-26.7861],[30.893,-26.8053],[30.8977,-26.8273],[30.902,-26.8492],[30.9022,-26.8518],[30.9067,-26.8546],[30.9074,-26.8599],[30.9141,-26.8637],[30.9257,-26.8722],[30.9279,-26.8747],[30.9331,-26.8792],[30.9346,-26.8812],[30.9378,-26.8834],[30.9407,-26.8839],[30.9427,-26.888],[30.946,-26.8887],[30.9507,-26.8919],[30.9537,-26.8932],[30.9562,-26.8962],[30.9587,-26.8972],[30.9595,-26.8989],[30.9633,-26.9022],[30.9664,-26.9036],[30.97,-26.9067],[30.9736,-26.9082],[30.9768,-26.9216],[30.9769,-26.9472],[30.9765,-26.9534],[30.9737,-26.9645],[30.9583,-26.9921],[30.9699,-27.0123],[30.9848,-27.037],[31.0218,-27.0678],[31.0613,-27.0963],[31.0751,-27.1128],[31.0864,-27.126],[31.1506,-27.2021],[31.2229,-27.2259],[31.2678,-27.2406],[31.2743,-27.2432],[31.2928,-27.2489],[31.3639,-27.2724],[31.4053,-27.286],[31.4933,-27.3149],[31.4937,-27.3152],[31.5181,-27.3154],[31.5381,-27.3155],[31.5984,-27.3158],[31.644,-27.3161],[31.7299,-27.3165],[31.8353,-27.317],[31.9184,-27.3173],[31.9778,-27.3175],[31.9765,-27.3157],[31.9757,-27.3108],[31.9764,-27.3023],[31.9766,-27.2768],[31.9771,-27.2228],[31.9758,-27.1901],[31.9741,-27.1484],[31.977,-27.1306],[31.9767,-27.1219],[31.9745,-27.1164],[31.9796,-27.091],[31.9833,-27.0574],[31.9849,-27.0386],[31.9867,-27.0062],[31.9844,-27.0012],[32.0005,-26.9381],[31.996,-26.9241],[32.0009,-26.9032],[32.0159,-26.8199],[32.0113,-26.8102],[32.0167,-26.8078],[32.0222,-26.8071],[32.0272,-26.8058],[32.03,-26.806],[32.0352,-26.8073],[32.0366,-26.8085],[32.0387,-26.8122],[32.0413,-26.8146],[32.0469,-26.8177],[32.0497,-26.8183],[32.054,-26.8184],[32.0587,-26.8177],[32.0614,-26.8162],[32.0629,-26.814],[32.0653,-26.8119],[32.0712,-26.8098],[32.0795,-26.8082],[32.0851,-26.8074],[32.0926,-26.8049],[32.097,-26.8044],[32.1007,-26.8053],[32.1035,-26.8073],[32.1052,-26.8093],[32.1065,-26.8123],[32.1076,-26.8189],[32.1084,-26.821],[32.113,-26.8272],[32.1164,-26.8323],[32.1202,-26.8388],[32.1245,-26.8402],[32.1317,-26.8401],[32.1389,-26.8405],[32.1414,-26.8414],[32.1421,-26.8426],[32.1435,-26.8481],[32.1454,-26.8501],[32.1489,-26.8519],[32.1547,-26.8559],[32.1624,-26.8588],[32.1688,-26.8606],[32.1755,-26.8616],[32.1816,-26.8631],[32.1863,-26.863],[32.1906,-26.8613],[32.1954,-26.8577],[32.1996,-26.856],[32.2037,-26.8554],[32.2053,-26.8539],[32.2051,-26.8505],[32.2056,-26.8477],[32.2076,-26.8448],[32.2081,-26.8401],[32.2144,-26.8351],[32.2176,-26.8333],[32.2203,-26.8328],[32.2274,-26.8352],[32.2329,-26.8377],[32.2383,-26.8392],[32.2425,-26.8392],[32.2486,-26.8404],[32.2527,-26.8427],[32.2541,-26.8445],[32.2553,-26.8477],[32.2583,-26.8486],[32.2643,-26.8474],[32.2711,-26.8491],[32.2753,-26.8496],[32.2794,-26.8487],[32.2836,-26.85],[32.285,-26.8514],[32.2884,-26.8531],[32.2917,-26.8532],[32.2941,-26.8525],[32.299,-26.8534],[32.3041,-26.8556],[32.3082,-26.8565],[32.3107,-26.856],[32.316,-26.8531],[32.3186,-26.8523],[32.3217,-26.853],[32.3254,-26.8562],[32.3285,-26.86],[32.3293,-26.8624],[32.3324,-26.8638],[32.339,-26.8598],[32.3404,-26.8565],[32.3416,-26.8554],[32.3459,-26.8559],[32.3469,-26.856],[32.3468,-26.8641],[32.3643,-26.864],[32.4175,-26.8641],[32.4777,-26.864],[32.4992,-26.8641],[32.518,-26.8645],[32.5248,-26.8645],[32.5657,-26.8645],[32.5752,-26.8648],[32.6065,-26.8655],[32.6147,-26.8659],[32.6487,-26.8668],[32.6759,-26.8678],[32.6829,-26.8681],[32.692,-26.868],[32.713,-26.868],[32.7258,-26.8677],[32.7534,-26.8646],[32.7725,-26.8628],[32.7932,-26.8637],[32.8052,-26.8645],[32.8132,-26.8645],[32.83,-26.864],[32.8573,-26.864],[32.8594,-26.8637],[32.8859,-26.8583],[32.8913,-26.8579],[32.945,-26.872],[32.9401,-26.8862],[32.938,-26.891],[32.9367,-26.8957],[32.9367,-26.9015],[32.9364,-26.9068],[32.9337,-26.9254],[32.9329,-26.932],[32.9335,-26.9346],[32.9323,-26.9394],[32.9315,-26.9447],[32.9278,-26.9567],[32.9281,-26.9611],[32.9303,-26.9665],[32.9308,-26.9695],[32.9309,-26.9745],[32.9281,-26.9827],[32.9276,-26.9882],[32.9264,-26.9929],[32.9222,-27.0024],[32.9205,-27.007],[32.9192,-27.0119],[32.9191,-27.0187],[32.9223,-27.0216],[32.9212,-27.0257],[32.9172,-27.0338],[32.9155,-27.0402],[32.9156,-27.0454],[32.9136,-27.0518],[32.9114,-27.0571],[32.9058,-27.0684],[32.9038,-27.0754],[32.9042,-27.0797],[32.9029,-27.0872],[32.9036,-27.0895],[32.9007,-27.0984],[32.8953,-27.1087],[32.8942,-27.1127],[32.8948,-27.1176],[32.8965,-27.1204],[32.8911,-27.1277],[32.8868,-27.1362],[32.8822,-27.1446],[32.881,-27.1492],[32.8843,-27.1519],[32.8813,-27.1537],[32.8776,-27.1605],[32.8707,-27.1706],[32.8657,-27.1784],[32.8603,-27.1879],[32.8584,-27.1953],[32.8584,-27.2004],[32.8589,-27.2023],[32.8616,-27.2043],[32.8585,-27.2105],[32.8574,-27.2136],[32.8511,-27.2245],[32.8484,-27.2302],[32.8466,-27.235],[32.8463,-27.2377],[32.8469,-27.2414],[32.8477,-27.2425],[32.8464,-27.2464],[32.8434,-27.2517],[32.8388,-27.2591],[32.8335,-27.269],[32.8288,-27.2772],[32.8266,-27.2822],[32.8251,-27.2895],[32.8266,-27.2945],[32.824,-27.3015],[32.8216,-27.3064],[32.8189,-27.3129],[32.8184,-27.3152],[32.8107,-27.3286],[32.806,-27.3376],[32.8049,-27.3405],[32.8036,-27.3458],[32.8036,-27.3491],[32.8045,-27.3508],[32.8037,-27.3538],[32.7979,-27.3627],[32.7957,-27.3667],[32.7921,-27.3752],[32.7883,-27.3859],[32.7842,-27.3995],[32.7843,-27.403],[32.7812,-27.4079],[32.773,-27.4244],[32.7704,-27.4342],[32.7661,-27.4461],[32.7663,-27.4477],[32.7595,-27.4566],[32.7536,-27.4658],[32.7476,-27.4778],[32.742,-27.4899],[32.7388,-27.4962],[32.7342,-27.5065],[32.7328,-27.5106],[32.7327,-27.5124],[32.7302,-27.5212],[32.7297,-27.5276],[32.7306,-27.535],[32.7327,-27.5392],[32.7361,-27.5418],[32.7356,-27.5433],[32.735,-27.5508],[32.7325,-27.5559],[32.7278,-27.5736],[32.7268,-27.5766],[32.7242,-27.5825],[32.7205,-27.5917],[32.717,-27.5993],[32.7153,-27.604],[32.714,-27.6096],[32.7131,-27.6178],[32.7113,-27.6267],[32.7105,-27.6355],[32.7087,-27.6423],[32.7079,-27.6471],[32.7041,-27.6588],[32.7023,-27.6654],[32.7025,-27.6709],[32.6975,-27.6837],[32.6958,-27.6932],[32.6941,-27.6992],[32.688,-27.7124],[32.6809,-27.731],[32.6783,-27.7394],[32.6741,-27.7571],[32.6707,-27.7668],[32.6679,-27.7759],[32.664,-27.79],[32.6623,-27.7974],[32.6595,-27.8126],[32.6555,-27.8319],[32.6549,-27.8407],[32.6519,-27.855],[32.6506,-27.8668],[32.6482,-27.8839],[32.6465,-27.8948],[32.6457,-27.9017],[32.6469,-27.9142],[32.6484,-27.9234],[32.6511,-27.928],[32.6495,-27.9424],[32.6477,-27.9512],[32.6443,-27.9668],[32.6426,-27.9777],[32.6406,-27.9874],[32.6371,-27.9994],[32.6323,-28.0185],[32.6288,-28.0349],[32.6241,-28.0576],[32.6216,-28.0694],[32.6184,-28.0821],[32.616,-28.0926],[32.6151,-28.0992],[32.6142,-28.112],[32.6141,-28.1273],[32.6148,-28.1331],[32.6155,-28.1355],[32.6146,-28.1417],[32.6113,-28.151],[32.609,-28.1591],[32.6065,-28.1664],[32.6003,-28.1823],[32.5934,-28.1978],[32.5892,-28.2064],[32.5759,-28.2314],[32.5662,-28.2494],[32.5619,-28.2566],[32.5592,-28.2605],[32.5552,-28.2673],[32.5492,-28.2786],[32.5424,-28.2902],[32.5316,-28.3096],[32.5271,-28.317],[32.5199,-28.3279],[32.5082,-28.347],[32.5035,-28.3541],[32.4992,-28.3598],[32.4947,-28.3664],[32.4905,-28.3736],[32.483,-28.3883],[32.4804,-28.3963],[32.4798,-28.4018],[32.4796,-28.4061],[32.4807,-28.4132],[32.4826,-28.419],[32.4835,-28.4261],[32.483,-28.4303],[32.4815,-28.4369],[32.4784,-28.4456],[32.476,-28.4546],[32.4745,-28.4624],[32.4723,-28.4768],[32.4706,-28.4853],[32.4148,-28.4764],[32.4141,-28.4827],[32.4131,-28.4851],[32.4121,-28.4898],[32.4114,-28.4951],[32.4086,-28.5026],[32.4041,-28.5112],[32.4025,-28.5159],[32.4012,-28.5177],[32.4002,-28.5238],[32.3974,-28.528],[32.3954,-28.5321],[32.3906,-28.5392],[32.3857,-28.5454],[32.3845,-28.5478],[32.3768,-28.5582],[32.3756,-28.5592],[32.3689,-28.5684],[32.3638,-28.5735],[32.3575,-28.5805],[32.3557,-28.5816],[32.3502,-28.5865],[32.345,-28.5907],[32.3397,-28.5959],[32.3356,-28.5988],[32.3208,-28.6081],[32.3123,-28.6144],[32.3072,-28.62],[32.306,-28.6222],[32.3027,-28.6254],[32.2982,-28.6317],[32.2975,-28.6342],[32.2952,-28.6356],[32.2897,-28.6406],[32.2758,-28.6509],[32.2737,-28.6528],[32.2683,-28.6556],[32.2548,-28.664],[32.2498,-28.6665],[32.2401,-28.6737],[32.236,-28.6773],[32.2297,-28.6819],[32.2245,-28.6863],[32.2191,-28.6921],[32.2137,-28.6973],[32.2091,-28.7043],[32.2045,-28.7083],[32.1992,-28.7136],[32.1941,-28.7194],[32.189,-28.7232],[32.1733,-28.7365],[32.1686,-28.7396],[32.163,-28.7446],[32.1568,-28.7485],[32.1516,-28.755],[32.1483,-28.7575],[32.1448,-28.7609],[32.1376,-28.769],[32.1318,-28.7743],[32.125,-28.7815],[32.1227,-28.7834],[32.1173,-28.7869],[32.1086,-28.7931],[32.1006,-28.7991],[32.0975,-28.8024],[32.0964,-28.8049],[32.0904,-28.8128],[32.087,-28.816],[32.0818,-28.8193],[32.0662,-28.8316],[32.0633,-28.8347],[32.0544,-28.8428],[32.0509,-28.8454],[32.0423,-28.8539],[32.0367,-28.859],[32.0293,-28.8654],[32.0276,-28.865],[32.0128,-28.877],[32.0042,-28.8822],[31.9603,-28.9005],[31.9453,-28.9042],[31.9408,-28.9055],[31.9379,-28.9069],[31.9355,-28.9094],[31.931,-28.9112],[31.9259,-28.9144],[31.9185,-28.9175],[31.9081,-28.9202],[31.8961,-28.9227],[31.8844,-28.9262],[31.8658,-28.9327],[31.8592,-28.9356],[31.8475,-28.94],[31.8423,-28.9415],[31.8372,-28.9422],[31.8306,-28.9423],[31.8203,-28.9436],[31.8157,-28.9457],[31.813,-28.9474],[31.8088,-28.948],[31.7995,-28.9507],[31.7949,-28.9532],[31.78,-28.9585],[31.7732,-28.9614],[31.7653,-28.9654],[31.758,-28.9704],[31.7531,-28.9756],[31.7487,-28.9793],[31.746,-28.9824],[31.7417,-28.9861],[31.7397,-28.9887],[31.7352,-28.9933],[31.7268,-29.0034],[31.7216,-29.0103],[31.7148,-29.0179],[31.7112,-29.0225],[31.6998,-29.0328],[31.6978,-29.035],[31.6876,-29.0438],[31.6803,-29.0503],[31.6782,-29.0516],[31.6753,-29.0549],[31.6738,-29.0572],[31.6692,-29.0619],[31.6638,-29.0664],[31.6603,-29.0709],[31.6579,-29.0734],[31.6554,-29.0748],[31.645,-29.0831],[31.6414,-29.0868],[31.6385,-29.0891],[31.635,-29.0936],[31.6303,-29.0986],[31.6285,-29.1024],[31.62,-29.1113],[31.6134,-29.1204],[31.6113,-29.1224],[31.6034,-29.1326],[31.5972,-29.1389],[31.594,-29.1416],[31.5882,-29.1487],[31.5838,-29.1535],[31.5806,-29.1577],[31.579,-29.1586],[31.5735,-29.1658],[31.5667,-29.1722],[31.5638,-29.1753],[31.5576,-29.1809],[31.5548,-29.1826],[31.5406,-29.1934],[31.5356,-29.1977],[31.5325,-29.2009],[31.5282,-29.2046],[31.5229,-29.2105],[31.5201,-29.2124],[31.515,-29.2167],[31.5119,-29.2189],[31.5053,-29.2241],[31.5014,-29.2283],[31.5002,-29.2301],[31.4976,-29.2315],[31.4928,-29.2332],[31.4891,-29.2351],[31.4859,-29.2409],[31.4826,-29.2444],[31.4826,-29.2471],[31.4809,-29.2475],[31.4748,-29.2506],[31.4679,-29.2553],[31.461,-29.2623],[31.4535,-29.2676],[31.4511,-29.2699],[31.4487,-29.2732],[31.446,-29.2756],[31.4432,-29.2796],[31.4437,-29.283],[31.4409,-29.2862],[31.4382,-29.2906],[31.4378,-29.2927],[31.4293,-29.2985],[31.4258,-29.3025],[31.4254,-29.3053],[31.4217,-29.3079],[31.4145,-29.3122],[31.4087,-29.3171],[31.4052,-29.3216],[31.3984,-29.3275],[31.3949,-29.3316],[31.3927,-29.3369],[31.3907,-29.339],[31.3856,-29.3425],[31.3847,-29.3441],[31.3817,-29.3459],[31.3751,-29.3512],[31.3674,-29.3589],[31.357,-29.3666],[31.355,-29.3696],[31.3531,-29.3709],[31.3487,-29.3758],[31.3408,-29.382],[31.337,-29.3868],[31.3352,-29.3903],[31.3358,-29.3943],[31.3343,-29.3966],[31.3315,-29.3992],[31.3223,-29.4058],[31.3186,-29.4092],[31.3147,-29.4139],[31.3134,-29.4175],[31.3111,-29.4216],[31.3095,-29.4224],[31.3022,-29.4302],[31.2995,-29.4339],[31.2985,-29.4343],[31.2948,-29.4385],[31.2928,-29.4421],[31.2932,-29.4439],[31.2902,-29.4472],[31.2878,-29.4485],[31.2868,-29.4521],[31.2851,-29.4552],[31.2819,-29.4573],[31.2782,-29.4606],[31.2764,-29.464],[31.2751,-29.4649],[31.2716,-29.4697],[31.2707,-29.4702],[31.2677,-29.4741],[31.2652,-29.4763],[31.2648,-29.4783],[31.2629,-29.4792],[31.2585,-29.485],[31.2511,-29.4904],[31.2501,-29.4922],[31.2477,-29.4941],[31.2425,-29.5002],[31.2389,-29.5039],[31.2334,-29.511],[31.2316,-29.5156],[31.2298,-29.518],[31.2297,-29.5202],[31.2277,-29.5222],[31.2283,-29.524],[31.2259,-29.5279],[31.2231,-29.534],[31.2235,-29.5366],[31.2183,-29.5416],[31.2164,-29.5449],[31.2137,-29.5461],[31.2113,-29.5488],[31.2087,-29.5504],[31.2001,-29.5577],[31.1985,-29.5597],[31.1942,-29.5633],[31.1883,-29.5689],[31.1858,-29.5718],[31.184,-29.5769],[31.1803,-29.5806],[31.1792,-29.5829],[31.1769,-29.5848],[31.1719,-29.5912],[31.1713,-29.5934],[31.1657,-29.6029],[31.1615,-29.6081],[31.159,-29.613],[31.1555,-29.6166],[31.1538,-29.6193],[31.1481,-29.6254],[31.1448,-29.6302],[31.1426,-29.6325],[31.1371,-29.6409],[31.1342,-29.644],[31.128,-29.6536],[31.1262,-29.6582],[31.1247,-29.6605],[31.1239,-29.6643],[31.1175,-29.673],[31.116,-29.6775],[31.1129,-29.6838],[31.1109,-29.6858],[31.1083,-29.6902],[31.1057,-29.6968],[31.1031,-29.7],[31.096,-29.7116],[31.092,-29.7203],[31.0888,-29.7281],[31.0835,-29.736],[31.0785,-29.7442],[31.074,-29.7508],[31.0665,-29.7609],[31.0599,-29.771],[31.0487,-29.7925],[31.047,-29.7963],[31.0432,-29.8072],[31.0384,-29.8232],[31.0374,-29.8283],[31.0369,-29.8335],[31.0387,-29.8483],[31.0407,-29.8541],[31.0432,-29.8599],[31.0467,-29.8654],[31.0492,-29.8674],[31.0555,-29.8701],[31.0591,-29.8664],[31.0639,-29.8654],[31.0604,-29.8688],[31.0605,-29.8715],[31.0614,-29.876],[31.0597,-29.8791],[31.0532,-29.8872],[31.0443,-29.8971],[31.0414,-29.9011],[31.04,-29.9037],[31.0315,-29.9132],[31.0251,-29.9192],[31.0213,-29.9224],[31.0144,-29.9306],[31.0134,-29.9334],[31.0105,-29.9354],[31.0075,-29.9394],[31.0026,-29.9436],[30.9973,-29.9488],[30.9942,-29.9526],[30.9886,-29.9584],[30.9888,-29.9593],[30.9855,-29.962],[30.9751,-29.9733],[30.9712,-29.9785],[30.9685,-29.9813],[30.9685,-29.9823],[30.9651,-29.9847],[30.9638,-29.9867],[30.9613,-29.9875],[30.9536,-29.993],[30.9514,-29.9953],[30.9508,-29.9974],[30.9472,-30.0007],[30.9431,-30.0054],[30.9404,-30.0068],[30.9359,-30.0109],[30.9319,-30.0132],[30.9223,-30.0209],[30.9173,-30.0253],[30.9104,-30.0318],[30.8987,-30.0417],[30.8949,-30.0456],[30.8917,-30.0496],[30.8916,-30.0515],[30.8868,-30.0561],[30.8839,-30.06],[30.8817,-30.0654],[30.8759,-30.0723],[30.8743,-30.0748],[30.8731,-30.0787],[30.8713,-30.0807],[30.8671,-30.0867],[30.8632,-30.0935],[30.8626,-30.0972],[30.8613,-30.1003],[30.8593,-30.1027],[30.8563,-30.1114],[30.8529,-30.1174],[30.8525,-30.1195],[30.851,-30.1219],[30.8502,-30.1253],[30.8483,-30.1295],[30.8453,-30.1342],[30.8409,-30.1386],[30.8366,-30.144],[30.8322,-30.1504],[30.8283,-30.1587],[30.8221,-30.1673],[30.8194,-30.1716],[30.8146,-30.1816],[30.8111,-30.1878],[30.8109,-30.1906],[30.8075,-30.1947],[30.8052,-30.1982],[30.8046,-30.2011],[30.7994,-30.2124],[30.7982,-30.2165],[30.7985,-30.2211],[30.792,-30.2276],[30.7893,-30.2321],[30.789,-30.2345],[30.7878,-30.2373],[30.7833,-30.2424],[30.7813,-30.2463],[30.7818,-30.2506],[30.7799,-30.2514],[30.7764,-30.2547],[30.7742,-30.2581],[30.7707,-30.2612],[30.7669,-30.2657],[30.7649,-30.2688],[30.7614,-30.2736],[30.7596,-30.2775],[30.7595,-30.2799],[30.7611,-30.2805],[30.76,-30.2842],[30.7599,-30.2888],[30.7517,-30.2975],[30.7469,-30.3052],[30.7442,-30.3118],[30.7412,-30.3224],[30.7377,-30.3275],[30.7376,-30.3285],[30.7351,-30.3328],[30.7346,-30.3346],[30.7357,-30.3388],[30.7343,-30.3394],[30.7325,-30.3425],[30.73,-30.3442],[30.7256,-30.3488],[30.7234,-30.3502],[30.7196,-30.3544],[30.7182,-30.3576],[30.7179,-30.3607],[30.7157,-30.3629],[30.7121,-30.3652],[30.7073,-30.3699],[30.7065,-30.3716],[30.7024,-30.3761],[30.7015,-30.3804],[30.7001,-30.3848],[30.6958,-30.3881],[30.6948,-30.3918],[30.693,-30.3958],[30.691,-30.3965],[30.6905,-30.3981],[30.6869,-30.4006],[30.6837,-30.4048],[30.682,-30.4105],[30.6756,-30.4175],[30.6737,-30.4203],[30.6719,-30.4247],[30.6737,-30.4289],[30.6707,-30.4318],[30.668,-30.4352],[30.6682,-30.4372],[30.6643,-30.4399],[30.6611,-30.4437],[30.6607,-30.447],[30.6578,-30.4498],[30.6547,-30.4545],[30.654,-30.4563],[30.6542,-30.4604],[30.6532,-30.462],[30.6537,-30.4638],[30.651,-30.4672],[30.6481,-30.4691],[30.6426,-30.4748],[30.64,-30.4785],[30.639,-30.4812],[30.6343,-30.4875],[30.6337,-30.4893],[30.6343,-30.4915],[30.6331,-30.4941],[30.6328,-30.4975],[30.6301,-30.5],[30.6293,-30.503],[30.6275,-30.5055],[30.625,-30.5077],[30.6249,-30.5123],[30.6132,-30.5216],[30.6105,-30.5251],[30.6109,-30.5266],[30.6075,-30.5316],[30.6086,-30.5339],[30.6069,-30.5384],[30.6051,-30.5405],[30.5999,-30.5433],[30.5935,-30.5485],[30.5912,-30.5528],[30.589,-30.5554],[30.5835,-30.5607],[30.5807,-30.5679],[30.5777,-30.5715],[30.5781,-30.5735],[30.5717,-30.5836],[30.569,-30.5904],[30.5691,-30.5915],[30.564,-30.595],[30.5597,-30.6002],[30.5565,-30.605],[30.5512,-30.6097],[30.5482,-30.6135],[30.5464,-30.6202],[30.5448,-30.6249],[30.5473,-30.6273],[30.5457,-30.628],[30.5398,-30.6324],[30.5371,-30.6355],[30.5374,-30.6384],[30.5349,-30.6423],[30.5328,-30.6429],[30.5247,-30.6519],[30.5191,-30.6573],[30.5179,-30.6593],[30.5186,-30.6608],[30.5136,-30.6663],[30.5136,-30.6684],[30.5115,-30.671],[30.5102,-30.677],[30.5032,-30.6843],[30.4988,-30.6881],[30.4987,-30.69],[30.4956,-30.6938],[30.4952,-30.6957],[30.4903,-30.7023],[30.4839,-30.7069],[30.4804,-30.7119],[30.4807,-30.7152],[30.4783,-30.7166],[30.4734,-30.7225],[30.468,-30.7266],[30.4663,-30.7296],[30.4634,-30.7321],[30.4585,-30.7398],[30.46,-30.7418],[30.4572,-30.7462],[30.4515,-30.7529],[30.4494,-30.7543],[30.4477,-30.7566],[30.4483,-30.7581],[30.4461,-30.7633],[30.4418,-30.769],[30.4384,-30.771],[30.4355,-30.7736],[30.4321,-30.7786],[30.4312,-30.781],[30.4291,-30.782],[30.4252,-30.7858],[30.4236,-30.7881],[30.424,-30.7897],[30.4183,-30.798],[30.4165,-30.8021],[30.4153,-30.8024],[30.4128,-30.8056],[30.4128,-30.8085],[30.4114,-30.8114],[30.4117,-30.8135],[30.4105,-30.8153],[30.4059,-30.8181],[30.4052,-30.8204],[30.4067,-30.8214],[30.4052,-30.8248],[30.4046,-30.8281],[30.4021,-30.8306],[30.4004,-30.8312],[30.3991,-30.8334],[30.3951,-30.8359],[30.3963,-30.8381],[30.3934,-30.8441],[30.3895,-30.8491],[30.3835,-30.8551],[30.3796,-30.8559],[30.3748,-30.8592],[30.372,-30.8619],[30.372,-30.8678],[30.3703,-30.8703],[30.3668,-30.8735],[30.364,-30.8744],[30.3581,-30.8788],[30.3564,-30.884],[30.3546,-30.8847],[30.3542,-30.8866],[30.3519,-30.8886],[30.35,-30.8886],[30.3488,-30.8933],[30.3474,-30.8934],[30.3463,-30.8965],[30.3469,-30.8986],[30.3431,-30.9011],[30.3415,-30.9043],[30.3359,-30.9072],[30.3337,-30.9102],[30.3345,-30.9121],[30.3314,-30.9145],[30.328,-30.9186],[30.3222,-30.9227],[30.3171,-30.9267],[30.3163,-30.9295],[30.3131,-30.9331],[30.3111,-30.9336],[30.3075,-30.9373],[30.3078,-30.9383],[30.3045,-30.9413],[30.3041,-30.9439],[30.3016,-30.9477],[30.301,-30.9516],[30.3026,-30.9537],[30.302,-30.9563],[30.2992,-30.9601],[30.2994,-30.9612],[30.296,-30.9653],[30.292,-30.9682],[30.2901,-30.9685],[30.286,-30.9714],[30.2836,-30.9741],[30.2808,-30.9793],[30.2775,-30.9835],[30.278,-30.9861],[30.2758,-30.9893],[30.2748,-30.992],[30.2697,-30.9947],[30.2685,-30.9972],[30.2692,-30.9982],[30.2677,-31.0031],[30.2641,-31.005],[30.2606,-31.0098],[30.2583,-31.0105],[30.2591,-31.0127],[30.2543,-31.0193],[30.2471,-31.0223],[30.2453,-31.0259],[30.2444,-31.03],[30.2413,-31.0301],[30.237,-31.0333],[30.2359,-31.0368],[30.233,-31.038],[30.2284,-31.0449],[30.2299,-31.047],[30.2303,-31.0503],[30.2275,-31.0583],[30.2186,-31.0668],[30.2147,-31.0689],[30.2112,-31.0732],[30.2089,-31.0751],[30.2034,-31.0766],[30.1975,-31.0803],[30.1963,-31.0822],[30.1939,-31.0813],[30.1893,-31.0873],[30.1863,-31.0931],[30.1816,-31.101],[30.1796,-31.1033],[30.1747,-31.1051],[30.1736,-31.1067],[30.1743,-31.109],[30.1741,-31.1132],[30.1722,-31.1163],[30.1704,-31.1177],[30.1636,-31.1203],[30.1624,-31.1215],[30.1615,-31.1252],[30.1585,-31.1273],[30.157,-31.1351],[30.1552,-31.1393],[30.153,-31.1416],[30.1475,-31.1451],[30.1416,-31.1504],[30.1393,-31.152],[30.1335,-31.1544],[30.127,-31.1594],[30.1231,-31.1629],[30.1269,-31.1642],[30.1268,-31.1665],[30.1232,-31.1733],[30.1196,-31.178],[30.1159,-31.1816],[30.1131,-31.1834],[30.1093,-31.184],[30.1033,-31.1865],[30.0997,-31.1871],[30.0998,-31.1889],[30.1021,-31.1893],[30.1024,-31.1921],[30.0974,-31.1931],[30.0882,-31.2062],[30.0852,-31.2111],[30.0785,-31.2162],[30.0728,-31.219],[30.0699,-31.2215],[30.069,-31.2244],[30.0686,-31.2281],[30.0696,-31.2343],[30.0687,-31.2377],[30.065,-31.2397],[30.0584,-31.2441],[30.0552,-31.2455],[30.0506,-31.246],[30.0476,-31.2476],[30.0472,-31.2498],[30.0455,-31.2519],[30.0457,-31.2561],[30.044,-31.2592],[30.0395,-31.2625],[30.0394,-31.2648],[30.036,-31.2688],[30.0303,-31.2737],[30.0268,-31.2754],[30.0175,-31.2839],[30.0108,-31.2879],[30.0135,-31.2891],[30.0135,-31.291],[30.0112,-31.2944],[30.0079,-31.2971],[30.0079,-31.298],[30.0044,-31.3003],[29.9951,-31.3087],[29.991,-31.3111],[29.989,-31.311],[29.9821,-31.3161],[29.9741,-31.3189],[29.973,-31.3198],[29.9708,-31.3186],[29.966,-31.3205],[29.9666,-31.3246],[29.9688,-31.3255],[29.9678,-31.3284],[29.9646,-31.3294],[29.9646,-31.3353],[29.9602,-31.3396],[29.9589,-31.3416],[29.958,-31.345],[29.9543,-31.347],[29.9481,-31.3515],[29.9457,-31.3524],[29.9419,-31.3549],[29.9406,-31.3569],[29.9401,-31.361],[29.9377,-31.363],[29.9335,-31.3642],[29.9287,-31.3679],[29.9248,-31.3699],[29.9214,-31.3709],[29.9193,-31.3748],[29.9144,-31.3791],[29.9114,-31.3808],[29.9054,-31.3816],[29.9045,-31.385],[29.9068,-31.3869],[29.9073,-31.3908],[29.9051,-31.3935],[29.8989,-31.3967],[29.8909,-31.4002],[29.8866,-31.4015],[29.8786,-31.4061],[29.8747,-31.4072],[29.8734,-31.4101],[29.8742,-31.4112],[29.8737,-31.4142],[29.8701,-31.4185],[29.8686,-31.4217],[29.8659,-31.4236],[29.8635,-31.4236],[29.8622,-31.4247],[29.8609,-31.4277],[29.8586,-31.4296],[29.8537,-31.4303],[29.8516,-31.4318],[29.8465,-31.4343],[29.8431,-31.4373],[29.8364,-31.4412],[29.8345,-31.4433],[29.83,-31.4424],[29.8276,-31.4428],[29.8234,-31.4426],[29.8176,-31.4438],[29.8107,-31.4441],[29.8061,-31.4424],[29.7993,-31.4425],[29.7959,-31.4431],[29.7928,-31.4428],[29.7876,-31.4445],[29.7856,-31.4446],[29.7833,-31.4435],[29.7808,-31.4458],[29.7763,-31.4482],[29.7747,-31.4481],[29.7712,-31.4461],[29.769,-31.4466],[29.7702,-31.4484],[29.7668,-31.4499],[29.765,-31.4528],[29.7627,-31.4532],[29.7592,-31.4524],[29.7528,-31.4575],[29.7496,-31.4607],[29.7419,-31.466],[29.7401,-31.4668],[29.7383,-31.4644],[29.7348,-31.4675],[29.7352,-31.4695],[29.7342,-31.4708],[29.7343,-31.4734],[29.7333,-31.4754],[29.7343,-31.4791],[29.7305,-31.4826],[29.7268,-31.4833],[29.7242,-31.482],[29.7211,-31.4825],[29.7207,-31.4858],[29.7222,-31.4888],[29.7227,-31.492],[29.7221,-31.4951],[29.721,-31.4964],[29.7187,-31.4958],[29.7153,-31.4985],[29.7117,-31.5068],[29.7094,-31.5099],[29.7045,-31.5154],[29.6988,-31.5207],[29.6951,-31.5265],[29.691,-31.5282],[29.6873,-31.5273],[29.6858,-31.5278],[29.6845,-31.53],[29.684,-31.5334],[29.6846,-31.5352],[29.6828,-31.537],[29.6799,-31.5383],[29.6766,-31.543],[29.6731,-31.5469],[29.6702,-31.5492],[29.6655,-31.5519],[29.6617,-31.5496],[29.6589,-31.5511],[29.6574,-31.5533],[29.6518,-31.5569],[29.6448,-31.5602],[29.6412,-31.5614],[29.6369,-31.5638],[29.6338,-31.5668],[29.6337,-31.5706],[29.6302,-31.5729],[29.6295,-31.577],[29.6261,-31.5816],[29.6268,-31.5833],[29.6239,-31.586],[29.6211,-31.5865],[29.6187,-31.588],[29.6129,-31.5903],[29.6076,-31.5931],[29.6086,-31.5957],[29.6053,-31.5971],[29.6039,-31.5968],[29.6028,-31.5999],[29.6011,-31.6001],[29.5971,-31.6038],[29.5953,-31.6037],[29.592,-31.607],[29.5896,-31.6082],[29.5827,-31.6088],[29.5723,-31.6144],[29.5603,-31.6213],[29.5569,-31.6226],[29.5532,-31.6257],[29.5491,-31.628],[29.5486,-31.6314],[29.5502,-31.6316],[29.5534,-31.6347],[29.5516,-31.637],[29.5474,-31.6385],[29.5448,-31.6426],[29.5422,-31.6422],[29.5404,-31.6432],[29.5386,-31.646],[29.533,-31.6478],[29.5286,-31.6484],[29.5283,-31.6499],[29.5246,-31.6486],[29.5204,-31.6484],[29.5178,-31.6501],[29.518,-31.6517],[29.5153,-31.6549],[29.5112,-31.6558],[29.508,-31.6551],[29.5047,-31.6575],[29.5023,-31.662],[29.5019,-31.6647],[29.4967,-31.6651],[29.4941,-31.6676],[29.4922,-31.6683],[29.4906,-31.6707],[29.4843,-31.6736],[29.477,-31.6751],[29.4739,-31.6774],[29.4691,-31.6776],[29.4663,-31.6769],[29.4593,-31.6763],[29.4498,-31.6792],[29.4453,-31.6812],[29.4404,-31.6854],[29.4375,-31.6847],[29.4283,-31.6877],[29.4223,-31.6917],[29.4252,-31.6941],[29.4239,-31.6957],[29.4216,-31.6954],[29.4172,-31.7002],[29.4175,-31.7022],[29.4151,-31.7049],[29.4124,-31.7068],[29.4115,-31.7141],[29.4053,-31.7169],[29.4035,-31.7191],[29.4042,-31.7254],[29.4062,-31.7259],[29.4059,-31.7278],[29.4025,-31.7297],[29.4032,-31.7309],[29.4028,-31.7342],[29.3999,-31.736],[29.3955,-31.7372],[29.3912,-31.7392],[29.3875,-31.7416],[29.387,-31.7431],[29.3846,-31.7462],[29.3816,-31.7478],[29.3728,-31.7484],[29.3698,-31.7512],[29.3619,-31.7574],[29.3567,-31.7585],[29.3561,-31.7625],[29.3568,-31.7651],[29.3569,-31.772],[29.3577,-31.7757],[29.3565,-31.7802],[29.3564,-31.7841],[29.3554,-31.7871],[29.3527,-31.7888],[29.3498,-31.7927],[29.3471,-31.7918],[29.345,-31.7942],[29.349,-31.7996],[29.3486,-31.8022],[29.3463,-31.8049],[29.3422,-31.8049],[29.3402,-31.8055],[29.3359,-31.8081],[29.331,-31.8069],[29.3256,-31.8085],[29.3204,-31.8105],[29.3199,-31.8129],[29.3168,-31.8138],[29.3148,-31.8153],[29.3144,-31.8178],[29.3128,-31.8183],[29.3088,-31.8214],[29.3063,-31.8252],[29.3011,-31.8263],[29.3021,-31.8284],[29.2995,-31.8312],[29.2972,-31.8314],[29.292,-31.8348],[29.2919,-31.8377],[29.2903,-31.8402],[29.2876,-31.8421],[29.2865,-31.8438],[29.2845,-31.8439],[29.2835,-31.8469],[29.2817,-31.8485],[29.2797,-31.8481],[29.2793,-31.8513],[29.2728,-31.8588],[29.2714,-31.8595],[29.2682,-31.8593],[29.2639,-31.8631],[29.2629,-31.8683],[29.2605,-31.8698],[29.2611,-31.8732],[29.2622,-31.8757],[29.2605,-31.8781],[29.2618,-31.8812],[29.2583,-31.8854],[29.256,-31.8854],[29.2474,-31.8895],[29.2455,-31.8909],[29.2461,-31.8922],[29.2435,-31.8933],[29.2418,-31.8952],[29.2449,-31.8979],[29.2447,-31.9001],[29.2421,-31.9021],[29.2417,-31.9042],[29.24,-31.9059],[29.238,-31.9061],[29.2342,-31.9091],[29.2341,-31.9114],[29.2321,-31.915],[29.2277,-31.9183],[29.2259,-31.919],[29.2253,-31.9244],[29.2226,-31.9273],[29.2145,-31.9311],[29.2138,-31.9333],[29.2138,-31.9365],[29.2164,-31.937],[29.2168,-31.9395],[29.2124,-31.9451],[29.2077,-31.9448],[29.2053,-31.9464],[29.2016,-31.9461],[29.2009,-31.9475],[29.1987,-31.9481],[29.1965,-31.9474],[29.1913,-31.9481],[29.1863,-31.9496],[29.1818,-31.9519],[29.1832,-31.9528],[29.1819,-31.9556],[29.1782,-31.9595],[29.1758,-31.9606],[29.1685,-31.9654],[29.1674,-31.9671],[29.1675,-31.9712],[29.163,-31.9723],[29.1624,-31.9746],[29.1602,-31.9779],[29.1565,-31.9795],[29.1539,-31.9797],[29.1508,-31.9837],[29.1507,-31.9853],[29.1535,-31.9863],[29.1497,-31.9885],[29.1475,-31.9876],[29.1473,-31.9901],[29.1425,-31.9917],[29.1358,-31.9959],[29.1357,-32.0],[29.1372,-32.0001],[29.1371,-32.0032],[29.133,-32.004],[29.1312,-32.0085],[29.1322,-32.0128],[29.1297,-32.0139],[29.1302,-32.0191],[29.1253,-32.0219],[29.1227,-32.0245],[29.1241,-32.0277],[29.121,-32.0286],[29.1193,-32.0278],[29.1151,-32.0307],[29.1148,-32.0326],[29.1113,-32.0326],[29.113,-32.0371],[29.1114,-32.0393],[29.1067,-32.0404],[29.1072,-32.0443],[29.1042,-32.0464],[29.1024,-32.0468],[29.1009,-32.0532],[29.0995,-32.0551],[29.0954,-32.0575],[29.0934,-32.0593]],[[28.8736,-28.7707],[28.8711,-28.7668],[28.8705,-28.7635],[28.8682,-28.7603],[28.8635,-28.7589],[28.8582,-28.7561],[28.8524,-28.7596],[28.8466,-28.7599],[28.8422,-28.7586],[28.8404,-28.7603],[28.8349,-28.7613],[28.8328,-28.763],[28.8307,-28.7632],[28.829,-28.7658],[28.8263,-28.7658],[28.8235,-28.7684],[28.8233,-28.7716],[28.8225,-28.7727],[28.8183,-28.7756],[28.8162,-28.7755],[28.8124,-28.7741],[28.8078,-28.7709],[28.8078,-28.7658],[28.8072,-28.7635],[28.8039,-28.7592],[28.8047,-28.7547],[28.8041,-28.7507],[28.8033,-28.75],[28.8039,-28.7469],[28.8009,-28.7454],[28.8005,-28.7421],[28.8015,-28.7405],[28.8011,-28.7383],[28.8033,-28.73],[28.8051,-28.7288],[28.8079,-28.7255],[28.809,-28.7229],[28.8115,-28.72],[28.8078,-28.7185],[28.8066,-28.7162],[28.8072,-28.7141],[28.806,-28.7116],[28.8062,-28.7099],[28.7988,-28.7069],[28.795,-28.6998],[28.7912,-28.6986],[28.7873,-28.7005],[28.7847,-28.7012],[28.7796,-28.7013],[28.7778,-28.7008],[28.7749,-28.6976],[28.7725,-28.6962],[28.769,-28.6927],[28.7658,-28.6901],[28.7588,-28.6861],[28.7548,-28.6854],[28.753,-28.6838],[28.7515,-28.6854],[28.7472,-28.6861],[28.7434,-28.6877],[28.7399,-28.687],[28.7376,-28.6874],[28.7345,-28.6864],[28.7302,-28.6888],[28.7267,-28.6877],[28.7265,-28.6843],[28.7242,-28.6816],[28.7192,-28.6795],[28.7139,-28.6756],[28.7114,-28.6752],[28.7083,-28.6739],[28.7046,-28.6713],[28.7053,-28.6692],[28.7081,-28.6641],[28.7073,-28.6609],[28.7054,-28.6592],[28.7047,-28.6563],[28.7062,-28.6533],[28.7055,-28.6507],[28.6977,-28.6449],[28.6949,-28.6445],[28.6961,-28.6426],[28.6969,-28.6378],[28.7002,-28.6373],[28.7009,-28.6362],[28.6981,-28.631],[28.6977,-28.6262],[28.7009,-28.6213],[28.7031,-28.6194],[28.7012,-28.6152],[28.699,-28.6134],[28.6972,-28.6103],[28.6971,-28.6086],[28.6943,-28.6077],[28.692,-28.604],[28.6859,-28.5991],[28.6826,-28.5939],[28.6824,-28.5904],[28.6732,-28.5854],[28.6724,-28.5837],[28.6703,-28.583],[28.6692,-28.5809],[28.664,-28.5771],[28.6608,-28.5778],[28.6579,-28.5755],[28.6555,-28.5752],[28.6519,-28.5733],[28.6502,-28.5713],[28.6481,-28.5714],[28.6447,-28.5753],[28.6415,-28.575],[28.6386,-28.5764],[28.6366,-28.5756],[28.6351,-28.5788],[28.6326,-28.5789],[28.6329,-28.5819],[28.6315,-28.5825],[28.6287,-28.5808],[28.6273,-28.5812],[28.6232,-28.58],[28.6202,-28.583],[28.6194,-28.5865],[28.6169,-28.5907],[28.6135,-28.5939],[28.6122,-28.5974],[28.6082,-28.5954],[28.6039,-28.5985],[28.604,-28.6006],[28.6005,-28.6012],[28.5986,-28.6022],[28.5971,-28.6011],[28.5939,-28.6024],[28.5933,-28.6056],[28.5894,-28.608],[28.5871,-28.6051],[28.585,-28.6056],[28.5839,-28.6039],[28.5806,-28.6045],[28.5783,-28.6038],[28.5767,-28.6081],[28.5742,-28.6102],[28.5735,-28.6075],[28.5684,-28.6083],[28.5668,-28.6077],[28.5634,-28.6048],[28.5583,-28.604],[28.5561,-28.6025],[28.5522,-28.6056],[28.5496,-28.609],[28.5477,-28.6094],[28.5459,-28.607],[28.5433,-28.607],[28.5406,-28.6025],[28.5392,-28.6046],[28.5367,-28.606],[28.5351,-28.6082],[28.5339,-28.6069],[28.5318,-28.6072],[28.5317,-28.6101],[28.5298,-28.6103],[28.5282,-28.609],[28.5285,-28.6063],[28.5265,-28.6051],[28.5264,-28.6033],[28.5241,-28.6012],[28.5219,-28.6033],[28.5186,-28.6027],[28.5175,-28.6065],[28.5204,-28.6072],[28.5196,-28.6092],[28.5162,-28.6088],[28.5138,-28.6096],[28.5142,-28.6112],[28.5092,-28.6122],[28.5086,-28.6136],[28.506,-28.6153],[28.5068,-28.6181],[28.5027,-28.6155],[28.5014,-28.6117],[28.503,-28.6092],[28.5017,-28.6079],[28.4998,-28.6093],[28.4968,-28.606],[28.4943,-28.6079],[28.4896,-28.6061],[28.4885,-28.6079],[28.4879,-28.6113],[28.4861,-28.6125],[28.4809,-28.6072],[28.4784,-28.6093],[28.4767,-28.6063],[28.4721,-28.6054],[28.4703,-28.6094],[28.468,-28.6099],[28.4665,-28.6081],[28.4648,-28.6094],[28.4628,-28.6089],[28.4614,-28.6116],[28.4596,-28.6127],[28.4565,-28.6118],[28.4563,-28.6163],[28.4536,-28.6193],[28.4517,-28.6173],[28.4493,-28.6165],[28.4474,-28.6194],[28.4444,-28.6164],[28.4439,-28.6189],[28.4405,-28.6183],[28.4378,-28.6217],[28.4367,-28.6204],[28.4338,-28.6208],[28.4312,-28.6199],[28.4284,-28.6211],[28.4268,-28.6243],[28.4242,-28.6245],[28.4214,-28.6255],[28.4195,-28.6277],[28.4174,-28.6264],[28.4132,-28.6274],[28.4113,-28.6259],[28.4103,-28.6222],[28.4081,-28.6221],[28.4041,-28.6243],[28.4019,-28.6243],[28.4029,-28.6276],[28.4009,-28.6321],[28.4042,-28.6359],[28.4032,-28.6387],[28.4035,-28.6416],[28.402,-28.6446],[28.3987,-28.644],[28.398,-28.6452],[28.3955,-28.6454],[28.393,-28.6439],[28.3906,-28.6441],[28.3899,-28.6482],[28.3872,-28.6494],[28.3875,-28.6517],[28.3844,-28.6569],[28.3816,-28.6572],[28.3796,-28.6593],[28.3757,-28.6606],[28.3684,-28.6673],[28.3703,-28.6704],[28.3704,-28.6741],[28.3688,-28.6752],[28.3714,-28.6772],[28.373,-28.6796],[28.3716,-28.6822],[28.3715,-28.6842],[28.3683,-28.6841],[28.3663,-28.6865],[28.3639,-28.6881],[28.3616,-28.6885],[28.3599,-28.6923],[28.3566,-28.6934],[28.3536,-28.6979],[28.3528,-28.7002],[28.3499,-28.7014],[28.3494,-28.6991],[28.3478,-28.6986],[28.3451,-28.6995],[28.3436,-28.6986],[28.344,-28.695],[28.3425,-28.6939],[28.34,-28.6957],[28.3377,-28.6963],[28.3353,-28.6985],[28.3325,-28.6963],[28.3316,-28.699],[28.3266,-28.6999],[28.3278,-28.7032],[28.33,-28.7041],[28.3284,-28.7057],[28.3243,-28.7041],[28.3206,-28.7038],[28.317,-28.701],[28.3105,-28.7005],[28.3094,-28.6994],[28.3103,-28.6969],[28.3074,-28.694],[28.3049,-28.6924],[28.3035,-28.697],[28.3042,-28.6985],[28.3001,-28.7036],[28.3019,-28.7049],[28.2981,-28.7079],[28.2969,-28.7069],[28.2978,-28.7046],[28.2959,-28.7034],[28.2944,-28.7051],[28.2952,-28.7074],[28.2919,-28.7078],[28.2907,-28.711],[28.2885,-28.7102],[28.2864,-28.7109],[28.2859,-28.7133],[28.2841,-28.7133],[28.2807,-28.7148],[28.2774,-28.7125],[28.2754,-28.7124],[28.2724,-28.7104],[28.272,-28.7091],[28.2683,-28.7061],[28.2666,-28.708],[28.263,-28.7082],[28.2602,-28.709],[28.258,-28.7057],[28.2588,-28.7035],[28.2582,-28.7007],[28.2568,-28.7002],[28.253,-28.7016],[28.2493,-28.7009],[28.2485,-28.7026],[28.2427,-28.7022],[28.2414,-28.6967],[28.2385,-28.6959],[28.2363,-28.6963],[28.2346,-28.6952],[28.2318,-28.6958],[28.2296,-28.6983],[28.2292,-28.7021],[28.2234,-28.7043],[28.2199,-28.7042],[28.2182,-28.7021],[28.2138,-28.7024],[28.2123,-28.7061],[28.21,-28.7075],[28.206,-28.7085],[28.2014,-28.7091],[28.1954,-28.7107],[28.1913,-28.7068],[28.1903,-28.7039],[28.1913,-28.7026],[28.1899,-28.699],[28.1904,-28.6972],[28.1887,-28.6958],[28.1861,-28.695],[28.1852,-28.6969],[28.1835,-28.6978],[28.1817,-28.7004],[28.182,-28.7028],[28.1834,-28.7042],[28.1841,-28.7082],[28.1788,-28.7089],[28.1753,-28.7082],[28.1685,-28.7053],[28.1667,-28.7059],[28.1681,-28.709],[28.166,-28.7129],[28.1607,-28.7144],[28.16,-28.7161],[28.1624,-28.7179],[28.1595,-28.7191],[28.1558,-28.7186],[28.1562,-28.7205],[28.1595,-28.7208],[28.1607,-28.7225],[28.1603,-28.7252],[28.1584,-28.7257],[28.1567,-28.7232],[28.1553,-28.7239],[28.1558,-28.7267],[28.1577,-28.7308],[28.155,-28.731],[28.1544,-28.7286],[28.1517,-28.7266],[28.1517,-28.7235],[28.149,-28.7236],[28.1467,-28.7276],[28.1435,-28.7291],[28.1438,-28.7313],[28.1425,-28.7327],[28.1425,-28.7382],[28.1406,-28.7369],[28.1394,-28.7346],[28.138,-28.7347],[28.135,-28.7388],[28.133,-28.7387],[28.13,-28.7411],[28.1315,-28.7443],[28.1305,-28.7459],[28.128,-28.7467],[28.1247,-28.7449],[28.1224,-28.7407],[28.1191,-28.7416],[28.1201,-28.7455],[28.1193,-28.75],[28.1202,-28.7524],[28.1202,-28.757],[28.1188,-28.7583],[28.1144,-28.7575],[28.1131,-28.7583],[28.1119,-28.761],[28.1079,-28.7653],[28.1059,-28.7662],[28.1027,-28.7659],[28.1017,-28.7671],[28.0998,-28.769],[28.0976,-28.7728],[28.0971,-28.7765],[28.0961,-28.7787],[28.0977,-28.7812],[28.0953,-28.783],[28.0954,-28.7853],[28.0932,-28.787],[28.0927,-28.7896],[28.0893,-28.793],[28.0856,-28.7941],[28.0857,-28.8001],[28.0836,-28.8033],[28.0817,-28.804],[28.0806,-28.8062],[28.0773,-28.8073],[28.0782,-28.8106],[28.0752,-28.8116],[28.0751,-28.8146],[28.0732,-28.8158],[28.0674,-28.8152],[28.062,-28.8142],[28.0577,-28.8147],[28.0538,-28.8174],[28.0513,-28.8176],[28.0506,-28.8198],[28.0509,-28.8241],[28.0519,-28.8271],[28.0503,-28.8306],[28.0533,-28.8334],[28.0545,-28.8356],[28.0539,-28.8378],[28.0546,-28.8411],[28.0521,-28.8439],[28.0478,-28.8417],[28.0468,-28.8438],[28.0436,-28.8461],[28.0416,-28.846],[28.0411,-28.85],[28.0391,-28.8509],[28.036,-28.8501],[28.0353,-28.8524],[28.0329,-28.8526],[28.0323,-28.8549],[28.0308,-28.8561],[28.0285,-28.8556],[28.0258,-28.8587],[28.024,-28.8594],[28.0247,-28.8617],[28.0271,-28.8621],[28.0285,-28.8597],[28.0305,-28.8615],[28.0302,-28.8652],[28.0293,-28.8672],[28.0325,-28.8676],[28.031,-28.8714],[28.0314,-28.8727],[28.0284,-28.8739],[28.0303,-28.8766],[28.0289,-28.8791],[28.0277,-28.879],[28.0258,-28.8747],[28.0189,-28.8755],[28.0158,-28.8773],[28.0137,-28.8798],[28.0126,-28.8798],[28.0074,-28.8726],[28.0043,-28.8716],[28.0039,-28.8741],[28.0018,-28.8769],[27.9993,-28.8768],[27.9969,-28.8727],[27.994,-28.8727],[27.9936,-28.8759],[27.9918,-28.8767],[27.9891,-28.8765],[27.9876,-28.8782],[27.9912,-28.8792],[27.9923,-28.8809],[27.9914,-28.8829],[27.9895,-28.8824],[27.984,-28.8769],[27.9807,-28.8769],[27.9758,-28.8748],[27.9709,-28.8747],[27.9679,-28.8719],[27.9658,-28.871],[27.9645,-28.8673],[27.9625,-28.8656],[27.9629,-28.8616],[27.9614,-28.8593],[27.956,-28.8584],[27.9544,-28.8575],[27.9487,-28.8527],[27.9442,-28.851],[27.9384,-28.8483],[27.9387,-28.8521],[27.9335,-28.8535],[27.931,-28.8525],[27.9294,-28.8546],[27.9267,-28.8568],[27.9281,-28.8605],[27.9274,-28.8619],[27.9253,-28.8617],[27.9244,-28.86],[27.9211,-28.859],[27.9187,-28.8603],[27.916,-28.8651],[27.9163,-28.8673],[27.9201,-28.8719],[27.9208,-28.8768],[27.9155,-28.8796],[27.9116,-28.8811],[27.9065,-28.8813],[27.9049,-28.8803],[27.8995,-28.8785],[27.8941,-28.8788],[27.8927,-28.8816],[27.8904,-28.8835],[27.8878,-28.8873],[27.8898,-28.8898],[27.893,-28.8909],[27.8978,-28.8903],[27.9,-28.8929],[27.8998,-28.8948],[27.8979,-28.8971],[27.8982,-28.9024],[27.8966,-28.9079],[27.8957,-28.9093],[27.8912,-28.9106],[27.891,-28.9139],[27.8889,-28.9165],[27.8861,-28.9164],[27.8835,-28.9148],[27.8806,-28.9168],[27.877,-28.9174],[27.8713,-28.9197],[27.8689,-28.9198],[27.8646,-28.9158],[27.864,-28.9136],[27.8594,-28.914],[27.8588,-28.9108],[27.8539,-28.9093],[27.8536,-28.9058],[27.8515,-28.903],[27.8487,-28.9033],[27.8474,-28.9043],[27.8483,-28.9092],[27.8463,-28.911],[27.8433,-28.9124],[27.8411,-28.9149],[27.838,-28.9145],[27.8329,-28.9063],[27.8302,-28.9037],[27.8291,-28.9065],[27.8294,-28.9087],[27.8315,-28.9115],[27.8315,-28.9127],[27.8278,-28.9124],[27.8208,-28.918],[27.8176,-28.9209],[27.8134,-28.9204],[27.8084,-28.9171],[27.8058,-28.9172],[27.8031,-28.9185],[27.7983,-28.9184],[27.7918,-28.9146],[27.7938,-28.9108],[27.7935,-28.9092],[27.791,-28.9089],[27.7868,-28.9095],[27.7847,-28.9082],[27.7773,-28.9069],[27.7747,-28.9057],[27.7735,-28.9039],[27.7691,-28.9011],[27.765,-28.8992],[27.7628,-28.8975],[27.7555,-28.8969],[27.7536,-28.898],[27.7539,-28.9022],[27.7549,-28.9084],[27.7561,-28.9098],[27.7575,-28.9131],[27.7603,-28.9122],[27.7636,-28.9133],[27.7666,-28.9166],[27.7667,-28.9181],[27.7657,-28.9237],[27.7616,-28.9303],[27.7571,-28.9339],[27.757,-28.9348],[27.7618,-28.9371],[27.7619,-28.938],[27.76,-28.9414],[27.7575,-28.9418],[27.7483,-28.9417],[27.7475,-28.939],[27.7448,-28.9362],[27.7429,-28.9377],[27.7461,-28.9406],[27.745,-28.9423],[27.7426,-28.9422],[27.7393,-28.9377],[27.7371,-28.9402],[27.7348,-28.9447],[27.7308,-28.9457],[27.7291,-28.9474],[27.7288,-28.9499],[27.7277,-28.9508],[27.7243,-28.9491],[27.7228,-28.951],[27.7257,-28.9529],[27.7255,-28.9564],[27.7242,-28.9573],[27.7218,-28.9572],[27.7208,-28.9582],[27.7204,-28.9639],[27.725,-28.9674],[27.7235,-28.9702],[27.7238,-28.9729],[27.7226,-28.9762],[27.7188,-28.9795],[27.7168,-28.9824],[27.7142,-28.9829],[27.7084,-28.9813],[27.7074,-28.9828],[27.7094,-28.9902],[27.7117,-28.9915],[27.7161,-28.991],[27.7161,-28.9935],[27.7145,-28.9974],[27.7169,-28.9994],[27.7162,-29.0044],[27.7148,-29.0082],[27.7125,-29.0113],[27.711,-29.0118],[27.7056,-29.0116],[27.7023,-29.0102],[27.7014,-29.0089],[27.6958,-29.0072],[27.6922,-29.0049],[27.6879,-29.0036],[27.6851,-29.0036],[27.6,-29.0066],[27.6819,-29.0113],[27.6809,-29.0153],[27.6815,-29.0171],[27.6867,-29.0208],[27.688,-29.0224],[27.6873,-29.0244],[27.6852,-29.025],[27.6829,-29.0239],[27.6811,-29.0252],[27.6821,-29.0271],[27.6812,-29.0284],[27.6781,-29.0282],[27.6748,-29.026],[27.6705,-29.0269],[27.6696,-29.0293],[27.673,-29.0309],[27.675,-29.0333],[27.6755,-29.0395],[27.6726,-29.0444],[27.6613,-29.0465],[27.6588,-29.0487],[27.6569,-29.0482],[27.6533,-29.0444],[27.6512,-29.0415],[27.6481,-29.0425],[27.6473,-29.0442],[27.6425,-29.0451],[27.6414,-29.0461],[27.6439,-29.0528],[27.6443,-29.0559],[27.646,-29.0567],[27.649,-29.0558],[27.6526,-29.0563],[27.6521,-29.0614],[27.6552,-29.0611],[27.6578,-29.0568],[27.6599,-29.0557],[27.6619,-29.0569],[27.6659,-29.0624],[27.6674,-29.0636],[27.6727,-29.0638],[27.6762,-29.0663],[27.6747,-29.069],[27.6748,-29.0708],[27.6769,-29.0729],[27.6769,-29.0744],[27.6755,-29.0773],[27.6731,-29.0793],[27.6689,-29.079],[27.6659,-29.0778],[27.6636,-29.081],[27.6613,-29.0861],[27.6591,-29.0861],[27.6572,-29.085],[27.6554,-29.0817],[27.65,-29.0783],[27.6462,-29.0786],[27.6417,-29.0804],[27.6395,-29.0835],[27.6405,-29.0857],[27.6462,-29.0854],[27.6478,-29.0863],[27.6508,-29.0899],[27.6512,-29.0915],[27.6486,-29.0944],[27.6492,-29.0973],[27.6523,-29.1003],[27.6504,-29.1039],[27.6502,-29.1063],[27.6509,-29.1086],[27.6502,-29.11],[27.6458,-29.1182],[27.6442,-29.1186],[27.6411,-29.1175],[27.6379,-29.1151],[27.6337,-29.115],[27.6312,-29.1167],[27.6307,-29.1191],[27.632,-29.1206],[27.6347,-29.1216],[27.6358,-29.1234],[27.6344,-29.1302],[27.632,-29.132],[27.6267,-29.1329],[27.6183,-29.1353],[27.6147,-29.134],[27.6109,-29.1335],[27.607,-29.135],[27.603,-29.136],[27.6014,-29.1371],[27.6026,-29.1401],[27.6096,-29.1461],[27.6127,-29.1475],[27.6169,-29.1523],[27.6171,-29.1575],[27.6162,-29.1605],[27.6142,-29.1642],[27.6063,-29.1677],[27.6005,-29.1684],[27.5977,-29.1706],[27.5956,-29.171],[27.5929,-29.1695],[27.5906,-29.1661],[27.5832,-29.1659],[27.5806,-29.1663],[27.5786,-29.1708],[27.5777,-29.1739],[27.5777,-29.1777],[27.5767,-29.1823],[27.5748,-29.1848],[27.5711,-29.1867],[27.5681,-29.1872],[27.5665,-29.1883],[27.566,-29.1911],[27.5645,-29.1926],[27.5559,-29.1939],[27.5514,-29.1962],[27.5483,-29.1993],[27.5456,-29.2038],[27.5406,-29.206],[27.5375,-29.2132],[27.5355,-29.2172],[27.5318,-29.2191],[27.5289,-29.2193],[27.5259,-29.2171],[27.5208,-29.2196],[27.5181,-29.2222],[27.5149,-29.2244],[27.515,-29.2256],[27.52,-29.2269],[27.5243,-29.231],[27.5249,-29.2325],[27.5239,-29.235],[27.5209,-29.2379],[27.5208,-29.2395],[27.5226,-29.2409],[27.5247,-29.241],[27.5275,-29.238],[27.5309,-29.2372],[27.5338,-29.2402],[27.5377,-29.2403],[27.5425,-29.2418],[27.5446,-29.2445],[27.5476,-29.2464],[27.5458,-29.2531],[27.5409,-29.2599],[27.5389,-29.2611],[27.5349,-29.2623],[27.5306,-29.2642],[27.5264,-29.2654],[27.5246,-29.2665],[27.5207,-29.2754],[27.5192,-29.2776],[27.5145,-29.2819],[27.5111,-29.2831],[27.5051,-29.2822],[27.4992,-29.2845],[27.4949,-29.284],[27.4942,-29.2852],[27.4943,-29.2892],[27.4935,-29.2907],[27.4909,-29.2929],[27.4902,-29.2945],[27.4916,-29.2984],[27.4913,-29.3009],[27.4871,-29.3024],[27.4842,-29.3009],[27.4848,-29.2979],[27.484,-29.2959],[27.4807,-29.2936],[27.4725,-29.2953],[27.4679,-29.2943],[27.4652,-29.2943],[27.4619,-29.2963],[27.4554,-29.2972],[27.4543,-29.2984],[27.4558,-29.3008],[27.457,-29.3054],[27.4584,-29.3062],[27.4618,-29.3066],[27.4636,-29.3076],[27.4641,-29.3121],[27.4652,-29.314],[27.4723,-29.3185],[27.4725,-29.3199],[27.4705,-29.3217],[27.4645,-29.3239],[27.462,-29.3261],[27.4598,-29.3267],[27.4542,-29.3269],[27.4499,-29.3284],[27.4442,-29.3289],[27.4405,-29.3319],[27.4363,-29.3342],[27.4349,-29.3378],[27.4345,-29.3406],[27.4352,-29.3437],[27.4339,-29.3512],[27.434,-29.3536],[27.4365,-29.3577],[27.4377,-29.3627],[27.4373,-29.3662],[27.4353,-29.3702],[27.4304,-29.3741],[27.4264,-29.3737],[27.423,-29.372],[27.4178,-29.3675],[27.4139,-29.3653],[27.4103,-29.3639],[27.4073,-29.3639],[27.4055,-29.3664],[27.4054,-29.3704],[27.4066,-29.3736],[27.4098,-29.3783],[27.415,-29.3827],[27.4204,-29.386],[27.4218,-29.3885],[27.4216,-29.3962],[27.4219,-29.3979],[27.4239,-29.4011],[27.4246,-29.4041],[27.4215,-29.4088],[27.4183,-29.411],[27.4119,-29.4113],[27.4067,-29.4137],[27.4028,-29.414],[27.3983,-29.4113],[27.3961,-29.4111],[27.3922,-29.4153],[27.3918,-29.4174],[27.3925,-29.422],[27.3895,-29.4272],[27.3831,-29.4318],[27.3815,-29.434],[27.381,-29.4395],[27.379,-29.4417],[27.3749,-29.4431],[27.3722,-29.4474],[27.3705,-29.4488],[27.3634,-29.4497],[27.3594,-29.4511],[27.3567,-29.4527],[27.3561,-29.4541],[27.3566,-29.4575],[27.358,-29.4611],[27.3566,-29.4663],[27.359,-29.469],[27.3627,-29.4755],[27.3635,-29.4786],[27.3634,-29.4818],[27.3613,-29.4856],[27.3571,-29.4862],[27.3528,-29.4878],[27.3487,-29.4882],[27.3427,-29.4871],[27.3401,-29.486],[27.3349,-29.4814],[27.3304,-29.4806],[27.3282,-29.4813],[27.3248,-29.4848],[27.3156,-29.4905],[27.3125,-29.493],[27.3076,-29.4958],[27.3051,-29.4985],[27.3043,-29.5003],[27.3053,-29.5051],[27.3043,-29.508],[27.3006,-29.5112],[27.3002,-29.5127],[27.3017,-29.5182],[27.304,-29.5207],[27.3047,-29.5272],[27.3061,-29.5296],[27.3063,-29.5332],[27.3051,-29.5339],[27.3024,-29.5325],[27.2979,-29.5327],[27.2932,-29.5339],[27.2891,-29.5334],[27.2863,-29.5317],[27.2831,-29.528],[27.2779,-29.5263],[27.2758,-29.5268],[27.2707,-29.5299],[27.2624,-29.5334],[27.2573,-29.5333],[27.255,-29.5358],[27.2549,-29.5386],[27.256,-29.5435],[27.2559,-29.5475],[27.2542,-29.5489],[27.2489,-29.5513],[27.2463,-29.5536],[27.2439,-29.5545],[27.2387,-29.5531],[27.2345,-29.5543],[27.2317,-29.5543],[27.2303,-29.5522],[27.2276,-29.5449],[27.2255,-29.5435],[27.2213,-29.5448],[27.2206,-29.5458],[27.2217,-29.5495],[27.2177,-29.5525],[27.2073,-29.5573],[27.2061,-29.559],[27.2063,-29.5612],[27.2088,-29.5646],[27.2072,-29.5671],[27.2021,-29.5688],[27.1949,-29.5676],[27.1913,-29.5698],[27.1885,-29.5686],[27.1855,-29.5661],[27.175,-29.5637],[27.1646,-29.5624],[27.1594,-29.5598],[27.1579,-29.5597],[27.1522,-29.5622],[27.1509,-29.5651],[27.1463,-29.5683],[27.1413,-29.575],[27.1401,-29.5753],[27.1351,-29.5734],[27.1289,-29.5739],[27.1274,-29.5747],[27.1243,-29.5767],[27.1197,-29.5775],[27.1188,-29.5792],[27.1141,-29.5855],[27.1095,-29.5871],[27.1045,-29.5897],[27.1039,-29.5937],[27.1057,-29.5969],[27.1065,-29.6005],[27.1056,-29.6034],[27.1026,-29.604],[27.0978,-29.6038],[27.0954,-29.6042],[27.0903,-29.6075],[27.0889,-29.609],[27.0859,-29.6146],[27.0827,-29.6151],[27.0808,-29.6139],[27.0784,-29.6107],[27.0775,-29.6083],[27.0773,-29.6048],[27.0758,-29.6025],[27.071,-29.5987],[27.0671,-29.5971],[27.0651,-29.5984],[27.0651,-29.6002],[27.0664,-29.6029],[27.0662,-29.6075],[27.064,-29.6111],[27.066,-29.6176],[27.0644,-29.624],[27.061,-29.6299],[27.0592,-29.6352],[27.056,-29.6371],[27.0479,-29.6338],[27.0433,-29.6295],[27.0372,-29.622],[27.0363,-29.6205],[27.0349,-29.6145],[27.0328,-29.6132],[27.029,-29.6156],[27.0247,-29.616],[27.0203,-29.6158],[27.0174,-29.6182],[27.0182,-29.6206],[27.023,-29.6255],[27.025,-29.6282],[27.0257,-29.6326],[27.0278,-29.6374],[27.0274,-29.6405],[27.026,-29.642],[27.0215,-29.6432],[27.0177,-29.6448],[27.0125,-29.6477],[27.0113,-29.6506],[27.0135,-29.6562],[27.0131,-29.6603],[27.0139,-29.6618],[27.017,-29.6635],[27.0196,-29.6642],[27.0218,-29.6668],[27.0247,-29.6664],[27.0284,-29.6711],[27.0315,-29.6731],[27.0385,-29.677],[27.0486,-29.6881],[27.0644,-29.7051],[27.0783,-29.7144],[27.088,-29.7195],[27.0833,-29.723],[27.0966,-29.7299],[27.1076,-29.753],[27.1346,-29.8101],[27.1409,-29.8238],[27.1591,-29.8625],[27.1662,-29.8771],[27.1809,-29.9083],[27.1863,-29.92],[27.1944,-29.9373],[27.1984,-29.9452],[27.2164,-29.983],[27.2229,-29.9968],[27.2241,-30.0058],[27.2194,-30.0089],[27.2189,-30.01],[27.2347,-30.0083],[27.2539,-30.0261],[27.2695,-30.026],[27.2654,-30.0332],[27.2685,-30.043],[27.2714,-30.0447],[27.278,-30.0467],[27.2832,-30.047],[27.2872,-30.0494],[27.2909,-30.0503],[27.2965,-30.0561],[27.3116,-30.1036],[27.323,-30.1399],[27.3269,-30.1481],[27.336,-30.1478],[27.3411,-30.146],[27.3476,-30.146],[27.3581,-30.1454],[27.3652,-30.1442],[27.3738,-30.1439],[27.3804,-30.1433],[27.3844,-30.1439],[27.39,-30.1434],[27.3941,-30.1425],[27.4014,-30.1398],[27.4021,-30.1391],[27.4074,-30.1449],[27.4051,-30.1482],[27.405,-30.1505],[27.4101,-30.1521],[27.4091,-30.1555],[27.4056,-30.1572],[27.4022,-30.1578],[27.4012,-30.1591],[27.402,-30.1631],[27.3931,-30.1664],[27.3915,-30.1692],[27.3921,-30.172],[27.3916,-30.1761],[27.3886,-30.1786],[27.3869,-30.1785],[27.3823,-30.177],[27.3806,-30.1794],[27.3816,-30.1811],[27.3862,-30.1826],[27.3866,-30.1921],[27.3849,-30.1943],[27.3815,-30.1946],[27.3726,-30.1902],[27.3696,-30.1902],[27.3686,-30.1911],[27.3683,-30.1938],[27.3715,-30.198],[27.3749,-30.1981],[27.3748,-30.2031],[27.3738,-30.2071],[27.3714,-30.2103],[27.3678,-30.2133],[27.3659,-30.2162],[27.3655,-30.2188],[27.3675,-30.2211],[27.3699,-30.2251],[27.3701,-30.2284],[27.3691,-30.2319],[27.3666,-30.2372],[27.3682,-30.2392],[27.3689,-30.2428],[27.3706,-30.2481],[27.3701,-30.2509],[27.3679,-30.2534],[27.3659,-30.2579],[27.366,-30.2606],[27.3681,-30.2642],[27.3708,-30.2668],[27.37,-30.2706],[27.3669,-30.2737],[27.3691,-30.2788],[27.3735,-30.2806],[27.3755,-30.2804],[27.377,-30.2787],[27.377,-30.2766],[27.3799,-30.2743],[27.3822,-30.2781],[27.3827,-30.2823],[27.3877,-30.2819],[27.3898,-30.2845],[27.3892,-30.2857],[27.385,-30.2892],[27.3856,-30.2907],[27.3891,-30.2924],[27.3891,-30.2936],[27.3854,-30.2965],[27.3819,-30.2977],[27.3799,-30.2997],[27.3835,-30.3043],[27.3876,-30.3034],[27.3935,-30.3037],[27.3951,-30.3067],[27.3952,-30.3098],[27.3922,-30.3102],[27.3877,-30.3082],[27.3857,-30.3099],[27.3856,-30.3123],[27.3917,-30.3186],[27.3919,-30.32],[27.3906,-30.3226],[27.3865,-30.3239],[27.3853,-30.3203],[27.3822,-30.321],[27.3772,-30.3249],[27.3774,-30.3271],[27.3793,-30.3275],[27.3808,-30.3292],[27.3814,-30.3349],[27.3832,-30.337],[27.3895,-30.3395],[27.393,-30.3398],[27.3985,-30.3372],[27.4112,-30.3317],[27.4155,-30.329],[27.4198,-30.3244],[27.4218,-30.3237],[27.4267,-30.3237],[27.4312,-30.3244],[27.4374,-30.3234],[27.44,-30.3225],[27.4446,-30.3194],[27.4478,-30.3163],[27.4502,-30.3147],[27.4536,-30.3136],[27.4597,-30.3133],[27.4646,-30.314],[27.4688,-30.3165],[27.4753,-30.3218],[27.4759,-30.3247],[27.4744,-30.3306],[27.475,-30.3388],[27.4768,-30.3449],[27.4769,-30.3493],[27.4744,-30.3534],[27.475,-30.3565],[27.4815,-30.3605],[27.4869,-30.3619],[27.4898,-30.3653],[27.4901,-30.3687],[27.4892,-30.3716],[27.4896,-30.3735],[27.494,-30.3746],[27.4967,-30.3739],[27.5006,-30.3716],[27.5026,-30.373],[27.5006,-30.3771],[27.5035,-30.3834],[27.5069,-30.3876],[27.512,-30.3871],[27.5178,-30.385],[27.5201,-30.3834],[27.5255,-30.3837],[27.5291,-30.3834],[27.534,-30.3844],[27.5354,-30.3863],[27.538,-30.3922],[27.5474,-30.3969],[27.5531,-30.4012],[27.5557,-30.4046],[27.5573,-30.409],[27.5574,-30.4109],[27.5591,-30.4117],[27.5601,-30.4155],[27.5616,-30.4175],[27.5648,-30.4194],[27.5671,-30.4229],[27.5702,-30.426],[27.5715,-30.4302],[27.5687,-30.4311],[27.5649,-30.4334],[27.5645,-30.4358],[27.5661,-30.4379],[27.5672,-30.4411],[27.5673,-30.4448],[27.5725,-30.4481],[27.5761,-30.448],[27.5831,-30.4487],[27.5852,-30.4485],[27.5874,-30.4499],[27.5929,-30.4503],[27.5975,-30.449],[27.5997,-30.4469],[27.602,-30.4467],[27.6044,-30.4495],[27.6008,-30.454],[27.5976,-30.4569],[27.5985,-30.458],[27.6018,-30.4576],[27.6039,-30.4586],[27.6047,-30.4627],[27.6079,-30.4665],[27.6085,-30.47],[27.6107,-30.4734],[27.615,-30.4777],[27.6141,-30.4844],[27.615,-30.4884],[27.6118,-30.4912],[27.6073,-30.4916],[27.607,-30.4925],[27.6099,-30.4958],[27.6118,-30.4968],[27.6167,-30.496],[27.6189,-30.4941],[27.621,-30.4947],[27.6208,-30.4962],[27.6218,-30.4997],[27.6208,-30.5013],[27.6218,-30.5041],[27.6236,-30.5062],[27.6297,-30.51],[27.6372,-30.5133],[27.6392,-30.5157],[27.6434,-30.5171],[27.6453,-30.517],[27.6465,-30.5197],[27.6495,-30.5182],[27.6531,-30.5174],[27.6573,-30.5192],[27.6581,-30.5228],[27.6619,-30.5236],[27.6648,-30.5252],[27.6691,-30.5292],[27.6713,-30.534],[27.6726,-30.5354],[27.6755,-30.5344],[27.6805,-30.5348],[27.6837,-30.5367],[27.6868,-30.54],[27.691,-30.5414],[27.6934,-30.5448],[27.6917,-30.5473],[27.6919,-30.5488],[27.696,-30.5509],[27.6973,-30.5534],[27.6944,-30.5549],[27.6943,-30.5587],[27.6962,-30.5602],[27.6996,-30.5608],[27.701,-30.562],[27.7021,-30.5645],[27.7083,-30.5659],[27.7136,-30.5683],[27.7164,-30.5686],[27.7177,-30.5701],[27.7199,-30.5754],[27.7207,-30.5791],[27.7231,-30.581],[27.7254,-30.5851],[27.7281,-30.5865],[27.7302,-30.5896],[27.7344,-30.5901],[27.7359,-30.5932],[27.7386,-30.5973],[27.7402,-30.5988],[27.7399,-30.6013],[27.7419,-30.6039],[27.7471,-30.606],[27.7495,-30.6063],[27.7539,-30.6056],[27.755,-30.6064],[27.7589,-30.6068],[27.7616,-30.609],[27.7688,-30.612],[27.7699,-30.6111],[27.7721,-30.6128],[27.7758,-30.6142],[27.7817,-30.6173],[27.7855,-30.6173],[27.7876,-30.6189],[27.7922,-30.6176],[27.7955,-30.6191],[27.7993,-30.6178],[27.8,-30.6166],[27.8026,-30.6166],[27.8058,-30.6155],[27.8085,-30.6163],[27.8165,-30.6149],[27.8207,-30.6152],[27.8282,-30.6147],[27.8304,-30.6137],[27.8347,-30.6141],[27.8374,-30.6149],[27.8387,-30.6143],[27.8442,-30.615],[27.8467,-30.6144],[27.8496,-30.6155],[27.8553,-30.6158],[27.858,-30.6145],[27.8615,-30.6142],[27.871,-30.6143],[27.8725,-30.6137],[27.8763,-30.6139],[27.8787,-30.6131],[27.8811,-30.6137],[27.8827,-30.611],[27.8857,-30.6091],[27.8865,-30.6072],[27.8896,-30.6052],[27.8935,-30.6058],[27.8952,-30.6067],[27.8992,-30.607],[27.9024,-30.6032],[27.906,-30.6043],[27.9107,-30.6037],[27.9119,-30.6019],[27.9155,-30.6013],[27.9184,-30.6026],[27.9224,-30.6092],[27.9209,-30.6149],[27.9214,-30.619],[27.9205,-30.6226],[27.9266,-30.6231],[27.933,-30.6275],[27.9335,-30.6332],[27.9368,-30.635],[27.9409,-30.6407],[27.9405,-30.6441],[27.9543,-30.6487],[27.9775,-30.655],[27.9917,-30.6509],[28.0037,-30.659],[28.0524,-30.6581],[28.0574,-30.6576],[28.0846,-30.654],[28.1135,-30.6755],[28.1151,-30.6725],[28.1181,-30.6692],[28.1177,-30.6687],[28.1232,-30.6634],[28.123,-30.6601],[28.1238,-30.6594],[28.1232,-30.652],[28.1236,-30.6493],[28.121,-30.643],[28.1175,-30.6402],[28.1163,-30.6348],[28.1177,-30.6333],[28.1171,-30.6262],[28.1188,-30.6227],[28.1122,-30.6147],[28.1128,-30.6119],[28.1106,-30.6087],[28.1123,-30.6038],[28.113,-30.6002],[28.1141,-30.599],[28.1219,-30.5987],[28.1227,-30.5959],[28.1308,-30.5916],[28.1351,-30.5925],[28.1378,-30.5922],[28.1411,-30.5905],[28.1419,-30.5884],[28.1456,-30.5856],[28.1507,-30.5843],[28.1516,-30.5834],[28.1523,-30.579],[28.1536,-30.5758],[28.1594,-30.5735],[28.1604,-30.5725],[28.1593,-30.5683],[28.1626,-30.5628],[28.1607,-30.56],[28.1613,-30.5581],[28.1635,-30.5559],[28.1597,-30.5518],[28.1581,-30.5487],[28.158,-30.5456],[28.157,-30.5442],[28.1588,-30.5418],[28.163,-30.539],[28.1635,-30.5355],[28.1661,-30.5323],[28.1667,-30.5297],[28.1695,-30.5275],[28.1746,-30.5275],[28.1765,-30.527],[28.1774,-30.5224],[28.1749,-30.5176],[28.1749,-30.5142],[28.1725,-30.5095],[28.1724,-30.5083],[28.1747,-30.5055],[28.1753,-30.5032],[28.1807,-30.5014],[28.1809,-30.4964],[28.1805,-30.4936],[28.1789,-30.4895],[28.1746,-30.4864],[28.1724,-30.4859],[28.1671,-30.4833],[28.1654,-30.4802],[28.1646,-30.4762],[28.1556,-30.4718],[28.1552,-30.4691],[28.1564,-30.4655],[28.1586,-30.4635],[28.1625,-30.462],[28.1646,-30.4598],[28.165,-30.456],[28.1665,-30.4539],[28.1725,-30.4506],[28.1773,-30.4446],[28.177,-30.4424],[28.1796,-30.4389],[28.1831,-30.4367],[28.1877,-30.4346],[28.1903,-30.4352],[28.1943,-30.4346],[28.1972,-30.4331],[28.2028,-30.4351],[28.2063,-30.4372],[28.2097,-30.4347],[28.217,-30.4311],[28.2216,-30.4307],[28.2269,-30.4308],[28.229,-30.4301],[28.23,-30.4265],[28.2321,-30.4236],[28.2322,-30.4207],[28.2373,-30.4182],[28.2395,-30.4131],[28.2444,-30.4144],[28.2471,-30.4161],[28.2483,-30.4185],[28.2506,-30.4195],[28.2573,-30.4183],[28.2577,-30.4164],[28.2556,-30.4124],[28.2529,-30.4052],[28.2541,-30.4036],[28.2586,-30.4023],[28.2605,-30.3952],[28.2627,-30.3914],[28.2639,-30.3863],[28.2668,-30.3847],[28.2668,-30.378],[28.2688,-30.3737],[28.2708,-30.3708],[28.2701,-30.3668],[28.2685,-30.3641],[28.2678,-30.3604],[28.271,-30.3564],[28.2688,-30.3518],[28.265,-30.3483],[28.2616,-30.3464],[28.2569,-30.3466],[28.2529,-30.3421],[28.2515,-30.3362],[28.2524,-30.3322],[28.2555,-30.3314],[28.2568,-30.3298],[28.2557,-30.3286],[28.2528,-30.3276],[28.254,-30.3261],[28.2566,-30.3249],[28.2528,-30.3233],[28.2479,-30.3233],[28.2421,-30.3177],[28.2367,-30.3165],[28.2329,-30.315],[28.2298,-30.3119],[28.2286,-30.3089],[28.2205,-30.309],[28.2154,-30.3068],[28.2145,-30.3058],[28.2146,-30.3024],[28.2123,-30.2991],[28.2118,-30.2964],[28.2077,-30.2922],[28.2069,-30.2907],[28.2097,-30.2883],[28.2146,-30.2864],[28.2178,-30.2824],[28.2198,-30.2782],[28.2231,-30.2754],[28.2235,-30.273],[28.229,-30.2712],[28.2298,-30.27],[28.2341,-30.2677],[28.2359,-30.266],[28.2357,-30.2634],[28.2364,-30.2599],[28.2405,-30.2595],[28.2446,-30.2575],[28.2479,-30.2581],[28.2527,-30.2579],[28.2553,-30.2569],[28.2602,-30.2563],[28.2629,-30.2523],[28.2665,-30.2523],[28.2691,-30.253],[28.2725,-30.2558],[28.2754,-30.256],[28.2827,-30.2556],[28.2863,-30.2574],[28.2898,-30.2574],[28.2962,-30.2554],[28.3017,-30.2564],[28.3057,-30.2551],[28.3109,-30.2504],[28.3112,-30.2454],[28.3135,-30.2407],[28.3194,-30.2404],[28.3212,-30.2381],[28.3252,-30.2371],[28.3288,-30.2339],[28.3307,-30.2299],[28.3331,-30.2339],[28.338,-30.2337],[28.3403,-30.2346],[28.3458,-30.2321],[28.3478,-30.2289],[28.3441,-30.2253],[28.3434,-30.2238],[28.3451,-30.2188],[28.3477,-30.2169],[28.3454,-30.2153],[28.3451,-30.2128],[28.3491,-30.207],[28.349,-30.2049],[28.3504,-30.2],[28.352,-30.1967],[28.3549,-30.1943],[28.3563,-30.1922],[28.3555,-30.1906],[28.3582,-30.1848],[28.3598,-30.178],[28.3651,-30.1686],[28.367,-30.1685],[28.3703,-30.1697],[28.3749,-30.1691],[28.3791,-30.1697],[28.3817,-30.1694],[28.3833,-30.1681],[28.3831,-30.1665],[28.3848,-30.1647],[28.3886,-30.1638],[28.3902,-30.1628],[28.3905,-30.1594],[28.3923,-30.1591],[28.3927,-30.1556],[28.3959,-30.1514],[28.396,-30.1483],[28.3975,-30.1447],[28.3998,-30.1437],[28.4035,-30.1448],[28.4094,-30.1455],[28.4175,-30.1488],[28.4193,-30.1486],[28.4228,-30.1504],[28.434,-30.154],[28.4376,-30.1543],[28.4412,-30.1559],[28.4455,-30.1557],[28.4515,-30.1578],[28.4571,-30.1574],[28.4607,-30.1545],[28.465,-30.1549],[28.4673,-30.1542],[28.4729,-30.1549],[28.4736,-30.1528],[28.4806,-30.149],[28.4879,-30.1493],[28.4889,-30.1499],[28.4954,-30.1503],[28.4998,-30.151],[28.5045,-30.1464],[28.507,-30.1446],[28.5125,-30.1428],[28.5143,-30.1405],[28.5167,-30.1388],[28.5238,-30.1364],[28.5325,-30.1319],[28.5335,-30.1268],[28.5367,-30.1249],[28.5443,-30.123],[28.5469,-30.1231],[28.5497,-30.1211],[28.5513,-30.1209],[28.5537,-30.124],[28.5642,-30.1239],[28.5651,-30.1229],[28.5682,-30.1229],[28.5759,-30.1274],[28.5799,-30.1259],[28.5846,-30.1276],[28.59,-30.1268],[28.5974,-30.1307],[28.5998,-30.1314],[28.6047,-30.1314],[28.6103,-30.1325],[28.6134,-30.1339],[28.6193,-30.1355],[28.6227,-30.1332],[28.6269,-30.1317],[28.63,-30.1322],[28.6343,-30.1311],[28.6384,-30.1315],[28.6431,-30.134],[28.6461,-30.1342],[28.6502,-30.1337],[28.6536,-30.1376],[28.6584,-30.1375],[28.665,-30.1404],[28.6676,-30.1407],[28.6694,-30.1375],[28.6716,-30.1361],[28.6783,-30.1339],[28.6851,-30.1287],[28.6885,-30.1283],[28.6899,-30.1243],[28.6919,-30.1239],[28.6954,-30.1244],[28.6989,-30.1268],[28.702,-30.1263],[28.705,-30.1224],[28.709,-30.1196],[28.7182,-30.1179],[28.7196,-30.1161],[28.7218,-30.1151],[28.7242,-30.1155],[28.7275,-30.1135],[28.7318,-30.1134],[28.7361,-30.1123],[28.7392,-30.1159],[28.7419,-30.1143],[28.7417,-30.1122],[28.746,-30.1092],[28.7473,-30.1074],[28.7498,-30.1065],[28.7527,-30.1065],[28.7562,-30.1056],[28.7618,-30.1055],[28.7696,-30.1076],[28.771,-30.1072],[28.7758,-30.1076],[28.7771,-30.1082],[28.7856,-30.1086],[28.7912,-30.1094],[28.7917,-30.1079],[28.7957,-30.1035],[28.795,-30.1008],[28.8007,-30.1004],[28.8076,-30.0973],[28.8195,-30.0976],[28.8262,-30.0956],[28.8313,-30.0976],[28.8389,-30.0921],[28.8413,-30.0915],[28.8431,-30.0923],[28.8459,-30.092],[28.8515,-30.0901],[28.8545,-30.0905],[28.8588,-30.0882],[28.8594,-30.0856],[28.8575,-30.0835],[28.8575,-30.0776],[28.8698,-30.0777],[28.8706,-30.0745],[28.8752,-30.0735],[28.8789,-30.0698],[28.8824,-30.0705],[28.8866,-30.0689],[28.89,-30.0682],[28.8935,-30.0687],[28.8955,-30.0652],[28.8983,-30.0645],[28.9031,-30.0659],[28.904,-30.0645],[28.9079,-30.0611],[28.9106,-30.0592],[28.9189,-30.058],[28.9217,-30.0531],[28.9234,-30.054],[28.9357,-30.0494],[28.9365,-30.0489],[28.9374,-30.0446],[28.9408,-30.0365],[28.9475,-30.037],[28.9522,-30.0367],[28.9543,-30.0391],[28.9578,-30.0391],[28.9602,-30.0381],[28.9648,-30.0331],[28.9679,-30.0341],[28.9701,-30.0339],[28.9719,-30.0324],[28.976,-30.0323],[28.9779,-30.0298],[28.9829,-30.0313],[28.9853,-30.0314],[28.9893,-30.0287],[28.9902,-30.0273],[28.9908,-30.0202],[28.9963,-30.0146],[28.9973,-30.0117],[29.0018,-30.0085],[29.0028,-30.0064],[29.0059,-30.0044],[29.011,-30.0046],[29.0147,-30.0018],[29.0198,-29.9969],[29.021,-29.9967],[29.0243,-29.9992],[29.0271,-29.9977],[29.03,-29.9972],[29.0334,-29.9923],[29.0322,-29.9882],[29.0327,-29.9869],[29.0367,-29.9847],[29.0392,-29.9841],[29.0421,-29.9849],[29.0446,-29.9822],[29.0509,-29.9822],[29.0595,-29.9777],[29.0632,-29.9747],[29.0671,-29.9724],[29.0683,-29.9705],[29.0838,-29.9531],[29.1037,-29.967],[29.1034,-29.9618],[29.1039,-29.9587],[29.1026,-29.9576],[29.1045,-29.9548],[29.1044,-29.9512],[29.1064,-29.9443],[29.1091,-29.9423],[29.109,-29.937],[29.111,-29.9357],[29.115,-29.9369],[29.1183,-29.9333],[29.1222,-29.933],[29.1251,-29.9303],[29.1335,-29.929],[29.1364,-29.9296],[29.1442,-29.9271],[29.1469,-29.9254],[29.151,-29.9248],[29.1548,-29.9259],[29.156,-29.9252],[29.158,-29.9219],[29.1621,-29.9214],[29.1636,-29.9199],[29.1694,-29.9163],[29.1688,-29.9127],[29.1651,-29.9102],[29.1645,-29.9087],[29.1612,-29.9083],[29.1585,-29.9066],[29.1582,-29.9052],[29.1616,-29.9031],[29.161,-29.8984],[29.161,-29.8952],[29.1636,-29.8925],[29.1621,-29.8878],[29.1632,-29.8844],[29.16,-29.8829],[29.1547,-29.8849],[29.1489,-29.8839],[29.1466,-29.8798],[29.1444,-29.878],[29.1414,-29.8771],[29.1411,-29.8755],[29.1429,-29.8723],[29.1452,-29.87],[29.1454,-29.8682],[29.144,-29.8665],[29.1396,-29.8646],[29.1391,-29.8614],[29.1368,-29.8599],[29.1318,-29.8599],[29.13,-29.8587],[29.1248,-29.8573],[29.1225,-29.8558],[29.1191,-29.8553],[29.1159,-29.8535],[29.1121,-29.8542],[29.1083,-29.8514],[29.1026,-29.8501],[29.1014,-29.8486],[29.1015,-29.8459],[29.1057,-29.8444],[29.1096,-29.8442],[29.1106,-29.8427],[29.1141,-29.841],[29.118,-29.8337],[29.1198,-29.833],[29.1228,-29.8334],[29.1275,-29.8324],[29.1302,-29.8296],[29.1317,-29.8256],[29.1295,-29.8207],[29.1297,-29.8184],[29.1325,-29.8154],[29.1318,-29.8139],[29.1272,-29.8123],[29.1258,-29.8091],[29.1237,-29.8073],[29.1237,-29.8048],[29.1248,-29.799],[29.1249,-29.7952],[29.1264,-29.792],[29.1294,-29.7893],[29.1299,-29.7826],[29.1294,-29.7772],[29.131,-29.774],[29.1302,-29.772],[29.1254,-29.7691],[29.1236,-29.7673],[29.1285,-29.7643],[29.1301,-29.765],[29.1344,-29.7652],[29.1353,-29.7641],[29.1343,-29.7609],[29.14,-29.7591],[29.1406,-29.7501],[29.1377,-29.748],[29.1369,-29.7449],[29.1358,-29.7439],[29.1356,-29.7402],[29.1383,-29.7388],[29.1418,-29.7404],[29.146,-29.741],[29.147,-29.738],[29.1498,-29.7369],[29.1486,-29.7353],[29.1517,-29.7332],[29.1495,-29.729],[29.1468,-29.7224],[29.1452,-29.7164],[29.1468,-29.7132],[29.1499,-29.7115],[29.1498,-29.7094],[29.152,-29.7078],[29.1554,-29.7077],[29.1606,-29.707],[29.1607,-29.7055],[29.159,-29.7039],[29.16,-29.6996],[29.1622,-29.6973],[29.1615,-29.6946],[29.1626,-29.6922],[29.1634,-29.6882],[29.1597,-29.683],[29.1626,-29.677],[29.1661,-29.678],[29.1718,-29.6789],[29.1729,-29.6779],[29.1762,-29.6772],[29.1795,-29.6751],[29.1816,-29.6694],[29.1834,-29.6682],[29.1849,-29.6699],[29.1877,-29.6714],[29.1911,-29.6707],[29.1952,-29.6668],[29.1963,-29.6645],[29.198,-29.663],[29.2001,-29.6599],[29.2051,-29.6593],[29.2088,-29.6596],[29.2114,-29.6564],[29.2117,-29.6551],[29.2144,-29.655],[29.2158,-29.6531],[29.2174,-29.6483],[29.2189,-29.6474],[29.2217,-29.648],[29.2244,-29.6458],[29.2279,-29.6453],[29.2302,-29.6458],[29.2303,-29.6429],[29.2325,-29.6419],[29.2335,-29.6403],[29.2359,-29.6398],[29.2392,-29.6424],[29.2445,-29.6422],[29.2477,-29.6416],[29.2552,-29.6421],[29.2595,-29.6399],[29.2632,-29.639],[29.2652,-29.6392],[29.2693,-29.643],[29.2719,-29.6429],[29.2768,-29.6447],[29.2792,-29.6447],[29.2818,-29.6431],[29.2831,-29.6411],[29.2844,-29.6367],[29.2846,-29.6337],[29.2871,-29.6283],[29.2868,-29.6265],[29.2828,-29.6223],[29.284,-29.6203],[29.2883,-29.6185],[29.2897,-29.617],[29.2922,-29.6165],[29.2926,-29.6151],[29.2911,-29.613],[29.2931,-29.6088],[29.293,-29.6049],[29.2923,-29.6005],[29.2897,-29.5976],[29.2881,-29.5924],[29.2856,-29.59],[29.2848,-29.5864],[29.2865,-29.584],[29.2908,-29.5846],[29.2941,-29.5845],[29.2966,-29.5853],[29.3029,-29.5845],[29.3045,-29.5833],[29.3095,-29.5845],[29.3136,-29.5833],[29.3161,-29.5832],[29.3197,-29.5814],[29.3251,-29.5698],[29.3243,-29.5673],[29.3212,-29.5661],[29.3205,-29.5631],[29.3173,-29.563],[29.3154,-29.5605],[29.3151,-29.5588],[29.3118,-29.5573],[29.3076,-29.5545],[29.3056,-29.5542],[29.3068,-29.5496],[29.309,-29.5489],[29.3088,-29.5473],[29.3113,-29.5468],[29.3128,-29.5452],[29.313,-29.5369],[29.3117,-29.5353],[29.3099,-29.5357],[29.3062,-29.5324],[29.3051,-29.5294],[29.3031,-29.5262],[29.301,-29.5242],[29.2972,-29.5223],[29.2945,-29.5198],[29.2951,-29.5184],[29.2997,-29.5192],[29.3016,-29.5178],[29.3046,-29.5172],[29.3057,-29.5162],[29.3062,-29.5113],[29.3051,-29.5099],[29.3051,-29.507],[29.3041,-29.5034],[29.3019,-29.5023],[29.2998,-29.4989],[29.2946,-29.4935],[29.2932,-29.4905],[29.2966,-29.4866],[29.3005,-29.4863],[29.3067,-29.4829],[29.3099,-29.4862],[29.316,-29.488],[29.3236,-29.4869],[29.3231,-29.4838],[29.3198,-29.4792],[29.3211,-29.4757],[29.3251,-29.4747],[29.3276,-29.4708],[29.3293,-29.4702],[29.334,-29.4708],[29.3394,-29.4722],[29.3403,-29.4687],[29.345,-29.4664],[29.3458,-29.4652],[29.3507,-29.4674],[29.3585,-29.4695],[29.3619,-29.4694],[29.3631,-29.4702],[29.3644,-29.4666],[29.3683,-29.4637],[29.3725,-29.4634],[29.3734,-29.4628],[29.3771,-29.4548],[29.3805,-29.4543],[29.3833,-29.4563],[29.3876,-29.4557],[29.3879,-29.4524],[29.3892,-29.4517],[29.3936,-29.4512],[29.3975,-29.4471],[29.4004,-29.447],[29.4006,-29.4449],[29.4034,-29.444],[29.4006,-29.4402],[29.3996,-29.4358],[29.402,-29.4331],[29.4023,-29.4297],[29.4058,-29.4245],[29.4067,-29.4205],[29.4107,-29.4171],[29.4198,-29.4167],[29.4226,-29.4141],[29.419,-29.408],[29.4184,-29.4057],[29.4192,-29.4018],[29.4194,-29.3969],[29.4218,-29.396],[29.4248,-29.3965],[29.4302,-29.3958],[29.4325,-29.3966],[29.4352,-29.3964],[29.4372,-29.3947],[29.4364,-29.3926],[29.4361,-29.3869],[29.4386,-29.3851],[29.4415,-29.3805],[29.4454,-29.3787],[29.4472,-29.3757],[29.4463,-29.3723],[29.4483,-29.3713],[29.4488,-29.3681],[29.4453,-29.3657],[29.4437,-29.3635],[29.4416,-29.3576],[29.4417,-29.3543],[29.4433,-29.3514],[29.4431,-29.349],[29.4415,-29.3465],[29.4444,-29.3442],[29.4493,-29.3436],[29.4555,-29.3412],[29.4557,-29.3363],[29.4523,-29.3293],[29.4517,-29.321],[29.4484,-29.3206],[29.4471,-29.3163],[29.445,-29.3151],[29.4416,-29.3143],[29.4427,-29.3121],[29.4384,-29.3091],[29.4398,-29.3077],[29.4389,-29.306],[29.4397,-29.3031],[29.4427,-29.3011],[29.443,-29.2981],[29.4401,-29.2938],[29.44,-29.2899],[29.4365,-29.286],[29.4352,-29.28],[29.4396,-29.2796],[29.4396,-29.2755],[29.4408,-29.273],[29.4399,-29.2691],[29.437,-29.2646],[29.4343,-29.2628],[29.4308,-29.2621],[29.4274,-29.2605],[29.4247,-29.26],[29.4209,-29.2601],[29.4185,-29.2581],[29.4189,-29.2521],[29.4207,-29.2528],[29.424,-29.2519],[29.4259,-29.2495],[29.4242,-29.2456],[29.4237,-29.242],[29.4217,-29.2384],[29.4178,-29.2364],[29.417,-29.2337],[29.4149,-29.2316],[29.4069,-29.2288],[29.4084,-29.2227],[29.4106,-29.2211],[29.4134,-29.2214],[29.4105,-29.2154],[29.4074,-29.2116],[29.4009,-29.2081],[29.3929,-29.2055],[29.388,-29.2048],[29.3811,-29.2014],[29.3778,-29.203],[29.373,-29.2037],[29.367,-29.2054],[29.3628,-29.2051],[29.3592,-29.2035],[29.3566,-29.2013],[29.355,-29.1951],[29.3508,-29.1929],[29.3461,-29.1893],[29.3446,-29.1875],[29.3439,-29.1797],[29.3445,-29.1761],[29.3469,-29.1742],[29.3473,-29.172],[29.3467,-29.165],[29.3483,-29.1636],[29.3485,-29.1609],[29.3452,-29.1566],[29.344,-29.1531],[29.3492,-29.1483],[29.3531,-29.1476],[29.3526,-29.1453],[29.3512,-29.1442],[29.3515,-29.1414],[29.3532,-29.138],[29.3566,-29.1358],[29.357,-29.1342],[29.3548,-29.1308],[29.3564,-29.1293],[29.3555,-29.1268],[29.3516,-29.1235],[29.3488,-29.1203],[29.3494,-29.1187],[29.3438,-29.115],[29.3429,-29.1123],[29.3388,-29.1096],[29.3375,-29.1065],[29.335,-29.1052],[29.3292,-29.1015],[29.3261,-29.1013],[29.3262,-29.0987],[29.3251,-29.0965],[29.3205,-29.0923],[29.3155,-29.0867],[29.3131,-29.0827],[29.3125,-29.0793],[29.3078,-29.0766],[29.2939,-29.0769],[29.2901,-29.0755],[29.285,-29.0764],[29.2798,-29.0756],[29.2782,-29.076],[29.2746,-29.0797],[29.2693,-29.0812],[29.2668,-29.0835],[29.263,-29.0858],[29.2614,-29.0893],[29.2592,-29.0905],[29.2564,-29.0903],[29.254,-29.0888],[29.2529,-29.0863],[29.2528,-29.0825],[29.2437,-29.0766],[29.2411,-29.0758],[29.2394,-29.0727],[29.2362,-29.0711],[29.2326,-29.068],[29.2276,-29.0627],[29.2296,-29.0602],[29.2295,-29.0565],[29.2255,-29.0492],[29.2204,-29.0485],[29.2153,-29.0485],[29.2126,-29.0469],[29.2119,-29.0453],[29.2136,-29.043],[29.2136,-29.0407],[29.2112,-29.038],[29.2122,-29.0357],[29.2144,-29.0352],[29.2162,-29.0334],[29.2172,-29.0302],[29.2155,-29.0263],[29.2088,-29.0224],[29.2061,-29.0184],[29.2031,-29.0161],[29.1999,-29.0147],[29.1919,-29.0149],[29.1856,-29.0133],[29.1838,-29.0113],[29.1818,-29.0073],[29.1775,-29.0031],[29.1733,-29.0023],[29.1705,-29.0031],[29.1669,-29.002],[29.162,-29.0035],[29.1592,-29.0031],[29.1549,-28.998],[29.1532,-28.994],[29.1527,-28.9902],[29.1515,-28.9876],[29.1434,-28.9847],[29.1424,-28.9828],[29.1405,-28.9816],[29.1378,-28.9814],[29.1376,-28.9837],[29.1332,-28.9849],[29.1303,-28.9824],[29.1248,-28.9805],[29.1238,-28.9742],[29.126,-28.9683],[29.129,-28.9696],[29.1304,-28.9686],[29.1275,-28.9646],[29.1235,-28.9625],[29.1176,-28.9582],[29.1135,-28.9547],[29.1096,-28.9519],[29.1093,-28.95],[29.1077,-28.9491],[29.1011,-28.948],[29.0992,-28.9419],[29.0935,-28.9386],[29.0936,-28.9371],[29.0905,-28.9375],[29.0875,-28.937],[29.0859,-28.9359],[29.0817,-28.9385],[29.0789,-28.9393],[29.0739,-28.9377],[29.0735,-28.9351],[29.076,-28.9314],[29.0747,-28.9251],[29.0725,-28.9231],[29.0748,-28.9216],[29.0748,-28.9188],[29.0711,-28.9185],[29.0638,-28.9157],[29.0594,-28.9165],[29.0582,-28.9185],[29.0549,-28.9163],[29.0516,-28.9158],[29.0491,-28.9142],[29.0422,-28.9153],[29.0383,-28.9116],[29.0388,-28.9074],[29.0378,-28.9055],[29.0353,-28.9034],[29.0307,-28.9006],[29.0285,-28.8964],[29.0299,-28.8934],[29.0291,-28.888],[29.0204,-28.8835],[29.0176,-28.8816],[29.0144,-28.8833],[29.0111,-28.8841],[29.0121,-28.8853],[29.01,-28.8904],[29.0129,-28.8933],[29.0133,-28.8948],[29.012,-28.8973],[29.0106,-28.8978],[29.0056,-28.8976],[29.0045,-28.8989],[29.004,-28.9021],[29.0011,-28.9037],[28.9945,-28.905],[28.9921,-28.9106],[28.9919,-28.9129],[28.9904,-28.9145],[28.9852,-28.9157],[28.9802,-28.9147],[28.9757,-28.9089],[28.973,-28.9074],[28.975,-28.9034],[28.974,-28.9007],[28.9749,-28.8929],[28.9734,-28.8904],[28.9694,-28.8888],[28.9652,-28.8877],[28.9633,-28.8863],[28.9627,-28.8847],[28.9643,-28.8821],[28.9609,-28.8808],[28.9602,-28.8791],[28.9577,-28.8774],[28.9571,-28.876],[28.961,-28.8735],[28.9629,-28.8711],[28.9596,-28.8694],[28.9573,-28.8695],[28.954,-28.8679],[28.9485,-28.8689],[28.9398,-28.8624],[28.9392,-28.86],[28.9445,-28.8565],[28.9438,-28.8547],[28.9461,-28.8539],[28.9521,-28.8551],[28.953,-28.8522],[28.951,-28.8492],[28.9462,-28.8462],[28.945,-28.8423],[28.9477,-28.8406],[28.946,-28.8358],[28.9481,-28.8285],[28.9451,-28.8273],[28.9459,-28.8251],[28.9427,-28.8239],[28.9386,-28.8239],[28.9377,-28.8233],[28.9375,-28.8195],[28.9331,-28.8206],[28.931,-28.8203],[28.9284,-28.8186],[28.9247,-28.8175],[28.9219,-28.8125],[28.9306,-28.8095],[28.9346,-28.8095],[28.9342,-28.8068],[28.9365,-28.8047],[28.9399,-28.8065],[28.9491,-28.8042],[28.9493,-28.8008],[28.9478,-28.798],[28.94,-28.7951],[28.9353,-28.792],[28.9379,-28.7888],[28.939,-28.7854],[28.9421,-28.7875],[28.9447,-28.7876],[28.9438,-28.7827],[28.9377,-28.7791],[28.9321,-28.7749],[28.9259,-28.7732],[28.9208,-28.7706],[28.9172,-28.7705],[28.9146,-28.7695],[28.9154,-28.7648],[28.9138,-28.7634],[28.9119,-28.7603],[28.905,-28.7592],[28.9004,-28.7628],[28.8934,-28.7664],[28.888,-28.775],[28.8823,-28.775],[28.8736,-28.7723],[28.8736,-28.7707]]],[[[17.9544,-33.0868],[17.9505,-33.0822],[17.9523,-33.08],[17.9574,-33.0814],[17.9601,-33.0837],[17.9588,-33.086],[17.9553,-33.0875],[17.9544,-33.0868]]],[[[18.0233,-33.0946],[18.0194,-33.0946],[18.0181,-33.0936],[18.0181,-33.0901],[18.0196,-33.0884],[18.0226,-33.0882],[18.0235,-33.09],[18.026,-33.0902],[18.0263,-33.0918],[18.0233,-33.0946]]],[[[17.9261,-33.0551],[17.9238,-33.0545],[17.9233,-33.052],[17.9252,-33.0506],[17.9272,-33.0506],[17.9293,-33.0533],[17.9261,-33.0551]]],[[[17.9846,-33.1545],[17.98,-33.1527],[17.9804,-33.1507],[17.9857,-33.1505],[17.9861,-33.1536],[17.9846,-33.1545]]],[[[18.0094,-33.0872],[18.0059,-33.0858],[18.007,-33.0837],[18.0098,-33.0844],[18.0111,-33.0863],[18.0094,-33.0872]]],[[[18.0743,-33.4126],[18.0789,-33.4172],[18.0807,-33.4182],[18.0848,-33.4185],[18.0861,-33.4179],[18.0882,-33.4136],[18.0903,-33.4144],[18.0903,-33.4162],[18.092,-33.4215],[18.097,-33.4256],[18.0959,-33.428],[18.0987,-33.4303],[18.098,-33.432],[18.0957,-33.431],[18.0924,-33.4311],[18.0899,-33.4338],[18.0852,-33.4335],[18.0817,-33.4315],[18.0846,-33.4303],[18.0847,-33.4284],[18.0811,-33.4263],[18.08,-33.424],[18.0771,-33.4219],[18.0765,-33.4203],[18.0737,-33.4172],[18.0722,-33.4135],[18.0743,-33.4126]]],[[[19.4188,-34.6782],[19.4227,-34.679],[19.4234,-34.6801],[19.4199,-34.6827],[19.4162,-34.6844],[19.4149,-34.6865],[19.4115,-34.6849],[19.4124,-34.6829],[19.4174,-34.6807],[19.4188,-34.6782]]],[[[18.369,-33.7898],[18.3738,-33.7922],[18.3736,-33.796],[18.375,-33.7965],[18.3755,-33.8017],[18.3766,-33.8037],[18.38,-33.807],[18.3816,-33.8096],[18.3811,-33.8122],[18.3824,-33.8143],[18.3812,-33.8168],[18.3794,-33.8183],[18.3739,-33.8186],[18.3708,-33.8202],[18.3639,-33.817],[18.3607,-33.8144],[18.3613,-33.8114],[18.3594,-33.8071],[18.359,-33.8045],[18.3567,-33.8018],[18.3578,-33.7998],[18.3578,-33.7973],[18.3592,-33.7953],[18.3617,-33.7932],[18.3624,-33.7906],[18.366,-33.7896],[18.369,-33.7898]]]]</coordinates>
<displayShortName>South Africa</displayShortName>
<attributeValues>
<attributeValue created="2015-06-25T06:44:52.996+0000" lastUpdated="2015-06-25T06:44:53.266+0000">
<attribute name="OrgUnitShortOld" created="2015-06-25T06:44:57.000+0000" lastUpdated="2015-06-25T06:44:57.000+0000"
id="g5uQJ6f6c0B">
<externalAccess>false</externalAccess>
</attribute>
</attributeValue>
<attributeValue created="2015-06-25T06:44:52.996+0000" lastUpdated="2015-06-25T06:44:53.266+0000">
<attribute name="OrgUnitNameOld" created="2015-06-25T06:44:57.000+0000" lastUpdated="2015-06-25T06:44:57.000+0000"
id="wDrpnVgq1Dd">
<externalAccess>false</externalAccess>
</attribute>
</attributeValue>
<attributeValue created="2015-06-25T06:44:52.996+0000" lastUpdated="2015-06-25T06:44:53.266+0000">
<attribute name="UserName" created="2015-06-25T06:44:57.000+0000" lastUpdated="2015-06-25T06:44:57.000+0000" id="LdOKvEh7oLM">
<externalAccess>false</externalAccess>
</attribute>
<value>Calle_Hedberg</value>
</attributeValue>
</attributeValues>
</organisationUnit>
</organisationUnits>
</metaData>
References