Basic Usage#

[7]:
import footbridge as ft
[8]:
# large dataset of US National Highway System roads
# https://hepgis-usdot.hub.arcgis.com/datasets/dce9f09392eb474c8ad8e6a78416279b_0
gdb_file = "NHS.gdb"
[9]:
# Get detailed info before loading
ft.get_info(gdb_file)
[9]:
{'FeatureClass': [{'@xsi:type': 'typens:DEFeatureClassInfo',
   '@xmlns:xsi': 'http://www.w3.org/2001/XMLSchema-instance',
   '@xmlns:xs': 'http://www.w3.org/2001/XMLSchema',
   '@xmlns:typens': 'http://www.esri.com/schemas/ArcGIS/10.8',
   'CatalogPath': '\\National_Highway_System__NHS_',
   'Name': 'National_Highway_System__NHS_',
   'ChildrenExpanded': 'false',
   'DatasetType': 'esriDTFeatureClass',
   'DSID': '3',
   'Versioned': 'false',
   'CanVersion': 'false',
   'ConfigurationKeyword': None,
   'RequiredGeodatabaseClientVersion': '10.0',
   'HasOID': 'true',
   'OIDFieldName': 'OBJECTID',
   'GPFieldInfoExs': {'@xsi:type': 'typens:ArrayOfGPFieldInfoEx',
    'GPFieldInfoEx': [{'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'OBJECTID',
      'FieldType': 'esriFieldTypeOID',
      'IsNullable': 'false',
      'DomainFixed': 'true',
      'Required': 'true',
      'Editable': 'false'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'SHAPE',
      'FieldType': 'esriFieldTypeGeometry',
      'IsNullable': 'true',
      'DomainFixed': 'true',
      'Required': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'VERSION',
      'AliasName': 'VERSION',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'YEAR',
      'AliasName': 'YEAR',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'STFIPS',
      'AliasName': 'STFIPS',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'CTFIPS',
      'AliasName': 'CTFIPS',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'ROUTEID',
      'AliasName': 'ROUTEID',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'BEGINPOINT',
      'AliasName': 'BEGINPOINT',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'ENDPOINT',
      'AliasName': 'ENDPOINT',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'SIGN1',
      'AliasName': 'SIGN1',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'SIGNT1',
      'AliasName': 'SIGNT1',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'SIGNN1',
      'AliasName': 'SIGNN1',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'LNAME',
      'AliasName': 'LNAME',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'NHS',
      'AliasName': 'NHS',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'STATUS',
      'AliasName': 'STATUS',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'FACID',
      'AliasName': 'FACID',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'CONNID',
      'AliasName': 'CONNID',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'CONNDES',
      'AliasName': 'CONNDES',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'CONNMILES',
      'AliasName': 'CONNMILES',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'ACLASS',
      'AliasName': 'ACLASS',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'FCLASS',
      'AliasName': 'FCLASS',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'FACILITYT',
      'AliasName': 'FACILITYT',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'THROUGH_LA',
      'AliasName': 'THROUGH_LA',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'SPEED_LIMI',
      'AliasName': 'SPEED_LIMI',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'OWNERSHIP',
      'AliasName': 'OWNERSHIP',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'URBANCODE',
      'AliasName': 'URBANCODE',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'AADT',
      'AliasName': 'AADT',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'AADT_COM',
      'AliasName': 'AADT_COM',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'AADT_SINGL',
      'AliasName': 'AADT_SINGL',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'FUT_AADT',
      'AliasName': 'FUT_AADT',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'FUT_YEAR',
      'AliasName': 'FUT_YEAR',
      'FieldType': 'esriFieldTypeDate',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'MILES',
      'AliasName': 'MILES',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'UPDATE_DAT',
      'AliasName': 'UPDATE_DAT',
      'FieldType': 'esriFieldTypeDate',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'NHS_ACTION',
      'AliasName': 'NHS_ACTION',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'FILE_NAME',
      'AliasName': 'FILE_NAME',
      'FieldType': 'esriFieldTypeString',
      'IsNullable': 'true'},
     {'@xsi:type': 'typens:GPFieldInfoEx',
      'Name': 'SHAPE_Length',
      'FieldType': 'esriFieldTypeDouble',
      'IsNullable': 'true',
      'Required': 'true',
      'Editable': 'false'}]},
   'CLSID': '{52353152-891A-11D0-BEC6-00805F7C4268}',
   'EXTCLSID': None,
   'RelationshipClassNames': {'@xsi:type': 'typens:Names'},
   'AliasName': None,
   'ModelName': None,
   'HasGlobalID': 'false',
   'GlobalIDFieldName': None,
   'RasterFieldName': None,
   'ExtensionProperties': {'@xsi:type': 'typens:PropertySet',
    'PropertyArray': {'@xsi:type': 'typens:ArrayOfPropertySetProperty'}},
   'ControllerMemberships': {'@xsi:type': 'typens:ArrayOfControllerMembership'},
   'EditorTrackingEnabled': 'false',
   'CreatorFieldName': None,
   'CreatedAtFieldName': None,
   'EditorFieldName': None,
   'EditedAtFieldName': None,
   'IsTimeInUTC': 'true',
   'FeatureType': 'esriFTSimple',
   'ShapeType': 'esriGeometryPolyline',
   'ShapeFieldName': 'SHAPE',
   'HasM': 'false',
   'HasZ': 'false',
   'HasSpatialIndex': 'true',
   'AreaFieldName': None,
   'LengthFieldName': 'SHAPE_Length',
   'Extent': {'@xsi:nil': 'true'},
   'SpatialReference': {'@xsi:type': 'typens:GeographicCoordinateSystem',
    'WKT': 'GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433],AUTHORITY["EPSG",4326]]',
    'XOrigin': '-400',
    'YOrigin': '-400',
    'XYScale': '999999999.99999988',
    'ZOrigin': '-100000',
    'ZScale': '10000',
    'MOrigin': '-100000',
    'MScale': '10000',
    'XYTolerance': '8.983152841195215e-09',
    'ZTolerance': '0.001',
    'MTolerance': '0.001',
    'HighPrecision': 'true',
    'LeftLongitude': '-180',
    'WKID': '4326',
    'LatestWKID': '4326'},
   'ChangeTracked': 'false',
   'FieldFilteringEnabled': 'false',
   'FilteredFieldNames': {'@xsi:type': 'typens:Names'},
   'ReplicaTracked': 'false'}],
 'Workspace': [{'@xsi:type': 'typens:DEWorkspace',
   '@xmlns:xsi': 'http://www.w3.org/2001/XMLSchema-instance',
   '@xmlns:xs': 'http://www.w3.org/2001/XMLSchema',
   '@xmlns:typens': 'http://www.esri.com/schemas/ArcGIS/10.8',
   'CatalogPath': '\\',
   'Name': None,
   'ChildrenExpanded': 'false',
   'WorkspaceType': 'esriLocalDatabaseWorkspace',
   'WorkspaceFactoryProgID': None,
   'ConnectionString': None,
   'ConnectionInfo': {'@xsi:nil': 'true'},
   'Domains': {'@xsi:type': 'typens:ArrayOfDomain'},
   'MajorVersion': '3',
   'MinorVersion': '0',
   'BugfixVersion': '0',
   'Realm': None,
   'MaxAttributeRuleID': '0'}],
 'metadata': [{'@xml:lang': 'en',
   'Esri': {'CreaDate': '20251103',
    'CreaTime': '15373200',
    'ArcGISFormat': '1.0',
    'SyncOnce': 'TRUE',
    'DataProperties': {'itemProps': {'itemLocation': {'linkage': {'@Sync': 'TRUE',
        '#text': 'file://\\\\WJWSRQBOY000037\\ADMIN$\\SystemTemp\\3e70d1f0-e036-4a5f-a9ee-c1d5e294b0f9.gdb'},
       'protocol': {'@Sync': 'TRUE', '#text': 'Local Area Network'}}}}},
   'mdChar': {'CharSetCd': {'@value': '004'}},
   'mdHrLv': {'ScopeCd': {'@value': '005'}},
   'mdContact': {'rpIndName': 'Edward Starks',
    'rpOrgName': 'Federal Highway Administration (FHWA)',
    'rpPosName': 'Transportation Specialist',
    'rpCntInfo': {'cntAddress': {'@addressType': 'both',
      'delPoint': '1200 New Jersey Ave. SE',
      'city': 'Washington',
      'adminArea': 'DC',
      'postCode': '20590',
      'country': 'United States',
      'eMailAdd': 'edward.starks@dot.gov'}},
    'role': {'RoleCd': {'@value': '007'}}},
   'mdDateSt': '2025-08-12',
   'distInfo': {'distributor': [{'distorCont': {'rpOrgName': 'Bureau of Transportation Statistics',
       'rpPosName': 'NTAD Program Manager',
       'rpCntInfo': {'cntPhone': {'voiceNum': 'none'},
        'cntAddress': {'@addressType': 'both',
         'delPoint': '1200 New Jersey Ave. SE',
         'city': 'Washington',
         'adminArea': 'DC',
         'postCode': '20590',
         'country': 'US',
         'eMailAdd': 'ntad@dot.gov'}},
       'role': {'RoleCd': {'@value': '005'}}},
      'distorOrdPrc': {'resFees': 'None. No fees are applicable for obtaining the dataset.'},
      'distorFormat': {'formatName': 'Open Data Catalog',
       'formatVer': '1.1',
       'formatSpec': 'Hosted Downloads',
       'formatInfo': 'An ESRI Geodatabase, ESRI shapefile, or spreadsheet.',
       'fileDecmTech': 'ZIP'},
      'distorTran': {'onLineSrc': {'linkage': 'https://doi.org/10.21949/1530052'}}},
     {'distorCont': {'rpOrgName': 'Bureau of Transportation Statistics',
       'rpPosName': 'NTAD Program Manager',
       'rpCntInfo': {'cntPhone': {'voiceNum': 'none'},
        'cntAddress': {'@addressType': 'both',
         'delPoint': '1200 New Jersey Ave. SE',
         'city': 'Washington',
         'adminArea': 'DC',
         'postCode': '20590',
         'country': 'US',
         'eMailAdd': 'ntad@dot.gov'}},
       'role': {'RoleCd': {'@value': '005'}}},
      'distorOrdPrc': {'resFees': 'None. No fees are applicable for obtaining the dataset.'},
      'distorFormat': {'formatName': 'ArcGIS REST Services Directory Feature Server (WFS)',
       'formatVer': '11.5',
       'formatSpec': 'https://ienccloud.us/arcgis/sdk/rest/index.html#/Feature_Service/02ss0000007v000000/',
       'formatInfo': 'complies with\xa0OGC WFS Map Service for visualizing geospatial information'},
      'distorTran': {'onLineSrc': {'linkage': 'https://doi.org/10.21949/1530053'}}}]},
   'dataIdInfo': {'idCitation': {'resTitle': 'National Highway System (NHS)',
     'date': {'createDate': '2024-01-23', 'lastUpdateDate': '2025-08-08'},
     'citRespParty': {'rpOrgName': 'Federal Highway Administration (FHWA)',
      'role': {'RoleCd': {'@value': '006'}}},
     'presForm': [{'PresFormCd': {'@value': ''}},
      {'fgdcGeoform': 'vector digital data'}],
     'collTitle': 'National Transportation Atlas Database'},
    'idAbs': "The National Highway System (NHS) dataset and its geometries was updated on August 08, 2025 from the Federal Highway Administration (FHWA) and is part of the U.S. Department of Transportation (USDOT)/Bureau of Transportation Statistics (BTS) National Transportation Atlas Database (NTAD). The National Highway System consists of roadways important to the nation's economy, defense, and mobility. The National Highway System (NHS) includes the following subsystems of roadways: Interstate - The Eisenhower Interstate System of highways, Other Principal Arterials - highways in rural and urban areas which provide access between an arterial and a major port, airport, public transportation facility, or other intermodal transportation facility, Strategic Highway Network (STRAHNET) - a network of highways which are important to the United States' strategic defense policy and which provide defense access, continuity and emergency capabilities for defense purposes, Major Strategic Highway Network Connectors - highways which provide access between major military installations and highways which are part of the Strategic Highway Network, Intermodal Connectors - highways providing access between major intermodal facilities and the other four subsystems making up the National Highway System. A specific highway route may be on more than one subsystem. A data dictionary, or other source of attribute information, is accessible at https://doi.org/10.21949/1529838",
    'idPurp': "The dataset exists to serve the Federal Highway Administration (FHWA) needs in highway planning, policy analysis, and visualization of the NHS database. It is intended for use in understanding and managing the National Highway System, which includes roadways crucial to the nation's economy, defense, and mobility. Also, the dataset is being used by the US DOT to reflect the FHWA-approved technical correction for NHS and STRAHNET.",
    'idCredit': 'Acknowledgment of the Federal Highway Administration (FHWA) and Bureau of Transportation Statistics (BTS) [distributor].',
    'idStatus': {'ProgCd': {'@value': '004'}},
    'idPoC': {'rpIndName': 'Edward Starks',
     'rpOrgName': 'Federal Highway Administration (FHWA)',
     'rpPosName': 'Transportation Specialist',
     'rpCntInfo': {'cntAddress': {'@addressType': 'both',
       'delPoint': '1200 New Jersey Ave. SE',
       'city': 'Washington',
       'adminArea': 'DC',
       'postCode': '20590',
       'country': 'United States',
       'eMailAdd': 'edward.starks@dot.gov'}},
     'role': {'RoleCd': {'@value': '007'}}},
    'resMaint': {'maintFreq': {'MaintFreqCd': {'@value': '009'}}},
    'placeKeys': {'keyword': ['National', 'United States', 'USA']},
    'themeKeys': [{'keyword': 'transportation',
      'thesaName': {'resTitle': 'ISO 19115 Topic Category'}},
     {'keyword': ['NTAD',
       'National Transportation Atlas Database',
       'Transportation',
       'Atlas',
       'Database',
       'vector',
       'line',
       'linear Roads',
       'Analysis',
       'Network',
       'Highways',
       'NHS',
       'Highway',
       'Interstate']}],
    'searchKeys': {'keyword': ['transportation',
      'National',
      'United States',
      'USA',
      'NTAD',
      'National Transportation Atlas Database',
      'Transportation',
      'Atlas',
      'Database',
      'vector',
      'line',
      'linear Roads',
      'Analysis',
      'Network',
      'Highways',
      'NHS',
      'Highway',
      'Interstate']},
    'resConst': [{'Consts': {'useLimit': 'The NHS Version 2025.08.08 database, or any portion thereof, can be freely distributed as long as this metadata entry is included with each distribution. The original metadata entry cannot be modified or deleted from any data transfer. This NTAD dataset is a work of the United States government as defined in 17 U.S.C. § 101 and as such are not protected by any U.S. copyrights. This work is available for unrestricted public use.'}},
     {'Consts': {'useLimit': 'The NHS Version 2025.08.08 database, or any portion thereof, can be freely distributed as long as this metadata entry is included with each distribution. The original metadata entry cannot be modified or deleted from any data transfer. This NTAD dataset is a work of the United States government as defined in 17 U.S.C. § 101 and as such are not protected by any U.S. copyrights. This work is available for unrestricted public use.'},
      'LegConsts': {'accessConsts': {'RestrictCd': {'@value': ''}}}}],
    'aggrInfo': {'aggrDSName': {'resTitle': 'National Transportation Atlas Database',
      'date': {'pubDate': '2025-08-08'},
      'citRespParty': {'rpOrgName': 'Bureau of Transportation Statistics',
       'role': {'RoleCd': {'@value': '006'}}}},
     'assocType': {'AscTypeCd': {'@value': '002'}}},
    'tpCat': {'TopicCatCd': {'@value': '018'}},
    'dataExt': {'geoEle': {'GeoBndBox': {'exTypeCode': 'true',
       'westBL': '-159.465967',
       'eastBL': '-65.63071',
       'northBL': '70.206526',
       'southBL': '17.966378'}},
     'tempEle': {'TempExtent': {'exTemp': {'TM_Instant': {'tmPosition': '2025-08-08'}}}}},
    'envirDesc': 'Version 6.2 (Build 9200) ; Esri ArcGIS 10.8.1.14362'},
   'mdMaint': {'resMaint': {'maintFreq': {'MaintFreqCd': {'@value': '009'}}}},
   'dqInfo': {'dqScope': {'scpLvl': {'ScopeCd': {'@value': '005'}}},
    'report': {'@type': 'DQCompOm',
     'measDesc': 'Data set is considered complete for the information presented, as described in the abstract. Users are advised to read the rest of the metadata record carefully for additional details.'},
    'dataLineage': {'prcStep': {'stepDesc': 'An inclusive work plan is developed including a project management plan, detailed work breakdown structure, project schedule, and performance metrics. The extent of this responsibility includes the arrangement of an initial meeting to facilitate coordination and planning, addressing any emerging matters or concerns, establishing clear roles and responsibilities, and establishing a platform for inquiries and responses among FHWA, FHWA resource center, and the State DOT representative. This involves processing technical corrections to the NHS geospatial nework, including updates, additions, or removals using the latest HPMS geospatial entity or ARNOLD geospatial entity as applicable. The main tasks involve the analysis and updating of the NHS network, and the utilization of custom geospatial tools for improved efficiency, such as carrying out various edits like updating route numbers, NHS classification, and geometries. Deliverable for this task include a finalized NHS network in digital format that include all technical corrections on existing NHS designation, adding new and approved NHS segments, technical correction to STRAHNET.'}}},
   'spatRepInfo': {'VectSpatRep': {'geometObjs': {'geoObjTyp': {'GeoObjTypCd': {'@value': '003'}},
      'geoObjCnt': '491781'}}},
   'eainfo': {'overview': {'eadetcit': 'A data dictionary resource of attribute information is accessible at https://doi.org/10.21949/1529838'}}}]}
[12]:
# Set up the footbridge object
gdb = ft.GeoDatabase(gdb_file)
gdb.fc_dict
[12]:
{'National_Highway_System__NHS_': <footbridge._core.FeatureClass at 0x7f03a77ffbb0>}
[14]:
# Access FeatureClass names
gdb.fc_names
[14]:
['National_Highway_System__NHS_']
[15]:
# Access FeatureClass objects
gdb.fcs
[15]:
[<footbridge._core.FeatureClass at 0x7f03a77ffbb0>]
[17]:
# get a feature class from a geodatabase by name or by index
fc = gdb["National_Highway_System__NHS_"]
print(f"Feature class contains {len(fc)} rows")

fc = gdb[0]
print(f"Feature class contains {len(fc)} rows")
Feature class contains 492005 rows
Feature class contains 492005 rows
[18]:
# access a feature class directly
fc = ft.FeatureClass("NHS.gdb/National_Highway_System__NHS_")
print(f"Feature class contains {len(fc)} rows")
Feature class contains 492005 rows
[19]:
# access a row by index
fc[100]
[19]:
VERSION YEAR STFIPS CTFIPS ROUTEID BEGINPOINT ENDPOINT SIGN1 SIGNT1 SIGNN1 ... AADT_COM AADT_SINGL FUT_AADT FUT_YEAR MILES UPDATE_DAT NHS_ACTION FILE_NAME SHAPE_Length geometry
ObjectID
100 2025.08.08 2020.0 15.0 1.0 19 0.0 99.49 S19 S 19 ... 283.0 477.0 12439.0 2039-12-31 00:00:00+00:00 0.080054 NaT HI_NHS_2021 0.001203 MULTILINESTRING ((-155.9896 19.80811, -155.99019 19.80764, -155.99055 19.80736))

1 rows × 35 columns

[20]:
# access multiple rows with slices
fc[100:105]
[20]:
VERSION YEAR STFIPS CTFIPS ROUTEID BEGINPOINT ENDPOINT SIGN1 SIGNT1 SIGNN1 ... AADT_COM AADT_SINGL FUT_AADT FUT_YEAR MILES UPDATE_DAT NHS_ACTION FILE_NAME SHAPE_Length geometry
ObjectID
100 2025.08.08 2020.0 15.0 1.0 19 0.00 99.49 S19 S 19 ... 283.0 477.0 12439.0 2039-12-31 00:00:00+00:00 0.080054 NaT HI_NHS_2021 0.001203 MULTILINESTRING ((-155.9896 19.80811, -155.99019 19.80764, -155.99055 19.80736))
101 2025.08.08 2020.0 15.0 1.0 11 109.22 121.98 S11 S 11 ... 43.0 143.0 16415.0 2039-12-31 00:00:00+00:00 1.669810 NaT HI_NHS_2021 0.024468 MULTILINESTRING ((-155.92041 19.5203, -155.92056 19.52098, -155.92066 19.52138, -155.92072 19.52157, -155.9208 19.52179, -155.92091 19.52206, -155.92102 19.5223, -155.92116 19.52256, -155.9215 19.52311, -155.92193 19.52378, -155.9228 19.52512, -155.92316 19.5257, -155.92329 19.52593, -155.92348 19.52629, -155.92368 19.52675, -155.92387 19.52724, -155.92414 19.52802, -155.9243 19.52846, -155.92454 19.52903, -155.92483 19.52964, -155.92515 19.53023, -155.92548 19.53079, -155.92579 19.53129, -155.92694 19.53305, -155.92712 19.53335, -155.92727 19.53361, -155.92739 19.53385, -155.92756 19.53422, -155.92769 19.53455, -155.92787 19.53504, -155.92795 19.53532, -155.92799 19.53561, -155.92804 19.53616, -155.9281 19.53653, -155.92818 19.53687, -155.92843 19.53777, -155.92849 19.53803, -155.92859 19.53852, -155.92885 19.53983, -155.92889 19.54012, -155.92892 19.54044, -155.929 19.54166, -155.92903 19.54242, -155.92905 19.54253, -155.92905 19.54254, -155.92908 19.54264, -155.92914 19.54274, -155.92915 19.54275))
102 2025.08.08 2020.0 15.0 1.0 11 109.22 121.98 S11 S 11 ... 135.0 510.0 14235.0 2039-12-31 00:00:00+00:00 0.799934 NaT HI_NHS_2021 0.012066 MULTILINESTRING ((-155.90857 19.48801, -155.91085 19.48934, -155.91127 19.48957, -155.91189 19.48989, -155.91213 19.49002, -155.91225 19.49011, -155.91246 19.49028, -155.91347 19.49113, -155.91389 19.49148, -155.9143 19.49178, -155.9145 19.49191, -155.91471 19.49203, -155.91505 19.49222, -155.91546 19.49241, -155.916 19.49262, -155.91727 19.49308, -155.91752 19.49319, -155.91773 19.4933, -155.91793 19.49344, -155.91814 19.49361, -155.91831 19.49382, -155.91846 19.49404, -155.91852 19.49415, -155.91856 19.49422, -155.91862 19.49437))
103 2025.08.08 2020.0 15.0 1.0 11 109.22 121.98 S11 S 11 ... 104.0 403.0 14106.0 2039-12-31 00:00:00+00:00 1.803699 NaT HI_NHS_2021 0.026264 MULTILINESTRING ((-155.91864 19.49446, -155.91868 19.49458, -155.91872 19.49481, -155.91873 19.49498, -155.91874 19.49516, -155.91874 19.49609, -155.91875 19.49646, -155.91877 19.49672, -155.91882 19.49704, -155.91886 19.49727, -155.9189 19.49747, -155.91898 19.49772, -155.91916 19.49824, -155.92004 19.50056, -155.92023 19.50111, -155.92032 19.50139, -155.92038 19.50165, -155.92042 19.50191, -155.92045 19.50214, -155.92046 19.50255, -155.92047 19.50357, -155.92046 19.50432, -155.92044 19.50475, -155.92041 19.5051, -155.92018 19.50714, -155.92008 19.50821, -155.92001 19.50893, -155.92 19.50936, -155.92002 19.50974, -155.92007 19.51023, -155.92057 19.51397, -155.92061 19.51467, -155.92061 19.51496, -155.92059 19.51528, -155.92052 19.51586, -155.92017 19.51769, -155.92011 19.51807, -155.92009 19.51835, -155.9201 19.51876, -155.92012 19.51899, -155.92016 19.51922, -155.92041 19.5203))
104 2025.08.08 2020.0 15.0 1.0 11 109.22 121.98 S11 S 11 ... 261.0 984.0 23853.0 2039-12-31 00:00:00+00:00 1.999768 NaT HI_NHS_2021 0.029352 MULTILINESTRING ((-155.95563 19.58858, -155.95588 19.58897, -155.95655 19.58995, -155.95684 19.59039, -155.95704 19.59072, -155.9572 19.59104, -155.9573 19.59131, -155.95738 19.59162, -155.95747 19.59208, -155.95772 19.59363, -155.95785 19.59423, -155.95801 19.59482, -155.95821 19.5955, -155.95843 19.5961, -155.95866 19.59667, -155.95899 19.5974, -155.965 19.6092, -155.96561 19.61044, -155.96729 19.61373, -155.96797 19.61505))

5 rows × 35 columns

[21]:
# access multiple rows with a mix of slices and indexes
fc[10, 100:102, 200, 300:302]
[21]:
VERSION YEAR STFIPS CTFIPS ROUTEID BEGINPOINT ENDPOINT SIGN1 SIGNT1 SIGNN1 ... AADT_COM AADT_SINGL FUT_AADT FUT_YEAR MILES UPDATE_DAT NHS_ACTION FILE_NAME SHAPE_Length geometry
ObjectID
10 2025.08.08 2020.0 15.0 9.0 380 0.96 6.170 S380 S 380 ... 131.0 908.0 12226.0 2039-12-31 00:00:00+00:00 4.480081 NaT HI_NHS_2021 0.066533 MULTILINESTRING ((-156.46793 20.86938, -156.47476 20.86298, -156.47601 20.86181, -156.47647 20.86135, -156.47687 20.86094, -156.47734 20.86044, -156.4777 20.86005, -156.47802 20.85969, -156.4785 20.85912, -156.4788 20.85876, -156.47915 20.85831, -156.47974 20.85753, -156.48006 20.85708, -156.48043 20.85654, -156.48098 20.8557, -156.48148 20.85486, -156.48219 20.85361, -156.48983 20.83998, -156.49042 20.83893, -156.49067 20.83843, -156.49096 20.83782, -156.4912 20.83725, -156.49142 20.83665, -156.49161 20.83604, -156.49174 20.83559, -156.49187 20.83508, -156.49293 20.83072, -156.49309 20.83015, -156.49324 20.82965, -156.49337 20.82929, -156.49351 20.82893, -156.49368 20.82856, -156.49383 20.82823, -156.49403 20.82784, -156.49419 20.82755, -156.49441 20.82717, -156.49464 20.82682, -156.49501 20.82629, -156.4954 20.82579, -156.49583 20.82529, -156.49631 20.8248, -156.49662 20.82451, -156.49696 20.82421, -156.49936 20.82216, -156.49974 20.82182, -156.50027 20.82133, -156.50081 20.82081, -156.50131 20.8203, -156.50281 20.81871, -156.50307 20.81845, -156.50329 20.81825, -156.50365 20.81797, -156.50403 20.81772, -156.50444 20.8175, -156.50488 20.81729, -156.50528 20.81713, -156.5057 20.817, -156.50591 20.81695, -156.50618 20.8169))
100 2025.08.08 2020.0 15.0 1.0 19 0.00 99.490 S19 S 19 ... 283.0 477.0 12439.0 2039-12-31 00:00:00+00:00 0.080054 NaT HI_NHS_2021 0.001203 MULTILINESTRING ((-155.9896 19.80811, -155.99019 19.80764, -155.99055 19.80736))
101 2025.08.08 2020.0 15.0 1.0 11 109.22 121.980 S11 S 11 ... 43.0 143.0 16415.0 2039-12-31 00:00:00+00:00 1.669810 NaT HI_NHS_2021 0.024468 MULTILINESTRING ((-155.92041 19.5203, -155.92056 19.52098, -155.92066 19.52138, -155.92072 19.52157, -155.9208 19.52179, -155.92091 19.52206, -155.92102 19.5223, -155.92116 19.52256, -155.9215 19.52311, -155.92193 19.52378, -155.9228 19.52512, -155.92316 19.5257, -155.92329 19.52593, -155.92348 19.52629, -155.92368 19.52675, -155.92387 19.52724, -155.92414 19.52802, -155.9243 19.52846, -155.92454 19.52903, -155.92483 19.52964, -155.92515 19.53023, -155.92548 19.53079, -155.92579 19.53129, -155.92694 19.53305, -155.92712 19.53335, -155.92727 19.53361, -155.92739 19.53385, -155.92756 19.53422, -155.92769 19.53455, -155.92787 19.53504, -155.92795 19.53532, -155.92799 19.53561, -155.92804 19.53616, -155.9281 19.53653, -155.92818 19.53687, -155.92843 19.53777, -155.92849 19.53803, -155.92859 19.53852, -155.92885 19.53983, -155.92889 19.54012, -155.92892 19.54044, -155.929 19.54166, -155.92903 19.54242, -155.92905 19.54253, -155.92905 19.54254, -155.92908 19.54264, -155.92914 19.54274, -155.92915 19.54275))
200 2025.08.08 2020.0 15.0 3.0 0.00 0.316 ... 52.0 100.0 1638.0 2037-12-01 00:00:00+00:00 0.315845 2021-05-10 00:00:00+00:00 HI_NHS_2021 0.004743 MULTILINESTRING ((-158.11466 21.31782, -158.11476 21.31799, -158.11488 21.31812, -158.11807 21.3211))
300 2025.08.08 2020.0 15.0 3.0 H-1 0.00 27.160 IH1 I 1 ... 1601.0 18373.0 215309.0 2039-12-31 00:00:00+00:00 0.155034 NaT HI_NHS_2021 0.002399 MULTILINESTRING ((-157.99676 21.3985, -157.99441 21.398))
301 2025.08.08 2020.0 15.0 3.0 H-1 0.00 27.160 IH1 I 1 ... 1601.0 18373.0 215309.0 2039-12-31 00:00:00+00:00 0.104974 NaT HI_NHS_2021 0.001624 MULTILINESTRING ((-157.99834 21.39884, -157.99767 21.3987, -157.99676 21.3985))

6 rows × 35 columns

[22]:
# access multiple rows with a list of indexes
fc[100, 200, 300]
fc[[100, 200, 300]]
fc[(100, 200, 300)]
[22]:
VERSION YEAR STFIPS CTFIPS ROUTEID BEGINPOINT ENDPOINT SIGN1 SIGNT1 SIGNN1 ... AADT_COM AADT_SINGL FUT_AADT FUT_YEAR MILES UPDATE_DAT NHS_ACTION FILE_NAME SHAPE_Length geometry
ObjectID
100 2025.08.08 2020.0 15.0 1.0 19 0.0 99.490 S19 S 19 ... 283.0 477.0 12439.0 2039-12-31 00:00:00+00:00 0.080054 NaT HI_NHS_2021 0.001203 MULTILINESTRING ((-155.9896 19.80811, -155.99019 19.80764, -155.99055 19.80736))
200 2025.08.08 2020.0 15.0 3.0 0.0 0.316 ... 52.0 100.0 1638.0 2037-12-01 00:00:00+00:00 0.315845 2021-05-10 00:00:00+00:00 HI_NHS_2021 0.004743 MULTILINESTRING ((-158.11466 21.31782, -158.11476 21.31799, -158.11488 21.31812, -158.11807 21.3211))
300 2025.08.08 2020.0 15.0 3.0 H-1 0.0 27.160 IH1 I 1 ... 1601.0 18373.0 215309.0 2039-12-31 00:00:00+00:00 0.155034 NaT HI_NHS_2021 0.002399 MULTILINESTRING ((-157.99676 21.3985, -157.99441 21.398))

3 rows × 35 columns

[23]:
# iterate over rows
for row in fc:
    print(row)
    break  # remove this line to print all rows
Pandas(Index=0, VERSION='2025.08.08', YEAR=2020.0, STFIPS=2.0, CTFIPS=290.0, ROUTEID='1260000X000', BEGINPOINT=157.02, ENDPOINT=176.061, SIGN1='S11', SIGNT1='S', SIGNN1='11', LNAME='James Dalton Hwy', NHS=7.0, STATUS=1.0, FACID=' ', CONNID=' ', CONNDES=' ', CONNMILES=0.0, ACLASS='P', FCLASS=3.0, FACILITYT=2.0, THROUGH_LA=2.0, SPEED_LIMI=50.0, OWNERSHIP=1.0, URBANCODE=99999.0, AADT=140.0, AADT_COM=55.0, AADT_SINGL=49.0, FUT_AADT=290.0, FUT_YEAR=Timestamp('2039-12-31 00:00:00+0000', tz='UTC'), MILES=17.912424, UPDATE_DAT=NaT, NHS_ACTION=' ', FILE_NAME='AK_NHS_2021', SHAPE_Length=0.3627335320588993, geometry=<MULTILINESTRING ((-150.289 67.018, -150.289 67.018, -150.289 67.018, -150.2...>)
[24]:
# access columns by index
field_name = "MILES"
column_index = fc.list_fields().index(field_name)
print(f"The field '{field_name}' is at column index {column_index}:")

for row in fc:
    print(row[column_index])
    print(row[30])
    break  # remove this line to print all rows
The field 'MILES' is at column index 30:
17.912424
17.912424
[25]:
# Set the value of a row's column by name
fc[(0, "VERSION")] = "deprecated"
fc[0]
[25]:
VERSION YEAR STFIPS CTFIPS ROUTEID BEGINPOINT ENDPOINT SIGN1 SIGNT1 SIGNN1 ... AADT_COM AADT_SINGL FUT_AADT FUT_YEAR MILES UPDATE_DAT NHS_ACTION FILE_NAME SHAPE_Length geometry
ObjectID
0 deprecated 2020.0 2.0 290.0 1260000X000 157.02 176.061 S11 S 11 ... 55.0 49.0 290.0 2039-12-31 00:00:00+00:00 17.912424 NaT AK_NHS_2021 0.362734 MULTILINESTRING ((-150.28948 67.01803, -150.28942 67.01809, -150.28937 67.01816, -150.28931 67.01823, -150.28926 67.01829, -150.2892 67.01836, -150.28914 67.01843, -150.28908 67.0185, -150.28903 67.01857, -150.28897 67.01864, -150.28892 67.0187, -150.28886 67.01877, -150.28881 67.01884, -150.28876 67.01891, -150.2887 67.01898, -150.28864 67.01905, -150.28859 67.01912, -150.28853 67.01918, -150.28848 67.01925, -150.28842 67.01932, -150.28836 67.01939, -150.2883 67.01946, -150.28825 67.01952, -150.28819 67.01959, -150.28813 67.01966, -150.28808 67.01973, -150.28802 67.0198, -150.28796 67.01986, -150.28791 67.01993, -150.28785 67.02, -150.2878 67.02007, -150.28774 67.02014, -150.28768 67.02021, -150.28763 67.02027, -150.28757 67.02034, -150.28751 67.02041, -150.28746 67.02048, -150.2874 67.02055, -150.28735 67.02061, -150.2873 67.02068, -150.28725 67.02075, -150.2872 67.02082, -150.28715 67.02089, -150.28711 67.02096, -150.28707 67.02103, -150.28703 67.0211, -150.287 67.02117, -150.28697 67.02124, -150.28695 67.02131, -150.28693 67.02138, -150.28692 67.02145, -150.28691 67.02152, -150.28691 67.02159, -150.2869 67.02166, -150.28691 67.02173, -150.28692 67.0218, -150.28693 67.02187, -150.28694 67.02194, -150.28696 67.02201, -150.28699 67.02208, -150.28701 67.02215, -150.28705 67.02222, -150.28708 67.02229, -150.28712 67.02236, -150.28716 67.02243, -150.2872 67.0225, -150.28725 67.02257, -150.2873 67.02263, -150.28736 67.0227, -150.28742 67.02277, -150.28748 67.02283, -150.28755 67.0229, -150.28762 67.02296, -150.2877 67.02303, -150.28778 67.02309, -150.28786 67.02315, -150.28795 67.02321, -150.28804 67.02328, -150.28813 67.02334, -150.28822 67.0234, -150.28832 67.02346, -150.28841 67.02352, -150.28851 67.02358, -150.28861 67.02364, -150.2887 67.0237, -150.2888 67.02375, -150.2889 67.02381, -150.289 67.02387, -150.2891 67.02393, -150.28919 67.02399, -150.28929 67.02405, -150.28939 67.02411, -150.28949 67.02417, -150.28959 67.02423, -150.28968 67.02429, -150.28978 67.02435, -150.28988 67.02441, -150.28998 67.02447, -150.29008 67.02453, -150.29018 67.02459, -150.29027 67.02465, -150.29037 67.02471, -150.29047 67.02477, -150.29057 67.02483, -150.29066 67.02489, -150.29076 67.02495, -150.29086 67.02501, -150.29095 67.02507, -150.29105 67.02513, -150.29115 67.02519, -150.29124 67.02525, -150.29134 67.02531, -150.29144 67.02537, -150.29153 67.02543, -150.29163 67.02549, -150.29173 67.02555, -150.29182 67.02561, -150.29192 67.02567, -150.29202 67.02573, -150.29212 67.02579, -150.29222 67.02585, -150.29231 67.02591, -150.29241 67.02597, -150.29251 67.02603, -150.29261 67.02609, -150.29271 67.02615, -150.2928 67.02621, -150.2929 67.02627, -150.293 67.02633, -150.2931 67.0264, -150.2932 67.02646, -150.2933 67.02652, -150.29339 67.02658, -150.29349 67.02664, -150.29359 67.0267, -150.29368 67.02676, -150.29378 67.02682, -150.29388 67.02688, -150.29398 67.02694, -150.29408 67.027, -150.29418 67.02706, -150.29427 67.02712, -150.29437 67.02718, -150.29447 67.02724, -150.29457 67.0273, -150.29467 67.02736, -150.29477 67.02742, -150.29487 67.02748, -150.29497 67.02754, -150.29507 67.0276, -150.29517 67.02766, -150.29526 67.02772, -150.29536 67.02778, -150.29546 67.02784, -150.29556 67.0279, -150.29566 67.02796, -150.29576 67.02802, -150.29586 67.02808, -150.29595 67.02814, -150.29605 67.0282, -150.29615 67.02826, -150.29625 67.02832, -150.29635 67.02838, -150.29645 67.02844, -150.29654 67.0285, -150.29664 67.02856, -150.29674 67.02862, -150.29684 67.02868, -150.29694 67.02874, -150.29704 67.0288, -150.29713 67.02886, -150.29723 67.02892, -150.29733 67.02898, -150.29742 67.02905, -150.29752 67.02911, -150.29762 67.02917, -150.29771 67.02923, -150.29781 67.02929, -150.29791 67.02935, -150.298 67.02941, -150.2981 67.02947, -150.2982 67.02953, -150.29829 67.02959, -150.29839 67.02965, -150.29849 67.02971, -150.29858 67.02977, -150.29868 67.02984, -150.29877 67.0299, -150.29886 67.02996, -150.29896 67.03002, -150.29905 67.03008, -150.29914 67.03014, -150.29924 67.0302, -150.29933 67.03027, -150.29943 67.03033, -150.29952 67.03039, -150.29962 67.03045, -150.29971 67.03051, -150.29981 67.03057, -150.2999 67.03063, -150.3 67.03069, -150.30009 67.03075, -150.30019 67.03082, -150.30028 67.03088, -150.30037 67.03094, -150.30047 67.031, -150.30056 67.03106, -150.30065 67.03112, -150.30075 67.03119, -150.30084 67.03125, -150.30093 67.03131, -150.30102 67.03137, -150.30111 67.03144, -150.30119 67.0315, -150.30128 67.03156, -150.30136 67.03163, -150.30144 67.03169, -150.30153 67.03175, -150.30161 67.03182, -150.30169 67.03188, -150.30176 67.03195, -150.30184 67.03201, -150.30192 67.03208, -150.302 67.03214, -150.30207 67.03221, -150.30215 67.03227, -150.30222 67.03234, -150.30229 67.0324, -150.30237 67.03247, -150.30244 67.03253, -150.30251 67.0326, -150.30259 67.03267, -150.30266 67.03273, -150.30273 67.0328, -150.3028 67.03286, -150.30287 67.03293, -150.30295 67.033, -150.30302 67.03306, -150.30309 67.03313, -150.30316 67.03319, -150.30323 67.03326, -150.30331 67.03333, -150.30338 67.03339, -150.30345 67.03346, -150.30352 67.03352, -150.30359 67.03359, -150.30367 67.03365, -150.30374 67.03372, -150.30381 67.03379, -150.30388 67.03385, -150.30395 67.03392, -150.30402 67.03399, -150.3041 67.03405, -150.30417 67.03412, -150.30424 67.03418, -150.30431 67.03425, -150.30438 67.03432, -150.30445 67.03438, -150.30452 67.03445, -150.30459 67.03451, -150.30467 67.03458, -150.30474 67.03465, -150.30481 67.03471, -150.30488 67.03478, -150.30495 67.03484, -150.30502 67.03491, -150.3051 67.03498, -150.30517 67.03504, -150.30524 67.03511, -150.30531 67.03517, -150.30539 67.03524, -150.30546 67.03531, -150.30553 67.03537, -150.3056 67.03544, -150.30568 67.03551, -150.30575 67.03557, -150.30582 67.03564, -150.30589 67.0357, -150.30596 67.03577, -150.30604 67.03584, -150.30611 67.0359, -150.30618 67.03597, -150.30625 67.03603, -150.30632 67.0361, -150.3064 67.03617, -150.30647 67.03623, -150.30654 67.0363, -150.30662 67.03636, -150.30669 67.03643, -150.30676 67.0365, -150.30684 67.03656, -150.30691 67.03663, -150.30698 67.03669, -150.30705 67.03676, -150.30713 67.03683, -150.3072 67.03689, -150.30727 67.03696, -150.30734 67.03702, -150.30741 67.03709, -150.30749 67.03716, -150.30756 67.03722, -150.30763 67.03729, -150.30771 67.03735, -150.30778 67.03742, -150.30785 67.03748, -150.30793 67.03755, -150.308 67.03762, -150.30808 67.03768, -150.30815 67.03775, -150.30823 67.03781, -150.3083 67.03788, -150.30837 67.03794, -150.30845 67.03801, -150.30852 67.03807, -150.30859 67.03814, -150.30867 67.03821, -150.30874 67.03827, -150.30881 67.03834, -150.30889 67.0384, -150.30896 67.03847, -150.30903 67.03854, -150.3091 67.0386, -150.30918 67.03867, -150.30925 67.03873, -150.30932 67.0388, -150.30939 67.03887, -150.30946 67.03893, -150.30953 67.039, -150.3096 67.03906, -150.30968 67.03913, -150.30975 67.0392, -150.30982 67.03926, -150.30989 67.03933, -150.30996 67.03939, -150.31003 67.03946, -150.31011 67.03953, -150.31018 67.03959, -150.31025 67.03966, -150.31032 67.03972, -150.31039 67.03979, -150.31046 67.03986, -150.31054 67.03992, -150.31061 67.03999, -150.31068 67.04006, -150.31075 67.04012, -150.31082 67.04019, -150.31089 67.04025, -150.31096 67.04032, -150.31103 67.04039, -150.3111 67.04045, -150.31118 67.04052, -150.31125 67.04058, -150.31132 67.04065, -150.31139 67.04072, -150.31146 67.04078, -150.31153 67.04085, -150.31161 67.04091, -150.31168 67.04098, -150.31175 67.04105, -150.31182 67.04111, -150.3119 67.04118, -150.31197 67.04124, -150.31204 67.04131, -150.31211 67.04138, -150.31219 67.04144, -150.31226 67.04151, -150.31233 67.04157, -150.3124 67.04164, -150.31248 67.04171, -150.31255 67.04177, -150.31262 67.04184, -150.31269 67.04191, -150.31276 67.04197, -150.31283 67.04204, -150.3129 67.0421, -150.31297 67.04217, -150.31305 67.04224, -150.31312 67.0423, -150.31319 67.04237, -150.31326 67.04244, -150.31333 67.0425, -150.31341 67.04257, -150.31348 67.04263, -150.31355 67.0427, -150.31362 67.04277, -150.31369 67.04283, -150.31376 67.0429, -150.31384 67.04296, -150.31391 67.04303, -150.31398 67.0431, -150.31405 67.04316, -150.31413 67.04323, -150.3142 67.04329, -150.31427 67.04336, -150.31435 67.04343, -150.31442 67.04349, -150.31449 67.04356, -150.31457 67.04362, -150.31464 67.04369, -150.31471 67.04376, -150.31479 67.04382, -150.31486 67.04389, -150.31493 67.04395, -150.315 67.04402, -150.31508 67.04409, -150.31515 67.04415, -150.31522 67.04422, -150.3153 67.04428, -150.31537 67.04435, -150.31544 67.04442, -150.31552 67.04448, -150.31559 67.04455, -150.31566 67.04461, -150.31573 67.04468, -150.31581 67.04475, -150.31588 67.04481, -150.31595 67.04488, -150.31602 67.04494, -150.31609 67.04501, -150.31616 67.04508, -150.31624 67.04514, -150.31631 67.04521, -150.31638 67.04527, -150.31645 67.04534, -150.31652 67.04541, -150.3166 67.04547, -150.31667 67.04554, -150.31674 67.0456, -150.31682 67.04567, -150.31689 67.04573, -150.31697 67.0458, -150.31704 67.04587, -150.31711 67.04593, -150.31719 67.046, -150.31726 67.04606, -150.31733 67.04613, -150.3174 67.04619, -150.31748 67.04626, -150.31755 67.04633, -150.31763 67.04639, -150.3177 67.04646, -150.31778 67.04652, -150.31787 67.04658, -150.31795 67.04665, -150.31804 67.04671, -150.31813 67.04677, -150.31822 67.04684, -150.31831 67.0469, -150.3184 67.04696, -150.31849 67.04702, -150.31859 67.04708, -150.31869 67.04714, -150.31878 67.0472, -150.31888 67.04726, -150.31899 67.04732, -150.31909 67.04738, -150.31919 67.04744, -150.3193 67.0475, -150.31941 67.04756, -150.31951 67.04762, -150.31962 67.04768, -150.31973 67.04773, -150.31984 67.04779, -150.31994 67.04785, -150.32005 67.04791, -150.32016 67.04797, -150.32026 67.04803, -150.32037 67.04809, -150.32047 67.04815, -150.32058 67.0482, -150.32069 67.04826, -150.32079 67.04832, -150.3209 67.04838, -150.32101 67.04844, -150.32111 67.0485, -150.32122 67.04856, -150.32133 67.04862, -150.32144 67.04867, -150.32154 67.04873, -150.32165 67.04879, -150.32176 67.04885, -150.32187 67.04891, -150.32197 67.04897, -150.32208 67.04902, -150.32219 67.04908, -150.32229 67.04914, -150.3224 67.0492, -150.32251 67.04926, -150.32261 67.04932, -150.32272 67.04938, -150.32282 67.04944, -150.32293 67.04949, -150.32304 67.04955, -150.32314 67.04961, -150.32325 67.04967, -150.32336 67.04973, -150.32347 67.04979, -150.32358 67.04984, -150.32368 67.0499, -150.32379 67.04996, -150.3239 67.05002, -150.324 67.05008, -150.32411 67.05014, -150.32422 67.05019, -150.32433 67.05025, -150.32443 67.05031, -150.32454 67.05037, -150.32465 67.05043, -150.32475 67.05049, -150.32486 67.05055, -150.32496 67.0506, -150.32507 67.05066, -150.32518 67.05072, -150.32528 67.05078, -150.32539 67.05084, -150.32549 67.0509, -150.3256 67.05096, -150.3257 67.05102, -150.32581 67.05107, -150.32592 67.05113, -150.32602 67.05119, -150.32613 67.05125, -150.32624 67.05131, -150.32634 67.05137, -150.32645 67.05143, -150.32656 67.05148, -150.32667 67.05154, -150.32677 67.0516, -150.32688 67.05166, -150.32699 67.05172, -150.32709 67.05178, -150.3272 67.05183, -150.32731 67.05189, -150.32741 67.05195, -150.32752 67.05201, -150.32763 67.05207, -150.32774 67.05213, -150.32785 67.05218, -150.32796 67.05224, -150.32807 67.0523, -150.32818 67.05235, -150.3283 67.05241, -150.32841 67.05247, -150.32853 67.05252, -150.32865 67.05257, -150.32877 67.05263, -150.3289 67.05268, -150.32903 67.05273, -150.32915 67.05278, -150.32929 67.05283, -150.32942 67.05288, -150.32955 67.05293, -150.32968 67.05298, -150.32982 67.05303, -150.32995 67.05308, -150.33009 67.05313, -150.33023 67.05317, -150.33037 67.05322, -150.33051 67.05327, -150.33065 67.05331, -150.3308 67.05336, -150.33094 67.0534, -150.33109 67.05344, -150.33124 67.05348, -150.33139 67.05352, -150.33155 67.05356, -150.33171 67.0536, -150.33186 67.05364, -150.33202 67.05367, -150.33218 67.05371, -150.33234 67.05374, -150.3325 67.05378, -150.33266 67.05381, -150.33283 67.05385, -150.33299 67.05388, -150.33316 67.05391, -150.33332 67.05394, -150.33349 67.05397, -150.33366 67.054, -150.33383 67.05403, -150.334 67.05405, -150.33417 67.05408, -150.33434 67.05411, -150.33451 67.05413, -150.33468 67.05416, -150.33486 67.05418, -150.33503 67.05421, -150.3352 67.05423, -150.33538 67.05425, -150.33555 67.05428, -150.33573 67.0543, -150.3359 67.05432, -150.33607 67.05435, -150.33625 67.05437, -150.33642 67.05439, -150.3366 67.05442, -150.33677 67.05444, -150.33694 67.05447, -150.33712 67.05449, -150.33729 67.05452, -150.33746 67.05454, -150.33763 67.05457, -150.33781 67.05459, -150.33798 67.05462, -150.33815 67.05464, -150.33833 67.05467, -150.3385 67.05469, -150.33867 67.05472, -150.33885 67.05474, -150.33902 67.05477, -150.33919 67.05479, -150.33937 67.05482, -150.33954 67.05484, -150.33971 67.05487, -150.33988 67.0549, -150.34005 67.05493, -150.34022 67.05496, -150.34038 67.05499, -150.34055 67.05502, -150.34071 67.05506, -150.34087 67.05509, -150.34103 67.05513, -150.34118 67.05517, -150.34134 67.05521, -150.34148 67.05526, -150.34163 67.0553, -150.34177 67.05535, -150.34192 67.05539, -150.34205 67.05544, -150.34219 67.05549, -150.34232 67.05554, -150.34245 67.05559, -150.34258 67.05565, -150.3427 67.0557, -150.34282 67.05575, -150.34294 67.05581, -150.34305 67.05587, -150.34317 67.05593, -150.34327 67.05598, -150.34338 67.05604, -150.34348 67.05611, -150.34357 67.05617, -150.34366 67.05623, -150.34375 67.05629, -150.34383 67.05636, -150.34392 67.05642, -150.34399 67.05649, -150.34407 67.05655, -150.34414 67.05662, -150.34421 67.05669, -150.34427 67.05676, -150.34433 67.05683, -150.34438 67.05689, -150.34443 67.05696, -150.34448 67.05703, -150.34452 67.0571, -150.34456 67.05718, -150.34459 67.05725, -150.34462 67.05732, -150.34465 67.05739, -150.34467 67.05746, -150.34469 67.05753, -150.34471 67.0576, -150.34472 67.05768, -150.34472 67.05775, -150.34472 67.05782, -150.34472 67.05789, -150.34471 67.05797, -150.3447 67.05804, -150.34469 67.05811, -150.34467 67.05818, -150.34466 67.05825, -150.34464 67.05833, -150.34463 67.0584, -150.34461 67.05847, -150.3446 67.05854, -150.34458 67.05861, -150.34456 67.05868, -150.34455 67.05876, -150.34453 67.05883, -150.34451 67.0589, -150.3445 67.05897, -150.34448 67.05904, -150.34447 67.05911, -150.34445 67.05919, -150.34443 67.05926, -150.34442 67.05933, -150.34441 67.0594, -150.34439 67.05947, -150.34438 67.05954, -150.34436 67.05962, -150.34435 67.05969, -150.34433 67.05976, -150.34432 67.05983, -150.3443 67.0599, -150.34428 67.05997, -150.34427 67.06005, -150.34425 67.06012, -150.34423 67.06019, -150.34421 67.06026, -150.3442 67.06033, -150.34418 67.0604, -150.34416 67.06048, -150.34415 67.06055, -150.34413 67.06062, -150.34412 67.06069, -150.3441 67.06076, -150.34408 67.06084, -150.34407 67.06091, -150.34406 67.06098, -150.34404 67.06105, -150.34403 67.06112, -150.34402 67.06119, -150.344 67.06127, -150.34399 67.06134, -150.34398 67.06141, -150.34398 67.06148, -150.34398 67.06155, -150.34398 67.06162, -150.34398 67.0617, -150.34399 67.06177, -150.344 67.06184, -150.34401 67.06191, -150.34403 67.06198, -150.34405 67.06205, -150.34407 67.06213, -150.3441 67.0622, -150.34413 67.06227, -150.34416 67.06234, -150.3442 67.06241, -150.34423 67.06248, -150.34427 67.06255, -150.34431 67.06262, -150.34436 67.06269, -150.3444 67.06276, -150.34445 67.06283, -150.3445 67.0629, -150.34455 67.06297, -150.34461 67.06303, -150.34466 67.0631, -150.34472 67.06317, -150.34478 67.06324, -150.34484 67.06331, -150.3449 67.06337, -150.34496 67.06344, -150.34503 67.06351, -150.3451 67.06358, -150.34517 67.06364, -150.34525 67.06371, -150.34532 67.06377, -150.3454 67.06384, -150.34549 67.0639, -150.34557 67.06396, -150.34566 67.06403, -150.34575 67.06409, -150.34583 67.06415, -150.34592 67.06422, -150.34601 67.06428, -150.3461 67.06434, -150.34619 67.06441, -150.34627 67.06447, -150.34636 67.06453, -150.34645 67.0646, -150.34654 67.06466, -150.34663 67.06472, -150.34672 67.06478, -150.34682 67.06485, -150.34691 67.06491, -150.347 67.06497, -150.34709 67.06504, -150.34717 67.0651, -150.34726 67.06516, -150.34735 67.06522, -150.34744 67.06529, -150.34753 67.06535, -150.34762 67.06541, -150.34771 67.06548, -150.3478 67.06554, -150.34789 67.0656, -150.34797 67.06567, -150.34806 67.06573, -150.34815 67.06579, -150.34824 67.06586, -150.34833 67.06592, -150.34842 67.06598, -150.3485 67.06605, -150.34859 67.06611, -150.34868 67.06617, -150.34876 67.06624, -150.34885 67.0663, -150.34894 67.06636, -150.34902 67.06643, -150.3491 67.06649, -150.34918 67.06656, -150.34926 67.06662, -150.34933 67.06669, -150.3494 67.06676, -150.34947 67.06683, -150.34954 67.06689, -150.3496 67.06696, -150.34966 67.06703, -150.34972 67.0671, -150.34978 67.06717, -150.34983 67.06724, -150.34988 67.0673, -150.34993 67.06737, -150.34997 67.06744, -150.35001 67.06751, -150.35005 67.06759, -150.35008 67.06766, -150.35011 67.06773, -150.35014 67.0678, -150.35017 67.06787, -150.35019 67.06794, -150.35021 67.06801, -150.35023 67.06808, -150.35024 67.06816, -150.35026 67.06823, -150.35027 67.0683, -150.35028 67.06837, -150.35029 67.06844, -150.35029 67.06851, -150.3503 67.06859, -150.3503 67.06866, -150.3503 67.06873, -150.3503 67.0688, -150.35031 67.06887, -150.35031 67.06895, -150.35031 67.06902, -150.3503 67.06909, -150.3503 67.06916, -150.3503 67.06923, -150.3503 67.06931, -150.35029 67.06938, -150.35029 67.06945, -150.35029 67.06952, -150.35028 67.06959, -150.35028 67.06967, -150.35027 67.06974, -150.35027 67.06981, -150.35027 67.06988, -150.35027 67.06995, -150.35026 67.07003, -150.35026 67.0701, -150.35026 67.07017, -150.35026 67.07024, -150.35026 67.07031, -150.35026 67.07038, -150.35025 67.07046, -150.35025 67.07053, -150.35025 67.0706, -150.35025 67.07067, -150.35024 67.07074, -150.35024 67.07082, -150.35024 67.07089, -150.35024 67.07096, -150.35023 67.07103, -150.35023 67.0711, -150.35023 67.07117, -150.35023 67.07125, -150.35022 67.07132, -150.35022 67.07139, -150.35022 67.07146, -150.35021 67.07153, -150.35021 67.07161, -150.35021 67.07168, -150.35021 67.07175, -150.3502 67.07182, -150.3502 67.07189, -150.3502 67.07196, -150.35019 67.07204, -150.35019 67.07211, -150.35019 67.07218, -150.35018 67.07225, -150.35018 67.07232, -150.35017 67.0724, -150.35017 67.07247, -150.35016 67.07254, -150.35016 67.07261, -150.35016 67.07268, -150.35015 67.07276, -150.35015 67.07283, -150.35015 67.0729, -150.35014 67.07297, -150.35014 67.07304, -150.35014 67.07312, -150.35014 67.07319, -150.35013 67.07326, -150.35013 67.07333, -150.35013 67.0734, -150.35013 67.07348, -150.35012 67.07355, -150.35012 67.07362, -150.35012 67.07369, -150.35012 67.07376, -150.35012 67.07384, -150.35011 67.07391, -150.35011 67.07398, -150.35011 67.07405, -150.3501 67.07412, -150.3501 67.0742, -150.3501 67.07427, -150.3501 67.07434, -150.35009 67.07441, -150.35009 67.07448, -150.35009 67.07456, -150.35009 67.07463, -150.35008 67.0747, -150.35008 67.07477, -150.35008 67.07484, -150.35008 67.07492, -150.35007 67.07499, -150.35007 67.07506, -150.35007 67.07513, -150.35006 67.0752, -150.35006 67.07528, -150.35006 67.07535, -150.35005 67.07542, -150.35005 67.07549, -150.35005 67.07556, -150.35004 67.07563, -150.35004 67.07571, -150.35003 67.07578, -150.35003 67.07585, -150.35003 67.07592, -150.35002 67.07599, -150.35002 67.07607, -150.35002 67.07614, -150.35002 67.07621, -150.35002 67.07628, -150.35001 67.07635, -150.35001 67.07643, -150.35001 67.0765, -150.35001 67.07657, -150.35001 67.07664, -150.35001 67.07671, -150.35 67.07678, -150.35 67.07686, -150.35 67.07693, -150.35 67.077, -150.35 67.07707, -150.34999 67.07714, -150.34999 67.07722, -150.34999 67.07729, -150.34999 67.07736, -150.34999 67.07743, -150.34999 67.0775, -150.34999 67.07758, -150.34999 67.07765, -150.34998 67.07772, -150.34998 67.07779, -150.34998 67.07786, -150.34998 67.07794, -150.34998 67.07801, -150.34998 67.07808, -150.34998 67.07815, -150.34997 67.07822, -150.34997 67.0783, -150.34997 67.07837, -150.34997 67.07844, -150.34997 67.07851, -150.34996 67.07858, -150.34996 67.07866, -150.34996 67.07873, -150.34995 67.0788, -150.34995 67.07887, -150.34995 67.07894, -150.34995 67.07901, -150.34994 67.07909, -150.34994 67.07916, -150.34993 67.07923, -150.34993 67.0793, -150.34992 67.07937, -150.34992 67.07945, -150.34991 67.07952, -150.34991 67.07959, -150.3499 67.07966, -150.3499 67.07973, -150.3499 67.0798, -150.34989 67.07988, -150.34989 67.07995, -150.34989 67.08002, -150.34988 67.08009, -150.34988 67.08016, -150.34988 67.08023, -150.34987 67.08031, -150.34987 67.08038, -150.34987 67.08045, -150.34987 67.08052, -150.34986 67.08059, -150.34986 67.08066, -150.34986 67.08074, -150.34986 67.08081, -150.34986 67.08088, -150.34985 67.08095, -150.34985 67.08102, -150.34985 67.08109, -150.34985 67.08117, -150.34984 67.08124, -150.34984 67.08131, -150.34984 67.08138, -150.34983 67.08145, -150.34983 67.08152, -150.34983 67.0816, -150.34983 67.08167, -150.34982 67.08174, -150.34982 67.08181, -150.34982 67.08188, -150.34981 67.08195, -150.34981 67.08203, -150.34981 67.0821, -150.34981 67.08217, -150.3498 67.08224, -150.3498 67.08231, -150.3498 67.08238, -150.3498 67.08246, -150.34979 67.08253, -150.34979 67.0826, -150.34979 67.08267, -150.34979 67.08274, -150.34979 67.08282, -150.34978 67.08289, -150.34978 67.08296, -150.34978 67.08303, -150.34977 67.0831, -150.34977 67.08318, -150.34977 67.08325, -150.34977 67.08332, -150.34976 67.08339, -150.34976 67.08346, -150.34976 67.08353, -150.34976 67.08361, -150.34975 67.08368, -150.34975 67.08375, -150.34975 67.08382, -150.34974 67.08389, -150.34974 67.08397, -150.34974 67.08404, -150.34973 67.08411, -150.34973 67.08418, -150.34973 67.08425, -150.34973 67.08433, -150.34972 67.0844, -150.34972 67.08447, -150.34972 67.08454, -150.34972 67.08461, -150.34971 67.08469, -150.34971 67.08476, -150.34971 67.08483, -150.34971 67.0849, -150.3497 67.08497, -150.3497 67.08505, -150.3497 67.08512, -150.34969 67.08519, -150.34969 67.08526, -150.34968 67.08533, -150.34968 67.08541, -150.34968 67.08548, -150.34967 67.08555, -150.34967 67.08562, -150.34967 67.08569, -150.34966 67.08576, -150.34966 67.08584, -150.34966 67.08591, -150.34966 67.08598, -150.34966 67.08605, -150.34966 67.08612, -150.34966 67.0862, -150.34966 67.08627, -150.34965 67.08634, -150.34965 67.08641, -150.34965 67.08648, -150.34964 67.08656, -150.34964 67.08663, -150.34964 67.0867, -150.34963 67.08677, -150.34963 67.08684, -150.34963 67.08692, -150.34962 67.08699, -150.34962 67.08706, -150.34962 67.08713, -150.34962 67.0872, -150.34962 67.08728, -150.34961 67.08735, -150.34961 67.08742, -150.34961 67.08749, -150.34961 67.08756, -150.3496 67.08764, -150.3496 67.08771, -150.34959 67.08778, -150.34959 67.08785, -150.34958 67.08792, -150.34958 67.08799, -150.34958 67.08807, -150.34958 67.08814, -150.34957 67.08821, -150.34957 67.08828, -150.34957 67.08835, -150.34957 67.08843, -150.34957 67.0885, -150.34957 67.08857, -150.34957 67.08864, -150.34957 67.08871, -150.34956 67.08878, -150.34956 67.08886, -150.34955 67.08893, -150.34955 67.089, -150.34954 67.08907, -150.34954 67.08914, -150.34953 67.08922, -150.34953 67.08929, -150.34952 67.08936, -150.34952 67.08943, -150.34952 67.0895, -150.34951 67.08957, -150.34951 67.08965, -150.34951 67.08972, -150.34951 67.08979, -150.34951 67.08986, -150.34951 67.08993, -150.3495 67.09001, -150.3495 67.09008, -150.3495 67.09015, -150.3495 67.09022, -150.3495 67.09029, -150.3495 67.09037, -150.3495 67.09044, -150.3495 67.09051, -150.34949 67.09058, -150.34949 67.09065, -150.34949 67.09072, -150.34949 67.0908, -150.34949 67.09087, -150.34948 67.09094, -150.34948 67.09101, -150.34948 67.09108, -150.34948 67.09116, -150.34947 67.09123, -150.34947 67.0913, -150.34946 67.09137, -150.34946 67.09144, -150.34945 67.09151, -150.34944 67.09159, -150.34944 67.09166, -150.34943 67.09173, -150.34942 67.0918, -150.34941 67.09187, -150.34939 67.09194, -150.34938 67.09202, -150.34937 67.09209, -150.34935 67.09216, -150.34934 67.09223, -150.34932 67.0923, -150.34931 67.09237, -150.34929 67.09244, -150.34928 67.09252, -150.34926 67.09259, -150.34925 67.09266, -150.34923 67.09273, -150.34922 67.0928, -150.3492 67.09287, -150.34918 67.09295, -150.34917 67.09302, -150.34915 67.09309, -150.34914 67.09316, -150.34912 67.09323, -150.34911 67.0933, -150.34909 67.09338, -150.34907 67.09345, -150.34906 67.09352, -150.34904 67.09359, -150.34902 67.09366, -150.34901 67.09374, -150.34899 67.09381, -150.34898 67.09388, -150.34896 67.09395, -150.34895 67.09402, -150.34893 67.09409, -150.34891 67.09417, -150.3489 67.09424, -150.34888 67.09431, -150.34887 67.09438, -150.34885 67.09445, -150.34884 67.09452, -150.34882 67.0946, -150.3488 67.09467, -150.34879 67.09474, -150.34877 67.09481, -150.34876 67.09488, -150.34874 67.09496, -150.34873 67.09503, -150.34872 67.0951, -150.3487 67.09517, -150.34869 67.09524, -150.34867 67.09532, -150.34866 67.09539, -150.34864 67.09546, -150.34863 67.09553, -150.34861 67.0956, -150.3486 67.09568, -150.34858 67.09575, -150.34857 67.09582, -150.34855 67.09589, -150.34854 67.09596, -150.34853 67.09604, -150.34851 67.09611, -150.3485 67.09618, -150.34848 67.09625, -150.34846 67.09632, -150.34845 67.0964, -150.34843 67.09647, -150.34842 67.09654, -150.3484 67.09661, -150.34839 67.09668, -150.34837 67.09675, -150.34835 67.09683, -150.34834 67.0969, -150.34832 67.09697, -150.3483 67.09704, -150.34829 67.09711, -150.34828 67.09718, -150.34826 67.09725, -150.34825 67.09733, -150.34823 67.0974, -150.34822 67.09747, -150.3482 67.09754, -150.34818 67.09761, -150.34816 67.09768, -150.34814 67.09775, -150.34812 67.09783, -150.3481 67.0979, -150.34808 67.09797, -150.34807 67.09804, -150.34805 67.09811, -150.34803 67.09818, -150.34801 67.09825, -150.34799 67.09832, -150.34798 67.0984, -150.34796 67.09847, -150.34795 67.09854, -150.34793 67.09861, -150.34792 67.09868, -150.34791 67.09875, -150.34789 67.09882, -150.34788 67.0989, -150.34787 67.09897, -150.34785 67.09904, -150.34784 67.09911, -150.34783 67.09918, -150.34781 67.09925, -150.3478 67.09932, -150.34779 67.0994, -150.34777 67.09947, -150.34775 67.09954, -150.34774 67.09961, -150.34772 67.09968, -150.3477 67.09975, -150.34768 67.09982, -150.34767 67.0999, -150.34765 67.09997, -150.34763 67.10004, -150.34762 67.10011, -150.3476 67.10018, -150.34758 67.10025, -150.34757 67.10032, -150.34755 67.1004, -150.34754 67.10047, -150.34753 67.10054, -150.34751 67.10061, -150.3475 67.10068, -150.34748 67.10075, -150.34747 67.10083, -150.34745 67.1009, -150.34744 67.10097, -150.34742 67.10104, -150.34741 67.10111, -150.34739 67.10118, -150.34738 67.10126, -150.34736 67.10133, -150.34734 67.1014, -150.34733 67.10147, -150.34731 67.10154, -150.34729 67.10161, -150.34728 67.10168, -150.34726 67.10176, -150.34724 67.10183, -150.34723 67.1019, -150.34721 67.10197, -150.34719 67.10204, -150.34718 67.10211, -150.34716 67.10218, -150.34715 67.10226, -150.34713 67.10233, -150.34711 67.1024, -150.34709 67.10247, -150.34708 67.10254, -150.34706 67.10261, -150.34704 67.10268, -150.34703 67.10276, -150.34701 67.10283, -150.347 67.1029, -150.34698 67.10297, -150.34697 67.10304, -150.34696 67.10311, -150.34694 67.10318, -150.34693 67.10326, -150.34692 67.10333, -150.3469 67.1034, -150.34689 67.10347, -150.34687 67.10354, -150.34686 67.10361, -150.34684 67.10369, -150.34683 67.10376, -150.34681 67.10383, -150.3468 67.1039, -150.34679 67.10397, -150.34677 67.10405, -150.34676 67.10412, -150.34674 67.10419, -150.34673 67.10426, -150.34671 67.10433, -150.34669 67.10441, -150.34667 67.10448, -150.34664 67.10455, -150.34662 67.10462, -150.34658 67.10469, -150.34655 67.10476, -150.34652 67.10483, -150.34648 67.1049, -150.34645 67.10497, -150.34641 67.10504, -150.34637 67.10511, -150.34632 67.10518, -150.34628 67.10525, -150.34623 67.10532, -150.34618 67.10539, -150.34612 67.10546, -150.34607 67.10553, -150.34602 67.1056, -150.34597 67.10567, -150.34591 67.10574, -150.34586 67.10581, -150.3458 67.10587, -150.34575 67.10594, -150.34569 67.10601, -150.34564 67.10608, -150.34558 67.10615, -150.34553 67.10622, -150.34548 67.10629, -150.34542 67.10636, -150.34537 67.10642, -150.34532 67.10649, -150.34527 67.10656, -150.34522 67.10663, -150.34518 67.1067, -150.34513 67.10677, -150.34508 67.10684, -150.34503 67.10691, -150.34498 67.10698, -150.34493 67.10705, -150.34488 67.10712, -150.34483 67.10719, -150.34478 67.10726, -150.34473 67.10732, -150.34468 67.10739, -150.34463 67.10746, -150.34457 67.10753, -150.34452 67.1076, -150.34447 67.10767, -150.34442 67.10774, -150.34437 67.10781, -150.34432 67.10788, -150.34427 67.10795, -150.34422 67.10802, -150.34416 67.10808, -150.34411 67.10815, -150.34406 67.10822, -150.34401 67.10829, -150.34395 67.10836, -150.3439 67.10843, -150.34385 67.1085, -150.34379 67.10857, -150.34374 67.10864, -150.34369 67.1087, -150.34364 67.10877, -150.34358 67.10884, -150.34353 67.10891, -150.34348 67.10898, -150.34343 67.10905, -150.34339 67.10912, -150.34334 67.10919, -150.34329 67.10926, -150.34324 67.10933, -150.34319 67.1094, -150.34314 67.10947, -150.34309 67.10954, -150.34304 67.10961, -150.34299 67.10968, -150.34294 67.10975, -150.34289 67.10981, -150.34284 67.10988, -150.3428 67.10995, -150.34276 67.11002, -150.34273 67.11009, -150.3427 67.11016, -150.34268 67.11024, -150.34266 67.11031, -150.34264 67.11038, -150.34263 67.11045, -150.34262 67.11052, -150.34261 67.11059, -150.34261 67.11066, -150.34261 67.11073, -150.34261 67.11081, -150.34261 67.11088, -150.34262 67.11095, -150.34264 67.11102, -150.34265 67.11109, -150.34267 67.11116, -150.34268 67.11123, -150.3427 67.11131, -150.34272 67.11138, -150.34274 67.11145, -150.34275 67.11152, -150.34277 67.11159, -150.34279 67.11166, -150.34281 67.11173, -150.34282 67.11181, -150.34284 67.11188, -150.34286 67.11195, -150.34288 67.11202, -150.3429 67.11209, -150.34292 67.11216, -150.34294 67.11223, -150.34296 67.11231, -150.34298 67.11238, -150.343 67.11245, -150.34302 67.11252, -150.34304 67.11259, -150.34306 67.11266, -150.34308 67.11273, -150.3431 67.11281, -150.34313 67.11288, -150.34315 67.11295, -150.34317 67.11302, -150.34319 67.11309, -150.3432 67.11316, -150.34322 67.11323, -150.34324 67.11331, -150.34326 67.11338, -150.34328 67.11345, -150.3433 67.11352, -150.34332 67.11359, -150.34334 67.11366, -150.34336 67.11373, -150.34338 67.1138, -150.3434 67.11388, -150.34342 67.11395, -150.34344 67.11402, -150.34346 67.11409, -150.34348 67.11416, -150.3435 67.11423, -150.34352 67.11431, -150.34354 67.11438, -150.34356 67.11445, -150.34357 67.11452, -150.34359 67.11459, -150.34361 67.11467, -150.34364 67.11474, -150.34366 67.11481, -150.34368 67.11488, -150.3437 67.11495, -150.34372 67.11502, -150.34374 67.11509, -150.34376 67.11516, -150.34378 67.11524, -150.3438 67.11531, -150.34382 67.11538, -150.34384 67.11545, -150.34387 67.11552, -150.34389 67.11559, -150.34391 67.11566, -150.34393 67.11573, -150.34395 67.11581, -150.34397 67.11588, -150.34399 67.11595, -150.34401 67.11602, -150.34403 67.11609, -150.34404 67.11616, -150.34406 67.11623, -150.34408 67.1163, -150.3441 67.11637, -150.34412 67.11645, -150.34414 67.11652, -150.34416 67.11659, -150.34418 67.11666, -150.3442 67.11673, -150.34422 67.1168, -150.34424 67.11688, -150.34426 67.11695, -150.34428 67.11702, -150.3443 67.11709, -150.34432 67.11716, -150.34434 67.11723, -150.34436 67.1173, -150.34438 67.11737, -150.3444 67.11745, -150.34442 67.11752, -150.34444 67.11759, -150.34446 67.11766, -150.34448 67.11773, -150.3445 67.1178, -150.34452 67.11787, -150.34454 67.11795, -150.34456 67.11802, -150.34458 67.11809, -150.3446 67.11816, -150.34462 67.11823, -150.34464 67.1183, -150.34467 67.11837, -150.34469 67.11845, -150.34471 67.11852, -150.34474 67.11859, -150.34476 67.11866, -150.34478 67.11873, -150.3448 67.1188, -150.34483 67.11887, -150.34485 67.11895, -150.34487 67.11902, -150.34489 67.11909, -150.34491 67.11916, -150.34493 67.11923, -150.34495 67.1193, -150.34497 67.11937, -150.34499 67.11945, -150.34501 67.11952, -150.34503 67.11959, -150.34505 67.11966, -150.34507 67.11973, -150.34509 67.1198, -150.34511 67.11987, -150.34513 67.11995, -150.34515 67.12002, -150.34517 67.12009, -150.34518 67.12016, -150.3452 67.12023, -150.34522 67.1203, -150.34524 67.12037, -150.34526 67.12045, -150.34528 67.12052, -150.3453 67.12059, -150.34532 67.12066, -150.34534 67.12073, -150.34536 67.1208, -150.34538 67.12088, -150.34539 67.12095, -150.34541 67.12102, -150.34543 67.12109, -150.34545 67.12116, -150.34547 67.12123, -150.34549 67.1213, -150.34551 67.12138, -150.34553 67.12145, -150.34555 67.12152, -150.34557 67.12159, -150.34559 67.12166, -150.34561 67.12173, -150.34564 67.1218, -150.34566 67.12187, -150.34568 67.12195, -150.3457 67.12202, -150.34572 67.12209, -150.34574 67.12216, -150.34576 67.12223, -150.34578 67.1223, -150.3458 67.12237, -150.34582 67.12245, -150.34584 67.12252, -150.34586 67.12259, -150.34588 67.12266, -150.3459 67.12273, -150.34592 67.1228, -150.34594 67.12287, -150.34596 67.12295, -150.34598 67.12302, -150.346 67.12309, -150.34602 67.12316, -150.34604 67.12323, -150.34606 67.1233, -150.34608 67.12337, -150.3461 67.12345, -150.34612 67.12352, -150.34614 67.12359, -150.34616 67.12366, -150.34618 67.12373, -150.3462 67.1238, -150.34622 67.12387, -150.34624 67.12395, -150.34626 67.12402, -150.34628 67.12409, -150.3463 67.12416, -150.34632 67.12423, -150.34633 67.1243, -150.34635 67.12438, -150.34637 67.12445, -150.34639 67.12452, -150.34641 67.12459, -150.34643 67.12466, -150.34645 67.12473, -150.34647 67.1248, -150.34649 67.12488, -150.34651 67.12495, -150.34653 67.12502, -150.34655 67.12509, -150.34657 67.12516, -150.34659 67.12523, -150.34661 67.1253, -150.34663 67.12538, -150.34665 67.12545, -150.34667 67.12552, -150.34669 67.12559, -150.34671 67.12566, -150.34673 67.12573, -150.34675 67.1258, -150.34677 67.12588, -150.34679 67.12595, -150.34681 67.12602, -150.34683 67.12609, -150.34685 67.12616, -150.34687 67.12623, -150.34689 67.1263, -150.34691 67.12638, -150.34693 67.12645, -150.34695 67.12652, -150.34697 67.12659, -150.34699 67.12666, -150.34701 67.12673, -150.34703 67.1268, -150.34705 67.12688, -150.34707 67.12695, -150.34709 67.12702, -150.34712 67.12709, -150.34714 67.12716, -150.34717 67.12723, -150.3472 67.1273, -150.34723 67.12737, -150.34726 67.12744, -150.3473 67.12751, -150.34733 67.12758, -150.34737 67.12765, -150.34741 67.12772, -150.34745 67.12779, -150.34749 67.12786, -150.34753 67.12793, -150.34758 67.128, -150.34763 67.12807, -150.34768 67.12814, -150.34773 67.12821, -150.34779 67.12828, -150.34784 67.12835, -150.3479 67.12841, -150.34796 67.12848, -150.34801 67.12855, -150.34807 67.12862, -150.34813 67.12869, -150.34818 67.12876, -150.34824 67.12883, -150.3483 67.12889, -150.34835 67.12896, -150.34841 67.12903, -150.34847 67.1291, -150.34853 67.12917, -150.34858 67.12924, -150.34864 67.1293, -150.3487 67.12937, -150.34876 67.12944, -150.34882 67.12951, -150.34888 67.12958, -150.34894 67.12965, -150.349 67.12971, -150.34906 67.12978, -150.34912 67.12985, -150.34917 67.12992, -150.34923 67.12999, -150.34929 67.13005, -150.34935 67.13012, -150.3494 67.13019, -150.34946 67.13026, -150.34951 67.13033, -150.34957 67.1304, -150.34962 67.13046, -150.34968 67.13053, -150.34974 67.1306, -150.34979 67.13067, -150.34985 67.13074, -150.3499 67.13081, -150.34996 67.13088, -150.35002 67.13094, -150.35007 67.13101, -150.35013 67.13108, -150.35018 67.13115, -150.35024 67.13122, -150.3503 67.13129, -150.35035 67.13136, -150.35041 67.13142, -150.35047 67.13149, -150.35052 67.13156, -150.35058 67.13163, -150.35064 67.1317, -150.3507 67.13177, -150.35076 67.13183, -150.35082 67.1319, -150.35088 67.13197, -150.35094 67.13204, -150.35099 67.13211, -150.35105 67.13217, -150.35111 67.13224, -150.35117 67.13231, -150.35123 67.13238, -150.35129 67.13245, -150.35135 67.13251, -150.35141 67.13258, -150.35147 67.13265, -150.35153 67.13272, -150.35159 67.13279, -150.35164 67.13285, -150.3517 67.13292, -150.35176 67.13299, -150.35182 67.13306, -150.35188 67.13313, -150.35194 67.13319, -150.352 67.13326, -150.35206 67.13333, -150.35211 67.1334, -150.35217 67.13347, -150.35222 67.13354, -150.35228 67.13361, -150.35233 67.13368, -150.35239 67.13374, -150.35244 67.13381, -150.3525 67.13388, -150.35255 67.13395, -150.35261 67.13402, -150.35267 67.13409, -150.35273 67.13415, -150.35278 67.13422, -150.35284 67.13429, -150.3529 67.13436, -150.35295 67.13443, -150.35301 67.13449, -150.35307 67.13456, -150.35312 67.13463, -150.35318 67.1347, -150.35323 67.13477, -150.35329 67.13484, -150.35334 67.13491, -150.3534 67.13497, -150.35345 67.13504, -150.3535 67.13511, -150.35355 67.13518, -150.3536 67.13525, -150.35365 67.13532, -150.3537 67.13539, -150.35375 67.13546, -150.3538 67.13553, -150.35384 67.1356, -150.35389 67.13567, -150.35393 67.13574, -150.35397 67.13581, -150.35401 67.13588, -150.35405 67.13595, -150.35409 67.13602, -150.35413 67.13609, -150.35418 67.13616, -150.35422 67.13623, -150.35426 67.1363, -150.35429 67.13637, -150.35433 67.13644, -150.35437 67.13651, -150.35441 67.13658, -150.35444 67.13665, -150.35448 67.13672, -150.35452 67.13679, -150.35456 67.13686, -150.35459 67.13693, -150.35463 67.137, -150.35466 67.13707, -150.3547 67.13714, -150.35474 67.13721, -150.35477 67.13728, -150.35481 67.13736, -150.35485 67.13743, -150.35489 67.1375, -150.35492 67.13757, -150.35496 67.13764, -150.355 67.13771, -150.35504 67.13778, -150.35508 67.13785, -150.35511 67.13792, -150.35515 67.13799, -150.35519 67.13806, -150.35523 67.13813, -150.35527 67.1382, -150.35531 67.13827, -150.35535 67.13834, -150.35539 67.13841, -150.35543 67.13848, -150.35547 67.13855, -150.35551 67.13862, -150.35555 67.13869, -150.35558 67.13876, -150.35562 67.13883, -150.35566 67.1389, -150.3557 67.13897, -150.35573 67.13904, -150.35577 67.13911, -150.35581 67.13918, -150.35585 67.13925, -150.35588 67.13932, -150.35592 67.13939, -150.35596 67.13946, -150.356 67.13954, -150.35604 67.13961, -150.35607 67.13968, -150.35611 67.13975, -150.35615 67.13982, -150.35619 67.13989, -150.35623 67.13996, -150.35626 67.14003, -150.3563 67.1401, -150.35634 67.14017, -150.35638 67.14024, -150.35641 67.14031, -150.35645 67.14038, -150.35649 67.14045, -150.35653 67.14052, -150.35657 67.14059, -150.3566 67.14066, -150.35664 67.14073, -150.35668 67.1408, -150.35672 67.14087, -150.35676 67.14095, -150.3568 67.14102, -150.35684 67.14109, -150.35688 67.14116, -150.35692 67.14123, -150.35696 67.1413, -150.35699 67.14137, -150.35703 67.14144, -150.35707 67.14151, -150.3571 67.14158, -150.35714 67.14165, -150.35718 67.14172, -150.35722 67.14179, -150.35726 67.14186, -150.3573 67.14193, -150.35734 67.142, -150.35737 67.14207, -150.35741 67.14214, -150.35745 67.14221, -150.35748 67.14228, -150.35752 67.14235, -150.35756 67.14242, -150.35759 67.14249, -150.35763 67.14256, -150.35767 67.14263, -150.3577 67.1427, -150.35774 67.14277, -150.35778 67.14284, -150.35782 67.14291, -150.35786 67.14299, -150.35789 67.14306, -150.35793 67.14313, -150.35797 67.1432, -150.35801 67.14327, -150.35805 67.14334, -150.35808 67.14341, -150.35812 67.14348, -150.35816 67.14355, -150.3582 67.14362, -150.35824 67.14369, -150.35828 67.14376, -150.35832 67.14383, -150.35836 67.1439, -150.3584 67.14397, -150.35844 67.14404, -150.35848 67.14411, -150.35851 67.14418, -150.35855 67.14425, -150.35859 67.14432, -150.35863 67.14439, -150.35866 67.14446, -150.3587 67.14453, -150.35873 67.14461, -150.35877 67.14468, -150.3588 67.14475, -150.35883 67.14482, -150.35887 67.14489, -150.3589 67.14496, -150.35893 67.14503, -150.35895 67.1451, -150.35897 67.14517, -150.359 67.14524, -150.35901 67.14532, -150.35903 67.14539, -150.35904 67.14546, -150.35905 67.14553, -150.35905 67.1456, -150.35906 67.14568, -150.35906 67.14575, -150.35905 67.14582, -150.35905 67.14589, -150.35905 67.14596, -150.35904 67.14604, -150.35903 67.14611, -150.35902 67.14618, -150.35901 67.14625, -150.359 67.14632, -150.35898 67.1464, -150.35897 67.14647, -150.35895 67.14654, -150.35894 67.14661, -150.35892 67.14668, -150.3589 67.14675, -150.35889 67.14683, -150.35887 67.1469, -150.35886 67.14697, -150.35884 67.14704, -150.35883 67.14711, -150.35882 67.14718, -150.3588 67.14726, -150.35879 67.14733, -150.35878 67.1474, -150.35877 67.14747, -150.35875 67.14754, -150.35874 67.14761, -150.35872 67.14769, -150.35871 67.14776, -150.35869 67.14783, -150.35868 67.1479, -150.35866 67.14797, -150.35864 67.14804, -150.35862 67.14812, -150.3586 67.14819, -150.35859 67.14826, -150.35857 67.14833, -150.35855 67.1484, -150.35853 67.14847, -150.35851 67.14854, -150.35849 67.14862, -150.35847 67.14869, -150.35845 67.14876, -150.35843 67.14883, -150.35841 67.1489, -150.35839 67.14897, -150.35837 67.14905, -150.35835 67.14912, -150.35833 67.14919, -150.35831 67.14926, -150.35829 67.14933, -150.35827 67.1494, -150.35826 67.14948, -150.35824 67.14955, -150.35822 67.14962, -150.35821 67.14969, -150.3582 67.14976, -150.35819 67.14984, -150.35818 67.14991, -150.35816 67.14998, -150.35816 67.15005, -150.35815 67.15012, -150.35814 67.15019, -150.35814 67.15027, -150.35814 67.15034, -150.35814 67.15041, -150.35814 67.15048, -150.35815 67.15055, -150.35815 67.15063, -150.35816 67.1507, -150.35817 67.15077, -150.35818 67.15084, -150.3582 67.15091, -150.35821 67.15098, -150.35823 67.15105, -150.35825 67.15113, -150.35827 67.1512, -150.35829 67.15127, -150.35831 67.15134, -150.35834 67.15141, -150.35837 67.15148, -150.35839 67.15155, -150.35842 67.15162, -150.35845 67.1517, -150.35848 67.15177, -150.35851 67.15184, -150.35854 67.15191, -150.35857 67.15198, -150.3586 67.15205, -150.35863 67.15212, -150.35867 67.15219, -150.3587 67.15226, -150.35874 67.15234, -150.35878 67.15241, -150.35881 67.15248, -150.35885 67.15255, -150.35889 67.15262, -150.35893 67.15269, -150.35898 67.15276, -150.35902 67.15283, -150.35906 67.1529, -150.3591 67.15297, -150.35914 67.15304, -150.35918 67.15311, -150.35922 67.15318, -150.35925 67.15325, -150.35929 67.15332, -150.35932 67.15339, -150.35935 67.15346, -150.35938 67.15353, -150.3594 67.15361, -150.35942 67.15368, -150.35944 67.15375, -150.35946 67.15382, -150.35948 67.15389, -150.35949 67.15396, -150.3595 67.15404, -150.3595 67.15411, -150.35951 67.15418, -150.35951 67.15425, -150.3595 67.15433, -150.3595 67.1544, -150.35949 67.15447, -150.35948 67.15454, -150.35947 67.15461, -150.35945 67.15469, -150.35943 67.15476, -150.35941 67.15483, -150.35938 67.1549, -150.35935 67.15497, -150.35932 67.15504, -150.35928 67.15511, -150.35925 67.15518, -150.35921 67.15526, -150.35918 67.15533, -150.35914 67.1554, -150.3591 67.15547, -150.35905 67.15554, -150.35901 67.15561, -150.35896 67.15568, -150.35891 67.15575, -150.35886 67.15582, -150.35881 67.15589, -150.35875 67.15595, -150.35869 67.15602, -150.35863 67.15609, -150.35856 67.15616, -150.35849 67.15623, -150.35842 67.15629, -150.35834 67.15636, -150.35827 67.15642, -150.35819 67.15649, -150.3581 67.15655, -150.35802 67.15662, -150.35793 67.15668, -150.35784 67.15674, -150.35775 67.15681, -150.35766 67.15687, -150.35757 67.15693, -150.35748 67.15699, -150.35739 67.15706, -150.35729 67.15712, -150.3572 67.15718, -150.35711 67.15724, -150.35702 67.15731, -150.35692 67.15737, -150.35683 67.15743, -150.35674 67.15749, -150.35665 67.15755, -150.35655 67.15762, -150.35646 67.15768, -150.35637 67.15774, -150.35628 67.1578, -150.35618 67.15786, -150.35609 67.15793, -150.356 67.15799, -150.3559 67.15805, -150.35581 67.15811, -150.35572 67.15817, -150.35563 67.15824, -150.35553 67.1583, -150.35544 67.15836, -150.35535 67.15842, -150.35526 67.15849, -150.35517 67.15855, -150.35508 67.15861, -150.35498 67.15867, -150.35489 67.15873, -150.3548 67.1588, -150.35471 67.15886, -150.35461 67.15892, -150.35452 67.15898, -150.35443 67.15904, -150.35433 67.15911, -150.35424 67.15917, -150.35415 67.15923, -150.35405 67.15929, -150.35396 67.15935, -150.35387 67.15942, -150.35377 67.15948, -150.35368 67.15954, -150.35359 67.1596, -150.3535 67.15967, -150.3534 67.15973, -150.35331 67.15979, -150.35322 67.15985, -150.35313 67.15991, -150.35304 67.15998, -150.35294 67.16004, -150.35285 67.1601, -150.35276 67.16016, -150.35267 67.16023, -150.35257 67.16029, -150.35248 67.16035, -150.35239 67.16041, -150.35229 67.16047, -150.3522 67.16054, -150.35211 67.1606, -150.35201 67.16066, -150.35192 67.16072, -150.35182 67.16078, -150.35173 67.16085, -150.35164 67.16091, -150.35154 67.16097, -150.35145 67.16103, -150.35136 67.16109, -150.35127 67.16116, -150.35117 67.16122, -150.35108 67.16128, -150.35099 67.16134, -150.3509 67.1614, -150.3508 67.16147, -150.35071 67.16153, -150.35062 67.16159, -150.35053 67.16165, -150.35043 67.16172, -150.35034 67.16178, -150.35025 67.16184, -150.35016 67.1619, -150.35006 67.16196, -150.34997 67.16203, -150.34988 67.16209, -150.34978 67.16215, -150.34969 67.16221, -150.3496 67.16227, -150.34951 67.16234, -150.34941 67.1624, -150.34932 67.16246, -150.34923 67.16252, -150.34914 67.16259, -150.34904 67.16265, -150.34895 67.16271, -150.34886 67.16277, -150.34876 67.16283, -150.34867 67.1629, -150.34857 67.16296, -150.34848 67.16302, -150.34839 67.16308, -150.34829 67.16314, -150.3482 67.16321, -150.3481 67.16327, -150.34801 67.16333, -150.34792 67.16339, -150.34782 67.16345, -150.34773 67.16352, -150.34764 67.16358, -150.34755 67.16364, -150.34745 67.1637, -150.34736 67.16376, -150.34727 67.16383, -150.34718 67.16389, -150.34709 67.16395, -150.347 67.16401, -150.34691 67.16408, -150.34681 67.16414, -150.34672 67.1642, -150.34663 67.16426, -150.34654 67.16433, -150.34644 67.16439, -150.34635 67.16445, -150.34626 67.16451, -150.34616 67.16457, -150.34607 67.16464, -150.34598 67.1647, -150.34588 67.16476, -150.34579 67.16482, -150.3457 67.16488, -150.3456 67.16495, -150.34551 67.16501, -150.34542 67.16507, -150.34532 67.16513, -150.34523 67.16519, -150.34514 67.16526, -150.34505 67.16532, -150.34496 67.16538, -150.34487 67.16544, -150.34477 67.16551, -150.34468 67.16557, -150.34458 67.16563, -150.34449 67.16569, -150.3444 67.16575, -150.3443 67.16582, -150.34421 67.16588, -150.34412 67.16594, -150.34402 67.166, -150.34393 67.16606, -150.34384 67.16613, -150.34374 67.16619, -150.34365 67.16625, -150.34356 67.16631, -150.34346 67.16638, -150.34337 67.16644, -150.34328 67.1665, -150.34318 67.16656, -150.34309 67.16662, -150.343 67.16669, -150.3429 67.16675, -150.34281 67.16681, -150.34272 67.16687, -150.34263 67.16693, -150.34253 67.167, -150.34244 67.16706, -150.34235 67.16712, -150.34226 67.16718, -150.34216 67.16724, -150.34207 67.16731, -150.34198 67.16737, -150.34189 67.16743, -150.3418 67.16749, -150.34171 67.16756, -150.34161 67.16762, -150.34152 67.16768, -150.34143 67.16774, -150.34133 67.1678, -150.34124 67.16787, -150.34114 67.16793, -150.34105 67.16799, -150.34096 67.16805, -150.34086 67.16811, -150.34077 67.16818, -150.34067 67.16824, -150.34058 67.1683, -150.34049 67.16836, -150.3404 67.16842, -150.3403 67.16849, -150.34021 67.16855, -150.34012 67.16861, -150.34003 67.16867, -150.33993 67.16874, -150.33984 67.1688, -150.33975 67.16886, -150.33966 67.16892, -150.33957 67.16898, -150.33947 67.16905, -150.33938 67.16911, -150.33929 67.16917, -150.3392 67.16923, -150.3391 67.1693, -150.33901 67.16936, -150.33892 67.16942, -150.33883 67.16948, -150.33873 67.16954, -150.33864 67.16961, -150.33855 67.16967, -150.33846 67.16973, -150.33837 67.16979, -150.33828 67.16986, -150.33818 67.16992, -150.33809 67.16998, -150.338 67.17004, -150.3379 67.1701, -150.33781 67.17017, -150.33771 67.17023, -150.33762 67.17029, -150.33753 67.17035, -150.33743 67.17041, -150.33734 67.17048, -150.33725 67.17054, -150.33715 67.1706, -150.33706 67.17066, -150.33697 67.17072, -150.33687 67.17079, -150.33678 67.17085, -150.33668 67.17091, -150.33659 67.17097, -150.3365 67.17103, -150.33641 67.1711, -150.33632 67.17116, -150.33623 67.17122, -150.33613 67.17128, -150.33604 67.17135, -150.33595 67.17141, -150.33586 67.17147, -150.33576 67.17153, -150.33567 67.1716, -150.33558 67.17166, -150.33548 67.17172, -150.33539 67.17178, -150.3353 67.17184, -150.33521 67.17191, -150.33511 67.17197, -150.33502 67.17203, -150.33493 67.17209, -150.33483 67.17215, -150.33474 67.17222, -150.33465 67.17228, -150.33455 67.17234, -150.33446 67.1724, -150.33437 67.17246, -150.33428 67.17253, -150.33418 67.17259, -150.33409 67.17265, -150.33399 67.17271, -150.3339 67.17277, -150.33381 67.17284, -150.33371 67.1729, -150.33362 67.17296, -150.33352 67.17302, -150.33342 67.17308, -150.33332 67.17314, -150.33322 67.1732, -150.33311 67.17326, -150.33301 67.17332, -150.3329 67.17338, -150.3328 67.17344, -150.33269 67.1735, -150.33258 67.17356, -150.33247 67.17361, -150.33236 67.17367, -150.33224 67.17373, -150.33213 67.17378, -150.33201 67.17384, -150.33189 67.1739, -150.33177 67.17395, -150.33164 67.174, -150.33152 67.17406, -150.33139 67.17411, -150.33126 67.17416, -150.33113 67.17421, -150.331 67.17426, -150.33087 67.17431, -150.33073 67.17436, -150.33059 67.17441, -150.33046 67.17446, -150.33032 67.17451, -150.33018 67.17455, -150.33003 67.1746, -150.32989 67.17464, -150.32975 67.17469, -150.3296 67.17473, -150.32945 67.17478, -150.3293 67.17482, -150.32915 67.17486, -150.329 67.17491, -150.32885 67.17495, -150.3287 67.17499, -150.32854 67.17503, -150.32839 67.17507, -150.32823 67.1751, -150.32807 67.17514, -150.32791 67.17518, -150.32775 67.17521, -150.32759 67.17525, -150.32743 67.17528, -150.32727 67.17532, -150.3271 67.17535, -150.32694 67.17538, -150.32677 67.17542, -150.3266 67.17545, -150.32644 67.17548, -150.32627 67.17551, -150.3261 67.17554, -150.32593 67.17557, -150.32576 67.17559, -150.32559 67.17562, -150.32542 67.17565, -150.32524 67.17567, -150.32507 67.1757, -150.3249 67.17572, -150.32472 67.17574, -150.32454 67.17576, -150.32437 67.17578, -150.32419 67.1758, -150.32401 67.17582, -150.32384 67.17584, -150.32366 67.17586, -150.32348 67.17588, -150.32331 67.17589, -150.32313 67.17591, -150.32295 67.17593, -150.32277 67.17595, -150.32259 67.17596, -150.32242 67.17598, -150.32224 67.176, -150.32206 67.17602, -150.32188 67.17603, -150.3217 67.17605, -150.32153 67.17607, -150.32135 67.17609, -150.32117 67.1761, -150.32099 67.17612, -150.32082 67.17614, -150.32064 67.17616, -150.32046 67.17617, -150.32028 67.17619, -150.32011 67.17621, -150.31993 67.17623, -150.31975 67.17624, -150.31958 67.17626, -150.3194 67.17628, -150.31922 67.1763, -150.31905 67.17632, -150.31887 67.17634, -150.31869 67.17636, -150.31852 67.17638, -150.31834 67.1764, -150.31816 67.17642, -150.31799 67.17645, -150.31781 67.17647, -150.31764 67.17649, -150.31747 67.17651, -150.31729 67.17654, -150.31712 67.17656, -150.31695 67.17659, -150.31678 67.17662, -150.3166 67.17664, -150.31643 67.17667, -150.31626 67.17669, -150.31609 67.17672, -150.31592 67.17675, -150.31575 67.17678, -150.31558 67.1768, -150.31541 67.17683, -150.31525 67.17686, -150.31508 67.17689, -150.31491 67.17692, -150.31475 67.17696, -150.31458 67.17699, -150.31442 67.17702, -150.31425 67.17705, -150.31409 67.17709, -150.31393 67.17712, -150.31376 67.17715, -150.3136 67.17719, -150.31344 67.17722, -150.31327 67.17725, -150.31311 67.17729, -150.31295 67.17732, -150.31279 67.17736, -150.31264 67.1774, -150.31248 67.17743, -150.31232 67.17747, -150.31217 67.17751, -150.31201 67.17755, -150.31186 67.17759, -150.3117 67.17763, -150.31155 67.17767, -150.3114 67.17771, -150.31125 67.17775, -150.3111 67.17779, -150.31095 67.17783, -150.3108 67.17787, -150.31065 67.17792, -150.3105 67.17796, -150.31035 67.178, -150.3102 67.17804, -150.31005 67.17809, -150.3099 67.17813, -150.30975 67.17817, -150.30961 67.17822, -150.30946 67.17826, -150.30932 67.17831, -150.30918 67.17835, -150.30904 67.1784, -150.3089 67.17844, -150.30876 67.17849, -150.30862 67.17854, -150.30849 67.17859, -150.30835 67.17864, -150.30821 67.17868, -150.30808 67.17873, -150.30794 67.17878, -150.30781 67.17883, -150.30767 67.17888, -150.30754 67.17893, -150.30741 67.17898, -150.30729 67.17903, -150.30716 67.17909, -150.30703 67.17914, -150.30691 67.17919, -150.30679 67.17925, -150.30666 67.1793, -150.30654 67.17935, -150.30642 67.17941, -150.3063 67.17946, -150.30618 67.17951, -150.30606 67.17957, -150.30594 67.17962, -150.30582 67.17968, -150.3057 67.17973, -150.30559 67.17979, -150.30547 67.17984, -150.30535 67.1799, -150.30524 67.17996, -150.30512 67.18001, -150.305 67.18007, -150.30488 67.18012, -150.30477 67.18018, -150.30465 67.18023, -150.30453 67.18029, -150.30442 67.18034, -150.3043 67.1804, -150.30419 67.18045, -150.30407 67.18051, -150.30396 67.18057, -150.30384 67.18062, -150.30373 67.18068, -150.30361 67.18073, -150.3035 67.18079, -150.30338 67.18085, -150.30326 67.1809, -150.30315 67.18096, -150.30303 67.18101, -150.30292 67.18107, -150.3028 67.18113, -150.30269 67.18118, -150.30258 67.18124, -150.30246 67.1813, -150.30234 67.18135, -150.30223 67.18141, -150.30211 67.18146, -150.302 67.18152, -150.30188 67.18158, -150.30177 67.18163, -150.30165 67.18169, -150.30153 67.18175, -150.30142 67.1818, -150.3013 67.18186, -150.30118 67.18191, -150.30107 67.18197, -150.30095 67.18203, -150.30084 67.18208, -150.30072 67.18214, -150.3006 67.18219, -150.30049 67.18225, -150.30037 67.18231, -150.30025 67.18236, -150.30014 67.18242, -150.30002 67.18247, -150.29991 67.18253, -150.29979 67.18259, -150.29967 67.18264, -150.29956 67.1827, -150.29944 67.18275, -150.29933 67.18281, -150.29921 67.18287, -150.29909 67.18292, -150.29898 67.18298, -150.29886 67.18303, -150.29874 67.18309, -150.29863 67.18315, -150.29851 67.1832, -150.29839 67.18326, -150.29828 67.18331, -150.29816 67.18337, -150.29805 67.18343, -150.29793 67.18348, -150.29781 67.18354, -150.2977 67.18359, -150.29758 67.18365, -150.29746 67.1837, -150.29735 67.18376, -150.29723 67.18382, -150.29712 67.18387, -150.297 67.18393, -150.29689 67.18399, -150.29677 67.18404, -150.29666 67.1841, -150.29654 67.18416, -150.29642 67.18421, -150.29631 67.18427, -150.29619 67.18432, -150.29608 67.18438, -150.29596 67.18443, -150.29585 67.18449, -150.29573 67.18455, -150.29562 67.1846, -150.2955 67.18466, -150.29538 67.18471, -150.29527 67.18477, -150.29515 67.18483, -150.29504 67.18488, -150.29492 67.18494, -150.2948 67.18499, -150.29469 67.18505, -150.29457 67.18511, -150.29446 67.18516, -150.29434 67.18522, -150.29423 67.18527, -150.29411 67.18533, -150.294 67.18539, -150.29388 67.18544, -150.29376 67.1855, -150.29365 67.18555, -150.29353 67.18561, -150.29342 67.18566, -150.2933 67.18572, -150.29318 67.18578, -150.29306 67.18583, -150.29294 67.18589, -150.29283 67.18594, -150.29271 67.186, -150.29259 67.18605, -150.29247 67.18611, -150.29236 67.18616, -150.29224 67.18622, -150.29212 67.18627, -150.29201 67.18633, -150.29189 67.18639, -150.29178 67.18644, -150.29166 67.1865, -150.29155 67.18655, -150.29143 67.18661, -150.29132 67.18667, -150.2912 67.18672, -150.29109 67.18678, -150.29098 67.18684, -150.29086 67.18689, -150.29075 67.18695, -150.29063 67.187, -150.29052 67.18706, -150.2904 67.18712, -150.29029 67.18717, -150.29017 67.18723, -150.29005 67.18729, -150.28994 67.18734, -150.28982 67.1874, -150.28971 67.18745, -150.28959 67.18751, -150.28947 67.18757, -150.28936 67.18762, -150.28924 67.18768, -150.28913 67.18773, -150.28901 67.18779, -150.28889 67.18784, -150.28878 67.1879, -150.28866 67.18796, -150.28854 67.18801, -150.28842 67.18807, -150.28831 67.18812, -150.28819 67.18818, -150.28807 67.18823, -150.28796 67.18829, -150.28784 67.18835, -150.28773 67.1884, -150.28761 67.18846, -150.2875 67.18852, -150.28738 67.18857, -150.28727 67.18863, -150.28715 67.18869, -150.28704 67.18874, -150.28693 67.1888, -150.28681 67.18886, -150.2867 67.18892, -150.2866 67.18898, -150.28649 67.18903, -150.28638 67.18909, -150.28628 67.18915, -150.28617 67.18921, -150.28607 67.18927, -150.28597 67.18933, -150.28587 67.18939, -150.28577 67.18945, -150.28567 67.18951, -150.28557 67.18957, -150.28547 67.18963, -150.28537 67.18969, -150.28527 67.18975, -150.28517 67.18981, -150.28507 67.18987, -150.28497 67.18993, -150.28488 67.18999, -150.28478 67.19005, -150.28468 67.19012, -150.28459 67.19018, -150.2845 67.19024, -150.2844 67.1903, -150.28431 67.19036, -150.28422 67.19042, -150.28412 67.19049, -150.28403 67.19055, -150.28394 67.19061, -150.28386 67.19067, -150.28377 67.19074, -150.28368 67.1908, -150.2836 67.19086, -150.28351 67.19093, -150.28342 67.19099, -150.28334 67.19106, -150.28325 67.19112, -150.28317 67.19118, -150.28309 67.19125, -150.28301 67.19131, -150.28293 67.19138, -150.28285 67.19144, -150.28277 67.19151, -150.28269 67.19157, -150.28261 67.19164, -150.28253 67.1917, -150.28246 67.19177, -150.28238 67.19183, -150.28231 67.1919, -150.28223 67.19197, -150.28216 67.19203, -150.28209 67.1921, -150.28202 67.19216, -150.28195 67.19223, -150.28187 67.1923, -150.2818 67.19236, -150.28173 67.19243, -150.28165 67.1925, -150.28158 67.19256, -150.28151 67.19263, -150.28143 67.19269, -150.28136 67.19276, -150.28129 67.19283, -150.28121 67.19289, -150.28114 67.19296, -150.28107 67.19302, -150.28099 67.19309, -150.28092 67.19316, -150.28085 67.19322, -150.28077 67.19329, -150.2807 67.19335, -150.28063 67.19342, -150.28055 67.19348, -150.28048 67.19355, -150.28041 67.19362, -150.28033 67.19368, -150.28026 67.19375, -150.28019 67.19381, -150.28011 67.19388, -150.28004 67.19395, -150.27997 67.19401, -150.2799 67.19408, -150.27983 67.19415, -150.27976 67.19421, -150.27969 67.19428, -150.27961 67.19435, -150.27954 67.19441, -150.27947 67.19448, -150.2794 67.19454, -150.27932 67.19461, -150.27925 67.19468, -150.27918 67.19474, -150.2791 67.19481, -150.27903 67.19487, -150.27895 67.19494, -150.27888 67.19501, -150.2788 67.19507, -150.27873 67.19514, -150.27865 67.1952, -150.27858 67.19527, -150.2785 67.19533, -150.27843 67.1954, -150.27835 67.19547, -150.27828 67.19553, -150.2782 67.1956, -150.27813 67.19566, -150.27806 67.19573, -150.27798 67.19579, -150.27791 67.19586, -150.27784 67.19593, -150.27777 67.19599, -150.27769 67.19606, -150.27762 67.19612, -150.27755 67.19619, -150.27747 67.19625, -150.2774 67.19632, -150.27732 67.19639, -150.27725 67.19645, -150.27718 67.19652, -150.2771 67.19658, -150.27703 67.19665, -150.27696 67.19672, -150.27689 67.19678, -150.27682 67.19685, -150.27675 67.19691, -150.27668 67.19698, -150.27661 67.19705, -150.27654 67.19711, -150.27647 67.19718, -150.27639 67.19725, -150.27632 67.19731, -150.27625 67.19738, -150.27618 67.19744, -150.2761 67.19751, -150.27603 67.19758, -150.27596 67.19764, -150.27588 67.19771, -150.27581 67.19777, -150.27574 67.19784, -150.27566 67.1979, -150.27559 67.19797, -150.27551 67.19803, -150.27544 67.1981, -150.27536 67.19816, -150.27529 67.19823, -150.27521 67.19829, -150.27514 67.19836, -150.27507 67.19843, -150.27499 67.19849, -150.27492 67.19856, -150.27485 67.19862, -150.27478 67.19869, -150.2747 67.19875, -150.27463 67.19882, -150.27455 67.19888, -150.27448 67.19895, -150.2744 67.19902, -150.27433 67.19908, -150.27426 67.19915, -150.27418 67.19921, -150.27411 67.19928, -150.27404 67.19934, -150.27396 67.19941, -150.27389 67.19947, -150.27382 67.19954, -150.27374 67.1996, -150.27367 67.19967, -150.2736 67.19973, -150.27352 67.1998, -150.27345 67.19987, -150.27338 67.19993, -150.27331 67.2, -150.27323 67.20006, -150.27316 67.20013, -150.27309 67.20019, -150.27302 67.20026, -150.27294 67.20033, -150.27287 67.20039, -150.2728 67.20046, -150.27273 67.20052, -150.27266 67.20059, -150.27259 67.20065, -150.27252 67.20072, -150.27245 67.20079, -150.27238 67.20085, -150.27231 67.20092, -150.27224 67.20099, -150.27216 67.20105, -150.27209 67.20112, -150.27202 67.20118, -150.27195 67.20125, -150.27187 67.20131, -150.2718 67.20138, -150.27173 67.20144, -150.27165 67.20151, -150.27158 67.20158, -150.27151 67.20164, -150.27143 67.20171, -150.27136 67.20177, -150.27128 67.20184, -150.27121 67.2019, -150.27114 67.20197, -150.27106 67.20203, -150.27099 67.2021, -150.27092 67.20217, -150.27084 67.20223, -150.27077 67.2023, -150.2707 67.20236, -150.27062 67.20243, -150.27055 67.20249, -150.27048 67.20256, -150.2704 67.20262, -150.27033 67.20269, -150.27026 67.20276, -150.27019 67.20282, -150.27011 67.20289, -150.27004 67.20295, -150.26997 67.20302, -150.26989 67.20308, -150.26982 67.20315, -150.26975 67.20322, -150.26967 67.20328, -150.2696 67.20335, -150.26953 67.20341, -150.26946 67.20348, -150.26938 67.20354, -150.26931 67.20361, -150.26924 67.20368, -150.26917 67.20374, -150.2691 67.20381, -150.26902 67.20387, -150.26895 67.20394, -150.26888 67.204, -150.2688 67.20407, -150.26873 67.20413, -150.26865 67.2042, -150.26858 67.20426, -150.2685 67.20433, -150.26843 67.2044, -150.26836 67.20446, -150.26828 67.20453, -150.26821 67.20459, -150.26814 67.20466, -150.26807 67.20472, -150.26799 67.20479, -150.26792 67.20485, -150.26785 67.20492, -150.26778 67.20499, -150.26771 67.20505, -150.26764 67.20512, -150.26757 67.20518, -150.2675 67.20525, -150.26743 67.20531, -150.26736 67.20538, -150.2673 67.20545, -150.26723 67.20551, -150.26716 67.20558, -150.2671 67.20565, -150.26703 67.20571, -150.26697 67.20578, -150.2669 67.20585, -150.26684 67.20591, -150.26678 67.20598, -150.26672 67.20605, -150.26667 67.20612, -150.26661 67.20619, -150.26656 67.20625, -150.26651 67.20632, -150.26645 67.20639, -150.2664 67.20646, -150.26634 67.20653, -150.26629 67.2066, -150.26624 67.20666, -150.26619 67.20673, -150.26614 67.2068, -150.26609 67.20687, -150.26604 67.20694, -150.26599 67.20701, -150.26594 67.20708, -150.26589 67.20715, -150.26585 67.20722, -150.2658 67.20729, -150.26576 67.20736, -150.26572 67.20743, -150.26568 67.2075, -150.26564 67.20757, -150.2656 67.20764, -150.26556 67.20771, -150.26552 67.20778, -150.26548 67.20785, -150.26544 67.20792, -150.2654 67.20799, -150.26536 67.20806, -150.26532 67.20813, -150.26528 67.2082, -150.26524 67.20827, -150.2652 67.20834, -150.26516 67.20841, -150.26512 67.20848, -150.26508 67.20855, -150.26504 67.20862, -150.265 67.20869, -150.26496 67.20876, -150.26492 67.20883, -150.26488 67.2089, -150.26485 67.20897, -150.26481 67.20904, -150.26477 67.20911, -150.26473 67.20918, -150.26469 67.20925, -150.26465 67.20932, -150.26462 67.20939, -150.26458 67.20946, -150.26454 67.20953, -150.2645 67.2096, -150.26446 67.20967, -150.26442 67.20974, -150.26438 67.20981, -150.26433 67.20988, -150.26429 67.20995, -150.26425 67.21002, -150.26421 67.21009, -150.26417 67.21016, -150.26413 67.21023, -150.26409 67.2103, -150.26405 67.21037, -150.26401 67.21044, -150.26397 67.21051, -150.26393 67.21058, -150.26389 67.21065, -150.26385 67.21072, -150.26381 67.21079, -150.26377 67.21086, -150.26373 67.21093, -150.26369 67.211, -150.26365 67.21107, -150.26362 67.21114, -150.26358 67.21121, -150.26354 67.21128, -150.2635 67.21135, -150.26346 67.21142, -150.26342 67.21149, -150.26339 67.21156, -150.26335 67.21163, -150.2633 67.2117, -150.26326 67.21177, -150.26322 67.21184, -150.26318 67.21191, -150.26314 67.21198, -150.26311 67.21205, -150.26307 67.21212, -150.26303 67.21219, -150.26299 67.21226, -150.26295 67.21234, -150.26291 67.21241, -150.26287 67.21248, -150.26283 67.21255, -150.26279 67.21262, -150.26275 67.21269, -150.26271 67.21276, -150.26267 67.21283, -150.26263 67.2129, -150.26259 67.21297, -150.26256 67.21304, -150.26252 67.21311, -150.26248 67.21318, -150.26244 67.21325, -150.2624 67.21332, -150.26236 67.21339, -150.26232 67.21346, -150.26228 67.21353, -150.26224 67.2136, -150.2622 67.21367, -150.26216 67.21374, -150.26212 67.21381, -150.26208 67.21388, -150.26204 67.21395, -150.262 67.21402, -150.26196 67.21409, -150.26192 67.21416, -150.26189 67.21423, -150.26185 67.2143, -150.26181 67.21437, -150.26177 67.21444, -150.26173 67.21451, -150.26169 67.21458, -150.26165 67.21465, -150.26161 67.21472, -150.26157 67.21479, -150.26153 67.21486, -150.26148 67.21493, -150.26144 67.215, -150.26139 67.21507, -150.26135 67.21514, -150.2613 67.21521, -150.26125 67.21528, -150.2612 67.21535, -150.26115 67.21542, -150.2611 67.21549, -150.26104 67.21556, -150.26099 67.21563, -150.26093 67.2157, -150.26087 67.21576, -150.2608 67.21583, -150.26074 67.2159, -150.26067 67.21597, -150.2606 67.21603, -150.26053 67.2161, -150.26046 67.21617, -150.26039 67.21623, -150.26032 67.2163, -150.26024 67.21636, -150.26016 67.21643, -150.26008 67.21649, -150.26 67.21656, -150.25992 67.21662, -150.25983 67.21669, -150.25975 67.21675, -150.25966 67.21682, -150.25958 67.21688, -150.25949 67.21694, -150.25941 67.21701, -150.25932 67.21707, -150.25923 67.21713, -150.25914 67.2172, -150.25906 67.21726, -150.25897 67.21732, -150.25888 67.21739, -150.25879 67.21745, -150.25871 67.21751, -150.25862 67.21758, -150.25853 67.21764, -150.25845 67.2177, -150.25836 67.21777, -150.25827 67.21783, -150.25819 67.2179, -150.2581 67.21796, -150.25802 67.21802, -150.25793 67.21809, -150.25784 67.21815, -150.25776 67.21821, -150.25767 67.21828, -150.25758 67.21834, -150.2575 67.2184, -150.25741 67.21847, -150.25733 67.21853, -150.25724 67.21859, -150.25714 67.21866, -150.25705 67.21872, -150.25695 67.21878, -150.25685 67.21884, -150.25675 67.2189, -150.25665 67.21896, -150.25654 67.21902, -150.25644 67.21908, -150.25633 67.21914, -150.25622 67.2192, -150.25611 67.21925, -150.256 67.21931, -150.25588 67.21937, -150.25576 67.21942, -150.25564 67.21948, -150.25552 67.21953, -150.25539 67.21959, -150.25527 67.21964, -150.25514 67.21969, -150.25501 67.21974, -150.25488 67.2198, -150.25475 67.21985, -150.25462 67.2199, -150.25448 67.21995, -150.25435 67.22, -150.25421 67.22005, -150.25407 67.22009, -150.25393 67.22014, -150.25378 67.22019, -150.25364 67.22023, -150.25349 67.22028, -150.25335 67.22032, -150.2532 67.22036, -150.25305 67.22041, -150.2529 67.22045, -150.25275 67.22049, -150.25259 67.22053, -150.25244 67.22057, -150.25228 67.22061, -150.25212 67.22065, -150.25197 67.22069, -150.25181 67.22072, -150.25164 67.22076, -150.25148 67.22079, -150.25132 67.22083, -150.25115 67.22086, -150.25098 67.22089, -150.25081 67.22092, -150.25065 67.22095, -150.25048 67.22098, -150.25031 67.22101, -150.25014 67.22104, -150.24997 67.22107, -150.2498 67.2211, -150.24963 67.22113, -150.24946 67.22116, -150.24929 67.22119, -150.24912 67.22122, -150.24895 67.22125, -150.24878 67.22128, -150.24861 67.22131, -150.24844 67.22134, -150.24827 67.22137, -150.24811 67.22139, -150.24794 67.22142, -150.24777 67.22145, -150.2476 67.22148, -150.24743 67.22151, -150.24726 67.22154, -150.24709 67.22157, -150.24692 67.2216, -150.24675 67.22163, -150.24658 67.22166, -150.24641 67.22169, -150.24624 67.22172, -150.24607 67.22175, -150.2459 67.22178, -150.24573 67.22181, -150.24556 67.22184, -150.2454 67.22187, -150.24523 67.2219, -150.24506 67.22193, -150.24489 67.22196, -150.24472 67.22199, -150.24455 67.22202, -150.24438 67.22205, -150.24421 67.22208, -150.24404 67.22211, -150.24387 67.22214, -150.2437 67.22217, -150.24353 67.22219, -150.24336 67.22222, -150.24319 67.22225, -150.24302 67.22228, -150.24285 67.22231, -150.24268 67.22234, -150.24251 67.22237, -150.24234 67.2224, -150.24217 67.22243, -150.242 67.22246, -150.24183 67.22249, -150.24166 67.22251, -150.24149 67.22254, -150.24132 67.22257, -150.24115 67.2226, -150.24098 67.22263, -150.24081 67.22266, -150.24064 67.22269, -150.24048 67.22272, -150.24031 67.22275, -150.24014 67.22278, -150.23997 67.22281, -150.2398 67.22284, -150.23963 67.22287, -150.23946 67.2229, -150.23929 67.22293, -150.23912 67.22295, -150.23895 67.22298, -150.23878 67.22301, -150.23861 67.22304, -150.23844 67.22307, -150.23827 67.2231, -150.2381 67.22313, -150.23793 67.22316, -150.23776 67.22318, -150.23759 67.22321, -150.23742 67.22324, -150.23725 67.22327, -150.23709 67.2233, -150.23692 67.22333, -150.23675 67.22336, -150.23658 67.22339, -150.23641 67.22342, -150.23624 67.22345, -150.23607 67.22348, -150.2359 67.22351, -150.23573 67.22354, -150.23556 67.22357, -150.23539 67.2236, -150.23522 67.22363, -150.23505 67.22366, -150.23488 67.22369, -150.23472 67.22372, -150.23454 67.22374, -150.23437 67.22377, -150.2342 67.2238, -150.23403 67.22383, -150.23386 67.22386, -150.23369 67.22389, -150.23352 67.22392, -150.23336 67.22395, -150.23319 67.22398, -150.23302 67.22401, -150.23285 67.22404, -150.23268 67.22407, -150.23252 67.2241, -150.23235 67.22413, -150.23218 67.22416, -150.23202 67.22419, -150.23185 67.22422, -150.23169 67.22426, -150.23153 67.22429, -150.23137 67.22433, -150.23121 67.22436, -150.23105 67.2244, -150.23089 67.22443, -150.23073 67.22447, -150.23057 67.22451, -150.23042 67.22454, -150.23026 67.22458, -150.23011 67.22462, -150.22995 67.22466, -150.2298 67.2247, -150.22964 67.22474, -150.22949 67.22478, -150.22934 67.22482, -150.22919 67.22486, -150.22904 67.22491, -150.22889 67.22495, -150.22874 67.22499, -150.22859 67.22503, -150.22845 67.22508, -150.22831 67.22512, -150.22817 67.22517, -150.22803 67.22522, -150.22789 67.22527, -150.22775 67.22531, -150.22762 67.22536, -150.22748 67.22541, -150.22734 67.22546, -150.22721 67.22551, -150.22707 67.22556, -150.22694 67.22561, -150.22681 67.22566, -150.22668 67.22571, -150.22655 67.22576, -150.22642 67.22581, -150.22629 67.22586, -150.22617 67.22592, -150.22604 67.22597, -150.22592 67.22602, -150.2258 67.22608, -150.22568 67.22613, -150.22556 67.22619, -150.22544 67.22624, -150.22532 67.2263, -150.22521 67.22635, -150.22509 67.22641, -150.22498 67.22647, -150.22487 67.22652, -150.22476 67.22658, -150.22465 67.22664, -150.22454 67.2267, -150.22444 67.22676, -150.22434 67.22682, -150.22424 67.22688, -150.22414 67.22694, -150.22405 67.227, -150.22395 67.22706, -150.22385 67.22712, -150.22376 67.22719, -150.22367 67.22725, -150.22358 67.22731, -150.22349 67.22737, -150.2234 67.22744, -150.22331 67.2275, -150.22322 67.22756, -150.22314 67.22763, -150.22305 67.22769, -150.22296 67.22775, -150.22288 67.22782, -150.2228 67.22788, -150.22271 67.22795, -150.22263 67.22801, -150.22255 67.22807, -150.22248 67.22814, -150.2224 67.22821, -150.22233 67.22827, -150.22226 67.22834, -150.22219 67.2284, -150.22213 67.22847, -150.22206 67.22854, -150.222 67.22861, -150.22194 67.22867, -150.22189 67.22874, -150.22183 67.22881, -150.22177 67.22888, -150.22171 67.22895, -150.22166 67.22902, -150.22161 67.22908, -150.22156 67.22915, -150.22152 67.22922, -150.22147 67.22929, -150.22143 67.22936, -150.22139 67.22943, -150.22135 67.2295, -150.22131 67.22957, -150.22127 67.22964, -150.22124 67.22971, -150.2212 67.22978, -150.22116 67.22985, -150.22113 67.22992, -150.2211 67.22999, -150.22106 67.23006, -150.22103 67.23013, -150.221 67.23021, -150.22097 67.23028, -150.22093 67.23035, -150.2209 67.23042, -150.22087 67.23049, -150.22083 67.23056, -150.2208 67.23063, -150.22076 67.2307, -150.22073 67.23077, -150.2207 67.23084, -150.22066 67.23091, -150.22063 67.23098, -150.22059 67.23105, -150.22056 67.23112, -150.22053 67.23119, -150.22049 67.23126, -150.22046 67.23134, -150.22042 67.23141, -150.22039 67.23148, -150.22036 67.23155, -150.22032 67.23162, -150.22029 67.23169, -150.22025 67.23176, -150.22022 67.23183, -150.22018 67.2319, -150.22015 67.23197, -150.22011 67.23204, -150.22008 67.23211, -150.22004 67.23218, -150.22001 67.23225, -150.21997 67.23232, -150.21993 67.23239, -150.2199 67.23246, -150.21986 67.23253, -150.21983 67.2326, -150.2198 67.23267, -150.21977 67.23275, -150.21973 67.23282, -150.2197 67.23289, -150.21967 67.23296, -150.21964 67.23303, -150.21961 67.2331, -150.21958 67.23317, -150.21954 67.23324, -150.21951 67.23331, -150.21948 67.23338, -150.21944 67.23345, -150.21941 67.23352, -150.21938 67.23359, -150.21934 67.23367, -150.21931 67.23374, -150.21928 67.23381, -150.21924 67.23388, -150.21921 67.23395, -150.21918 67.23402, -150.21914 67.23409, -150.21911 67.23416, -150.21908 67.23423, -150.21904 67.2343, -150.21901 67.23437, -150.21898 67.23444, -150.21894 67.23451, -150.21891 67.23458, -150.21888 67.23465, -150.21884 67.23473, -150.21881 67.2348, -150.21878 67.23487, -150.21875 67.23494, -150.21872 67.23501, -150.21868 67.23508, -150.21865 67.23515, -150.21862 67.23522, -150.21859 67.23529, -150.21856 67.23536, -150.21853 67.23543, -150.2185 67.2355, -150.21846 67.23557, -150.21843 67.23565, -150.2184 67.23572, -150.21836 67.23579, -150.21833 67.23586, -150.21829 67.23593, -150.21826 67.236, -150.21823 67.23607, -150.21819 67.23614, -150.21816 67.23621, -150.21812 67.23628, -150.21809 67.23635, -150.21805 67.23642, -150.21802 67.23649, -150.21799 67.23656, -150.21796 67.23663, -150.21792 67.2367, -150.21789 67.23678, -150.21786 67.23685, -150.21782 67.23692, -150.21779 67.23699, -150.21775 67.23706, -150.21772 67.23713, -150.21769 67.2372, -150.21765 67.23727, -150.21762 67.23734, -150.21759 67.23741, -150.21756 67.23748, -150.21752 67.23755, -150.21749 67.23762, -150.21746 67.23769, -150.21743 67.23777, -150.21739 67.23784, -150.21736 67.23791, -150.21733 67.23798, -150.2173 67.23805, -150.21726 67.23812, -150.21723 67.23819, -150.21719 67.23826, -150.21716 67.23833, -150.21713 67.2384, -150.21709 67.23847, -150.21706 67.23854, -150.21703 67.23861, -150.21699 67.23868, -150.21696 67.23875, -150.21693 67.23883, -150.2169 67.2389, -150.21686 67.23897, -150.21683 67.23904, -150.2168 67.23911, -150.21676 67.23918, -150.21673 67.23925, -150.2167 67.23932, -150.21666 67.23939, -150.21663 67.23946, -150.2166 67.23953, -150.21656 67.2396, -150.21653 67.23967, -150.2165 67.23974, -150.21646 67.23982, -150.21643 67.23989, -150.2164 67.23996, -150.21636 67.24003, -150.21633 67.2401, -150.2163 67.24017, -150.21626 67.24024, -150.21623 67.24031, -150.2162 67.24038, -150.21617 67.24045, -150.21614 67.24052, -150.2161 67.24059, -150.21607 67.24066, -150.21604 67.24073, -150.216 67.2408, -150.21597 67.24088, -150.21594 67.24095, -150.2159 67.24102, -150.21587 67.24109, -150.21583 67.24116, -150.21579 67.24123, -150.21576 67.2413, -150.21572 67.24137, -150.21568 67.24144, -150.21565 67.24151, -150.21561 67.24158, -150.21557 67.24165, -150.21552 67.24172, -150.21548 67.24179, -150.21543 67.24186, -150.21537 67.24193, -150.21532 67.242, -150.21526 67.24207, -150.2152 67.24213, -150.21514 67.2422, -150.21507 67.24227, -150.215 67.24234, -150.21493 67.2424, -150.21485 67.24247, -150.21478 67.24254, -150.2147 67.2426, -150.21462 67.24267, -150.21454 67.24273, -150.21446 67.24279, -150.21437 67.24286, -150.21428 67.24292, -150.21419 67.24299, -150.2141 67.24305, -150.21401 67.24311, -150.21391 67.24317, -150.21382 67.24323, -150.21372 67.2433, -150.21362 67.24336, -150.21352 67.24342, -150.21347 67.24344, -150.21336 67.2435, -150.21325 67.24356, -150.21314 67.24362, -150.21302 67.24367, -150.21291 67.24373, -150.21279 67.24379, -150.21268 67.24384, -150.21255 67.2439, -150.21243 67.24395, -150.21231 67.24401, -150.21219 67.24406, -150.21206 67.24411, -150.21179 67.24421, -150.21153 67.24431, -150.21125 67.24441, -150.21097 67.2445, -150.21069 67.24459, -150.21055 67.24464, -150.21041 67.24469, -150.21027 67.24474, -150.21013 67.24478, -150.21006 67.24481))

1 rows × 35 columns

[26]:
# Set the value of a row's column by index
fc[(1, 0)] = "deprecated"
fc[1]
[26]:
VERSION YEAR STFIPS CTFIPS ROUTEID BEGINPOINT ENDPOINT SIGN1 SIGNT1 SIGNN1 ... AADT_COM AADT_SINGL FUT_AADT FUT_YEAR MILES UPDATE_DAT NHS_ACTION FILE_NAME SHAPE_Length geometry
ObjectID
1 deprecated 2020.0 15.0 7.0 50 0.0 6.69 S50 S 50 ... 102.0 981.0 26316.0 2039-12-31 00:00:00+00:00 0.949648 NaT HI_NHS_2021 0.014689 MULTILINESTRING ((-159.38195 21.97153, -159.3919 21.96835, -159.39206 21.96832, -159.39246 21.9683, -159.39265 21.96827, -159.39288 21.9682, -159.39341 21.96803, -159.39397 21.96783, -159.39443 21.96765, -159.39491 21.96744, -159.39589 21.96699))

1 rows × 35 columns

[27]:
# Save to disk
fc.save(
    gdb_path="output.gdb",
    fc_name="NHS_updated",
    feature_dataset="NHS_Data1",
    overwrite=True,
)

fc.save(
    gdb_path="output.gdb", fc_name="NHS_updated2", feature_dataset=None, overwrite=True
)

# Check outputs
ft.list_datasets("output.gdb")
[27]:
{'NHS_Data1': ['NHS_updated'], None: ['NHS_updated2']}