Edit/correct India Map In Cdat Documentation - With Edited World Map Data

1966
How to edit world map in cdat – Documentation – With edited world map data Hi to all, Here i am going to explain about , ‘ how to edit world map in cdat ‘. Here i am going to share my experience about how to edit world map and create & adjust the Indian political map . While doing contour and isolines plotting on India map in cdat , My guide Mr.Thyagarajan Shanmugham and myself felt that our Indian Political Map wrongly depicted in CDAT as below. Our first step in the long time goal : Redrawing correct political map of india - 1) Correcting the PoK part , which belongs to India 2) Correcting the part of the land which is occupied by the Chinese in the state of jammu and kashmir While asking help from Mr.Charles Doutriaux [ CDAT Developer ] regarding edit map in cdat, he gave the source data of cdat world map.

Transcript of Edit/correct India Map In Cdat Documentation - With Edited World Map Data

  • How to edit world map in cdat Documentation With edited world map data

    Hi to all,

    Here i am going to explain about , how to edit world map in cdat .

    Here i am going to share my experience about how to edit world map and create & adjust the Indian political map . While doing contour and isolines plotting on India map in cdat , My guide

    Mr.Thyagarajan Shanmugham and myself felt that our Indian Political Map wrongly depicted in CDAT as below.

    Our first step in the long time goal :

    Redrawing correct political map of india -

    1) Correcting the PoK part , which belongs to India

    2) Correcting the part of the land which is occupied by the Chinese in the state of jammu and kashmir

    While asking help from Mr.Charles Doutriaux [ CDAT Developer ] regarding edit map in cdat,he gave the source data of cdat world map.

  • code to convert the WORLD_COUNTRIES.shp binary data into text format and to view the world map from this binary data. map_source.py

    In the following code i used /home/arul/ . Instead of this , you have to use your user name.

    #Begin code

    import vcs, cdms2, cdutil, time, os, sys

    import vcsaddons

    import vcsaddons

    v = vcs.init()

    filehandler=cdms2.open(sys.prefix+'/sample_data/clt.nc')

    mapregion=filehandler("clt",longitude=(60,100),latitude=(5,40))

    world_continents = vcsaddons.continents.Guc(x=v)

    world_continents.types=[2]

    world_continents.colors=[241]

    world_continents.sources=['/home/arul/Desktop/WORLD_COUNTRIES.shp',]

    world_continents.list()

    v.plot(mapregion,world_continents,ratio='autot')

    v.png("india")

    data = world_continents.load_shapefile('/home/arul/Desktop/WORLD_COUNTRIES.shp')

    #wrting the data into out.txt file

    fileiter=open("/home/arul/Desktop/out.txt","w")

    print >> fileiter, data[:]

    fileiter.close()

    #End of code

    Run the above program from the cdat environment. It will generate the world map data and saved into out.txt file. It contains nearly 109300 lines.

    In the out.txt file , we can see approximately 51950 data. These data only plotting the world in vcs.

    http://www2-pcmdi.llnl.gov/cdat/tutorials/cdatbasics/plotting-basics/creating-continents/?searchterm=continents

    Before going to below , please just go through the above link.

  • argument to continent in plot method 0: "0 signifies - No Continents", 1: "1 signifies - Fine Continents", 2: "2 signifies - Coarse # Continents", 3: "3 signifies - United States Continents", 4: "4 signifies - Political Borders Continents", 5: "5 signifies - North American Rivers Continents", 6: "6 signifies - User continent file data_continent_other7", 7: "7 signifies - User continent file data_continent_other8", 8: "8 signifies - User continent file data_continent_other9", 9: "9 signifies - User continent file data_continent_other10", 10: "10 signifies - User continent file data_continent_other11", 11: "11 signifies - User continent file data_continent_other12"

    Now copy the out.txt into data_continent_other7

    $ cp out.txt data_continent_other7

    and paste into PCMDI_GRAPHICS folder

    $ cp data_continent_other7 ~/ PCMDI_GRAPHICS/

    PCMDI_GRAPHICS folder was generted in our home folder by automatically.

    Already we found the longitude=(60, 100), latitude = (5., 40.)) for India map from the world map in cdat.

    Now we are going to plot the world map and india map from data_continent_other7 .

    mymap.py

    # Import the modules needed for the tutorial

    import vcs, cdms2, cdutil, time, os, sys # Open data file: filepath = os.path.join(sys.prefix, 'sample_data/clt.nc') cdmsfile = cdms2.open( filepath )

    # Extract a 3 dimensional data set and get a subset of the time dimension data = cdmsfile('clt', longitude=(-180, 180), latitude = (-180., 180.)) #data = cdmsfile('clt', longitude=(60, 100), latitude = (5., 40.)) # for india long(60,100) and lat(5,30) (5,40)

    # Initial VCS. v = vcs.init()

    # Assign the variable "cf_asd" to the persistent 'ASD' isofill graphics methods.

  • cf_asd = v.getboxfill( 'ASD' )

    cf_asd.datawc(1e20,1e20,1e20,1e20) # change to default region cf_asd.level_1=1e20 # change to default minimum level cf_asd.level_2=1e20 # change to default maximum level cf_asd.color_1=240 # change 1st color index value cf_asd.color_2=240 # change 2nd color index value

    # Plot the data using the above boxfill graphics method. v.plot( data, cf_asd,continents=6)# continents=6 for data_continent_other7 map

    print "Press the Return key to see next plot." sys.stdin.readline() data = cdmsfile('clt', longitude=(60, 100), latitude = (5., 40.)) v.plot( data, cf_asd,continents=6) sys.stdin.readline() #End of code

    Now we will Try to understand out.txt or data_continent_other7 data allocation method.

    The first line specifies the connection of six points of (latitude, longitude) coodinates in the upper left corner of the plot.

    From the second line they are represented the Y axis and X axis point. For eg:

    24 1 49.955277 58.660553 -8.171667 1.749445

    54.113052 -7.330279

    54.126938 -7.559446

    54.163674 -7.624862

    54.202500 -7.699723

    54.200272 -7.747778

    54.212219 -7.851389

    54.253052 -7.869445

    54.294167 -7.900279

    54.299439 -7.941390

    54.357216 -8.030280

    54.372772 -8.065556

  • 54.463879 -8.171667

    -99 -99

    The entry " -99 -99" indicate that no more data are to be read in (i.e., denotes end-of-file).

    Note the total number of points for any given line should not exceed 200 points.

    By this way , the whole world data are split into many no of data sets. So from this , we have to find out which region data is india map data.

    Hack Methods :

    I hacked this out.txt source file by two method.

    First , i cut the fre data sets from the last of out.txt and paste into data_continent_other7 and genearate the vcs.

    It produces the following world map.

  • By continious the same way , i found out the india himalachala pradesh region in map.

  • From here i started to edit the map. And while clicking on vcs , we can see the X,Y & Data of that position.

    Using that values also , we can hack the world map.

    In the same eg:24 1 49.955277 58.660553 -8.171667 1.749445

    54.113052 -7.330279

    . . .

    In this 54.113052 is Y value and -7.330279 is X value.

  • At Last , I reached my goal.

  • India Ploitical Map Link

    http://www.fmisonline.org/Map/India/Outline.gif

    I hope , i finished this correction of india map. Using the above link reference image.

  • If you want the above Corrected India map data with world map , save the following data upto -99 -99 in the name of data_continent_other7 and paste into PCMDI_GRAPHICS folder.

    200 1 59.790276 83.623596 -72.830238 -12.204896

    60.238045 -43.123886

    60.174297 -43.109169

    60.110275 -43.086662

    60.082497 -43.124443

    60.019024 -43.140419

    59.989437 -43.193470

    59.992493 -43.238892

    60.023605 -43.331116

    59.972763 -43.358894

    59.928326 -43.395832

    59.903320 -43.501945

    59.954636 -43.488258

    59.914711 -43.572777

    59.947212 -43.724716

    59.877213 -43.653885

    59.804436 -43.849724

    59.790276 -43.902222

    59.811661 -44.006950

    59.800545 -44.061943

    59.813538 -44.109722

    59.867352 -44.109863

    59.972904 -43.980274

    59.996380 -43.914303

    60.044998 -43.934441

    60.060997 -44.010853

    60.052326 -44.072582

    60.014996 -44.012779

    59.961105 -44.053612

    59.943462 -44.092499

    59.899513 -44.145546

    59.889717 -44.203613

    59.871517 -44.318752

    59.893608 -44.372223

    59.972282 -44.301411

    59.948883 -44.405415

    60.011108 -44.497498

    60.006386 -44.551941

    59.988327 -44.586662

    59.988884 -44.642227

    60.017769 -44.806664

    60.027489 -44.931114

    60.034718 -44.971527

    60.094433 -44.998886

    60.115231 -45.129887

    60.151871 -45.109463

    60.165825 -45.170837

    60.186935 -45.202499

    60.222763 -45.169167

    60.280273 -45.083611

    60.295830 -45.041115

    60.344154 -44.947495

  • 60.416100 -44.895004

    60.664032 -44.769024

    60.642632 -44.830559

    60.605270 -44.839722

    60.541939 -44.911110

    60.481659 -45.003334

    60.440826 -45.175560

    60.434158 -45.217773

    60.446098 -45.258896

    60.497635 -45.264587

    60.564022 -45.249214

    60.513054 -45.394165

    60.518219 -45.460987

    60.605270 -45.373886

    60.647774 -45.269447

    60.699997 -45.313332

    60.674164 -45.368332

    60.624992 -45.452782

    60.504166 -45.556389

    60.469154 -45.574722

    60.613716 -45.760948

    60.557495 -45.826950

    60.555824 -45.890556

    60.566837 -45.934143

    60.689129 -45.967365

    60.638046 -46.081947

    60.641380 -46.170555

    60.675129 -46.200691

    60.691395 -46.145863

    60.743324 -46.208611

    60.780548 -46.184441

    60.799843 -46.136879

    60.836105 -46.047501

    60.921104 -46.065552

    60.967491 -46.102917

    61.025551 -45.953056

    61.090546 -45.777779

    61.142220 -45.653610

    61.168884 -45.698883

    61.209991 -45.855835

    61.162769 -45.839581

    61.090271 -45.915001

    61.001938 -46.128052

    60.974709 -46.229439

    60.922493 -46.164444

    60.885269 -46.206665

    60.876381 -46.253891

    60.847488 -46.351944

    60.804161 -46.502502

    200 1 59.790276 83.623596 -72.830238 -12.204896

    60.804161 -46.502502

    60.789993 -46.567505

    60.749718 -46.758476

    60.756943 -46.833061

    60.815170 -46.814671

  • 60.797356 -46.862221

    60.802490 -46.910278

    60.863327 -46.958611

    60.907768 -46.944443

    60.932491 -46.915623

    60.952492 -46.948334

    60.973320 -47.011391

    60.939430 -47.163330

    60.948605 -47.294449

    60.921825 -47.474224

    60.883331 -47.362778

    60.820274 -47.447777

    60.812210 -47.609726

    60.808601 -47.653885

    60.820328 -47.756035

    60.756660 -47.828339

    60.714535 -47.764446

    60.677078 -47.898472

    60.688324 -48.032219

    60.698875 -48.076393

    60.739437 -48.167358

    60.791958 -48.213821

    60.824299 -48.242432

    60.856102 -48.194160

    60.874161 -48.143890

    60.898605 -48.049446

    60.907211 -48.005562

    60.925270 -47.916946

    60.972763 -47.729996

    61.006802 -47.689857

    61.032211 -47.879166

    61.121796 -47.893475

    61.104164 -47.949722

    61.088776 -48.055218

    61.002007 -47.951752

    60.991379 -48.005005

    60.971657 -48.088608

    60.964439 -48.132217

    60.980545 -48.193054

    60.993050 -48.243614

    61.013611 -48.309166

    61.038410 -48.226662

    61.053322 -48.307777

    61.059715 -48.354446

    61.124161 -48.320839

    61.129158 -48.387779

    61.179852 -48.430000

    61.172909 -48.475830

    61.210407 -48.639168

    61.260551 -48.614723

    61.312767 -48.583328

    61.309715 -48.653610

    61.357635 -48.810429

    61.356037 -48.980900

    61.399437 -49.065277

    61.455051 -48.977367

  • 61.489716 -49.101391

    61.557495 -49.297501

    61.593880 -49.265007

    61.603607 -49.226387

    61.602776 -49.090553

    61.618881 -49.053192

    61.654770 -49.066895

    61.700542 -49.050133

    61.728909 -49.087849

    61.719849 -49.149029

    61.806938 -49.123886

    61.959797 -48.873722

    61.975128 -48.943607

    61.954163 -49.000839

    61.857632 -49.165001

    61.829994 -49.193054

    61.787426 -49.185207

    61.742767 -49.184582

    61.714851 -49.227219

    61.780331 -49.336502

    61.812492 -49.412498

    61.841309 -49.438606

    61.877213 -49.523056

    61.883606 -49.570557

    61.928188 -49.634724

    61.935547 -49.551392

    61.911049 -49.402889

    61.967785 -49.373833

    61.983047 -49.602226

    61.995544 -49.669449

    62.112213 -49.697777

    62.150826 -49.638336

    62.203880 -49.600555

    62.244259 -49.568699

    62.261665 -49.690552

    62.250275 -49.807777

    62.264160 -49.848610

    62.319443 -49.908333

    62.333054 -50.025833

    200 1 59.790276 83.623596 -72.830238 -12.204896

    62.333054 -50.025833

    62.421379 -50.211670

    62.494301 -50.315624

    62.669716 -50.223610

    62.795547 -50.083328

    62.703880 -50.255978

    62.740967 -50.316387

    62.830276 -50.243332

    62.935326 -50.177460

    62.828606 -50.322781

    62.790550 -50.343330

    62.787773 -50.383331

    62.851387 -50.399994

    62.964020 -50.327946

    62.940407 -50.408051

    62.969986 -50.593887

  • 63.039719 -50.612778

    63.114300 -50.622917

    63.121933 -50.666389

    63.091377 -50.750282

    63.081665 -50.799728

    63.143497 -50.885052

    63.184910 -50.901787

    63.178604 -50.948608

    63.157768 -50.984169

    63.168053 -51.032219

    63.304710 -51.102783

    63.369156 -51.054169

    63.373604 -51.126945

    63.384159 -51.170002

    63.441376 -51.219994

    63.502777 -51.168610

    63.524437 -51.209167

    63.616661 -51.353889

    63.651657 -51.428886

    63.659988 -51.480278

    63.680550 -51.534168

    63.740547 -51.547783

    63.770271 -51.503059

    63.807297 -51.390434

    63.887215 -51.376663

    63.966934 -51.362221

    63.984993 -51.423058

    63.973877 -51.470833

    63.970543 -51.510002

    63.986938 -51.580002

    64.034714 -51.601944

    64.043045 -51.561386

    64.067314 -51.443619

    64.091240 -51.561249

    64.142746 -51.631977

    64.140823 -51.684998

    64.188522 -51.761806

    64.216660 -51.617500

    64.218307 -51.518852

    64.179977 -51.582504

    64.165268 -51.475830

    64.169304 -51.420235

    64.217484 -51.423889

    64.196037 -51.372829

    64.174423 -51.303612

    64.241096 -51.339165

    64.291092 -51.257507

    64.331100 -51.205833

    64.387207 -51.139442

    64.445534 -51.081249

    64.514435 -51.027779

    64.556931 -51.006668

    64.553001 -50.893345

    64.623451 -50.880138

    64.652206 -50.795555

    64.648331 -50.748337

  • 64.635544 -50.680832

    64.629700 -50.629997

    64.630539 -50.584724

    64.685104 -50.458656

    64.676376 -50.322777

    64.659981 -50.280834

    64.626373 -50.248886

    64.543877 -50.216942

    64.501663 -50.172775

    64.476517 -50.134304

    64.464432 -50.077499

    64.397217 -49.853889

    64.361923 -49.758614

    64.346649 -49.718887

    64.332764 -49.666107

    64.329987 -49.613335

    64.425537 -49.678337

    64.426926 -49.747498

    64.450546 -49.827499

    64.490540 -49.949997

    64.512497 -50.030830

    64.527832 -50.063679

    64.619011 -50.120556

    64.698029 -50.129166

    64.696365 -50.169304

    64.713882 -50.201942

    64.791466 -50.195072

    64.762909 -50.259033

    200 1 59.790276 83.623596 -72.830238 -12.204896

    64.762909 -50.259033

    64.742760 -50.301670

    64.763046 -50.543335

    64.843765 -50.633968

    64.758324 -50.634098

    64.741653 -50.688049

    64.715820 -50.823616

    64.672760 -50.953331

    64.643463 -51.006901

    64.613602 -51.143333

    64.619141 -51.210556

    64.694427 -51.173332

    64.763138 -51.135815

    64.762207 -51.224167

    64.740265 -51.277222

    64.613457 -51.415970

    64.567207 -51.429585

    64.517487 -51.442772

    64.475677 -51.493195

    64.395538 -51.603333

    64.370529 -51.666389

    64.306091 -51.665001

    64.236374 -51.793060

    64.217484 -51.835556

    64.199997 -51.985001

    64.234985 -52.033333

    64.266937 -52.005005

  • 64.362198 -52.025276

    64.402069 -52.045002

    64.380264 -52.085274

    64.453049 -52.116661

    64.551926 -52.102501

    64.599083 -52.057503

    64.642487 -52.121666

    64.693039 -52.137222

    64.722763 -52.116249

    64.743042 -52.053886

    64.791313 -51.973820

    64.789978 -52.056107

    64.842438 -52.081268

    64.803314 -52.175560

    64.813034 -52.220692

    64.901237 -52.225136

    64.927765 -52.148056

    64.945251 -52.075279

    64.962204 -52.015839

    65.014160 -52.075562

    65.016380 -52.122223

    64.999283 -52.160553

    65.076096 -52.280281

    65.239151 -52.099724

    65.221657 -52.174030

    65.201660 -52.230827

    65.228592 -52.265556

    65.251389 -52.222496

    65.277908 -52.188610

    65.325546 -52.194443

    65.292206 -52.331947

    65.255554 -52.386391

    65.209152 -52.442223

    65.186920 -52.509727

    65.320053 -52.562153

    65.365456 -52.482990

    65.480675 -52.612083

    65.549332 -52.621571

    65.507492 -52.676109

    65.498741 -52.720139

    65.536652 -52.799168

    65.594711 -52.801666

    65.612579 -52.751984

    65.670822 -52.744720

    65.719147 -52.686386

    65.791374 -52.676529

    65.782066 -52.717426

    65.724701 -52.743057

    65.680397 -52.786671

    65.659889 -52.859478

    65.575401 -52.899723

    65.548874 -52.995003

    65.511108 -52.872356

    65.425262 -52.928337

    65.445526 -53.003059

    65.466385 -53.051392

  • 65.494980 -53.086666

    65.523285 -53.038528

    65.573883 -53.188332

    65.591240 -53.227913

    65.666931 -53.150551

    65.678040 -53.222496

    65.712769 -53.180283

    65.746368 -53.099724

    65.762497 -53.188049

    65.792480 -53.081947

    65.868210 -53.060719

    65.860535 -53.119720

    65.855820 -53.162773

    65.860809 -53.205276

    65.908875 -53.243057

    65.929977 -53.353889

    65.951660 -53.445000

    200 1 59.790276 83.623596 -72.830238 -12.204896

    65.951660 -53.445000

    66.023438 -53.414394

    66.108505 -53.380951

    66.101929 -53.431671

    66.080444 -53.465500

    66.042480 -53.525276

    66.045822 -53.633331

    66.079712 -53.678474

    66.115540 -53.574722

    66.143875 -53.620834

    66.241653 -53.589439

    66.274437 -53.656109

    66.329437 -53.697357

    66.506241 -53.629025

    66.528595 -53.513336

    66.558189 -53.362267

    66.603455 -53.478191

    66.637497 -53.451942

    66.693863 -53.275276

    66.693588 -53.227219

    66.680267 -53.118889

    66.672485 -52.972771

    66.679153 -52.877495

    66.693588 -52.675278

    66.703041 -52.586666

    66.738312 -52.597778

    66.741280 -52.821419

    66.728531 -52.875504

    66.719543 -52.944996

    66.724205 -53.024834

    66.736107 -53.130009

    66.785927 -53.052853

    66.818687 -53.022820

    66.850540 -52.993614

    66.894554 -52.944328

    66.896141 -53.018597

    66.897011 -53.059418

    66.875290 -53.102261

  • 66.822769 -53.205833

    66.825272 -53.305000

    66.802742 -53.440826

    66.861374 -53.386948

    66.873871 -53.345833

    66.922501 -53.256851

    66.915817 -53.401108

    66.910812 -53.480827

    66.908325 -53.519165

    66.907761 -53.628334

    66.913605 -53.675003

    66.956650 -53.799446

    67.014999 -53.799442

    67.077728 -53.836430

    67.074295 -53.961109

    67.143181 -53.919441

    67.175537 -53.826950

    67.195633 -53.773495

    67.223877 -53.853615

    67.260414 -53.880695

    67.354156 -53.861115

    67.405548 -53.821114

    67.451935 -53.713333

    67.475098 -53.661610

    67.536652 -53.729439

    67.604630 -53.751183

    67.619141 -53.684441

    67.633331 -53.618332

    67.651443 -53.563957

    67.710815 -53.539444

    67.761383 -53.577499

    67.697205 -53.599167

    67.674149 -53.670837

    67.720535 -53.698608

    67.730400 -53.744862

    67.774292 -53.764587

    67.784988 -53.728882

    67.784149 -53.687775

    67.787201 -53.639725

    67.843872 -53.553329

    67.876228 -53.482498

    67.895264 -53.434998

    67.898331 -53.382500

    67.889984 -53.260834

    67.945526 -53.257225

    67.956230 -53.220898

    68.056229 -53.226524

    68.028320 -53.294449

    68.009995 -53.347221

    68.069153 -53.473053

    68.105820 -53.424446

    68.145157 -53.394344

    68.153999 -53.332050

    68.198029 -53.169998

    68.188034 -53.076950

    68.152771 -52.898056

  • 68.145996 -52.790535

    68.213524 -52.758801

    68.214432 -52.805557

    68.226791 -52.900276

    68.258881 -52.937080

    68.303108 -52.877800

    200 1 59.790276 83.623596 -72.830238 -12.204896

    68.303108 -52.877800

    68.296097 -52.958717

    68.282211 -53.089165

    68.290817 -53.167503

    68.292480 -53.235558

    68.278320 -53.317505

    68.268738 -53.353889

    68.329025 -53.388611

    68.350266 -53.258896

    68.347488 -53.211388

    68.326355 -53.140892

    68.357758 -53.111946

    68.386932 -53.189720

    68.430817 -53.196388

    68.489151 -53.048340

    68.491425 -52.987419

    68.451660 -52.883888

    68.429848 -52.852921

    68.376923 -52.851944

    68.453323 -52.603889

    68.523834 -52.590302

    68.539429 -52.509171

    68.544983 -52.461670

    68.563454 -52.408890

    68.634796 -52.412754

    68.620529 -52.705833

    68.600540 -52.920280

    68.586380 -52.985001

    68.575272 -53.036949

    68.565536 -53.097496

    68.615814 -53.093613

    68.636108 -53.049171

    68.641373 -53.009171

    68.639709 -52.954720

    68.641098 -52.918335

    68.664993 -52.817223

    68.676285 -52.772720

    68.707764 -52.648613

    68.713043 -52.515282

    68.709114 -52.453705

    68.701385 -52.332504

    68.713608 -52.235558

    68.694977 -52.171944

    68.668648 -52.229446

    68.640274 -52.144165

    68.634636 -52.098076

    68.628860 -52.050835

    68.635132 -51.953888

    68.642761 -51.875557

  • 68.594437 -51.941940

    68.515549 -51.863892

    68.527481 -51.811111

    68.535538 -51.743057

    68.531662 -51.701393

    68.523041 -51.656387

    68.519989 -51.618332

    68.526382 -51.545280

    68.560257 -51.471939

    68.549149 -51.346947

    68.560257 -51.144165

    68.575821 -51.045280

    68.645538 -51.003616

    68.633041 -50.932220

    68.614426 -50.894165

    68.619431 -50.855835

    68.673248 -50.810204

    68.665543 -50.898056

    68.707626 -50.976246

    68.757217 -50.901665

    68.769119 -50.835258

    68.776382 -50.767220

    68.833603 -50.703888

    68.838043 -50.777359

    68.829712 -50.817505

    68.790268 -50.930283

    68.768051 -50.989723

    68.746368 -51.035278

    68.733597 -51.124168

    68.739426 -51.241386

    68.747002 -51.288822

    68.840820 -51.214722

    68.858322 -51.144165

    68.865814 -51.103889

    68.900452 -51.026566

    68.926926 -51.114449

    69.044983 -51.118889

    69.130119 -51.074306

    69.126923 -50.799446

    69.086655 -50.801666

    69.102768 -50.680283

    69.129700 -50.552223

    69.127197 -50.464165

    69.128586 -50.356110

    69.135544 -50.278053

    69.148041 -50.190834

    69.173866 -50.141666

    69.218742 -50.130833

    69.221649 -50.172501

    69.207077 -50.210972

    69.193588 -50.256950

    200 1 59.790276 83.623596 -72.830238 -12.204896

    69.193588 -50.256950

    69.191925 -50.300835

    69.191086 -50.416664

    69.198174 -50.467636

  • 69.330551 -50.472221

    69.315536 -50.515839

    69.279984 -50.563332

    69.220535 -50.656944

    69.216095 -50.714165

    69.173035 -50.886116

    69.174423 -50.947495

    69.176651 -51.012779

    69.193863 -51.105278

    69.232758 -51.094444

    69.266380 -51.011116

    69.299423 -50.970833

    69.398605 -50.896111

    69.478317 -50.864449

    69.513885 -50.875000

    69.531372 -50.837502

    69.551369 -50.794727

    69.619011 -50.842636

    69.672485 -50.799446

    69.707626 -50.815418

    69.717758 -50.766663

    69.723312 -50.715553

    69.742622 -50.647362

    69.780273 -50.611115

    69.782211 -50.557777

    69.774704 -50.501396

    69.758041 -50.330002

    69.755264 -50.227219

    69.870529 -50.310139

    69.898041 -50.379997

    69.899155 -50.416107

    69.899155 -50.456665

    69.906372 -50.521111

    69.914993 -50.568893

    69.957214 -50.585274

    69.973877 -50.553329

    69.971649 -50.430557

    69.972488 -50.338890

    69.982483 -50.284172

    70.003326 -50.231110

    70.039154 -50.255005

    70.041367 -50.369995

    70.041367 -50.443054

    70.038879 -50.487503

    70.018875 -50.570282

    69.997482 -50.678337

    69.959717 -50.940834

    69.959717 -51.059441

    69.959717 -51.167778

    69.963600 -51.260002

    70.031937 -51.091942

    70.068604 -51.243057

    70.043594 -51.286949

    70.016937 -51.325562

    69.989151 -51.379166

    69.964157 -51.436661

  • 69.971375 -51.554443

    70.009720 -51.603333

    70.018875 -51.821671

    70.007217 -51.896393

    70.003601 -51.951111

    70.008606 -51.988892

    70.036652 -52.141113

    70.037491 -52.213890

    70.046646 -52.312775

    70.162354 -52.548893

    70.200546 -52.593056

    70.221649 -52.652222

    70.232208 -52.692497

    70.272766 -52.847496

    70.325821 -53.108055

    70.342484 -53.194717

    70.350540 -53.312500

    70.359421 -53.522224

    70.377762 -53.846947

    70.380539 -53.893059

    70.409149 -54.002785

    70.462204 -54.154167

    70.484573 -54.194580

    70.556931 -54.291946

    70.585266 -54.353333

    70.649994 -54.529442

    70.650818 -54.616394

    70.717209 -54.572502

    70.789703 -54.335274

    70.809143 -54.256393

    70.824432 -54.180832

    70.829163 -54.128609

    70.829987 -54.086113

    70.826935 -54.018059

    70.794708 -53.702499

    70.781662 -53.619720

    70.766663 -53.565552

    70.759430 -53.511948

    70.755264 -53.469994

    70.753052 -53.412216

    200 1 59.790276 83.623596 -72.830238 -12.204896

    70.753052 -53.412216

    70.754990 -53.333611

    70.764435 -53.188889

    70.773315 -53.103333

    70.764435 -52.970833

    70.744705 -52.722221

    70.701241 -52.462360

    70.680267 -52.397224

    70.621918 -52.228050

    70.556641 -52.017220

    70.513046 -51.871384

    70.480545 -51.755280

    70.440811 -51.587776

    70.424423 -51.476105

    70.417480 -51.349442

  • 70.400543 -51.197220

    70.382751 -51.124168

    70.358871 -50.932777

    70.351654 -50.810829

    70.340271 -50.751114

    70.327484 -50.716942

    70.322769 -50.676392

    70.321930 -50.633614

    70.324432 -50.596947

    70.333054 -50.558891

    70.375534 -50.546394

    70.393875 -50.595833

    70.414810 -50.652901

    70.465820 -50.587219

    70.502739 -50.559513

    70.502777 -50.617775

    70.482483 -50.649166

    70.426651 -50.732498

    70.416382 -50.777779

    70.415543 -50.842499

    70.420258 -50.947777

    70.424698 -51.005562

    70.439697 -51.059441

    70.462418 -51.093678

    70.505829 -51.057503

    70.511658 -51.108337

    70.524994 -51.237576

    70.497482 -51.320000

    70.504715 -51.380829

    70.545181 -51.598251

    70.574432 -51.532776

    70.560806 -51.468887

    70.554146 -51.334030

    70.604706 -51.229721

    70.591095 -51.178886

    70.539703 -50.996441

    70.509155 -50.901665

    70.545258 -50.741108

    70.584717 -50.866661

    70.597214 -50.920280

    70.603653 -50.960388

    70.681656 -50.936661

    70.666656 -51.008339

    70.656937 -51.066391

    70.690262 -51.175835

    70.694138 -51.402496

    70.725754 -51.440968

    70.751938 -51.334999

    70.757767 -51.289726

    70.793037 -51.270969

    70.811646 -51.238609

    70.760818 -50.954720

    70.711655 -50.782776

    70.707489 -50.717773

    70.707764 -50.666946

    70.737068 -50.631805

  • 70.782486 -50.747780

    70.787201 -50.812500

    70.794434 -50.882217

    70.817482 -50.917641

    70.858871 -50.868057

    70.859985 -50.973610

    70.846939 -51.021385

    70.844437 -51.059166

    70.844147 -51.101669

    70.846939 -51.146393

    70.854706 -51.182503

    70.884430 -51.224998

    70.895264 -51.291115

    70.898331 -51.331673

    70.903595 -51.443329

    70.925812 -51.595001

    70.952209 -51.644165

    70.974701 -51.732216

    70.996643 -51.850281

    71.021103 -51.952499

    71.055542 -51.898056

    71.066086 -51.851669

    71.063309 -51.801666

    71.042206 -51.712776

    71.020264 -51.596390

    71.010818 -51.541946

    71.000549 -51.436386

    70.992203 -51.379440

    70.983047 -51.331116

    200 1 59.790276 83.623596 -72.830238 -12.204896

    70.983047 -51.331116

    70.964157 -51.258614

    70.955261 -51.214722

    70.954163 -51.172775

    70.966095 -50.982498

    71.023605 -50.955559

    71.019150 -51.088608

    71.017487 -51.126106

    71.032761 -51.290283

    71.048599 -51.428886

    71.053864 -51.468887

    71.129150 -51.428886

    71.118866 -51.488609

    71.109711 -51.555832

    71.107208 -51.608894

    71.107483 -51.653610

    71.111374 -51.698608

    71.132759 -51.735413

    71.135544 -51.779999

    71.133041 -51.845833

    71.128586 -51.890839

    71.111923 -51.964165

    71.097488 -52.016945

    71.094437 -52.061386

    71.097763 -52.123611

    71.102203 -52.166389

  • 71.109146 -52.218330

    71.143875 -52.191940

    71.152481 -52.144447

    71.170120 -52.087917

    71.205261 -52.047783

    71.249420 -51.879997

    71.253876 -51.735001

    71.252777 -51.677223

    71.249855 -51.622639

    71.252777 -51.580002

    71.264847 -51.536671

    71.361374 -51.645554

    71.356094 -51.713615

    71.336929 -51.806664

    71.310806 -51.883614

    71.291092 -51.928886

    71.233871 -52.086662

    71.182205 -52.260002

    71.149994 -52.398613

    71.142212 -52.447777

    71.140686 -52.483887

    71.145538 -52.523056

    71.176231 -52.555138

    71.240616 -52.513786

    71.234985 -52.592224

    71.205818 -52.638058

    71.147217 -52.935829

    71.187485 -53.077499

    71.206100 -53.115837

    71.252350 -53.151112

    71.320953 -53.183468

    71.342758 -53.154716

    71.365814 -53.074722

    71.379425 -53.001114

    71.422409 -52.932693

    71.456375 -52.900833

    71.504990 -52.750557

    71.521652 -52.698334

    71.556641 -52.485832

    71.562759 -52.430283

    71.604065 -52.305031

    71.624695 -52.398056

    71.647491 -52.573334

    71.681366 -52.639725

    71.684982 -52.752502

    71.669868 -52.824345

    71.609985 -52.875557

    71.595535 -52.948608

    71.547409 -53.099861

    71.527771 -53.176109

    71.526382 -53.218056

    71.545532 -53.405556

    71.564842 -53.450279

    71.603592 -53.466393

    71.657066 -53.471733

    71.666374 -53.432919

  • 71.669434 -53.391945

    71.669983 -53.347778

    71.669983 -53.285835

    71.668869 -53.248886

    71.664307 -53.173149

    71.711998 -53.215569

    71.755554 -53.168060

    71.772491 -53.115555

    71.786652 -53.059998

    71.800262 -52.998055

    71.808029 -52.947495

    71.848602 -52.867500

    71.872063 -52.901386

    71.961655 -52.799446

    71.986198 -52.724251

    72.011383 -52.780830

    71.940536 -52.952782

    71.894150 -53.020554

    200 1 59.790276 83.623596 -72.830238 -12.204896

    71.894150 -53.020554

    71.845543 -52.983192

    71.805252 -53.239166

    71.822220 -53.321945

    71.901657 -53.373329

    71.964157 -53.410553

    72.003326 -53.405556

    72.044708 -53.406105

    72.063599 -53.441940

    72.086105 -53.523331

    72.102203 -53.605835

    72.106934 -53.749725

    72.054153 -53.601112

    72.023880 -53.554718

    71.994705 -53.523613

    71.859985 -53.401939

    71.793594 -53.481667

    71.773041 -53.531113

    71.740540 -53.623055

    71.743866 -53.745003

    71.685806 -53.724998

    71.649429 -53.730553

    71.633331 -53.775002

    71.629974 -53.853058

    71.635544 -53.903328

    71.646942 -53.944443

    71.674423 -53.985001

    71.705826 -54.011116

    71.714432 -54.051392

    71.714157 -54.091110

    71.634995 -54.100697

    71.616653 -54.058052

    71.608032 -54.015839

    71.597488 -53.965836

    71.571930 -53.885277

    71.543457 -53.847359

    71.487488 -53.867500

  • 71.448318 -53.898750

    71.395264 -54.173889

    71.369980 -54.346107

    71.363876 -54.396111

    71.364990 -54.505836

    71.358032 -54.575562

    71.349152 -54.643616

    71.351929 -54.799728

    71.355545 -54.843887

    71.428314 -55.120834

    71.388458 -55.117565

    71.377472 -55.165276

    71.385269 -55.298340

    71.389435 -55.342224

    71.398605 -55.384171

    71.420532 -55.443329

    71.441925 -55.496666

    71.468323 -55.543617

    71.572906 -55.643475

    71.635109 -55.661282

    71.664993 -55.787781

    71.673035 -55.883610

    71.713882 -55.852226

    71.737198 -55.787506

    71.745529 -55.740837

    71.770264 -55.558609

    71.802765 -55.443611

    71.841095 -55.381386

    71.872063 -55.350281

    71.886108 -55.291672

    71.923874 -55.266945

    71.962494 -55.468330

    71.986649 -55.568611

    72.024429 -55.561943

    72.084717 -55.413055

    72.135544 -55.232773

    72.238312 -54.931671

    72.300812 -54.941109

    72.375809 -54.913612

    72.414803 -54.946728

    72.423035 -55.020279

    72.394714 -55.118057

    72.377197 -55.015282

    72.293739 -55.031113

    72.274429 -55.121384

    72.254166 -55.192497

    72.235680 -55.227638

    72.194977 -55.280281

    72.166931 -55.344719

    72.141663 -55.486664

    72.178040 -55.666946

    72.225540 -55.650276

    72.270264 -55.523331

    72.289429 -55.437218

    72.323608 -55.306664

    72.361374 -55.246948

  • 72.424149 -55.305275

    72.395538 -55.418335

    72.389709 -55.488892

    72.404160 -55.572502

    72.422897 -55.628609

    72.479980 -55.574722

    72.512772 -55.498886

    200 1 59.790276 83.623596 -72.830238 -12.204896

    72.512772 -55.498886

    72.521103 -55.442772

    72.504990 -55.373329

    72.496368 -55.280281

    72.525543 -55.186386

    72.555389 -55.352997

    72.596512 -55.258057

    72.671234 -55.213192

    72.703613 -55.110542

    72.655296 -54.984341

    72.618591 -55.051109

    72.527214 -55.060696

    72.505974 -55.016727

    72.570541 -54.996391

    72.605255 -54.906387

    72.605545 -54.786118

    72.622757 -54.730827

    72.661133 -54.801388

    72.691650 -54.857506

    72.748344 -55.063656

    72.763046 -54.946663

    72.792480 -54.878883

    72.808311 -54.818752

    72.803314 -54.743614

    72.803589 -54.694443

    72.826378 -54.605415

    72.897491 -54.687775

    72.999420 -54.819168

    73.016388 -54.866394

    73.017212 -55.047783

    73.041656 -55.101944

    73.031662 -55.193054

    72.982208 -55.135002

    72.970825 -55.087776

    72.931091 -55.134171

    72.923599 -55.198334

    72.918320 -55.305832

    72.962494 -55.387779

    72.950272 -55.481667

    72.950821 -55.519165

    72.970825 -55.626945

    72.991783 -55.684513

    73.018051 -55.637779

    73.056091 -55.621384

    73.053314 -55.664719

    73.090889 -55.707706

    73.118591 -55.661942

    73.118317 -55.610001

  • 73.123154 -55.526333

    73.120316 -55.490337

    73.171646 -55.337502

    73.178040 -55.156105

    73.239700 -55.243614

    73.234985 -55.291115

    73.238312 -55.351944

    73.248032 -55.438889

    73.362183 -55.355549

    73.314987 -55.549728

    73.381088 -55.589722

    73.420784 -55.403046

    73.450172 -55.507397

    73.570831 -55.640556

    73.581665 -55.680557

    73.615265 -55.950836

    73.645355 -55.988430

    73.681511 -56.033611

    73.760963 -55.961529

    73.758331 -55.920555

    73.731125 -55.851318

    73.722214 -55.746948

    73.787491 -55.879997

    73.843460 -55.965694

    73.848602 -55.800278

    73.836655 -55.743057

    73.834427 -55.694443

    73.839432 -55.654999

    73.880539 -55.668892

    73.913879 -55.839996

    73.928589 -55.939163

    73.964294 -56.101669

    74.040260 -56.121220

    74.043045 -56.194443

    74.044434 -56.244164

    74.055611 -56.377117

    74.108871 -56.286667

    74.193863 -56.165276

    74.269714 -56.119720

    74.279709 -56.159164

    74.272484 -56.196110

    74.222763 -56.296669

    74.168045 -56.543335

    74.155823 -56.607780

    74.146378 -56.674171

    74.140274 -56.761673

    74.138885 -56.812500

    74.134430 -56.914719

    74.116089 -57.046112

    74.109314 -57.084167

    74.103043 -57.165833

    74.097488 -57.295280

    200 1 59.790276 83.623596 -72.830238 -12.204896

    74.097488 -57.295280

    74.135544 -57.296951

    74.145264 -57.243614

  • 74.163605 -57.054169

    74.194427 -56.923332

    74.197479 -56.879440

    74.196091 -56.824173

    74.196365 -56.773613

    74.198318 -56.714722

    74.203598 -56.677780

    74.227486 -56.583752

    74.287483 -56.572227

    74.322289 -56.660175

    74.361099 -56.474167

    74.355820 -56.406944

    74.354706 -56.361671

    74.366379 -56.152779

    74.404709 -56.161942

    74.414154 -56.212219

    74.415268 -56.281113

    74.403046 -56.416107

    74.401382 -56.565277

    74.422844 -56.687119

    74.481094 -56.650833

    74.486374 -56.695549

    74.483597 -56.897224

    74.481934 -56.946663

    74.477203 -57.225830

    74.560669 -57.082600

    74.573227 -57.038223

    74.607483 -56.960556

    74.608871 -56.905556

    74.603317 -56.868332

    74.564423 -56.878609

    74.540817 -56.813889

    74.557205 -56.751671

    74.558868 -56.704720

    74.534424 -56.547501

    74.502495 -56.464584

    74.480270 -56.612503

    74.445526 -56.596107

    74.448318 -56.525833

    74.471649 -56.325005

    74.480545 -56.249443

    74.550262 -56.192913

    74.553589 -56.274445

    74.544708 -56.355278

    74.554977 -56.434441

    74.583054 -56.569450

    74.643875 -56.634171

    74.702774 -56.845833

    74.706100 -56.902222

    74.693314 -56.948334

    74.670532 -56.976662

    74.671371 -57.015007

    74.704437 -57.077499

    74.772217 -57.187222

    74.792480 -57.138893

    74.794357 -57.097500

  • 74.769989 -57.056946

    74.758606 -57.005562

    74.763321 -56.967216

    74.806931 -56.861115

    74.852203 -56.911942

    74.897491 -56.994720

    74.917755 -57.048889

    74.911652 -57.143333

    74.904709 -57.208893

    74.902481 -57.257225

    74.904434 -57.293617

    74.934143 -57.326668

    74.955551 -57.402222

    75.000275 -57.614723

    75.012497 -57.789444

    75.013611 -57.839722

    75.028046 -57.878334

    75.053040 -57.927498

    75.063034 -58.036949

    75.048599 -58.077782

    75.072899 -58.135788

    75.113876 -58.074448

    75.135818 -57.980278

    75.147217 -57.939720

    75.185532 -57.958893

    75.213608 -58.234169

    75.265274 -58.334724

    75.314987 -58.349724

    75.329437 -58.302780

    75.426262 -58.301277

    75.440254 -58.210835

    75.508598 -58.159580

    75.529709 -58.191940

    75.557205 -58.325562

    75.556366 -58.410828

    75.605545 -58.388054

    75.653046 -58.348335

    75.649719 -58.435272

    75.644714 -58.480827

    75.645264 -58.519447

    75.660538 -58.579727

    200 1 59.790276 83.623596 -72.830238 -12.204896

    75.660538 -58.579727

    75.734711 -58.570557

    75.735535 -58.676392

    75.719986 -58.785561

    75.706940 -58.844162

    75.702209 -59.017502

    75.704163 -59.061668

    75.775543 -59.226387

    75.833328 -59.173058

    75.869141 -59.194160

    75.873032 -59.269165

    75.864151 -59.467773

    75.859711 -59.510834

    75.847214 -59.566391

  • 75.815262 -59.602501

    75.793869 -59.726387

    75.796371 -59.784729

    75.819427 -59.814720

    75.858032 -59.763893

    75.891663 -59.691109

    75.920876 -59.638309

    75.957489 -59.691940

    75.964157 -59.733055

    75.961929 -59.790283

    75.939148 -59.861671

    75.920815 -59.913612

    75.923599 -59.971107

    75.974152 -60.113892

    76.013885 -60.088886

    76.025269 -60.129997

    76.032211 -60.236946

    76.046371 -60.454445

    76.065262 -60.510838

    76.029709 -60.603889

    75.996643 -60.706665

    76.027908 -60.824585

    76.080551 -60.853058

    76.142761 -60.830833

    76.152481 -60.878609

    76.156372 -60.932777

    76.173874 -61.270279

    76.177765 -61.347778

    76.178314 -61.385002

    76.174423 -61.425278

    76.170532 -61.545837

    76.178314 -61.675003

    76.229980 -61.898613

    76.235260 -61.947495

    76.234146 -62.005005

    76.226379 -62.077499

    76.221649 -62.126106

    76.221100 -62.169449

    76.259018 -62.151112

    76.282761 -62.219162

    76.285263 -62.260002

    76.280548 -62.300278

    76.268875 -62.346107

    76.244705 -62.414719

    76.250824 -62.493057

    76.256104 -62.539444

    76.262772 -62.626389

    76.258331 -62.729996

    76.234985 -62.775276

    76.210892 -62.731316

    76.193588 -62.778610

    76.236649 -62.853058

    76.264160 -62.825562

    76.301926 -62.865837

    76.336929 -63.036392

    76.353592 -63.145279

  • 76.358032 -63.189163

    76.371094 -63.359169

    76.373306 -63.440834

    76.369965 -63.479927

    76.333328 -63.483055

    76.175812 -63.724998

    76.156937 -63.788895

    76.137772 -63.969719

    76.134720 -64.012222

    76.148041 -64.120270

    76.190811 -64.189987

    76.250267 -64.219444

    76.332489 -64.218063

    76.353043 -64.317505

    76.347214 -64.412216

    76.309563 -64.375404

    76.256660 -64.376526

    76.228867 -64.441101

    76.239426 -64.564163

    76.259995 -64.594032

    76.267487 -64.632767

    76.262772 -64.672501

    76.168594 -64.697769

    76.128311 -64.738892

    76.152489 -64.789299

    76.169144 -64.830002

    76.175537 -64.868607

    76.176926 -64.975281

    76.171295 -65.022293

    76.135818 -65.032776

    200 1 59.790276 83.623596 -72.830238 -12.204896

    76.135818 -65.032776

    76.121368 -65.141113

    76.122757 -65.196106

    76.156296 -65.218307

    76.174698 -65.328339

    76.125954 -65.361389

    76.095825 -65.321396

    76.041367 -65.368332

    76.026382 -65.413330

    76.018600 -65.479721

    76.024155 -65.563614

    76.029984 -65.630554

    76.104523 -65.802025

    76.140274 -65.750839

    76.191360 -65.690971

    76.212769 -65.735550

    76.261932 -65.661667

    76.271378 -65.725006

    76.275543 -65.769455

    76.266098 -65.934998

    76.279709 -66.153336

    76.280273 -66.194153

    76.157761 -66.364716

    76.117760 -66.363892

    76.088043 -66.393341

  • 76.082764 -66.433060

    76.085266 -66.493881

    76.210815 -66.773621

    76.241364 -66.818893

    76.258881 -66.911942

    76.263611 -66.960007

    76.263885 -67.012222

    76.253326 -67.086670

    76.242752 -67.135010

    76.191360 -67.280838

    76.153870 -67.260834

    76.150269 -67.207779

    76.142487 -67.092499

    76.136932 -67.053329

    76.109421 -67.017502

    76.081375 -66.990562

    76.050537 -66.942490

    76.041367 -66.879440

    76.034714 -66.839996

    76.023880 -66.782227

    76.008331 -66.711395

    75.990814 -66.648895

    75.950272 -66.505280

    75.913605 -66.550278

    75.919708 -66.591949

    75.930672 -66.626518

    75.942474 -66.689987

    75.949707 -66.748886

    75.978592 -67.059723

    75.994980 -67.227783

    76.006653 -67.325836

    76.017731 -67.500000

    76.021927 -67.628326

    76.031097 -67.757507

    76.041656 -67.841675

    76.069992 -68.203064

    76.076096 -68.309158

    76.075546 -68.363327

    76.073883 -68.419998

    76.086929 -68.500565

    76.107208 -68.567505

    76.127289 -68.490639

    76.157486 -68.622498

    76.182480 -68.746948

    76.193588 -68.824722

    76.213882 -68.912781

    76.258606 -69.010834

    76.273315 -69.081955

    76.279709 -69.123047

    76.293320 -69.226395

    76.298035 -69.275558

    76.298599 -69.325562

    76.314987 -69.410004

    76.365265 -69.615829

    76.419014 -69.617500

    76.435806 -69.569458

  • 76.435806 -69.501678

    76.449707 -69.320282

    76.458038 -69.244995

    76.472214 -69.134171

    76.481659 -69.065552

    76.500000 -68.976944

    76.550400 -68.817368

    76.584152 -68.734436

    76.586655 -68.688049

    76.586929 -68.595840

    76.584152 -68.541107

    76.575546 -68.474716

    76.571930 -68.425278

    76.576935 -68.056107

    76.582764 -68.014175

    76.602623 -67.979721

    76.679428 -67.982224

    76.704987 -68.092499

    76.694977 -68.144730

    200 1 59.790276 83.623596 -72.830238 -12.204896

    76.694977 -68.144730

    76.688583 -68.180832

    76.676926 -68.283325

    76.667480 -68.386673

    76.659149 -68.532227

    76.658035 -68.594727

    76.656647 -68.755280

    76.660538 -68.838333

    76.664993 -68.885284

    76.675812 -69.070847

    76.675262 -69.211395

    76.695526 -69.372223

    76.702209 -69.408890

    76.724426 -69.613892

    76.736374 -69.765564

    76.752213 -69.931671

    76.756653 -69.967499

    76.763611 -70.008057

    76.812012 -70.082870

    76.842484 -70.033890

    76.849991 -69.989716

    76.870529 -69.904724

    76.903595 -69.866104

    76.946930 -69.787506

    77.004715 -69.769455

    76.908325 -70.006668

    76.876923 -70.103607

    76.798035 -70.359161

    76.790543 -70.399994

    76.785263 -70.454178

    76.786652 -70.518890

    76.805542 -70.697769

    76.834427 -70.826401

    76.887352 -70.976112

    76.915428 -70.849678

    76.941093 -70.909866

  • 76.954987 -70.955841

    76.959717 -70.998886

    76.960815 -71.049164

    76.948029 -71.117218

    76.944977 -71.161118

    76.963882 -71.251114

    76.984985 -71.327499

    77.009583 -71.376099

    77.056091 -71.375275

    77.133331 -71.193878

    77.148605 -70.989166

    77.166451 -70.893494

    77.173912 -70.853508

    77.178856 -70.815987

    77.218597 -70.514175

    77.225540 -70.402786

    77.240540 -70.149170

    77.240814 -70.005005

    77.239151 -69.944443

    77.227478 -69.796661

    77.221649 -69.683609

    77.223312 -69.578339

    77.216385 -69.358612

    77.201660 -69.116104

    77.193588 -68.977783

    77.188873 -68.863327

    77.184143 -68.783066

    77.177765 -68.705002

    77.172760 -68.655838

    77.169983 -68.610550

    77.166092 -68.540558

    77.180000 -68.463478

    77.212494 -68.529449

    77.220261 -68.667496

    77.235260 -68.884735

    77.242477 -68.957230

    77.290543 -69.020844

    77.301651 -68.888336

    77.324997 -68.702789

    77.334152 -68.631943

    77.351089 -68.511398

    77.367752 -68.308609

    77.364700 -68.259735

    77.369705 -68.095276

    77.375259 -67.977783

    77.379425 -67.916656

    77.383606 -67.814438

    77.384995 -67.751953

    77.386383 -67.689438

    77.386383 -67.619995

    77.384995 -67.521667

    77.379425 -67.314438

    77.368866 -67.073898

    77.357208 -66.820847

    77.352478 -66.768890

    77.340546 -66.711121

  • 77.319992 -66.656662

    77.290543 -66.580292

    77.302498 -66.536865

    77.412483 -66.657013

    77.432480 -66.551941

    77.431366 -66.463058

    77.426651 -66.376099

    77.421646 -66.289444

    200 1 59.790276 83.623596 -72.830238 -12.204896

    77.421646 -66.289444

    77.421371 -66.219727

    77.424988 -66.170273

    77.431091 -66.131378

    77.451508 -66.076118

    77.491364 -66.055557

    77.568054 -66.163055

    77.603317 -66.251404

    77.619431 -66.317780

    77.639435 -66.527222

    77.678452 -66.723335

    77.675812 -67.039719

    77.668869 -67.120834

    77.636108 -67.146118

    77.604980 -67.184723

    77.583878 -67.217773

    77.563873 -67.279999

    77.528046 -67.526672

    77.521378 -67.581116

    77.509430 -67.760559

    77.509155 -67.808044

    77.513046 -67.943878

    77.507492 -68.135559

    77.500549 -68.227783

    77.537201 -68.367493

    77.573318 -68.395004

    77.654846 -68.623604

    77.661926 -68.672501

    77.663040 -68.737778

    77.607758 -68.705002

    77.593597 -68.665558

    77.547066 -68.596115

    77.512497 -68.623047

    77.499710 -68.699158

    77.495819 -68.741669

    77.488037 -68.855835

    77.481094 -68.950562

    77.469986 -69.052780

    77.456650 -69.140839

    77.449997 -69.188049

    77.453049 -69.250290

    77.458603 -69.297775

    77.473602 -69.408340

    77.486923 -69.499161

    77.502777 -69.601395

    77.542480 -69.929718

    77.541931 -69.977219

  • 77.537766 -70.019730

    77.536652 -70.086395

    77.578873 -70.248611

    77.603317 -70.099991

    77.609711 -70.049438

    77.617477 -69.973618

    77.623032 -69.925552

    77.636108 -69.827225

    77.684708 -69.501114

    77.741661 -69.484573

    77.730957 -69.579170

    77.716385 -69.630280

    77.707764 -69.667496

    77.700546 -69.705002

    77.694977 -69.756958

    77.691360 -69.813049

    77.690536 -69.906662

    77.689697 -69.944992

    77.686920 -70.011398

    77.680817 -70.049728

    77.665543 -70.127487

    77.656647 -70.283325

    77.658325 -70.346115

    77.678040 -70.602783

    77.713608 -70.614441

    77.734146 -70.511124

    77.768326 -70.374161

    77.786652 -70.311386

    77.807755 -70.260010

    77.842842 -70.204117

    77.857758 -70.372498

    77.851654 -70.434433

    77.845261 -70.485825

    77.825821 -70.554718

    77.794983 -70.628326

    77.779984 -70.670273

    77.769714 -70.905273

    77.770828 -70.978333

    77.767212 -71.083618

    77.759155 -71.202225

    77.759995 -71.261673

    77.763611 -71.320007

    77.790962 -71.439026

    77.821930 -71.380554

    77.833603 -71.323624

    77.882202 -71.287506

    77.878860 -71.344452

    77.869705 -71.406952

    77.858597 -71.471115

    77.851654 -71.568344

    77.910408 -71.589165

    77.919144 -71.627777

    77.915543 -71.734161

    200 1 59.790276 83.623596 -72.830238 -12.204896

    77.915543 -71.734161

    77.910538 -71.776947

  • 77.897766 -71.826111

    77.886383 -71.869995

    77.884430 -71.921661

    77.893326 -71.965286

    77.914993 -72.026108

    77.926651 -72.082230

    77.931656 -72.119720

    77.946930 -72.235550

    78.003326 -72.346954

    78.031662 -72.320557

    78.056366 -72.381943

    78.058319 -72.505005

    78.085815 -72.657227

    78.148918 -72.830238

    78.192337 -72.735275

    78.235313 -72.786537

    78.305542 -72.669449

    78.308594 -72.758057

    78.311646 -72.829727

    78.351654 -72.821671

    78.366928 -72.749161

    78.373871 -72.693329

    78.401382 -72.603882

    78.484985 -72.624161

    78.516663 -72.576111

    78.537766 -72.378052

    78.539703 -72.239990

    78.538879 -72.141113

    78.540817 -72.104446

    78.556931 -71.904175

    78.577484 -71.823898

    78.589432 -71.781387

    78.607483 -71.715836

    78.616379 -71.677490

    78.624695 -71.635010

    78.630539 -71.587219

    78.641373 -71.349731

    78.642212 -71.261948

    78.638596 -71.220551

    78.631363 -71.182770

    78.623596 -71.099442

    78.617752 -71.014175

    78.611099 -70.871933

    78.672760 -70.803055

    78.687759 -70.765015

    78.699997 -70.700287

    78.710815 -70.588058

    78.723312 -70.388336

    78.738876 -70.158890

    78.776535 -70.016754

    78.788040 -69.973328

    78.794708 -69.928329

    78.798599 -69.881378

    78.800262 -69.843338

    78.798325 -69.656952

    78.807755 -69.417770

  • 78.829437 -69.285553

    78.870819 -69.176392

    78.882751 -69.137512

    78.895828 -68.959442

    78.936569 -69.100044

    78.973038 -69.046951

    79.001389 -68.840286

    79.007767 -68.793610

    79.013611 -68.750290

    79.063034 -68.340561

    79.071106 -68.148895

    79.073044 -68.081116

    79.073044 -68.041107

    79.069153 -67.991669

    79.054428 -67.896957

    79.037201 -67.750290

    79.068825 -67.690132

    79.132729 -67.500000

    79.130264 -67.444443

    79.117752 -67.332779

    79.114426 -67.247223

    79.132751 -67.215836

    79.131653 -67.105835

    79.128311 -66.976944

    79.108871 -66.815552

    79.122482 -66.730286

    79.143600 -66.604172

    79.141663 -66.366394

    79.128319 -66.328476

    79.105545 -66.239716

    79.109985 -66.175827

    79.109711 -66.135834

    79.095825 -66.043610

    79.097763 -65.993332

    79.139709 -65.891953

    79.249146 -65.684158

    79.255829 -65.642227

    79.266937 -65.520844

    79.324707 -65.435547

    79.338318 -65.380554

    79.348602 -65.250000

    79.370819 -65.156387

    200 1 59.790276 83.623596 -72.830238 -12.204896

    79.370819 -65.156387

    79.444977 -65.080841

    79.459717 -65.047501

    79.474991 -64.957779

    79.482758 -64.915009

    79.492752 -64.879990

    79.521927 -64.835281

    79.581665 -64.813324

    79.622482 -64.854446

    79.639709 -64.904724

    79.669434 -64.981674

    79.752487 -65.028610

    79.837769 -65.076675

  • 79.894989 -65.042770

    79.929428 -65.013901

    79.996094 -65.053329

    80.045494 -65.019768

    80.078598 -65.177490

    80.086380 -65.227493

    80.101929 -65.268341

    80.081100 -65.361115

    80.063309 -65.426666

    80.053864 -65.463058

    80.043045 -65.526947

    80.015549 -65.738892

    80.009995 -65.803879

    80.007492 -65.898056

    80.010269 -66.009735

    80.015823 -66.067230

    80.023605 -66.105835

    80.065269 -66.144592

    80.106934 -66.407227

    80.105545 -66.454727

    80.085266 -66.485550

    80.077209 -66.525558

    80.070831 -66.586395

    80.064148 -66.730835

    80.057755 -67.025833

    80.059982 -67.066956

    80.108871 -67.099442

    80.143600 -67.128876

    80.156647 -67.167770

    80.162201 -67.214722

    80.159988 -67.318069

    80.165268 -67.365280

    80.176086 -67.431381

    80.190811 -67.483612

    80.324158 -67.481949

    80.344986 -67.434158

    80.356369 -67.362503

    80.379425 -67.202499

    80.408325 -67.040833

    80.457214 -66.788605

    80.492477 -66.722778

    80.547485 -66.753891

    80.554977 -66.715836

    80.557480 -66.679443

    80.558029 -66.629715

    80.565262 -66.444717

    80.572495 -66.398056

    80.592209 -66.301941

    80.599152 -66.238052

    80.606369 -66.148895

    80.613037 -66.110001

    80.635956 -66.081673

    80.665543 -66.026672

    80.669983 -65.986389

    80.671097 -65.940277

    80.669708 -65.868057

  • 80.675804 -65.694054

    80.696892 -65.662117

    80.722321 -65.623604

    80.751755 -65.402649

    80.759995 -65.325012

    80.762207 -65.231949

    80.768326 -65.174438

    80.781097 -65.110001

    80.790268 -65.074722

    80.836929 -64.986938

    80.862488 -65.021118

    80.894989 -64.992493

    80.901093 -64.933884

    80.902771 -64.891113

    80.903870 -64.804993

    80.924812 -64.768814

    80.988312 -64.760834

    80.990265 -64.717499

    80.991364 -64.617767

    80.993042 -64.578613

    80.999710 -64.519165

    81.012627 -64.477081

    81.023605 -64.429443

    81.023880 -64.276108

    81.048035 -63.974716

    81.054428 -63.927780

    81.071655 -63.891804

    81.097763 -63.857506

    81.115265 -63.812218

    81.139435 -63.706390

    81.146103 -63.645279

    200 1 59.790276 83.623596 -72.830238 -12.204896

    81.146103 -63.645279

    81.144989 -63.574173

    81.130814 -63.518608

    81.115814 -63.471939

    81.092209 -63.441383

    81.049568 -63.423893

    81.021927 -63.399994

    80.950546 -63.306664

    80.918045 -63.215279

    80.826385 -63.002228

    80.799988 -62.956665

    80.784348 -62.860783

    80.860535 -62.971382

    80.944138 -63.175560

    80.977348 -63.234165

    81.065811 -63.331673

    81.127197 -63.362778

    81.163605 -63.355003

    81.176651 -63.294724

    81.193314 -63.207779

    81.216385 -63.063332

    81.223312 -62.974716

    81.227203 -62.831944

    81.219017 -62.784031

  • 81.202774 -62.735832

    81.196930 -62.463058

    81.201935 -62.360558

    81.203323 -62.316109

    81.201935 -62.271385

    81.195251 -62.213058

    81.181656 -62.137222

    81.148880 -61.985832

    81.118042 -61.844162

    81.074707 -61.611671

    81.068054 -61.550552

    81.069992 -61.501945

    81.120819 -61.251114

    81.114151 -61.101669

    81.119705 -61.056664

    81.180817 -60.952499

    81.193863 -61.026665

    81.218048 -61.082222

    81.353249 -61.311180

    81.379425 -61.220551

    81.411102 -61.066666

    81.424698 -60.991943

    81.442749 -60.893616

    81.452209 -60.851112

    81.469147 -60.793617

    81.496796 -60.769028

    81.519150 -60.809723

    81.528046 -60.855003

    81.536377 -60.914162

    81.564697 -61.031387

    81.627197 -61.193054

    81.682755 -61.357780

    81.736649 -61.453331

    81.778870 -61.402779

    81.789154 -61.359169

    81.809982 -61.266663

    81.818054 -61.218056

    81.831665 -61.111115

    81.862488 -60.919998

    81.871918 -60.865837

    81.879974 -60.806664

    81.893326 -60.698334

    81.902481 -60.605003

    81.910469 -60.472832

    81.921371 -60.330002

    81.937759 -60.166389

    81.943588 -60.091942

    81.943039 -60.019165

    81.940262 -59.980827

    81.920258 -59.830284

    81.899719 -59.642227

    81.896652 -59.604172

    81.894150 -59.556389

    81.892761 -59.508614

    81.888596 -59.311386

    81.881927 -59.125000

  • 81.878036 -59.039444

    81.871918 -58.959442

    81.864700 -58.899445

    81.856094 -58.839996

    81.845535 -58.800552

    81.826096 -58.769447

    81.784988 -58.742500

    81.744705 -58.748337

    81.708603 -58.748055

    81.690536 -58.707779

    81.680542 -58.664444

    81.661926 -58.572502

    81.641663 -58.430283

    81.590271 -57.918335

    81.586929 -57.868607

    81.587204 -57.817223

    81.588043 -57.769997

    81.589706 -57.726944

    81.589157 -57.680557

    81.607483 -57.601112

    200 1 59.790276 83.623596 -72.830238 -12.204896

    81.607483 -57.601112

    81.636658 -57.708336

    81.646652 -57.750557

    81.652206 -57.813614

    81.659424 -57.998886

    81.660538 -58.049995

    81.677200 -58.127220

    81.716385 -58.242226

    81.750824 -58.336662

    81.840820 -58.456108

    81.871643 -58.481384

    81.884995 -58.543335

    81.919708 -58.776947

    81.937485 -58.935555

    81.944702 -59.005836

    81.947754 -59.043617

    81.953873 -59.168335

    81.962204 -59.273056

    81.993286 -59.379723

    82.024429 -59.291389

    82.032211 -59.224716

    82.061096 -58.963058

    82.093597 -58.638336

    82.100540 -58.436661

    82.115540 -58.345554

    82.122208 -58.302780

    82.153595 -57.868057

    82.161652 -57.718887

    82.168594 -57.509445

    82.171646 -57.342224

    82.176086 -57.259171

    82.186920 -57.076950

    82.192474 -57.003059

    82.207214 -56.822227

    82.218597 -56.688606

  • 82.227768 -56.586388

    82.230270 -56.508896

    82.228043 -56.459724

    82.220825 -56.424446

    82.201660 -56.361946

    82.168320 -56.325279

    82.158875 -56.286667

    82.186646 -56.184029

    82.223038 -56.129440

    82.258331 -56.088051

    82.261108 -56.050278

    82.268051 -55.902496

    82.267487 -55.862503

    82.253876 -55.771111

    82.247757 -55.694717

    82.242752 -55.627777

    82.239700 -55.553886

    82.239975 -55.493057

    82.241364 -55.446106

    82.246933 -55.349998

    82.193314 -55.303612

    82.158600 -55.096664

    82.233047 -55.163887

    82.254166 -55.201393

    82.241341 -55.263245

    82.304688 -55.357136

    82.324432 -55.130280

    82.336929 -54.924171

    82.349426 -54.732216

    82.359421 -54.583611

    82.365540 -54.505280

    82.364151 -54.450279

    82.360535 -54.412216

    82.322495 -54.119995

    82.315544 -54.075558

    82.230270 -53.845551

    82.214996 -53.805275

    82.122208 -53.568336

    81.944702 -53.500000

    81.906097 -53.500839

    81.847763 -53.545555

    81.807205 -53.581947

    81.789429 -53.628609

    81.779984 -53.666946

    81.763885 -53.721382

    81.744705 -53.759727

    81.695671 -53.821533

    81.566513 -53.808052

    81.538315 -53.745834

    81.518051 -53.658051

    81.509430 -53.605835

    81.517212 -53.518608

    81.645828 -53.546806

    81.739426 -53.342499

    81.749710 -53.307777

    81.763046 -53.251114

  • 81.770828 -53.194717

    81.780273 -53.126663

    81.801086 -53.065834

    81.829987 -52.991386

    81.856369 -52.938606

    81.900269 -52.929169

    81.939697 -52.939720

    81.969986 -52.960556

    82.024429 -52.989723

    200 1 59.790276 83.623596 -72.830238 -12.204896

    82.024429 -52.989723

    82.032211 -52.936111

    82.034149 -52.899170

    82.035263 -52.853058

    82.034149 -52.804443

    82.031937 -52.762505

    82.007767 -52.546394

    81.994980 -52.466942

    81.984711 -52.419449

    81.973038 -52.329445

    81.933594 -52.001396

    81.923874 -51.910278

    81.911926 -51.683609

    81.908035 -51.580284

    81.904984 -51.465836

    81.886108 -51.323059

    81.869705 -51.246666

    81.856369 -51.160828

    81.842209 -51.018333

    81.808868 -50.818611

    81.783051 -50.761116

    81.774704 -50.713890

    81.814423 -50.615837

    81.852203 -50.647224

    81.861649 -50.820557

    81.868591 -50.894722

    81.919563 -50.980473

    81.942749 -50.888054

    81.935257 -50.843887

    81.921921 -50.763062

    81.915543 -50.682777

    81.909988 -50.448883

    81.904160 -50.195274

    81.901382 -50.145004

    81.891373 -50.036392

    81.887207 -49.997498

    81.874985 -49.907219

    81.871643 -49.867775

    81.870255 -49.820557

    81.875259 -49.754173

    81.880539 -49.696663

    81.895538 -49.570557

    81.929008 -49.435135

    81.950272 -49.511948

    81.959427 -49.562500

    81.975266 -49.693054

  • 81.991928 -49.812775

    82.012497 -49.946945

    82.038315 -50.114449

    82.055252 -50.154716

    82.076385 -50.214447

    82.100540 -50.325836

    82.125259 -50.441940

    82.177200 -50.676949

    82.188583 -50.711945

    82.231369 -50.758339

    82.275818 -50.787506

    82.313599 -50.800552

    82.362762 -50.844444

    82.380264 -50.881943

    82.390823 -50.918892

    82.404984 -50.982773

    82.433044 -51.053055

    82.491364 -51.117500

    82.504715 -51.040001

    82.508606 -50.800835

    82.508606 -50.587776

    82.511932 -50.497780

    82.518326 -50.370834

    82.518326 -50.317505

    82.516663 -50.255836

    82.514709 -50.200554

    82.512207 -50.001945

    82.514709 -49.864449

    82.513885 -49.807220

    82.511658 -49.751945

    82.503326 -49.610283

    82.480270 -49.307503

    82.469986 -49.191666

    82.461655 -49.120834

    82.442474 -48.988892

    82.434143 -48.939438

    82.423599 -48.893890

    82.399994 -48.849724

    82.361099 -48.763618

    82.351654 -48.711388

    82.335297 -48.617279

    82.313034 -48.390556

    82.306931 -48.328339

    82.304428 -48.291115

    82.303040 -48.183609

    82.301086 -48.139999

    82.292755 -48.035004

    82.283325 -47.942223

    82.269714 -47.862778

    82.238312 -47.680557

    82.228867 -47.629997

    82.219147 -47.586113

    82.172211 -47.470551

    82.173035 -47.391670

    200 1 59.790276 83.623596 -72.830238 -12.204896

    82.173035 -47.391670

  • 82.171371 -47.343330

    82.163315 -47.193054

    82.158875 -47.124168

    82.151932 -47.044724

    82.136108 -46.935829

    82.128311 -46.878334

    82.121094 -46.799446

    82.110809 -46.608894

    82.106934 -46.503334

    82.103867 -46.458054

    82.097763 -46.392776

    82.084717 -46.305832

    82.061371 -46.177780

    82.051926 -46.129997

    82.024994 -46.000282

    81.944824 -45.952724

    81.938309 -45.864166

    81.932480 -45.785278

    81.928864 -45.746948

    81.904984 -45.593613

    81.896378 -45.540558

    81.866653 -45.404716

    81.852203 -45.364166

    81.781662 -45.134445

    81.776382 -45.091110

    81.773041 -45.033058

    81.772491 -44.984444

    81.776657 -44.861946

    81.776382 -44.822502

    81.773041 -44.779442

    81.762497 -44.732216

    81.756653 -44.694717

    81.754166 -44.639999

    81.792206 -44.449722

    81.849258 -44.255672

    81.884430 -44.386116

    81.885544 -44.545280

    81.888885 -44.588608

    81.934906 -44.723396

    81.972191 -44.665916

    81.973602 -44.756393

    81.981659 -44.886391

    82.065392 -44.899349

    82.053589 -45.040001

    82.055817 -45.076668

    82.067764 -45.128052

    82.108871 -45.267502

    82.124695 -45.311386

    82.163315 -45.349442

    82.173309 -45.385559

    82.182480 -45.438606

    82.200272 -45.552223

    82.208603 -45.618607

    82.216385 -45.696106

    82.249146 -45.958054

    82.271927 -46.136665

  • 82.292480 -46.310280

    82.306091 -46.435272

    82.311920 -46.497498

    82.319992 -46.565552

    82.360809 -46.886116

    82.370529 -46.941383

    82.379700 -46.981667

    82.416237 -47.011112

    82.443588 -47.042503

    82.486099 -47.130554

    82.502487 -47.179169

    82.509155 -47.230827

    82.515549 -47.277222

    82.530548 -47.345551

    82.541656 -47.383331

    82.589981 -47.516663

    82.617676 -47.683662

    82.644150 -47.559166

    82.651093 -47.166946

    82.650818 -47.118057

    82.649155 -47.066391

    82.639160 -46.855835

    82.670258 -46.836113

    82.673599 -46.768608

    82.676086 -46.675003

    82.675537 -46.615555

    82.669708 -46.362778

    82.665543 -46.249443

    82.659714 -46.157501

    82.655823 -46.110558

    82.652481 -46.073616

    82.644440 -46.003059

    82.636108 -45.932503

    82.624146 -45.837502

    82.611099 -45.750557

    82.547760 -45.320839

    82.535538 -45.168060

    82.505829 -44.962776

    82.496094 -44.914444

    82.482483 -44.853333

    82.451660 -44.760834

    82.442474 -44.722771

    82.414703 -44.559723

    200 1 59.790276 83.623596 -72.830238 -12.204896

    82.414703 -44.559723

    82.406097 -44.493057

    82.396942 -44.438889

    82.357208 -44.428612

    82.337494 -44.501114

    82.314423 -44.638336

    82.298599 -44.770279

    82.284424 -44.865005

    82.267212 -44.929726

    82.224426 -45.050278

    82.193588 -45.023056

    82.167206 -44.934441

  • 82.145828 -44.861389

    82.107483 -44.758614

    82.068878 -44.857780

    82.043869 -44.773056

    82.046646 -44.736115

    82.053864 -44.668892

    82.063034 -44.617775

    82.089706 -44.502502

    82.119980 -44.564445

    82.134995 -44.619720

    82.188522 -44.793476

    82.252777 -44.708611

    82.266663 -44.666946

    82.276657 -44.618057

    82.295822 -44.489998

    82.302475 -44.426666

    82.307755 -44.350555

    82.311371 -44.267220

    82.312485 -44.190552

    82.311371 -44.128883

    82.309418 -44.080284

    82.304703 -44.005562

    82.296646 -43.934166

    82.287766 -43.875275

    82.262207 -43.542778

    82.255554 -43.425560

    82.286072 -43.354641

    82.295532 -43.440552

    82.309982 -43.592773

    82.321106 -43.716110

    82.335815 -43.830284

    82.348595 -43.867363

    82.419731 -43.821880

    82.456650 -44.125275

    82.476929 -44.305832

    82.505547 -44.451111

    82.552475 -44.576111

    82.562195 -44.624718

    82.575272 -44.720833

    82.578323 -44.763062

    82.587204 -44.830284

    82.609421 -44.982773

    82.629974 -45.051941

    82.647491 -45.083611

    82.657211 -45.133614

    82.678864 -45.300278

    82.683044 -45.352226

    82.684708 -45.403610

    82.710541 -45.584999

    82.724991 -45.669724

    82.778595 -45.688889

    82.782211 -45.607780

    82.780823 -45.222221

    82.776382 -45.001671

    82.773315 -44.923889

    82.771103 -44.827499

  • 82.769989 -44.610001

    82.768051 -44.445549

    82.762497 -44.215836

    82.762772 -44.164444

    82.766663 -44.029999

    82.773041 -43.849724

    82.778320 -43.728882

    82.781097 -43.636665

    82.782211 -43.349167

    82.781372 -43.157501

    82.778320 -43.068336

    82.776382 -42.970833

    82.776093 -42.914444

    82.781662 -42.688606

    82.780273 -42.571945

    82.778595 -42.531387

    82.764435 -42.204170

    82.761658 -42.142776

    82.690811 -42.122223

    82.682480 -42.065834

    82.672485 -41.952499

    82.665268 -41.892502

    82.655258 -41.846947

    82.622482 -41.808609

    82.539978 -41.851395

    82.488876 -41.746948

    82.478043 -41.682777

    82.478317 -41.643333

    82.484985 -41.586113

    82.527771 -41.556946

    82.641663 -41.608894

    82.657211 -41.649727

    200 1 59.790276 83.623596 -72.830238 -12.204896

    82.657211 -41.649727

    82.683319 -41.746391

    82.717209 -41.873055

    82.746643 -41.819450

    82.747208 -41.754448

    82.745529 -41.701668

    82.736649 -41.550278

    82.729431 -41.456390

    82.722214 -41.379723

    82.714706 -41.327225

    82.700546 -41.242226

    82.649429 -40.958054

    82.626083 -40.833611

    82.606644 -40.731667

    82.596100 -40.694717

    82.579163 -40.660278

    82.570541 -40.605835

    82.566940 -40.487221

    82.568054 -40.376945

    82.566666 -40.274170

    82.564697 -40.235001

    82.472061 -40.073685

    82.368591 -39.930832

  • 82.361649 -39.852501

    82.361923 -39.813614

    82.371368 -39.773888

    82.401520 -39.753338

    82.469711 -39.874168

    82.559982 -40.011948

    82.587769 -39.967499

    82.601654 -39.908607

    82.611374 -39.872498

    82.671646 -39.904999

    82.687485 -39.959442

    82.696930 -40.016663

    82.710815 -40.106110

    82.720261 -40.238609

    82.721649 -40.343330

    82.718597 -40.427780

    82.711655 -40.523331

    82.712204 -40.601395

    82.722488 -40.645554

    82.740814 -40.723328

    82.772766 -41.019447

    82.779709 -41.120552

    82.788315 -41.193886

    82.795532 -41.276108

    82.822220 -41.603889

    82.831665 -41.750557

    82.848328 -42.079170

    82.851654 -42.191109

    82.851929 -42.248055

    82.849716 -42.381386

    82.849152 -42.469444

    82.854706 -42.668060

    82.850540 -42.973885

    82.845825 -43.383331

    82.842209 -43.576393

    82.837494 -43.800278

    82.843597 -44.139168

    82.846100 -44.350281

    82.845825 -44.493614

    82.848679 -44.632980

    82.849991 -44.672501

    82.855820 -44.737778

    82.870819 -44.798615

    82.867134 -44.867985

    82.874702 -44.912491

    82.898903 -44.944893

    82.934288 -44.992275

    82.945816 -44.904442

    82.993057 -44.783825

    83.000549 -44.869720

    83.025269 -45.083611

    83.034149 -45.131943

    83.054977 -45.198608

    83.098854 -45.340542

    83.125809 -45.279999

    83.134155 -45.217773

  • 83.152481 -45.077499

    83.141663 -45.027496

    83.132751 -44.978333

    83.112198 -44.816666

    83.107483 -44.763336

    83.140709 -44.736984

    83.166092 -44.657219

    83.163040 -44.264725

    83.155823 -44.146111

    83.143051 -43.976944

    83.135818 -43.894722

    83.131363 -43.853058

    83.123306 -43.791115

    83.118866 -43.754723

    83.114990 -43.687775

    83.124489 -43.650208

    83.151382 -43.601841

    83.191948 -43.688568

    83.214996 -43.579445

    83.231094 -43.292778

    83.213089 -43.164131

    200 1 59.790276 83.623596 -72.830238 -12.204896

    83.213089 -43.164131

    83.202484 -43.088333

    83.200821 -43.026665

    83.200821 -42.972496

    83.220978 -42.923523

    83.272217 -43.056107

    83.273880 -42.953613

    83.274994 -42.748055

    83.274429 -42.695000

    83.272491 -42.651108

    83.268875 -42.612778

    83.261612 -42.568298

    83.237198 -42.485001

    83.252487 -42.416389

    83.256584 -42.355396

    83.263153 -42.257492

    83.269440 -42.163887

    83.246422 -42.046143

    83.253464 -41.959999

    83.190262 -41.753059

    83.138885 -41.816109

    83.122482 -41.750839

    83.133331 -41.687500

    83.133606 -41.626389

    83.130539 -41.569450

    83.119141 -41.453613

    83.104431 -41.316948

    83.094299 -41.278332

    83.075821 -41.223885

    83.086884 -41.134972

    83.122208 -41.178337

    83.151215 -41.285912

    83.171646 -41.000839

    83.167480 -40.878883

  • 83.163605 -40.836945

    83.143600 -40.778053

    83.123032 -40.745003

    83.081375 -40.531670

    83.072769 -40.468887

    83.099014 -40.412209

    83.136383 -40.526665

    83.170532 -40.478607

    83.172211 -40.430832

    83.171097 -40.330002

    83.167206 -40.165276

    83.164703 -40.111946

    83.156647 -40.028885

    83.148041 -39.953056

    83.137772 -39.906944

    83.128311 -39.864449

    83.120255 -39.781670

    83.109421 -39.646667

    83.103043 -39.528053

    83.095535 -39.345551

    83.091370 -39.304718

    83.051651 -39.328888

    83.023880 -39.408607

    83.004440 -39.503334

    82.975372 -39.574066

    82.959991 -39.480827

    82.880539 -39.034447

    82.851654 -38.999725

    82.829987 -38.952499

    82.815811 -38.905556

    82.805542 -38.863060

    82.821762 -38.771469

    82.897217 -38.783058

    82.936096 -38.914444

    82.940262 -38.954170

    82.943039 -39.005005

    82.964821 -39.105679

    83.008606 -39.007507

    83.011108 -38.914162

    83.010818 -38.861389

    83.032936 -38.760082

    83.055695 -38.728947

    83.118172 -38.643475

    83.201935 -38.639999

    83.205261 -38.678055

    83.249428 -38.855278

    83.342628 -38.822365

    83.426926 -38.866661

    83.433319 -38.799171

    83.422211 -38.595551

    83.395538 -38.122223

    83.389992 -38.071949

    83.364426 -37.930283

    83.398605 -37.840836

    83.444275 -38.018486

    83.487488 -37.950554

  • 83.491364 -37.909721

    83.504715 -37.682503

    83.504166 -37.625832

    83.500549 -37.567505

    83.496933 -37.528885

    83.491928 -37.488892

    83.481659 -37.412216

    83.459709 -37.288334

    83.454163 -37.251671

    83.449707 -37.209999

    200 1 59.790276 83.623596 -72.830238 -12.204896

    83.449707 -37.209999

    83.441650 -37.039444

    83.436920 -36.915276

    83.434708 -36.871941

    83.429977 -36.825562

    83.419983 -36.774445

    83.412491 -36.692772

    83.455360 -36.651314

    83.463608 -36.724442

    83.486099 -36.889442

    83.518875 -36.798058

    83.530823 -36.729164

    83.536926 -36.671944

    83.543869 -36.531113

    83.550812 -36.289444

    83.554153 -36.082222

    83.552475 -35.968605

    83.545258 -35.845551

    83.543594 -35.785835

    83.543869 -35.678055

    83.548035 -35.532776

    83.547760 -35.473328

    83.539978 -35.359169

    83.534714 -35.234444

    83.564148 -34.971939

    83.569717 -34.934441

    83.584991 -34.886116

    83.596939 -34.813332

    83.600540 -34.769447

    83.601379 -34.726105

    83.598877 -34.682503

    83.589432 -34.636116

    83.565262 -34.583611

    83.542480 -34.541672

    83.541786 -34.483749

    83.567215 -34.457504

    83.594147 -34.410553

    83.596939 -34.364166

    83.593323 -34.326393

    83.554428 -34.298340

    83.521927 -34.195000

    83.455261 -33.917221

    83.453598 -33.858894

    83.496368 -33.784172

    83.513885 -33.940552

  • 83.528870 -34.014168

    83.550812 -34.077225

    83.579437 -34.028610

    83.588882 -33.943329

    83.592484 -33.899727

    83.599716 -33.784447

    83.604156 -33.688606

    83.610809 -33.436661

    83.616653 -33.146111

    83.620255 -32.908051

    83.623596 -32.579170

    83.622482 -32.522224

    83.614990 -32.295280

    83.570267 -32.300278

    83.570541 -32.229721

    83.574997 -32.187500

    83.591095 -31.960831

    83.596375 -31.871944

    83.595825 -31.700554

    83.591370 -31.653332

    83.578598 -31.488052

    83.575272 -31.435276

    83.569443 -31.261669

    83.567215 -31.154167

    83.569443 -30.946945

    83.573044 -30.844444

    83.578873 -30.751392

    83.583054 -30.708332

    83.598038 -30.636387

    83.600266 -30.597221

    83.602478 -30.442776

    83.602203 -30.388332

    83.600815 -30.331944

    83.596100 -30.215000

    83.578598 -29.856945

    83.574997 -29.796669

    83.566940 -29.699444

    83.541092 -29.415554

    83.529160 -29.254723

    83.508064 -29.220898

    83.482208 -29.179443

    83.477478 -29.099998

    83.481659 -29.056667

    83.507217 -29.021667

    83.512772 -28.876389

    83.491508 -28.835171

    83.468254 -28.790096

    83.431656 -28.719166

    83.423874 -28.664722

    83.416092 -28.602501

    83.416092 -28.559723

    83.448318 -28.415833

    83.452393 -28.368017

    83.419434 -28.317501

    83.431511 -28.149723

    200 1 59.790276 83.623596 -72.830238 -12.204896

  • 83.431511 -28.149723

    83.466934 -28.197220

    83.469986 -28.095001

    83.471649 -28.050556

    83.474701 -28.004448

    83.479706 -27.961945

    83.481659 -27.913887

    83.481094 -27.860832

    83.477768 -27.751114

    83.466614 -27.432827

    83.449997 -27.176666

    83.421097 -26.751667

    83.388046 -26.340557

    83.383881 -26.257778

    83.379150 -26.199722

    83.369705 -26.099998

    83.330551 -25.800278

    83.306091 -25.695704

    83.206650 -26.038891

    83.201935 -26.122223

    83.196930 -26.304447

    83.162491 -26.711388

    83.148331 -26.868889

    83.143600 -26.956108

    83.141098 -27.087223

    83.141937 -27.227497

    83.139709 -27.375832

    83.134430 -27.609165

    83.134720 -27.756947

    83.138885 -28.060280

    83.142761 -28.161945

    83.145538 -28.220833

    83.149155 -28.276390

    83.158875 -28.488331

    83.163315 -28.599724

    83.169434 -28.810001

    83.175537 -29.344444

    83.173874 -29.553333

    83.171921 -29.644444

    83.171371 -29.793613

    83.172485 -29.949444

    83.171371 -30.047501

    83.167206 -30.188610

    83.160538 -30.374168

    83.156372 -30.461109

    83.150543 -30.543892

    83.144150 -30.621666

    83.134430 -30.695831

    83.127762 -30.734997

    83.114426 -30.805836

    83.110535 -30.930000

    83.111374 -30.972775

    83.109985 -31.057224

    83.106644 -31.132221

    83.095535 -31.310280

    83.079163 -31.504723

  • 83.070267 -31.584167

    83.059418 -31.641945

    83.051651 -31.929165

    83.052475 -32.021942

    83.059418 -32.137779

    83.075821 -32.301109

    83.080551 -32.337502

    83.089706 -32.392502

    83.098328 -32.463058

    83.102478 -32.515007

    83.043877 -32.472218

    83.032486 -32.523056

    83.020538 -32.684441

    83.019714 -32.752502

    83.016937 -32.955559

    83.001389 -33.301109

    82.988037 -33.559998

    82.984985 -33.605560

    82.974426 -33.718887

    82.967209 -33.774170

    82.958878 -33.834724

    82.948029 -33.930283

    82.941360 -34.007507

    82.905548 -33.946663

    82.899429 -33.898056

    82.885818 -33.855278

    82.859421 -33.811386

    82.815811 -33.838051

    82.809982 -33.758614

    82.824432 -33.698608

    82.860809 -33.701111

    82.888596 -33.731941

    82.918869 -33.710831

    82.927475 -33.668060

    82.941360 -33.571945

    82.950272 -33.471382

    82.956650 -33.356392

    82.965271 -33.181114

    82.971924 -33.000839

    82.972763 -32.953331

    82.972488 -32.809441

    82.979706 -32.543617

    82.982208 -32.348610

    82.988312 -32.174721

    200 1 59.790276 83.623596 -72.830238 -12.204896

    82.988312 -32.174721

    82.993042 -32.063614

    82.994141 -31.975830

    82.993591 -31.933609

    82.989700 -31.842777

    82.983597 -31.775280

    82.972763 -31.730000

    82.931366 -31.709164

    82.928314 -31.666111

    82.937485 -31.593056

    82.973328 -31.514666

  • 82.994652 -31.469667

    83.000328 -31.423664

    83.003326 -31.371334

    83.023041 -31.225830

    83.031097 -31.141666

    83.046936 -31.028336

    83.059143 -30.956665

    83.070267 -30.882778

    83.074158 -30.845554

    83.078598 -30.777225

    83.079712 -30.700832

    83.079437 -30.551945

    83.078323 -30.504723

    83.078873 -30.403053

    83.080276 -30.356667

    83.084717 -30.316113

    83.090546 -30.279446

    83.107483 -30.215832

    83.119705 -30.142223

    83.125534 -30.059444

    83.131363 -29.877224

    83.134430 -29.635277

    83.134720 -29.540836

    83.134430 -29.436386

    83.131927 -29.295280

    83.128860 -29.190556

    83.116653 -28.919998

    83.110535 -28.764446

    83.104980 -28.553055

    83.101379 -28.505001

    83.069847 -28.267015

    83.045822 -28.216942

    83.041931 -28.177498

    83.043320 -28.131111

    83.062759 -28.060001

    83.073883 -28.006668

    83.078049 -27.964722

    83.079163 -27.925831

    83.077484 -27.865833

    83.073883 -27.818890

    83.068604 -27.720276

    83.065262 -27.616943

    83.058868 -27.273335

    83.057205 -27.173889

    83.060806 -26.665001

    83.063034 -26.611946

    83.072495 -26.565556

    83.081940 -26.519169

    83.094147 -26.380001

    83.103317 -26.259445

    83.116089 -26.075279

    83.129150 -25.825558

    83.140549 -25.626110

    83.158325 -25.324169

    83.163315 -25.188332

    83.162766 -25.142223

  • 83.159424 -25.064167

    83.155548 -25.018059

    83.146378 -24.960831

    83.109711 -24.843473

    83.094437 -24.945000

    83.036102 -24.892498

    82.999825 -24.768787

    82.953873 -24.893890

    82.936920 -24.974720

    82.924423 -25.025833

    82.907761 -25.090836

    82.892212 -25.133610

    82.844147 -25.243053

    82.808868 -25.231667

    82.818878 -25.081112

    82.827209 -24.998608

    82.847763 -24.864445

    82.860535 -24.790558

    82.873596 -24.720833

    82.889709 -24.646389

    82.898605 -24.586666

    82.899994 -24.537224

    82.899155 -24.481110

    82.895264 -24.429165

    82.884995 -24.346111

    82.881927 -24.295555

    82.879974 -24.246387

    82.879700 -24.206665

    82.895264 -24.162220

    82.901772 -23.994904

    82.757217 -24.022224

    82.758606 -23.946667

    82.767212 -23.848335

    200 1 59.790276 83.623596 -72.830238 -12.204896

    82.767212 -23.848335

    82.778320 -23.768059

    82.830551 -23.697777

    82.849426 -23.465000

    82.849716 -23.422501

    82.848877 -23.378887

    82.844147 -23.311390

    82.839157 -23.259724

    82.829712 -23.195278

    82.800812 -23.173332

    82.790268 -23.116112

    82.789978 -22.973053

    82.769577 -22.879723

    82.758331 -22.833889

    82.771935 -22.656666

    82.794708 -22.599445

    82.785263 -22.521114

    82.768600 -22.405277

    82.748871 -22.287781

    82.721924 -22.107224

    82.716095 -22.067501

    82.711929 -22.018333

  • 82.689148 -21.778336

    82.651382 -21.558334

    82.629150 -21.398056

    82.619431 -21.337780

    82.562195 -21.380833

    82.549988 -21.431389

    82.485535 -21.848888

    82.470535 -21.947777

    82.466934 -21.989166

    82.464996 -22.028057

    82.462204 -22.118057

    82.459717 -22.160278

    82.447205 -22.216110

    82.430458 -22.274920

    82.399429 -22.215832

    82.347488 -22.376110

    82.335815 -22.445831

    82.330826 -22.481667

    82.326935 -22.518059

    82.316666 -22.636112

    82.293869 -22.963333

    82.289978 -23.049999

    82.288589 -23.135834

    82.285538 -23.563335

    82.285538 -23.606945

    82.293869 -23.655277

    82.295532 -23.696667

    82.291367 -23.765003

    82.256943 -24.141109

    82.242203 -24.255001

    82.230545 -24.318058

    82.213318 -24.424999

    82.197754 -24.529724

    82.188309 -24.605278

    82.176926 -24.721664

    82.159988 -24.948887

    82.154434 -25.028057

    82.152481 -25.068890

    82.152481 -25.154446

    82.151382 -25.406944

    82.149429 -25.698055

    82.147217 -25.910278

    82.144150 -26.121113

    82.144150 -26.163887

    82.152771 -26.519722

    82.159988 -26.701942

    82.162491 -26.791668

    82.165817 -26.962219

    82.170532 -27.185276

    82.177200 -27.400276

    82.178314 -27.448887

    82.183594 -27.717220

    82.185806 -27.880001

    82.186371 -27.967499

    82.186096 -28.010834

    82.183044 -28.096390

  • 82.173035 -28.232777

    82.176651 -28.383