[Met_help] More MET questions

Daniel Schaffer Daniel.S.Schaffer at noaa.gov
Thu Oct 23 09:24:42 MDT 2008


Hey John

FYI.  Given the difficulties I ran into as we have been discussing and a short time fuse I face, I have gone ahead and written my own code that computes counts for various neighborhood widths.  So at this moment it is not super-critical to resolve these issues.  However, it would be interesting to compare the counts I generate with MET's answers.

I've attached the files that you requested.  Note that I only attached a sample forecast file since the behavior is the same if the forecast and obs files are identical.

As for your response below; I had already seen that.  I'm not clear how it's relevant to the problem I'm having with the GSL gamma function.

> > 
> > Regarding GSL, please see the entry about GSL on the known issue page of the MET website:
> > http://www.dtcenter.org/met/users/support/known_issues/METv1.1/index.php
> > Look in the section on Grid-Stat.
> > 

Thanks for your continued support.
Dan
-------------- next part --------------
////////////////////////////////////////////////////////////////////////////////
//
// Default grid_stat configuration file
//
////////////////////////////////////////////////////////////////////////////////

//
// Specify a name to designate the model being verified.  This name will be
// written to the second column of the ASCII output generated.
//
model = "WRF";

//
// Specify a comma-separated list of fields to be verified.  Each field is
// specified as a grib code or corresponding grib code abbreviation followed
// by an accumulation or vertical level indicator.
//
// Each verification field is specified as one of the following:
//    GC/ANNN for accumulation interval NNN
//    GC/ZNNN for vertical level NNN
//    GC/PNNN for pressure level NNN in hPa
//    GC/PNNN-NNN for a range of pressure levels in hPa
//    Where GC is the number of or abbreviation for the grib code
//    to be verified.
// http://www.nco.ncep.noaa.gov/pmb/docs/on388/table2.html
//
// e.g. vx_grib_code[] = [ "61/A3", "APCP/A24", "RH/L10" ];
//
vx_grib_code[] = [ "61/A12" ];

//
// Specify a comma-separated list of groups of thresholds to be applied to the
// verification fields listed above.  At least one threshold must be provided
// for each verification field listed above.  The lengths of the "vx_grib_code"
// array and the "thresholds" array must be the same.  To apply  multiple
// thresholds to a verification field, separate the threshold values with a
// space.
//
// Each threshold must be preceded by a two letter indicator for the type of
// thresholding to be performed:
//    'lt' for less than     'le' for less than or equal to
//    'eq' for equal to      'ne' for not equal to
//    'gt' for greater than  'ge' for greater than or equal to
//
// e.g. thresholds[] = [ "gt0.0 ge5.0", "gt0.0", "lt80.0 ge80.0" ];
//
thresholds[] = [ "ge1.0" ];

//
// Specify a comma-separated list of grids to be used in masking the data over
// which to perform scoring.  An empty list indicates that no masking grid
// should be performed.  The standard NCEP grids are named "GNNN" where NNN
// indicates the three digit grid number.  Enter "FULL" to score over the
// entire domain.
// http://www.nco.ncep.noaa.gov/pmb/docs/on388/tableb.html
//
// e.g. mask_grids[] = [ "FULL" ];
//
mask_grids[] = [ "ncwd" ];

//
// Specify a comma-separated list of ASCII files containing lat/lon polygons to
// be used in masking the data over which to perform scoring.  An empty list
// indicates that no polygon mask should be used.
//
// Latitude values are given in degrees north and longitude values are given in
// degrees east.  By default, the first and last points defined for the polygon
// are connected.
//
// The entries in the list should be files containing a name for the polygon
// followed by a space-separated list of lat/lon points defining the polygon:
//    "poly_name lat1 lon1 lat2 lon2... latn lonn"
// Where n is the number of polygon points.
//
// MET_BASE may be used in the path for the lat/lon polygon files.
//
// e.g. maks_polys[] = [ "MET_BASE/data/poly/EAST.poly",
//                       "MET_BASE/data/poly/WEST.poly" ];
mask_polys[] = [ "MET_BASE/data/poly/NEVS_CONUS.poly" ];

//
// Specify a comma-separated list of values for alpha to be used when computing
// confidence intervals.  Values of alpha must be between 0 and 1.
//
// e.g. ci_alpha[] = [ 0.05, 0.10 ];
//
ci_alpha[] = [ 0.10, 0.05 ];

//
// Specify the method to be used for computing bootstrap confidence intervals.
// The value for this is interpreted as follows:
//    (0) Use the BCa interval method (computationally intensive)
//    (1) Use the percentile interval method
//
boot_interval = 1;

//
// Specify a proportion between 0 and 1 to define the replicate sample size
// to be used when computing percentile intervals.  The replicate sample
// size is set to boot_rep_prop * n, where n is the number of raw data points.
//
// e.g boot_rep_prop = 0.80;
//
boot_rep_prop = 1.0;

//
// Specify the number of times each set of matched pair data should be
// resampled when computing bootstrap confidence intervals.  A value of
// zero disables the computation of bootstrap condifence intervals.
//
// e.g. n_boot_rep = 1000;
//
n_boot_rep = 500;

//
// Specify the name of the random number generator to be used.  See the MET
// Users Guide for a list of possible random number generators.
//
boot_rng = "mt19937";

//
// Specify the seed value to be used when computing bootstrap confidence
// intervals.  If left unspecified, the seed will change for each run and
// the computed bootstrap confidence intervals will not be reproducable.
//
boot_seed = "";

//
// Specify a comma-separated list of interpolation method(s) to be used
// for smoothing the forecast grid prior to comparing it to the observation
// grid.  The value at each forecast grid point is replaced by the measure
// computed over the neighborhood defined around the grid point.
// String values are interpreted as follows:
//    MIN     = Minimum in the neighborhood
//    MAX     = Maximum in the neighborhood
//    MEDIAN  = Median in the neighborhood
//    UW_MEAN = Unweighted mean in the neighborhood
//
//    NOTE: The distance-weighted mean (DW_MEAN) is not an option here since
//          it will have no effect on a gridded field.
//
//    NOTE: The least-squares fit (LS_FIT) is not an option here since
//          it reduces to an unweighted mean on a grid.
//
// e.g. interp_method[] = [ "UW_MEAN", "MEDIAN" ];
//
interp_method[] = [ "UW_MEAN" ];

//
// Specify a comma-separated list of box widths to be used by the
// interpolation techniques listed above.  A value of 1 indicates that
// no smoothing should be performed.  For a value of n greater than 1,
// the n*n grid points around each point will be used to smooth
// the forecast field.
//
// e.g. interp_width = [ 1, 3, 5 ];
//
interp_width[] = [ 1 ];

//
// When smoothing, compute a ratio of the number of valid data points to
// the total number of points in the neighborhood.  If that ratio is less
// than this threshold, do not compute a smoothed forecast value.  This
// threshold must be between 0 and 1.  Setting this threshold to 1 will
// require that each observation be surrounded by n*n valid forecast
// points.
//
// e.g. interp_threshold = 1.0;
//
interp_threshold = 1.0;

//
// Specify a comma-separated list of box widths to be used to define
// the neighborhood size for the neighborhood verification methods.
// For a value of n greater than 1, the n*n grid points around each point
// will be used to define the neighborhood.
//
// e.g. interp_width = [ 3, 5 ];
//
nbr_width[] = [ 5, 39, 79 ];

//
// When applying the neighborhood verification methods, compute a ratio
// of the number of valid data points to the total number of points in
// the neighborhood.  If that ratio is less than this threshold, do not
// include it in the computations.  This threshold must be between 0
// and 1.  Setting this threshold to 1 will require that each point be
// surrounded by n*n valid forecast points.
//
// e.g. nbr_threshold = 1.0;
//
nbr_threshold = 1.0;

//
// When applying the neighborhood verification methods, apply a threshold
// to the fractional coverage values to define contingency tables from
// which to compute statistics.
//
// e.g. nbr_frac_threshold[] = [ "ge0.25", "ge0.50" ];
//
nbr_frac_threshold[] = [ "ge0.08", "ge0.08", "ge0.08" ];

//
// Specify flags to indicate the type of data to be output:
//    (1) VSDB and FHO Text Files, FHO rates:
//           Total (TOTAL),
//           Forecast Rate (F_RATE),
//           Hit Rate (H_RATE),
//           Observation Rate (O_RATE)
//
//    (2) VSDB and CTC Text Files, Contingency Table Counts:
//           Total (TOTAL),
//           Forecast Yes and Observation Yes Count (FY_OY),
//           Forecast Yes and Observation No Count (FY_ON),
//           Forecast No and Observation Yes Count (FN_OY),
//           Forecast No and Observation No Count (FN_ON)
//
//    (3) VSDB and CTP Text Files, Contingency Table Proportions:
//           Total (TOTAL),
//           FY_OY/Total (FY_OY_TP),
//           FY_ON/Total (FY_ON_TP),
//           FN_OY/Total (FN_OY_TP),
//           FN_ON/Total (FN_ON_TP),
//           FY/Total    (FY_TP),
//           OY/Total    (FN_TP),
//           OY/Total    (OY_TP),
//           ON/Total    (ON_TP)
//
//    (4) VSDB and CFP Text Files, Contingency Table Forecast Proportions:
//           Total (TOTAL),
//           FY_OY/FY (FY_OY_FP),
//           FY_ON/FY (FY_ON_FP),
//           FN_OY/FN (FN_OY_FP),
//           FN_ON/FN (FN_ON_FP),
//           FY       (FY),
//           FN       (FN)
//
//    (5) VSDB and COP Text Files, Contingency Table Observation Proportions:
//           Total (TOTAL),
//           FY_OY/OY (FY_OY_OP),
//           FY_ON/ON (FY_ON_OP),
//           FN_OY/OY (FN_OY_OP),
//           FN_ON/ON (FN_ON_OP),
//           OY       (OY),
//           ON       (ON)
//
//    (6) VSDB and CTS Text Files, Contingency Table Scores:
//           Total (TOTAL),
//           Base Rate (BASER), BASER_CL, BASER_CU,
//           Forecast Mean (FMEAN), FMEAN_CL, FMEAN_CU,
//           Accuracy (ACC), ACC_CL, ACC_CU,
//           Bias (BIAS),
//           Probability of Detecting Yes (PODY), PODY_CL, PODY_CU,
//           Probability of Detecting No (PODN), PODN_CL, PODN_CU,
//           Probability of False Detection (POFD), POFD_CL, POFD_CU,
//           False Alarm Ratio (FAR), FAR_CL, FAR_CU,
//           Critical Success Index (CSI), CSI_CL, CSI_CU,
//           Gilbert Skill Score (GSS),
//           Hanssen and Kuipers Discriminant (HK), HK_CL, HK_CU,
//           Heidke Skill Score (HSS),
//           Odds Ratio (ODDS), ODDS_CL, ODDS_CU
//
//    (7) VSDB and CNT Text Files, Statistics of Continuous Variables:
//           Total (TOTAL),
//           Forecast Mean (FBAR), FBAR_CL, FBAR_CU,
//           Forecast Standard Deviation (FSTDEV), FSTDEV_CL, FSTDEV_CU
//           Observation Mean (OBAR), OBAR_CL, OBAR_CU,
//           Observation Standard Deviation (OSTDEV), OSTDEV_CL, OSTDEV_CU,
//           Pearson's Correlation Coefficient (PR_CORR), PR_CORR_CL, PR_CORR_CU,
//           Spearman's Rank Correlation Coefficient (SP_CORR),
//           Kendall Tau Rank Correlation Coefficient (KT_CORR),
//           Number of ranks compared (RANKS),
//           Number of tied ranks in the forecast field (FRANK_TIES),
//           Number of tied ranks in the observation field (ORANK_TIES),
//           Mean Error (ME), ME_CL, ME_CU,
//           Standard Deviation of the Error (ESTDEV), ESTDEV_CL, ESTDEV_CU,
//           Frequency Bias (FBIAS),
//           Mean Absolute Error (MAE),
//           Mean Squared Error (MSE),
//           Bias-Corrected Mean Squared Error (BCMSE),
//           Root Mean Squared Error (RMSE),
//           Percentiles of the Error (E10, E25, E50, E75, E90)
//
//           NOTE: CL and CU values define lower and upper
//                 confidence interval limits.
//
//    (8) VSDB and SL1L2 Text Files, SL1L2
//           Total (TOTAL),
//           Forecast Mean (FBAR),
//              = mean(f)
//           Observation Mean (OBAR),
//              = mean(o)
//           Forecast*Observation Product Mean (FOBAR),
//              = mean(f*o)
//           Forecast Squared Mean (FFBAR),
//              = mean(f^2)
//           Observation Squared Mean (OOBAR)
//              = mean(o^2)
//
//    (9) VSDB and NBRCTC Text Files, Neighborhood Methods Contingency Table Counts:
//           Total (TOTAL),
//           Forecast Yes and Observation Yes Count (FY_OY),
//           Forecast Yes and Observation No Count (FY_ON),
//           Forecast No and Observation Yes Count (FN_OY),
//           Forecast No and Observation No Count (FN_ON),
//           Fractional Threshold Value (FRAC_T),
//           Neighborhood Size (INTERP_PNTS)
//
//   (10) VSDB and NBRCTS Text Files, Neighborhood Methods Contingency Table Scores:
//           Total (TOTAL),
//           Base Rate (BASER), BASER_CL, BASER_CU,
//           Forecast Mean (FMEAN), FMEAN_CL, FMEAN_CU,
//           Accuracy (ACC), ACC_CL, ACC_CU,
//           Bias (BIAS),
//           Probability of Detecting Yes (PODY), PODY_CL, PODY_CU,
//           Probability of Detecting No (PODN), PODN_CL, PODN_CU,
//           Probability of False Detection (POFD), POFD_CL, POFD_CU,
//           False Alarm Ratio (FAR), FAR_CL, FAR_CU,
//           Critical Success Index (CSI), CSI_CL, CSI_CU,
//           Gilbert Skill Score (GSS),
//           Hanssen and Kuipers Discriminant (HK), HK_CL, HK_CU,
//           Heidke Skill Score (HSS),
//           Odds Ratio (ODDS), ODDS_CL, ODDS_CU
//           Fractional Threshold Value (FRAC_T),
//           Neighborhood Size (INTERP_PNTS)
//
//   (11) VSDB and NBRCNT Text Files, Neighborhood Methods Continuous Scores:
//           Total (TOTAL),
//           Fractions Brier Score (FBS),
//           Fractions Skill Score (FSS),
//           Neighborhood Size (INTERP_PNTS)
//
//   (12) NetCDF File containing difference fields for each grib
//        code/mask combination.  A non-zero value indicates that
//        this NetCDF file should be produced.  A value of 0
//        indicates that it should not be produced.
//
// Values for flags (1) through (8) are interpreted as follows:
//    (0) Do not generate output of this type
//    (1) Write output to a VSDB file
//    (2) Write output to a VSDB file and a text file
//
output_flag[] = [ 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0 ];

//
// Flag to indicate whether Kendall's Tau and Spearman's Rank Correlation
// Coefficients should be computed.  Computing them over large datasets is
// computationally intensive and slows down the runtime execution significantly.
//    (0) Do not compute these correlation coefficients
//    (1) Compute these correlation coefficients
//
rank_corr_flag = 1;

//
// Specify whether to use the NCEP/NWS Grib conventions.
// If set to zero, the following defaults will be used:
//    (1) Grib codes 128 to 254 will be named "GC_NNN" where NNN is the grib code
//    (2) Grib levels 204 to 254 will be named "GL_NNN" where NNN is the grib level
//
ncep_defaults = 1;

//
// Directory where temp files should be written by the point_stat tool
//
tmp_dir = "/tmp";

//
// Indicate a version number for the contents of this configuration file.
// The value should generally not be modified.
//
version = "V1.1";

-------------- next part --------------
A non-text attachment was scrubbed...
Name: forecast.ncf.gz
Type: application/x-gunzip
Size: 73967 bytes
Desc: sample forecast file
Url : http://mailman.ucar.edu/pipermail/met_help/attachments/20081023/4c810e66/forecast.ncf-0001.bin
-------------- next part --------------
CONUS
31.1931 -120.4211
31.2291 -120.4976
31.2650 -120.5741
31.3009 -120.6123
31.3369 -120.6506
31.3728 -120.6888
31.4087 -120.6888
31.4447 -120.7270
31.4806 -120.7270
31.5165 -120.7653
31.5525 -120.7653
31.5884 -120.8035
31.6243 -120.8035
31.6603 -120.8418
31.6962 -120.8418
31.7321 -120.8800
31.7681 -120.8800
31.8040 -120.9182
31.8399 -120.9182
31.8759 -120.9565
31.9118 -120.9565
31.9477 -120.9947
31.9837 -120.9947
32.0196 -121.0330
32.0555 -121.0330
32.0915 -121.0712
32.1274 -121.0712
32.1633 -121.1094
32.1993 -121.1094
32.2352 -121.1477
32.2711 -121.1477
32.3071 -121.1859
32.3430 -121.1859
32.3789 -121.2242
32.4149 -121.2624
32.4508 -121.2624
32.4867 -121.3006
32.5227 -121.3006
32.5586 -121.3389
32.5945 -121.3389
32.6305 -121.3771
32.6664 -121.3771
32.7023 -121.4153
32.7383 -121.4153
32.7742 -121.4536
32.8101 -121.4536
32.8461 -121.4918
32.8820 -121.4918
32.9179 -121.5301
32.9538 -121.4536
32.9898 -121.5683
33.0257 -121.4536
33.0616 -121.6065
33.0976 -121.6448
33.1335 -121.4918
33.1694 -121.6830
33.2054 -121.5301
33.2413 -121.7213
33.2772 -121.6448
33.3132 -121.7213
33.3491 -121.7595
33.3850 -121.7595
33.4210 -121.7977
33.4569 -121.7977
33.4928 -121.7977
33.5288 -121.7977
33.5647 -121.8360
33.6006 -121.8360
33.6366 -121.8360
33.6725 -121.8360
33.7084 -121.8360
33.7444 -121.8742
33.7803 -121.8742
33.8162 -121.8742
33.8522 -121.8742
33.8881 -121.9125
33.9240 -121.9889
33.9600 -122.0654
33.9959 -122.1036
34.0318 -122.1419
34.0678 -122.1801
34.1037 -122.1801
34.1396 -122.1801
34.1756 -122.1801
34.2115 -122.1801
34.2474 -122.2184
34.2834 -122.2184
34.3193 -122.2184
34.3552 -122.2184
34.3912 -122.2566
34.4271 -122.2566
34.4630 -122.2566
34.4990 -122.2566
34.5349 -122.2948
34.5708 -122.3331
34.6068 -122.4096
34.6427 -122.4478
34.6786 -122.5243
34.7146 -122.5625
34.7505 -122.5625
34.7864 -122.5625
34.8224 -122.5625
34.8583 -122.6008
34.8942 -122.6008
34.9302 -122.6008
34.9661 -122.6008
35.0020 -122.6008
35.0380 -122.6390
35.0739 -122.6390
35.1098 -122.6390
35.1458 -122.6390
35.1817 -122.6772
35.2176 -122.6772
35.2536 -122.7537
35.2895 -122.8302
35.3254 -122.8684
35.3614 -122.9449
35.3973 -122.9449
35.4332 -122.9449
35.4692 -122.9449
35.5051 -122.9831
35.5410 -122.9831
35.5770 -122.9831
35.6129 -122.9831
35.6488 -123.0214
35.6848 -123.0214
35.7207 -123.0214
35.7566 -123.0214
35.7926 -123.0596
35.8285 -123.0596
35.8644 -123.0596
35.9004 -123.0979
35.9363 -123.1743
35.9722 -123.2508
36.0082 -123.3273
36.0441 -123.3273
36.0800 -123.3655
36.1160 -123.3655
36.1519 -123.3655
36.1878 -123.3655
36.2238 -123.4038
36.2597 -123.4038
36.2956 -123.4038
36.3316 -123.4038
36.3675 -123.4420
36.4034 -123.4420
36.4394 -123.4420
36.4753 -123.4420
36.5112 -123.4802
36.5471 -123.4802
36.5831 -123.5567
36.6190 -123.6332
36.6549 -123.6714
36.6909 -123.7479
36.7268 -123.7479
36.7627 -123.7479
36.7987 -123.7479
36.8346 -123.7862
36.8705 -123.7862
36.9065 -123.7862
36.9424 -123.7862
36.9783 -123.8244
37.0143 -123.8244
37.0502 -123.8244
37.0861 -123.8626
37.1221 -123.8626
37.1580 -123.8626
37.1939 -123.8626
37.2299 -123.9391
37.2658 -123.9774
37.3017 -124.0538
37.3377 -124.1303
37.3736 -124.1686
37.4095 -124.1686
37.4455 -124.1686
37.4814 -124.1686
37.5173 -124.2068
37.5533 -124.2068
37.5892 -124.2068
37.6251 -124.2068
37.6611 -124.2450
37.6970 -124.2450
37.7329 -124.3215
37.7689 -124.3980
37.8048 -124.4745
37.8407 -124.5127
37.8767 -124.5127
37.9126 -124.5127
37.9485 -124.5509
37.9845 -124.5509
38.0204 -124.5509
38.0563 -124.5892
38.0923 -124.5892
38.1282 -124.5892
38.1641 -124.5892
38.2001 -124.6274
38.2360 -124.6274
38.2719 -124.6274
38.3079 -124.6274
38.3438 -124.6657
38.3797 -124.7039
38.4157 -124.7804
38.4516 -124.8569
38.4875 -124.9333
38.5235 -124.9333
38.5594 -124.9333
38.5953 -124.9716
38.6313 -124.9716
38.6672 -124.9716
38.7031 -124.9716
38.7391 -125.0098
38.7750 -125.0098
38.8109 -125.0098
38.8469 -125.0480
38.8828 -125.0480
38.9187 -125.0480
38.9547 -125.0480
38.9906 -125.0863
39.0265 -125.1245
39.0625 -125.2010
39.0984 -125.2775
39.1343 -125.3540
39.1703 -125.3540
39.2062 -125.3540
39.2421 -125.3922
39.2781 -125.3922
39.3140 -125.3922
39.3499 -125.3922
39.3859 -125.4304
39.4218 -125.4304
39.4577 -125.4304
39.4937 -125.4687
39.5296 -125.4687
39.5655 -125.4687
39.6015 -125.4687
39.6374 -125.5069
39.6733 -125.5452
39.7093 -125.6216
39.7452 -125.6981
39.7811 -125.7746
39.8171 -125.7746
39.8530 -125.8128
39.8889 -125.8128
39.9249 -125.8128
39.9608 -125.8128
39.9967 -125.8511
40.0326 -125.8511
40.0686 -125.8511
40.1045 -125.8893
40.1404 -125.8893
40.1764 -125.8893
40.2123 -125.8893
40.2482 -125.9275
40.2842 -125.9275
40.3201 -125.9275
40.3560 -125.8893
40.3920 -125.8511
40.4279 -125.8128
40.4638 -125.8128
40.4998 -125.7746
40.5357 -125.7746
40.5716 -125.7746
40.6076 -125.7746
40.6435 -125.8128
40.6794 -125.8128
40.7154 -125.8128
40.7513 -125.8128
40.7872 -125.8511
40.8232 -125.8511
40.8591 -125.8511
40.8950 -125.8893
40.9310 -125.8893
40.9669 -125.8893
41.0028 -125.9275
41.0388 -125.9275
41.0747 -125.9275
41.1106 -125.9275
41.1466 -125.9658
41.1825 -125.9658
41.2184 -125.9275
41.2544 -125.9275
41.2903 -125.8893
41.3262 -125.8511
41.3622 -125.8128
41.3981 -125.8128
41.4340 -125.8128
41.4700 -125.8128
41.5059 -125.8128
41.5418 -125.8511
41.5778 -125.8511
41.6137 -125.8511
41.6496 -125.8511
41.6856 -125.8893
41.7215 -125.8893
41.7574 -125.8893
41.7934 -125.9275
41.8293 -125.9275
41.8652 -125.9275
41.9012 -125.9658
41.9371 -125.9275
41.9730 -125.8893
42.0090 -125.8511
42.0449 -125.8511
42.0808 -125.8128
42.1168 -125.7746
42.1527 -125.7746
42.1886 -125.8128
42.2246 -125.8128
42.2605 -125.8128
42.2964 -125.8128
42.3324 -125.8511
42.3683 -125.8511
42.4042 -125.8511
42.4402 -125.8893
42.4761 -125.8893
42.5120 -125.8893
42.5480 -125.9275
42.5839 -125.9275
42.6198 -125.9275
42.6558 -125.9275
42.6917 -125.8893
42.7276 -125.8511
42.7636 -125.8128
42.7995 -125.7746
42.8354 -125.7746
42.8714 -125.7746
42.9073 -125.7746
42.9432 -125.7746
42.9792 -125.8128
43.0151 -125.8128
43.0510 -125.8128
43.0870 -125.8511
43.1229 -125.8511
43.1588 -125.8511
43.1948 -125.8893
43.2307 -125.8893
43.2666 -125.8893
43.3026 -125.8893
43.3385 -125.9275
43.3744 -125.9275
43.4104 -125.9275
43.4463 -125.9658
43.4822 -125.9658
43.5182 -125.9658
43.5541 -125.9275
43.5900 -125.8893
43.6259 -125.8893
43.6619 -125.8511
43.6978 -125.8128
43.7337 -125.8128
43.7697 -125.8128
43.8056 -125.8128
43.8415 -125.8511
43.8775 -125.8511
43.9134 -125.8511
43.9493 -125.8511
43.9853 -125.8893
44.0212 -125.8893
44.0571 -125.8893
44.0931 -125.9275
44.1290 -125.9275
44.1649 -125.9275
44.2009 -125.9658
44.2368 -125.9275
44.2727 -125.9275
44.3087 -125.8893
44.3446 -125.8511
44.3805 -125.8128
44.4165 -125.7746
44.4524 -125.7746
44.4883 -125.8128
44.5243 -125.8128
44.5602 -125.8128
44.5961 -125.8128
44.6321 -125.8511
44.6680 -125.8511
44.7039 -125.8511
44.7399 -125.8893
44.7758 -125.8893
44.8117 -125.8893
44.8477 -125.9275
44.8836 -125.9275
44.9195 -125.9275
44.9555 -125.9275
44.9914 -125.8893
45.0273 -125.8511
45.0633 -125.8128
45.0992 -125.9658
45.1351 -125.9658
45.1711 -125.9658
45.2070 -125.9658
45.2429 -125.9658
45.2789 -125.9658
45.3148 -125.9658
45.3507 -125.9658
45.3867 -125.9658
45.4226 -125.9658
45.4585 -125.9658
45.4945 -125.9658
45.5304 -125.9658
45.5663 -125.9658
45.6023 -125.9658
45.6382 -125.9658
45.6741 -125.9658
45.7101 -125.9658
45.7460 -125.9658
45.7819 -125.9658
45.8179 -125.9658
45.8538 -125.9658
45.8897 -125.9658
45.9257 -125.9658
45.9616 -125.9658
45.9975 -125.9658
46.0335 -125.9658
46.0694 -125.9658
46.1053 -125.9658
46.1413 -125.9658
46.1772 -125.9658
46.2131 -125.9658
46.2491 -125.9658
46.2850 -125.9658
46.3209 -125.9658
46.3569 -125.9658
46.3928 -125.9658
46.4287 -125.9658
46.4647 -125.9658
46.5006 -125.9658
46.5365 -125.9658
46.5725 -125.9658
46.6084 -125.9658
46.6443 -125.9658
46.6803 -125.9658
46.7162 -125.9658
46.7521 -125.9658
46.7881 -125.9658
46.8240 -125.9658
46.8599 -125.9658
46.8959 -125.9658
46.9318 -125.9658
46.9677 -125.9658
47.0037 -125.9658
47.0396 -125.9658
47.0755 -125.9658
47.1115 -125.9658
47.1474 -125.9275
47.1833 -125.9275
47.2192 -125.9275
47.2552 -125.9275
47.2911 -125.9275
47.3270 -125.9275
47.3630 -125.9275
47.3989 -125.9275
47.4348 -125.9275
47.4708 -125.9275
47.5067 -125.9275
47.5426 -125.9275
47.5786 -125.9275
47.6145 -125.9275
47.6504 -125.9275
47.6864 -125.9275
47.7223 -125.9275
47.7582 -125.9275
47.7942 -125.9275
47.8301 -125.9275
47.8660 -125.9275
47.9020 -125.9275
47.9379 -125.9275
47.9738 -125.9275
48.0098 -125.9275
48.0457 -125.8893
48.0816 -125.8893
48.1176 -125.8893
48.1535 -125.8893
48.1894 -125.8893
48.2254 -125.8893
48.2613 -125.8893
48.2972 -125.8128
48.3332 -125.8128
48.3691 -125.8511
48.4050 -125.8511
48.4410 -125.6599
48.4410 -125.6216
48.4050 -125.5834
48.4050 -125.5452
48.3691 -125.5069
48.3691 -125.4687
48.3332 -125.4304
48.3332 -125.3922
48.2972 -125.3540
48.2972 -125.3157
48.2972 -125.2775
48.3332 -125.2392
48.3332 -125.2010
48.3332 -125.1628
48.3332 -125.1245
48.3332 -125.0863
48.3332 -125.0480
48.3691 -125.0098
48.3691 -124.9716
48.3691 -124.9333
48.3691 -124.8951
48.3691 -124.8569
48.3691 -124.8186
48.3691 -124.7804
48.4050 -124.7421
48.4050 -124.7039
48.4050 -124.6657
48.4050 -124.6274
48.4050 -124.5892
48.4050 -124.5509
48.3691 -124.5127
48.3691 -124.4745
48.3332 -124.4362
48.3332 -124.3980
48.2972 -124.3597
48.2972 -124.3215
48.2972 -124.2833
48.2972 -124.2450
48.2972 -124.2068
48.2972 -124.1686
48.2972 -124.1303
48.3332 -124.0921
48.3332 -124.0538
48.3332 -124.0156
48.3332 -123.9774
48.3332 -123.9391
48.3332 -123.9009
48.3332 -123.8626
48.3691 -123.8244
48.3691 -123.7862
48.3691 -123.7479
48.3691 -123.7097
48.3691 -123.6714
48.3691 -123.6332
48.4050 -123.5950
48.4050 -123.5567
48.4050 -123.5185
48.4050 -123.4802
48.4050 -123.4420
48.4050 -123.4038
48.4050 -123.3655
48.4410 -123.3273
48.4050 -123.2891
48.4050 -123.2508
48.3691 -123.2126
48.3691 -123.1743
48.3332 -123.1361
48.3332 -123.0979
48.3332 -123.0596
48.2972 -123.0214
48.2972 -122.9831
48.2972 -122.9449
48.2972 -122.9067
48.3332 -122.8684
48.3332 -122.8302
48.3332 -122.7919
48.4410 -122.7537
48.6566 -122.7155
48.8722 -122.6772
48.8722 -122.6390
48.8722 -122.6008
48.8722 -122.5625
48.8722 -122.5243
48.8722 -122.4860
48.8722 -122.4478
48.9081 -122.4096
48.9081 -122.3713
48.9081 -122.3331
48.9081 -122.2948
48.9081 -122.2566
48.9081 -122.2184
48.9081 -122.1801
48.9440 -122.1419
48.9440 -122.1036
48.9440 -122.0654
48.9440 -122.0272
48.9440 -121.9889
48.9440 -121.9507
48.9440 -121.9125
48.9440 -121.8742
48.9081 -121.8360
48.9081 -121.7977
48.8722 -121.7595
48.8722 -121.7213
48.8362 -121.6830
48.8362 -121.6448
48.8362 -121.6065
48.8362 -121.5683
48.8362 -121.5301
48.8362 -121.4918
48.8362 -121.4536
48.8362 -121.4153
48.8722 -121.3771
48.8722 -121.3389
48.8722 -121.3006
48.8722 -121.2624
48.8722 -121.2242
48.8722 -121.1859
48.8722 -121.1477
48.9081 -121.1094
48.9081 -121.0712
48.9081 -121.0330
48.9081 -120.9947
48.9081 -120.9565
48.9081 -120.9182
48.9081 -120.8800
48.9440 -120.8418
48.9440 -120.8035
48.9440 -120.7653
48.9440 -120.7270
48.9440 -120.6888
48.9440 -120.6506
48.9440 -120.6123
48.9440 -120.5741
48.9800 -120.5359
48.9800 -120.4976
48.9800 -120.4594
48.9800 -120.4211
48.9800 -120.3829
48.9440 -120.3447
48.9440 -120.3064
48.9081 -120.2682
48.9081 -120.2299
48.8722 -120.1917
48.8722 -120.1535
48.8362 -120.1152
48.8362 -120.0770
48.8722 -120.0387
48.8722 -120.0005
48.8722 -119.9623
48.8722 -119.9240
48.8722 -119.8858
48.8722 -119.8475
48.8722 -119.8093
48.9081 -119.7711
48.9081 -119.7328
48.9081 -119.6946
48.9081 -119.6563
48.9081 -119.6181
48.9081 -119.5799
48.9081 -119.5416
48.9081 -119.5034
48.9440 -119.4652
48.9440 -119.4269
48.9440 -119.3887
48.9440 -119.3504
48.9440 -119.3122
48.9440 -119.2740
48.9440 -119.2357
48.9440 -119.1975
48.9800 -119.1592
48.9800 -119.1210
48.9440 -119.0828
48.9440 -119.0445
48.9081 -119.0063
48.9081 -118.9680
48.8722 -118.9298
48.8722 -118.8916
48.8362 -118.8533
48.8362 -118.8151
48.8362 -118.7769
48.8362 -118.7386
48.8362 -118.7004
48.8722 -118.6621
48.8722 -118.6239
48.8722 -118.5857
48.8722 -118.5474
48.8722 -118.5092
48.8722 -118.4709
48.8722 -118.4327
48.8722 -118.3945
48.8722 -118.3562
48.9081 -118.3180
48.9081 -118.2797
48.9081 -118.2415
48.9081 -118.2033
48.9081 -118.1650
48.9081 -118.1268
48.9081 -118.0886
48.9081 -118.0503
48.9440 -118.0121
48.9440 -117.9738
48.9440 -117.9356
48.9440 -117.8974
48.9440 -117.8591
48.9440 -117.8209
48.9440 -117.7826
48.9440 -117.7444
48.9800 -117.7062
48.9800 -117.6679
48.9800 -117.6297
48.9800 -117.5914
48.9800 -117.5532
48.9440 -117.5150
48.9440 -117.4767
48.9081 -117.4385
48.9081 -117.4003
48.8722 -117.3620
48.8722 -117.3238
48.8362 -117.2855
48.8362 -117.2473
48.8362 -117.2091
48.8362 -117.1708
48.8722 -117.1326
48.8722 -117.0943
48.8722 -117.0561
48.8722 -117.0179
48.8722 -116.9796
48.8722 -116.9414
48.8722 -116.9031
48.8722 -116.8649
48.9081 -116.8267
48.9081 -116.7884
48.9081 -116.7502
48.9081 -116.7119
48.9081 -116.6737
48.9081 -116.6355
48.9081 -116.5972
48.9081 -116.5590
48.9081 -116.5208
48.9440 -116.4825
48.9440 -116.4443
48.9440 -116.4060
48.9440 -116.3678
48.9440 -116.3296
48.9440 -116.2913
48.9440 -116.2531
48.9440 -116.2148
48.9440 -116.1766
48.9800 -116.1384
48.9800 -116.1001
48.9800 -116.0619
48.9800 -116.0236
48.9440 -115.9854
48.9440 -115.9472
48.9081 -115.9089
48.9081 -115.8707
48.8722 -115.8325
48.8362 -115.7942
48.8362 -115.7560
48.8362 -115.7177
48.8362 -115.6795
48.8362 -115.6413
48.8362 -115.6030
48.8362 -115.5648
48.8722 -115.5265
48.8722 -115.4883
48.8722 -115.4501
48.8722 -115.4118
48.8722 -115.3736
48.8722 -115.3353
48.8722 -115.2971
48.8722 -115.2589
48.8722 -115.2206
48.9081 -115.1824
48.9081 -115.1441
48.9081 -115.1059
48.9081 -115.0677
48.9081 -115.0294
48.9081 -114.9912
48.9081 -114.9530
48.9081 -114.9147
48.9081 -114.8765
48.9081 -114.8382
48.9440 -114.8000
48.9440 -114.7618
48.9440 -114.7235
48.9440 -114.6853
48.9440 -114.6470
48.9440 -114.6088
48.9440 -114.5706
48.9440 -114.5323
48.9440 -114.4941
48.9440 -114.4558
48.9800 -114.4176
48.9800 -114.3794
48.9800 -114.3411
48.9800 -114.3029
48.9800 -114.2646
48.9800 -114.2264
48.9440 -114.1882
48.9440 -114.1499
48.9081 -114.1117
48.9081 -114.0735
48.8722 -114.0352
48.8362 -113.9970
48.8362 -113.9587
48.8362 -113.9205
48.8362 -113.8823
48.8362 -113.8440
48.8722 -113.8058
48.8722 -113.7675
48.8722 -113.7293
48.8722 -113.6911
48.8722 -113.6528
48.8722 -113.6146
48.8722 -113.5764
48.8722 -113.5381
48.8722 -113.4999
48.8722 -113.4616
48.9081 -113.4234
48.9081 -113.3852
48.9081 -113.3469
48.9081 -113.3087
48.9081 -113.2704
48.9081 -113.2322
48.9081 -113.1940
48.9081 -113.1557
48.9081 -113.1175
48.9081 -113.0792
48.9081 -113.0410
48.9440 -113.0028
48.9440 -112.9645
48.9440 -112.9263
48.9440 -112.8880
48.9440 -112.8498
48.9440 -112.8116
48.9440 -112.7733
48.9440 -112.7351
48.9440 -112.6969
48.9440 -112.6586
48.9440 -112.6204
48.9800 -112.5821
48.9800 -112.5439
48.9800 -112.5057
48.9800 -112.4674
48.9440 -112.4292
48.9440 -112.3909
48.9081 -112.3527
48.9081 -112.3145
48.8722 -112.2762
48.8722 -112.2380
48.8362 -112.1997
48.8362 -112.1615
48.8362 -112.1233
48.8362 -112.0850
48.8362 -112.0468
48.8362 -112.0086
48.8362 -111.9703
48.8362 -111.9321
48.8722 -111.8938
48.8722 -111.8556
48.8722 -111.8174
48.8722 -111.7791
48.8722 -111.7409
48.8722 -111.7026
48.8722 -111.6644
48.8722 -111.6262
48.8722 -111.5879
48.8722 -111.5497
48.8722 -111.5114
48.8722 -111.4732
48.9081 -111.4350
48.9081 -111.3967
48.9081 -111.3585
48.9081 -111.3203
48.9081 -111.2820
48.9081 -111.2438
48.9081 -111.2055
48.9081 -111.1673
48.9081 -111.1291
48.9081 -111.0908
48.9081 -111.0526
48.9081 -111.0143
48.9440 -110.9761
48.9440 -110.9379
48.9440 -110.8996
48.9440 -110.8614
48.9440 -110.8231
48.9440 -110.7849
48.9440 -110.7467
48.9440 -110.7084
48.9440 -110.6702
48.9440 -110.6319
48.9440 -110.5937
48.9440 -110.5555
48.9800 -110.5172
48.9800 -110.4790
48.9800 -110.4408
48.9440 -110.4025
48.9440 -110.3643
48.9081 -110.3260
48.9081 -110.2878
48.8722 -110.2496
48.8362 -110.2113
48.8362 -110.1731
48.8362 -110.1348
48.8362 -110.0966
48.8362 -110.0584
48.8362 -110.0201
48.8362 -109.9819
48.8362 -109.9436
48.8362 -109.9054
48.8362 -109.8672
48.8362 -109.8289
48.8362 -109.7907
48.8362 -109.7524
48.8722 -109.7142
48.8722 -109.6760
48.8722 -109.6377
48.8722 -109.5995
48.8722 -109.5613
48.8722 -109.5230
48.8722 -109.4848
48.8722 -109.4465
48.8722 -109.4083
48.8722 -109.3701
48.8722 -109.3318
48.8722 -109.2936
48.8722 -109.2553
48.9081 -109.2171
48.9081 -109.1789
48.9081 -109.1406
48.9081 -109.1024
48.9081 -109.0641
48.9081 -109.0259
48.9081 -108.9877
48.9081 -108.9494
48.9081 -108.9112
48.9081 -108.8730
48.9081 -108.8347
48.9081 -108.7965
48.9081 -108.7582
48.9081 -108.7200
48.9440 -108.6818
48.9440 -108.6435
48.9440 -108.6053
48.9440 -108.5670
48.9440 -108.5288
48.9440 -108.4906
48.9440 -108.4523
48.9440 -108.4141
48.9440 -108.3758
48.9440 -108.3376
48.9440 -108.2994
48.9440 -108.2611
48.9440 -108.2229
48.9440 -108.1847
48.9440 -108.1464
48.9800 -108.1082
48.9800 -108.0699
48.9800 -108.0317
48.9800 -107.9935
48.9800 -107.9552
48.9800 -107.9170
48.9800 -107.8787
48.9440 -107.8405
48.9081 -107.8023
48.9081 -107.7640
48.8722 -107.7258
48.8722 -107.6875
48.8362 -107.6493
48.8362 -107.6111
48.8362 -107.5728
48.8362 -107.5346
48.8362 -107.4964
48.8362 -107.4581
48.8362 -107.4199
48.8362 -107.3816
48.8362 -107.3434
48.8362 -107.3052
48.8362 -107.2669
48.8362 -107.2287
48.8362 -107.1904
48.8722 -107.1522
48.8722 -107.1140
48.8722 -107.0757
48.8722 -107.0375
48.8722 -106.9992
48.8722 -106.9610
48.8722 -106.9228
48.8722 -106.8845
48.8722 -106.8463
48.8722 -106.8080
48.8722 -106.7698
48.8722 -106.7316
48.8722 -106.6933
48.8722 -106.6551
48.8722 -106.6169
48.8722 -106.5786
48.9081 -106.5404
48.9081 -106.5021
48.9081 -106.4639
48.9081 -106.4257
48.9081 -106.3874
48.9081 -106.3492
48.9081 -106.3109
48.9081 -106.2727
48.9081 -106.2345
48.9081 -106.1962
48.9081 -106.1580
48.9081 -106.1197
48.9081 -106.0815
48.9081 -106.0433
48.9081 -106.0050
48.9081 -105.9668
48.9081 -105.9286
48.9440 -105.8903
48.9440 -105.8521
48.9440 -105.8138
48.9440 -105.7756
48.9440 -105.7374
48.9440 -105.6991
48.9440 -105.6609
48.9440 -105.6226
48.9440 -105.5844
48.9440 -105.5462
48.9440 -105.5079
48.9440 -105.4697
48.9440 -105.4314
48.9440 -105.3932
48.9440 -105.3550
48.9440 -105.3167
48.9440 -105.2785
48.9440 -105.2402
48.9800 -105.2020
48.9800 -105.1638
48.9800 -105.1255
48.9800 -105.0873
48.9800 -105.0491
48.9800 -105.0108
48.9800 -104.9726
48.9800 -104.9343
48.9800 -104.8961
48.9800 -104.8579
48.9440 -104.8196
48.9440 -104.7814
48.9081 -104.7431
48.9081 -104.7049
48.8722 -104.6667
48.8362 -104.6284
48.8362 -104.5902
48.8362 -104.5519
48.8362 -104.5137
48.8362 -104.4755
48.8362 -104.4372
48.8362 -104.3990
48.8362 -104.3607
48.8362 -104.3225
48.8362 -104.2843
48.8362 -104.2460
48.8362 -104.2078
48.8362 -104.1696
48.8362 -104.1313
48.8362 -104.0931
48.8362 -104.0548
48.8362 -104.0166
48.8362 -103.9784
48.8722 -103.9401
48.8722 -103.9019
48.8722 -103.8636
48.8722 -103.8254
48.8722 -103.7872
48.8722 -103.7489
48.8722 -103.7107
48.8722 -103.6724
48.8722 -103.6342
48.8722 -103.5960
48.8722 -103.5577
48.8722 -103.5195
48.8722 -103.4813
48.8722 -103.4430
48.8722 -103.4048
48.8722 -103.3665
48.8722 -103.3283
48.8722 -103.2901
48.8722 -103.2518
48.8722 -103.2136
48.8722 -103.1753
48.8722 -103.1371
48.8722 -103.0989
48.9081 -103.0606
48.9081 -103.0224
48.9081 -102.9841
48.9081 -102.9459
48.9081 -102.9077
48.9081 -102.8694
48.9081 -102.8312
48.9081 -102.7930
48.9081 -102.7547
48.9081 -102.7165
48.9081 -102.6782
48.9081 -102.6400
48.9081 -102.6018
48.9081 -102.5635
48.9081 -102.5253
48.9081 -102.4870
48.9081 -102.4488
48.9081 -102.4106
48.9081 -102.3723
48.9081 -102.3341
48.9081 -102.2958
48.9081 -102.2576
48.9081 -102.2194
48.9081 -102.1811
48.9081 -102.1429
48.9081 -102.1047
48.9440 -102.0664
48.9440 -102.0282
48.9440 -101.9899
48.9440 -101.9517
48.9440 -101.9135
48.9440 -101.8752
48.9440 -101.8370
48.9440 -101.7987
48.9440 -101.7605
48.9440 -101.7223
48.9440 -101.6840
48.9440 -101.6458
48.9440 -101.6075
48.9440 -101.5693
48.9440 -101.5311
48.9440 -101.4928
48.9440 -101.4546
48.9440 -101.4164
48.9440 -101.3781
48.9440 -101.3399
48.9440 -101.3016
48.9440 -101.2634
48.9440 -101.2252
48.9440 -101.1869
48.9440 -101.1487
48.9440 -101.1104
48.9440 -101.0722
48.9440 -101.0340
48.9440 -100.9957
48.9800 -100.9575
48.9800 -100.9192
48.9800 -100.8810
48.9800 -100.8428
48.9800 -100.8045
48.9800 -100.7663
48.9800 -100.7280
48.9800 -100.6898
48.9800 -100.6516
48.9800 -100.6133
48.9800 -100.5751
48.9800 -100.5368
48.9800 -100.4986
48.9800 -100.4604
48.9800 -100.4221
48.9800 -100.3839
48.9800 -100.3457
48.9800 -100.3074
48.9800 -100.2692
48.9800 -100.2309
48.9800 -100.1927
48.9800 -100.1545
48.9800 -100.1162
48.9800 -100.0780
48.9800 -100.0397
48.9800 -100.0015
48.9800  -99.9633
48.9800  -99.9250
48.9800  -99.8868
48.9800  -99.8485
48.9800  -99.8103
48.9800  -99.7721
48.9800  -99.7338
48.9800  -99.6956
48.9800  -99.6574
48.9800  -99.6191
48.9800  -99.5809
49.0159  -99.5426
49.0159  -99.5044
49.0159  -99.4662
49.0159  -99.4279
49.0159  -99.3897
49.0159  -99.3514
49.0159  -99.3132
49.0159  -99.2750
49.0159  -99.2367
49.0159  -99.1985
49.0159  -99.1602
49.0159  -99.1220
49.0159  -99.0838
49.0159  -99.0455
48.9800  -99.0073
48.9800  -98.9691
48.9440  -98.9308
48.9081  -98.8926
48.9081  -98.8543
48.8722  -98.8161
48.8362  -98.7779
48.8362  -98.7396
48.8362  -98.7014
48.8362  -98.6631
48.8362  -98.6249
48.8362  -98.5867
48.8362  -98.5484
48.8362  -98.5102
48.8362  -98.4719
48.8362  -98.4337
48.8722  -98.3955
48.8722  -98.3572
48.8722  -98.3190
48.8722  -98.2807
48.8722  -98.2425
48.8722  -98.2043
48.8722  -98.1660
48.8722  -98.1278
48.8722  -98.0896
48.8722  -98.0513
48.8722  -98.0131
48.8722  -97.9748
48.8722  -97.9366
48.8722  -97.8984
48.8722  -97.8601
48.8722  -97.8219
48.8722  -97.7836
48.8722  -97.7454
48.8722  -97.7072
48.8722  -97.6689
48.8722  -97.6307
48.8722  -97.5925
48.8722  -97.5542
48.8722  -97.5160
48.8722  -97.4777
48.8722  -97.4395
48.8722  -97.4013
48.8722  -97.3630
48.8722  -97.3248
48.8722  -97.2865
48.8722  -97.2483
48.8722  -97.2101
48.8722  -97.1718
48.8722  -97.1336
48.8722  -97.0953
48.8722  -97.0571
48.8722  -97.0189
48.8722  -96.9806
48.8722  -96.9424
48.8722  -96.9041
48.8722  -96.8659
48.8722  -96.8277
48.8722  -96.7894
48.8722  -96.7512
48.8722  -96.7130
48.8722  -96.6747
48.8722  -96.6365
48.8722  -96.5982
48.8722  -96.5600
48.8722  -96.5218
48.8722  -96.4835
48.8722  -96.4453
48.8722  -96.4070
48.8722  -96.3688
48.8722  -96.3306
48.8722  -96.2923
48.8722  -96.2541
48.8722  -96.2158
48.8722  -96.1776
48.8722  -96.1394
48.8722  -96.1011
48.8722  -96.0629
48.8722  -96.0247
48.8722  -95.9864
48.8722  -95.9482
48.8722  -95.9099
48.8722  -95.8717
48.8722  -95.8335
48.8722  -95.7952
48.8722  -95.7570
48.8722  -95.7187
48.8722  -95.6805
48.8722  -95.6423
48.8722  -95.6040
48.8722  -95.5658
48.8722  -95.5275
48.8722  -95.4893
48.8722  -95.4511
48.8722  -95.4128
48.8722  -95.3746
48.8722  -95.3363
48.8722  -95.2981
48.8722  -95.2599
48.8722  -95.2216
48.8722  -95.1834
48.8722  -95.1452
48.8722  -95.1069
48.8722  -95.0687
48.8722  -95.0304
48.8722  -94.9922
48.8362  -94.9540
48.8362  -94.9157
48.8003  -94.8775
48.7644  -94.8392
48.7644  -94.8010
48.7284  -94.7628
48.7284  -94.7245
48.7284  -94.6863
48.7284  -94.6480
48.7284  -94.6098
48.7284  -94.5716
48.7284  -94.5333
48.7284  -94.4951
48.7284  -94.4568
48.7284  -94.4186
48.7284  -94.3804
48.7284  -94.3421
48.7284  -94.3039
48.7284  -94.2657
48.7284  -94.2274
48.7284  -94.1892
48.7284  -94.1509
48.7284  -94.1127
48.7284  -94.0745
48.7284  -94.0362
48.7284  -93.9980
48.7284  -93.9597
48.7284  -93.9215
48.7284  -93.8833
48.7284  -93.8450
48.7284  -93.8068
48.7284  -93.7686
48.7284  -93.7303
48.7284  -93.6921
48.7284  -93.6538
48.7284  -93.6156
48.7284  -93.5774
48.7284  -93.5391
48.7284  -93.5009
48.6925  -93.4626
48.6566  -93.4244
48.6566  -93.3862
48.6206  -93.3479
48.5847  -93.3097
48.5488  -93.2714
48.5488  -93.2332
48.5488  -93.1950
48.5488  -93.1567
48.5488  -93.1185
48.5488  -93.0802
48.5488  -93.0420
48.5488  -93.0038
48.5488  -92.9655
48.5488  -92.9273
48.5488  -92.8891
48.5488  -92.8508
48.5488  -92.8126
48.5488  -92.7743
48.5488  -92.7361
48.5488  -92.6979
48.5488  -92.6596
48.5488  -92.6214
48.5488  -92.5831
48.5488  -92.5449
48.5488  -92.5067
48.5488  -92.4684
48.5488  -92.4302
48.5488  -92.3919
48.5488  -92.3537
48.5488  -92.3155
48.5488  -92.2772
48.5488  -92.2390
48.5488  -92.2007
48.5488  -92.1625
48.5128  -92.1243
48.5128  -92.0860
48.5128  -92.0478
48.5128  -92.0096
48.5128  -91.9713
48.5128  -91.9331
48.5128  -91.8948
48.5128  -91.8566
48.5128  -91.8184
48.5128  -91.7801
48.5128  -91.7419
48.5128  -91.7036
48.4769  -91.6654
48.4410  -91.6272
48.4410  -91.5889
48.4050  -91.5507
48.3691  -91.5125
48.3691  -91.4742
48.3691  -91.4360
48.3691  -91.3977
48.3691  -91.3595
48.3332  -91.3213
48.3332  -91.2830
48.3332  -91.2448
48.3332  -91.2065
48.3332  -91.1683
48.3332  -91.1301
48.3332  -91.0918
48.3332  -91.0536
48.3332  -91.0153
48.3332  -90.9771
48.3332  -90.9389
48.3332  -90.9006
48.3332  -90.8624
48.3332  -90.8241
48.3332  -90.7859
48.3332  -90.7477
48.3332  -90.7094
48.3332  -90.6712
48.3332  -90.6329
48.3332  -90.5947
48.3332  -90.5565
48.3332  -90.5182
48.3332  -90.4800
48.3332  -90.4418
48.3332  -90.4035
48.3332  -90.3653
48.3332  -90.3270
48.3332  -90.2888
48.3332  -90.2506
48.3332  -90.2123
48.3332  -90.1741
48.3332  -90.1358
48.3332  -90.0976
48.3332  -90.0594
48.3332  -90.0211
48.3332  -89.9829
48.2972  -89.9446
48.2613  -89.9064
48.2254  -89.8682
48.2254  -89.8299
48.1894  -89.7917
48.1535  -89.7535
48.1535  -89.7152
48.1535  -89.6770
48.1535  -89.6387
48.1535  -89.6005
48.1535  -89.5623
48.1535  -89.5240
48.1535  -89.4858
48.1535  -89.4475
48.1535  -89.4093
48.1535  -89.3711
48.1535  -89.3328
48.1535  -89.2946
48.1535  -89.2563
48.1176  -89.2181
48.1176  -89.1799
48.1176  -89.1416
48.1176  -89.1034
48.1176  -89.0652
48.1176  -89.0269
48.1176  -88.9887
48.1176  -88.9504
48.1176  -88.9122
48.1176  -88.8740
48.1176  -88.8357
48.1176  -88.7975
48.1176  -88.7592
48.1176  -88.7210
48.1176  -88.6828
48.1176  -88.6445
48.1176  -88.6063
48.1176  -88.5680
48.1176  -88.5298
48.1176  -88.4916
48.0816  -88.4533
48.0457  -88.4151
48.0098  -88.3768
48.0098  -88.3386
47.9738  -88.3004
47.9379  -88.2621
47.9379  -88.2239
47.9379  -88.1857
47.9379  -88.1474
47.9379  -88.1092
47.9379  -88.0709
47.9379  -88.0327
47.9379  -87.9945
47.9379  -87.9562
47.9379  -87.9180
47.9379  -87.8797
47.9379  -87.8415
47.9379  -87.8033
47.9379  -87.7650
47.9020  -87.7268
47.9020  -87.6886
47.9020  -87.6503
47.9020  -87.6121
47.9020  -87.5738
47.9020  -87.5356
47.9020  -87.4974
47.9020  -87.4591
47.9020  -87.4209
47.9020  -87.3826
47.9020  -87.3444
47.9020  -87.3062
47.9020  -87.2679
47.8660  -87.2297
47.8660  -87.1914
47.8301  -87.1532
47.7942  -87.1150
47.7582  -87.0767
47.7223  -87.0385
47.7223  -87.0002
47.7223  -86.9620
47.7223  -86.9238
47.7223  -86.8855
47.7223  -86.8473
47.7223  -86.8091
47.7223  -86.7708
47.6864  -86.7326
47.6504  -86.6943
47.6145  -86.6561
47.5786  -86.6179
47.5786  -86.5796
47.5426  -86.5414
47.5426  -86.5031
47.5426  -86.4649
47.5426  -86.4267
47.5426  -86.3884
47.5426  -86.3502
47.5426  -86.3119
47.5067  -86.2737
47.4708  -86.2355
47.4348  -86.1972
47.4348  -86.1590
47.3989  -86.1208
47.3630  -86.0825
47.3630  -86.0443
47.3630  -86.0060
47.3270  -85.9678
47.3270  -85.9296
47.3270  -85.8913
47.3270  -85.8531
47.3270  -85.8148
47.2911  -85.7766
47.2911  -85.7384
47.2552  -85.7001
47.2192  -85.6619
47.1833  -85.6236
47.1474  -85.5854
47.1474  -85.5472
47.1474  -85.5089
47.1474  -85.4707
47.1474  -85.4324
47.1474  -85.3942
47.1474  -85.3560
47.1115  -85.3177
47.1115  -85.2795
47.0755  -85.2413
47.0396  -85.2030
47.0037  -85.1648
46.9677  -85.1265
46.9677  -85.0883
46.9677  -85.0501
46.9677  -85.0118
46.9677  -84.9736
46.9677  -84.9353
46.9677  -84.8971
46.9318  -84.8589
46.9318  -84.8206
46.8959  -84.7824
46.8599  -84.7441
46.8240  -84.7059
46.7881  -84.6677
46.7521  -84.6294
46.7521  -84.5912
46.7162  -84.5529
46.6803  -84.5147
46.6443  -84.4765
46.6084  -84.4382
46.5725  -84.4000
46.5006  -84.3618
46.4287  -84.3235
46.3928  -84.2853
46.3209  -84.2470
46.2491  -84.2088
46.1772  -84.1706
46.1053  -84.1323
46.0335  -84.0941
45.9975  -84.0558
45.9257  -84.0176
45.8179  -83.9794
45.7101  -83.9411
45.6023  -83.9029
45.4945  -83.8646
45.3867  -83.8264
45.3507  -83.7882
45.3507  -83.7499
45.3507  -83.7117
45.3507  -83.6735
45.3507  -83.6352
45.3507  -83.5970
45.3507  -83.5587
45.3507  -83.5205
45.3507  -83.4823
45.3507  -83.4440
45.3507  -83.4058
45.3507  -83.3675
45.3507  -83.3293
45.3507  -83.2911
45.3507  -83.2528
45.3507  -83.2146
45.3507  -83.1763
45.3507  -83.1381
45.3507  -83.0999
45.3148  -83.0616
45.3148  -83.0234
45.3148  -82.9852
45.3148  -82.9469
45.3148  -82.9087
45.3148  -82.8704
45.3148  -82.8322
45.3148  -82.7940
45.3148  -82.7557
45.3148  -82.7175
45.3148  -82.6792
45.3148  -82.6410
45.3148  -82.6028
45.3148  -82.5645
45.3148  -82.5263
45.3148  -82.4880
45.3148  -82.4498
45.3148  -82.4116
45.2789  -82.3733
45.2789  -82.3351
45.2789  -82.2968
45.2789  -82.2586
45.2789  -82.2204
45.2789  -82.1821
45.2789  -82.1439
45.2789  -82.1057
45.2789  -82.0674
45.2789  -82.0292
45.2789  -81.9909
45.2789  -81.9527
45.2789  -81.9145
45.2789  -81.8762
45.2789  -81.8380
45.2789  -81.7997
45.2429  -81.7615
45.2429  -81.7233
45.2429  -81.6850
45.2429  -81.6468
45.2429  -81.6086
45.2429  -81.5703
45.2429  -81.5321
45.2429  -81.4938
45.2429  -81.4556
45.2429  -81.4174
45.2429  -81.3791
45.2429  -81.3409
45.2429  -81.3026
45.2429  -81.2644
45.2429  -81.2262
45.2070  -81.1879
45.2070  -81.1497
45.2070  -81.1114
45.2070  -81.0732
45.2070  -81.0350
45.2070  -80.9967
45.2070  -80.9585
45.2070  -80.9202
45.2070  -80.8820
45.2070  -80.8438
45.2070  -80.8055
45.2070  -80.7673
45.2070  -80.7290
45.2070  -80.6908
45.1711  -80.6526
45.1711  -80.6143
45.1711  -80.5761
45.1711  -80.5379
45.1711  -80.4996
45.1711  -80.4614
45.1711  -80.4231
45.1711  -80.3849
45.1711  -80.3467
45.1711  -80.3084
45.1711  -80.2702
45.1711  -80.2319
45.1711  -80.1937
45.1351  -80.1555
45.1351  -80.1172
45.1351  -80.0790
45.1351  -80.0407
45.1351  -80.0025
45.1351  -79.9643
45.1351  -79.9260
45.1351  -79.8878
45.1351  -79.8495
45.1351  -79.8113
45.1351  -79.7731
45.1351  -79.7348
45.0992  -79.6966
45.0992  -79.6584
45.0992  -79.6201
45.0992  -79.5819
45.0992  -79.5436
45.0992  -79.5054
45.0992  -79.4672
45.0992  -79.4289
45.0992  -79.3907
45.0992  -79.3524
45.0992  -79.3142
45.0992  -79.2760
45.0633  -79.2377
45.0633  -79.1995
45.0633  -79.1613
45.0633  -79.1230
45.0633  -79.0848
45.0633  -79.0465
45.0633  -79.0083
45.0633  -78.9701
45.0633  -78.9318
45.0633  -78.8936
45.0633  -78.8553
45.0273  -78.8171
45.0273  -78.7789
45.0273  -78.7406
45.0273  -78.7024
45.0273  -78.6641
45.0273  -78.6259
45.0273  -78.5877
45.0273  -78.5494
45.0273  -78.5112
45.0273  -78.4729
44.9914  -78.4347
44.9914  -78.3965
44.9914  -78.3582
44.9914  -78.3200
44.9914  -78.2818
44.9914  -78.2435
44.9914  -78.2053
44.9914  -78.1670
44.9914  -78.1288
44.9914  -78.0906
44.9914  -78.0523
44.9555  -78.0141
44.9555  -77.9758
44.9555  -77.9376
44.9555  -77.8994
44.9555  -77.8611
44.9555  -77.8229
44.9555  -77.7847
44.9555  -77.7464
44.9555  -77.7082
44.9195  -77.6699
44.9195  -77.6317
44.9195  -77.5935
44.9195  -77.5552
44.9195  -77.5170
44.9195  -77.4787
44.9195  -77.4405
44.9195  -77.4023
44.9195  -77.3640
44.9195  -77.3258
44.8836  -77.2875
44.8836  -77.2493
44.8836  -77.2111
44.8836  -77.1728
44.8836  -77.1346
44.8836  -77.0963
44.8836  -77.0581
44.8836  -77.0199
44.8836  -76.9816
44.8477  -76.9434
44.8477  -76.9052
44.8477  -76.8669
44.8477  -76.8287
44.8477  -76.7904
44.8477  -76.7522
44.8477  -76.7140
44.8477  -76.6757
44.8477  -76.6375
44.8117  -76.5992
44.8117  -76.5610
44.8117  -76.5228
44.8117  -76.4845
44.8117  -76.4463
44.8117  -76.4080
44.8117  -76.3698
44.8117  -76.3316
44.8117  -76.2933
44.7758  -76.2551
44.7758  -76.2169
44.7758  -76.1786
44.7758  -76.1404
44.7758  -76.1021
44.7758  -76.0639
44.7758  -76.0257
44.7758  -75.9874
44.7399  -75.9492
44.7399  -75.9109
44.7399  -75.8727
44.7399  -75.8345
44.7399  -75.7962
44.7399  -75.7580
44.7399  -75.7197
44.7399  -75.6815
44.7039  -75.6433
44.7039  -75.6050
44.7039  -75.5668
44.7039  -75.5285
44.7039  -75.4903
44.7039  -75.4521
44.7039  -75.4138
44.7039  -75.3756
44.6680  -75.3374
44.6680  -75.2991
44.6680  -75.2609
44.6680  -75.2226
44.6680  -75.1844
44.6680  -75.1462
44.6680  -75.1079
44.6680  -75.0697
44.6680  -75.0314
44.6321  -74.9932
44.6321  -74.9550
44.6321  -74.9167
44.6680  -74.8785
44.6680  -74.8402
44.7039  -74.8020
44.7399  -74.7638
44.7399  -74.7255
44.7758  -74.6873
44.7758  -74.6490
44.7758  -74.6108
44.7758  -74.5726
44.7758  -74.5343
44.7758  -74.4961
44.7758  -74.4579
44.7399  -74.4196
44.7758  -74.3814
44.8117  -74.3431
44.8117  -74.3049
44.8477  -74.2667
44.8477  -74.2284
44.8836  -74.1902
44.8836  -74.1519
44.8836  -74.1137
44.8836  -74.0755
44.8836  -74.0372
44.8836  -73.9990
44.8836  -73.9607
44.8836  -73.9225
44.8836  -73.8843
44.8836  -73.8460
44.8477  -73.8078
44.8477  -73.7696
44.8477  -73.7313
44.8477  -73.6931
44.8477  -73.6548
44.8836  -73.6166
44.8836  -73.5784
44.9195  -73.5401
44.9195  -73.5019
44.9555  -73.4636
44.9555  -73.4254
44.9914  -73.3872
44.9914  -73.3489
44.9914  -73.3107
44.9914  -73.2724
44.9555  -73.2342
44.9555  -73.1960
44.9555  -73.1577
44.9914  -73.1195
44.9914  -73.0813
45.0273  -73.0430
45.0273  -73.0048
45.0633  -72.9665
45.0633  -72.9283
45.0992  -72.8901
45.0992  -72.8518
45.0992  -72.8136
45.0992  -72.7753
45.0992  -72.7371
45.0992  -72.6989
45.0633  -72.6606
45.0633  -72.6224
45.0992  -72.5841
45.0992  -72.5459
45.1351  -72.5077
45.1711  -72.4694
45.1711  -72.4312
45.2070  -72.3929
45.2070  -72.3547
45.2070  -72.3165
45.2070  -72.2782
45.2070  -72.2400
45.2070  -72.2018
45.2070  -72.1635
45.1711  -72.1253
45.2070  -72.0870
45.2070  -72.0488
45.2429  -72.0106
45.2429  -71.9723
45.2789  -71.9341
45.2789  -71.8958
45.3148  -71.8576
45.3148  -71.8194
45.3148  -71.7811
45.3148  -71.7429
45.3148  -71.7047
45.3148  -71.6664
45.3148  -71.6282
45.3148  -71.5899
45.3148  -71.5517
45.3507  -71.5135
45.3507  -71.4752
45.3867  -71.4370
45.3867  -71.3987
45.4226  -71.3605
45.4226  -71.3223
45.4226  -71.2840
45.4226  -71.2458
45.4226  -71.2075
45.4226  -71.1693
45.4226  -71.1311
45.4226  -71.0928
45.4226  -71.0546
45.4226  -71.0163
45.4585  -70.9781
45.4585  -70.9399
45.4945  -70.9016
45.4945  -70.8634
45.5304  -70.8251
45.5304  -70.7869
45.5304  -70.7487
45.5304  -70.7104
45.5304  -70.6722
45.5304  -70.6340
45.5304  -70.5957
45.5304  -70.5575
45.5663  -70.5192
45.6741  -70.4810
45.7460  -70.4428
45.8179  -70.4045
45.8897  -70.3663
45.9616  -70.3280
46.0694  -70.2898
46.1413  -70.2516
46.2131  -70.2133
46.2850  -70.1751
46.3569  -70.1368
46.4647  -70.0986
46.5365  -70.0604
46.6084  -70.0221
46.6803  -69.9839
46.7162  -69.9456
46.7162  -69.9074
46.7521  -69.8692
46.7881  -69.8309
46.8240  -69.7927
46.8599  -69.7545
46.8959  -69.7162
46.9318  -69.6780
46.9677  -69.6397
47.0037  -69.6015
47.0396  -69.5633
47.0755  -69.5250
47.1115  -69.4868
47.1474  -69.4485
47.1833  -69.4103
47.2192  -69.3721
47.2552  -69.3338
47.2552  -69.2956
47.2552  -69.2574
47.2192  -69.2191
47.2192  -69.1809
47.2192  -69.1426
47.2192  -69.1044
47.1833  -69.0662
47.1474  -69.0279
47.1115  -68.9897
47.0755  -68.9514
47.0396  -68.9132
47.0396  -68.8750
47.0396  -68.8367
47.0755  -68.7985
47.0755  -68.7602
47.1115  -68.7220
47.1115  -68.6838
47.1474  -68.6455
47.1474  -68.6073
47.1833  -68.5690
47.1833  -68.5308
47.2192  -68.4926
47.2192  -68.4543
47.2192  -68.4161
47.2552  -68.3779
47.2552  -68.3396
47.2911  -68.3014
47.2552  -68.2631
47.2552  -68.2249
47.2192  -68.1867
47.1833  -68.1484
47.1833  -68.1102
47.1474  -68.0719
47.1474  -68.0337
47.1115  -67.9955
47.1115  -67.9572
47.0755  -67.9190
47.0755  -67.8808
46.5725  -67.8425
46.2131  -67.8043
46.0335  -67.7660
45.9616  -67.7278
45.8538  -67.6896
45.7460  -67.6513
45.7101  -67.6131
45.6741  -67.5748
45.6023  -67.5366
45.4945  -67.4984
45.4226  -67.4601
45.3148  -67.4219
45.2429  -67.3836
45.2070  -67.3454
45.1711  -67.3072
45.0992  -67.2689
45.0633  -67.2307
45.0273  -67.1924
44.9914  -67.1542
44.9555  -67.1160
44.9195  -67.0777
44.8477  -67.0395
44.3446  -67.0013
44.3087  -67.0013
44.2727  -67.0013
44.2368  -67.0013
44.2009  -67.0013
44.1649  -67.0013
44.1290  -67.0013
44.0931  -67.0395
44.0571  -67.0395
44.0212  -67.0395
43.9853  -67.0777
43.9493  -67.0777
43.9134  -67.0777
43.8775  -67.0777
43.8415  -67.1160
43.8056  -67.1160
43.7697  -67.1160
43.7337  -67.1160
43.6978  -67.1542
43.6619  -67.1542
43.6259  -67.1542
43.5900  -67.1924
43.5541  -67.1924
43.5182  -67.1924
43.4822  -67.1924
43.4463  -67.1542
43.4104  -67.1160
43.3744  -67.1160
43.3385  -67.0777
43.3026  -67.0395
43.2666  -67.0395
43.2307  -67.0395
43.1948  -67.0395
43.1588  -67.0395
43.1229  -67.0777
43.0870  -67.0777
43.0510  -67.0777
43.0151  -67.1160
42.9792  -67.1160
42.9432  -67.1160
42.9073  -67.1160
42.8714  -67.1542
42.8354  -67.1542
42.7995  -67.1542
42.7636  -67.1542
42.7276  -67.1924
42.6917  -67.1924
42.6558  -67.1924
42.6198  -67.1924
42.5839  -67.1924
42.5480  -67.1542
42.5120  -67.1160
42.4761  -67.1160
42.4402  -67.0777
42.4042  -67.0395
42.3683  -67.0395
42.3324  -67.0395
42.2964  -67.0777
42.2605  -67.0777
42.2246  -67.0777
42.1886  -67.0777
42.1527  -67.1160
42.1168  -67.1160
42.0808  -67.1160
42.0449  -67.1160
42.0090  -67.1542
41.9730  -67.1542
41.9371  -67.1542
41.9012  -67.1542
41.8652  -67.1924
41.8293  -67.1924
41.7934  -67.1924
41.7574  -67.2307
41.7215  -67.2307
41.6856  -67.2307
41.6496  -67.2307
41.6137  -67.2689
41.5778  -67.2689
41.5418  -67.2689
41.5059  -67.3454
41.4700  -67.4219
41.4340  -67.4984
41.3981  -67.5366
41.3622  -67.5748
41.3262  -67.5748
41.2903  -67.5748
41.2544  -67.5748
41.2184  -67.6131
41.1825  -67.6131
41.1466  -67.6131
41.1106  -67.6131
41.0747  -67.6513
41.0388  -67.6513
41.0028  -67.6513
40.9669  -67.6513
40.9310  -67.6896
40.8950  -67.6896
40.8591  -67.6896
40.8232  -67.6896
40.7872  -67.7278
40.7513  -67.7278
40.7154  -67.7278
40.6794  -67.7278
40.6435  -67.7660
40.6076  -67.7660
40.5716  -67.7660
40.5357  -67.8043
40.4998  -67.8808
40.4638  -67.9572
40.4279  -68.0337
40.3920  -68.0719
40.3560  -68.0719
40.3201  -68.0719
40.2842  -68.0719
40.2482  -68.1102
40.2123  -68.1102
40.1764  -68.1102
40.1404  -68.1102
40.1045  -68.1484
40.0686  -68.1484
40.0326  -68.1484
39.9967  -68.1484
39.9608  -68.1867
39.9249  -68.1867
39.8889  -68.1867
39.8530  -68.2631
39.8171  -68.3396
39.7811  -68.4161
39.7452  -68.4543
39.7093  -68.4543
39.6733  -68.4926
39.6374  -68.4926
39.6015  -68.4926
39.5655  -68.5308
39.5296  -68.6073
39.4937  -68.6838
39.4577  -68.7602
39.4218  -68.7602
39.3859  -68.7985
39.3499  -68.7985
39.3140  -68.7985
39.2781  -68.7985
39.2421  -68.8750
39.2062  -68.9514
39.1703  -69.0279
39.1343  -69.0662
39.0984  -69.1044
39.0625  -69.1044
39.0265  -69.1044
38.9906  -69.1044
38.9547  -69.1426
38.9187  -69.2191
38.8828  -69.2574
38.8469  -69.3338
38.8109  -69.4103
38.7750  -69.4103
38.7391  -69.4103
38.7031  -69.4103
38.6672  -69.4485
38.6313  -69.4485
38.5953  -69.5250
38.5594  -69.6015
38.5235  -69.6780
38.4875  -69.7162
38.4516  -69.7162
38.4157  -69.7162
38.3797  -69.7162
38.3438  -69.7545
38.3079  -69.7927
38.2719  -69.8309
38.2360  -69.9074
38.2001  -69.9839
38.1641  -70.0221
38.1282  -70.0221
38.0923  -70.0221
38.0563  -70.0221
38.0204  -70.0604
37.9845  -70.1751
37.9485  -70.3280
37.9126  -70.4810
37.8767  -70.7487
37.8407  -71.0928
37.8048  -71.3223
37.7689  -71.4752
37.7329  -71.6282
37.6970  -71.7811
37.6611  -71.9341
37.6251  -72.0488
37.5892  -72.2018
37.5533  -72.3547
37.5173  -72.5077
37.4814  -72.6606
37.4455  -72.8136
37.4095  -72.9665
37.3736  -73.0813
37.3377  -73.2342
37.3017  -73.3872
37.2658  -73.5401
37.2299  -73.6548
37.1939  -73.6548
37.1580  -73.6548
37.1221  -73.6548
37.0861  -73.6548
37.0502  -73.6931
37.0143  -73.6931
36.9783  -73.6931
36.9424  -73.6931
36.9065  -73.6931
36.8705  -73.6931
36.8346  -73.6548
36.7987  -73.6166
36.7627  -73.6166
36.7268  -73.5784
36.6909  -73.5401
36.6549  -73.5401
36.6190  -73.5401
36.5831  -73.5401
36.5471  -73.5401
36.5112  -73.5784
36.4753  -73.5784
36.4394  -73.5784
36.4034  -73.5784
36.3675  -73.5784
36.3316  -73.5784
36.2956  -73.6166
36.2597  -73.6166
36.2238  -73.6166
36.1878  -73.6166
36.1519  -73.6166
36.1160  -73.6548
36.0800  -73.6548
36.0441  -73.6548
36.0082  -73.6548
35.9722  -73.6548
35.9363  -73.6548
35.9004  -73.6931
35.8644  -73.6931
35.8285  -73.6931
35.7926  -73.6931
35.7566  -73.6931
35.7207  -73.7313
35.6848  -73.7313
35.6488  -73.7313
35.6129  -73.7313
35.5770  -73.6931
35.5410  -73.6548
35.5051  -73.6166
35.4692  -73.6166
35.4332  -73.5784
35.3973  -73.5401
35.3614  -73.5784
35.3254  -73.5784
35.2895  -73.5784
35.2536  -73.5784
35.2176  -73.5784
35.1817  -73.5784
35.1458  -73.6166
35.1098  -73.6166
35.0739  -73.6166
35.0380  -73.6166
35.0020  -73.6166
34.9661  -73.6548
34.9302  -73.6548
34.8942  -73.6548
34.8583  -73.6548
34.8224  -73.6548
34.7864  -73.6548
34.7505  -73.6931
34.7146  -73.6931
34.6786  -73.7313
34.6427  -73.8078
34.6068  -73.8460
34.5708  -73.9225
34.5349  -73.9607
34.4990  -74.0372
34.4630  -74.0755
34.4271  -74.1519
34.3912  -74.2284
34.3552  -74.2667
34.3193  -74.3431
34.2834  -74.3814
34.2474  -74.4579
34.2115  -74.4961
34.1756  -74.5726
34.1396  -74.6108
34.1037  -74.6873
34.0678  -74.7255
34.0318  -74.8020
33.9959  -74.8785
33.9600  -74.9167
33.9240  -74.9932
33.8881  -75.0314
33.8522  -75.1079
33.8162  -75.1462
33.7803  -75.2226
33.7444  -75.2609
33.7084  -75.3374
33.6725  -75.3756
33.6366  -75.4521
33.6006  -75.4903
33.5647  -75.5668
33.5288  -75.6050
33.4928  -75.6815
33.4569  -75.7197
33.4210  -75.7962
33.3850  -75.8345
33.3491  -75.9109
33.3132  -75.9492
33.2772  -76.0257
33.2413  -76.0639
33.2054  -76.1404
33.1694  -76.1786
33.1335  -76.2551
33.0976  -76.2933
33.0616  -76.3698
33.0257  -76.4080
32.9898  -76.4845
32.9538  -76.5228
32.9179  -76.5992
32.8820  -76.6375
32.8461  -76.7140
32.8101  -76.7522
32.7742  -76.8287
32.7383  -76.8669
32.7023  -76.9052
32.6664  -76.9816
32.6305  -77.0199
32.5945  -77.0963
32.5586  -77.1346
32.5227  -77.1346
32.4867  -77.1346
32.4508  -77.1346
32.4149  -77.1728
32.3789  -77.1728
32.3430  -77.1728
32.3071  -77.1728
32.2711  -77.1728
32.2352  -77.1728
32.1993  -77.1728
32.1633  -77.2111
32.1274  -77.2111
32.0915  -77.2111
32.0555  -77.2111
32.0196  -77.2111
31.9837  -77.1728
31.9477  -77.1346
31.9118  -77.0963
31.8759  -77.0963
31.8399  -77.0581
31.8040  -77.0199
31.7681  -77.0581
31.7321  -77.0581
31.6962  -77.0581
31.6603  -77.0581
31.6243  -77.0581
31.5884  -77.0581
31.5525  -77.0581
31.5165  -77.0963
31.4806  -77.0963
31.4447  -77.0963
31.4087  -77.0963
31.3728  -77.0963
31.3369  -77.0963
31.3009  -77.1346
31.2650  -77.1346
31.2291  -77.1346
31.1931  -77.1346
31.1572  -77.1346
31.1213  -77.1346
31.0853  -77.1346
31.0494  -77.1728
31.0135  -77.1728
30.9775  -77.1728
30.9416  -77.1728
30.9057  -77.1728
30.8697  -77.1728
30.8338  -77.1728
30.7979  -77.2111
30.7619  -77.2111
30.7260  -77.1728
30.6901  -77.1728
30.6541  -77.1346
30.6182  -77.0963
30.5823  -77.0581
30.5463  -77.0199
30.5104  -77.0199
30.4745  -77.0199
30.4385  -77.0199
30.4026  -77.0581
30.3667  -77.0581
30.3307  -77.0581
30.2948  -77.0581
30.2589  -77.0581
30.2229  -77.0581
30.1870  -77.0581
30.1511  -77.0963
30.1151  -77.0963
30.0792  -77.0963
30.0433  -77.0963
30.0073  -77.0963
29.9714  -77.0963
29.9355  -77.0963
29.8995  -77.1346
29.8636  -77.1346
29.8277  -77.1346
29.7917  -77.1346
29.7558  -77.1346
29.7199  -77.1346
29.6839  -77.1346
29.6480  -77.1728
29.6121  -77.1728
29.5761  -77.1728
29.5402  -77.1728
29.5043  -77.1728
29.4683  -77.1728
29.4324  -77.1728
29.3965  -77.2111
29.3605  -77.2111
29.3246  -77.2111
29.2887  -77.2111
29.2528  -77.2111
29.2168  -77.1728
29.1809  -77.1346
29.1450  -77.0963
29.1090  -77.0581
29.0731  -77.0199
29.0372  -77.0581
29.0012  -77.0581
28.9653  -77.0581
28.9294  -77.0581
28.8934  -77.0581
28.8575  -77.0581
28.8216  -77.0581
28.7856  -77.0963
28.7497  -77.0963
28.7138  -77.0963
28.6778  -77.0963
28.6419  -77.0963
28.6060  -77.0963
28.5700  -77.0963
28.5341  -77.0963
28.4982  -77.1346
28.4622  -77.1346
28.4263  -77.1346
28.3904  -77.1346
28.3544  -77.1346
28.3185  -77.1346
28.2826  -77.1346
28.2466  -77.1728
28.2107  -77.1728
28.1748  -77.1728
28.1388  -77.2111
28.1029  -77.2493
28.0670  -77.3258
28.0310  -77.3640
27.9951  -77.8994
27.9592  -78.6641
27.9232  -78.6641
27.8873  -78.6641
27.8514  -78.6641
27.8154  -78.6641
27.7795  -78.7024
27.7436  -78.7024
27.7076  -78.7024
27.6717  -78.7024
27.6358  -78.7024
27.5998  -78.7024
27.5639  -78.6641
27.5280  -78.6259
27.4920  -78.6259
27.4561  -78.5877
27.4202  -78.5494
27.3842  -78.5494
27.3483  -78.5494
27.3124  -78.5494
27.2764  -78.5494
27.2405  -78.5494
27.2046  -78.5494
27.1686  -78.5494
27.1327  -78.5494
27.0968  -78.5877
27.0608  -78.5877
27.0249  -78.5877
26.9890  -78.5877
26.9530  -78.5877
26.9171  -78.5877
26.8812  -78.5877
26.8452  -78.5877
26.8093  -78.6259
26.7734  -78.6259
26.7374  -78.6259
26.7015  -78.6259
26.6656  -78.6259
26.6296  -78.6259
26.5937  -78.6259
26.5578  -78.6259
26.5218  -78.6641
26.4859  -78.6641
26.4500  -78.6641
26.4140  -78.6641
26.3781  -78.6641
26.3422  -78.6641
26.3062  -78.6641
26.2703  -78.6641
26.2344  -78.7024
26.1984  -78.7024
26.1625  -78.7024
26.1266  -78.7024
26.0906  -78.6641
26.0547  -78.6259
26.0188  -78.5877
25.9828  -78.5877
25.9469  -78.5494
25.9110  -78.5112
25.8750  -78.5494
25.8391  -78.5494
25.8032  -78.5494
25.7673  -78.5494
25.7313  -78.5494
25.6954  -78.5494
25.6595  -78.5494
25.6235  -78.5494
25.5876  -78.5877
25.5517  -78.5877
25.5157  -78.5877
25.4798  -78.5877
25.4439  -78.5877
25.4079  -78.5877
25.3720  -78.5877
25.3361  -78.5877
25.3001  -78.6259
25.2642  -78.6259
25.2283  -78.6259
25.1923  -78.6259
25.1564  -78.6259
25.1205  -78.6259
25.0845  -78.6259
25.0486  -78.6259
25.0127  -78.6641
24.9767  -78.6641
24.9408  -78.6641
24.9049  -78.6641
24.8689  -78.6641
24.8330  -78.6641
24.7971  -78.6641
24.7611  -78.6641
24.7252  -78.7024
24.6893  -78.7024
24.6533  -78.7024
24.6174  -78.6641
24.5815  -78.6259
24.5455  -78.5877
24.5096  -78.5494
24.4737  -78.5494
24.4377  -78.5112
24.4018  -78.5112
24.3659  -78.5494
24.3299  -78.5494
24.2940  -78.5494
24.2581  -78.5494
24.2221  -78.5494
24.1862  -78.5494
24.1503  -78.5494
24.1143  -78.5494
24.0784  -78.5877
24.0425  -78.5877
24.0065  -78.5877
23.9706  -78.5877
23.9347  -78.5877
23.8987  -78.5877
23.8628  -78.5877
23.8269  -78.5877
23.7909  -78.6259
23.7550  -78.6259
23.7191  -78.6259
23.6831  -78.6259
23.6472  -78.6259
23.6113  -78.6259
23.5753  -78.6259
23.5394  -78.6259
23.5035  -78.6641
23.4675  -78.6641
23.4316  -78.6641
23.3957  -78.6641
23.3597  -78.6641
23.3238  -78.6641
23.2879  -78.6641
23.2519  -78.6641
23.2160  -78.7024
23.1801  -78.7024
23.1441  -78.7024
23.1082  -78.7024
23.0723  -78.7024
23.0363  -78.7024
23.0363  -78.7406
23.0363  -78.7789
23.0363  -78.8171
23.0363  -78.8553
23.0363  -78.8936
23.0363  -78.9318
23.0363  -78.9701
23.0363  -79.0083
23.0363  -79.0465
23.0363  -79.0848
23.0363  -79.1230
23.0363  -79.1613
23.0363  -79.1995
23.0363  -79.2377
23.0363  -79.2760
23.0363  -79.3142
23.0363  -79.3524
23.0363  -79.3907
23.0363  -79.4289
23.0363  -79.4672
23.0363  -79.5054
23.0363  -79.5436
23.0363  -79.5819
23.0363  -79.6201
23.0363  -79.6584
23.0363  -79.6966
23.0363  -79.7348
23.0363  -79.7731
23.0363  -79.8113
23.0363  -79.8495
23.0363  -79.8878
23.0363  -79.9260
23.0363  -79.9643
23.0363  -80.0025
23.0363  -80.0407
23.0363  -80.0790
23.0363  -80.1172
23.0363  -80.1555
23.0363  -80.1937
23.0363  -80.2319
23.0363  -80.2702
23.0363  -80.3084
23.0363  -80.3467
23.0363  -80.3849
23.0363  -80.4231
23.0363  -80.4614
23.0363  -80.4996
23.0363  -80.5379
23.0363  -80.5761
23.0363  -80.6143
23.0363  -80.6526
23.0363  -80.6908
23.1082  -80.7290
23.1441  -80.7673
23.2160  -80.8055
23.2519  -80.8438
23.3238  -80.8820
23.3597  -80.9202
23.4316  -80.9585
23.4675  -80.9967
23.5394  -81.0350
23.5753  -81.0732
23.6113  -81.1114
23.6831  -81.1497
23.7191  -81.1879
23.7909  -81.2262
23.8269  -81.2644
23.8987  -81.3026
23.9347  -81.3409
24.0065  -81.3791
24.0425  -81.4174
24.0784  -81.4556
24.1503  -81.4938
24.1862  -81.5321
24.2581  -81.5703
24.2940  -81.6086
24.3659  -81.6468
24.4018  -81.6850
24.4377  -81.7233
24.5096  -81.7615
24.5455  -81.7997
24.6174  -81.8380
24.6533  -81.8762
24.7252  -81.9145
24.7611  -81.9527
24.7971  -81.9909
24.8689  -82.0292
24.9049  -82.0674
24.9767  -82.1057
25.0127  -82.1439
25.0486  -82.1821
25.1205  -82.2204
25.1564  -82.2586
25.2283  -82.2968
25.2642  -82.3351
25.3361  -82.3733
25.3720  -82.4116
25.4079  -82.4498
25.4798  -82.4880
25.5157  -82.5263
25.5517  -82.5645
25.6235  -82.6028
25.6595  -82.6410
25.7313  -82.6792
25.7673  -82.7175
25.8032  -82.7557
25.8750  -82.7940
25.9110  -82.8322
25.9828  -82.8704
26.0188  -82.9087
26.0547  -82.9469
26.1266  -82.9852
26.1625  -83.0234
26.2344  -83.0616
26.2703  -83.0999
26.3062  -83.1381
26.3781  -83.1763
26.4140  -83.2146
26.4500  -83.2528
26.5218  -83.2911
26.5578  -83.3293
26.7374  -83.3675
27.0608  -83.4058
27.3483  -83.4440
27.5639  -83.4823
27.6358  -83.5205
27.7076  -83.5587
27.8154  -83.5970
27.8873  -83.6352
27.8873  -83.6735
27.8873  -83.7117
27.8873  -83.7499
27.8873  -83.7882
27.8873  -83.8264
27.8873  -83.8646
27.9232  -83.9029
27.9232  -83.9411
27.9232  -83.9794
27.9232  -84.0176
27.9232  -84.0558
27.9232  -84.0941
27.9232  -84.1323
27.9232  -84.1706
27.9232  -84.2088
27.9232  -84.2470
27.9232  -84.2853
27.9232  -84.3235
27.9232  -84.3618
27.9592  -84.4000
27.9592  -84.4382
27.9592  -84.4765
27.9592  -84.5147
27.9592  -84.5529
27.9592  -84.5912
27.9592  -84.6294
27.9592  -84.6677
27.9592  -84.7059
27.9592  -84.7441
27.9592  -84.7824
27.9592  -84.8206
27.9592  -84.8589
27.9592  -84.8971
27.9951  -84.9353
27.9951  -84.9736
27.9951  -85.0118
27.9951  -85.0501
27.9951  -85.0883
27.9951  -85.1265
27.9951  -85.1648
27.9951  -85.2030
27.9951  -85.2413
27.9951  -85.2795
27.9951  -85.3177
27.9951  -85.3560
27.9951  -85.3942
27.9951  -85.4324
27.9951  -85.4707
28.0310  -85.5089
28.0310  -85.5472
28.0310  -85.5854
28.0310  -85.6236
28.0310  -85.6619
28.0310  -85.7001
28.0310  -85.7384
28.0310  -85.7766
28.0310  -85.8148
28.0310  -85.8531
28.0310  -85.8913
28.0310  -85.9296
28.0310  -85.9678
28.0310  -86.0060
28.0310  -86.0443
28.0310  -86.0825
28.0670  -86.1208
28.0670  -86.1590
28.0670  -86.1972
28.0670  -86.2355
28.0670  -86.2737
28.0670  -86.3119
28.0670  -86.3502
28.0670  -86.3884
28.0670  -86.4267
28.0670  -86.4649
28.0670  -86.5031
28.0670  -86.5414
28.0670  -86.5796
28.0670  -86.6179
28.0670  -86.6561
28.0670  -86.6943
28.1029  -86.7326
28.1029  -86.7708
28.1029  -86.8091
28.1029  -86.8473
28.1029  -86.8855
28.1029  -86.9238
28.1029  -86.9620
28.1029  -87.0002
28.1029  -87.0385
28.1029  -87.0767
28.1029  -87.1150
28.1029  -87.1532
28.1029  -87.1914
28.1029  -87.2297
28.1029  -87.2679
28.1029  -87.3062
28.1029  -87.3444
28.1029  -87.3826
28.1029  -87.4209
28.1388  -87.4591
28.1388  -87.4974
28.1388  -87.5356
28.1388  -87.5738
28.1388  -87.6121
28.1388  -87.6503
28.1388  -87.6886
28.1388  -87.7268
28.1388  -87.7650
28.1388  -87.8033
28.1388  -87.8415
28.1388  -87.8797
28.1388  -87.9180
28.1388  -87.9562
28.1388  -87.9945
28.1388  -88.0327
28.1388  -88.0709
28.1388  -88.1092
28.1388  -88.1474
28.1388  -88.1857
28.1748  -88.2239
28.1748  -88.2621
28.1748  -88.3004
28.1748  -88.3386
28.1748  -88.3768
28.1748  -88.4151
28.1748  -88.4533
28.1748  -88.4916
28.1748  -88.5298
28.1748  -88.5680
28.1748  -88.6063
28.1748  -88.6445
28.1748  -88.6828
28.1748  -88.7210
28.1748  -88.7592
28.1748  -88.7975
28.1748  -88.8357
28.1748  -88.8740
28.1748  -88.9122
28.1748  -88.9504
28.1748  -88.9887
28.1748  -89.0269
28.2107  -89.0652
28.2107  -89.1034
28.2107  -89.1416
28.2107  -89.1799
28.2107  -89.2181
28.2107  -89.2563
28.2107  -89.2946
28.2107  -89.3328
28.2107  -89.3711
28.2107  -89.4093
28.2107  -89.4475
28.2107  -89.4858
28.2107  -89.5240
28.2107  -89.5623
28.2107  -89.6005
28.2107  -89.6387
28.2107  -89.6770
28.2107  -89.7152
28.2107  -89.7535
28.2107  -89.7917
28.2107  -89.8299
28.2107  -89.8682
28.2107  -89.9064
28.2107  -89.9446
28.2107  -89.9829
28.2107  -90.0211
28.2466  -90.0594
28.2466  -90.0976
28.2466  -90.1358
28.2466  -90.1741
28.2466  -90.2123
28.2466  -90.2506
28.2466  -90.2888
28.2466  -90.3270
28.2466  -90.3653
28.2466  -90.4035
28.2466  -90.4418
28.2466  -90.4800
28.2466  -90.5182
28.2466  -90.5565
28.2466  -90.5947
28.2466  -90.6329
28.2466  -90.6712
28.2466  -90.7094
28.2466  -90.7477
28.2466  -90.7859
28.2466  -90.8241
28.2466  -90.8624
28.2466  -90.9006
28.2466  -90.9389
28.2466  -90.9771
28.2466  -91.0153
28.2466  -91.0536
28.2466  -91.0918
28.2466  -91.1301
28.2466  -91.1683
28.2466  -91.2065
28.2466  -91.2448
28.2466  -91.2830
28.2466  -91.3213
28.2826  -91.3595
28.2826  -91.3977
28.2826  -91.4360
28.2826  -91.4742
28.2826  -91.5125
28.2826  -91.5507
28.2826  -91.5889
28.2826  -91.6272
28.2826  -91.6654
28.2826  -91.7036
28.2826  -91.7419
28.2826  -91.7801
28.2826  -91.8184
28.2826  -91.8566
28.2826  -91.8948
28.2826  -91.9331
28.2826  -91.9713
28.2826  -92.0096
28.2826  -92.0478
28.2826  -92.0860
28.2826  -92.1243
28.2826  -92.1625
28.2826  -92.2007
28.2826  -92.2390
28.2826  -92.2772
28.2826  -92.3155
28.2826  -92.3537
28.2826  -92.3919
28.2826  -92.4302
28.2826  -92.4684
28.2826  -92.5067
28.2826  -92.5449
28.2826  -92.5831
28.2826  -92.6214
28.2826  -92.6596
28.2826  -92.6979
28.2826  -92.7361
28.2826  -92.7743
28.2826  -92.8126
28.2826  -92.8508
28.2826  -92.8891
28.2826  -92.9273
28.2826  -92.9655
28.2826  -93.0038
28.2826  -93.0420
28.2826  -93.0802
28.2826  -93.1185
28.2826  -93.1567
28.2826  -93.1950
28.2826  -93.2332
28.2826  -93.2714
28.2826  -93.3097
28.2826  -93.3479
28.2826  -93.3862
28.2826  -93.4244
28.2826  -93.4626
28.2826  -93.5009
28.3185  -93.5391
28.3185  -93.5774
28.3185  -93.6156
28.3185  -93.6538
28.3185  -93.6921
28.3185  -93.7303
28.3185  -93.7686
28.3185  -93.8068
28.3185  -93.8450
28.3185  -93.8833
28.3185  -93.9215
28.3185  -93.9597
28.3185  -93.9980
28.3185  -94.0362
28.3185  -94.0745
28.3185  -94.1127
28.3185  -94.1509
28.3185  -94.1892
28.3185  -94.2274
28.3185  -94.2657
28.3185  -94.3039
28.3185  -94.3421
28.3185  -94.3804
28.3185  -94.4186
28.3185  -94.4568
28.3185  -94.4951
28.3185  -94.5333
28.3185  -94.5716
28.2826  -94.6098
28.2466  -94.6480
28.2107  -94.6863
28.1748  -94.7245
28.1388  -94.7628
28.1029  -94.8010
28.0670  -94.8392
28.0670  -94.8775
28.0310  -94.9157
27.9951  -94.9540
27.9592  -94.9922
27.9232  -95.0304
27.8873  -95.0687
27.8514  -95.1069
27.8154  -95.1452
27.7795  -95.1834
27.7436  -95.2216
27.7076  -95.2599
27.6717  -95.2981
27.6358  -95.3363
27.5998  -95.3746
27.5639  -95.4128
27.5280  -95.4511
27.4920  -95.4893
27.4561  -95.5275
27.4561  -95.5658
27.4202  -95.6040
27.3842  -95.6423
27.3483  -95.6805
27.3124  -95.7187
27.2764  -95.7570
27.2405  -95.7952
27.2046  -95.8335
27.1686  -95.8717
27.1327  -95.9099
27.0968  -95.9482
27.0608  -95.9864
27.0249  -96.0247
26.9890  -96.0629
26.9530  -96.1011
26.9171  -96.1394
26.8812  -96.1776
26.8452  -96.2158
26.8093  -96.2541
26.7734  -96.2923
26.7374  -96.3306
26.7015  -96.3688
26.6656  -96.4070
26.6296  -96.4453
26.5937  -96.4835
26.5578  -96.5218
26.5218  -96.5600
26.5218  -96.5982
26.4859  -96.6365
26.4500  -96.6747
26.4140  -96.7130
26.3781  -96.7512
26.3422  -96.7894
26.3062  -96.8277
26.2703  -96.8659
26.2344  -96.9041
26.1984  -96.9424
26.1625  -96.9806
26.1266  -97.0189
26.0906  -97.0571
26.0906  -97.0953
26.0906  -97.1336
26.0906  -97.1718
26.0906  -97.2101
26.1266  -97.2483
26.1266  -97.2865
26.1625  -97.3248
26.1984  -97.3630
26.2344  -97.4013
26.2703  -97.4395
26.3062  -97.4777
26.3422  -97.5160
26.3781  -97.5542
26.4140  -97.5925
26.4500  -97.6307
26.4500  -97.6689
26.4500  -97.7072
26.4500  -97.7454
26.4500  -97.7836
26.4500  -97.8219
26.4500  -97.8601
26.4859  -97.8984
26.5218  -97.9366
26.5578  -97.9748
26.5937  -98.0131
26.6296  -98.0513
26.6656  -98.0896
26.7015  -98.1278
26.7374  -98.1660
26.7374  -98.2043
26.7734  -98.2425
26.8093  -98.2807
26.8452  -98.3190
26.8812  -98.3572
26.9171  -98.3955
26.9530  -98.4337
26.9890  -98.4719
27.0249  -98.5102
27.0608  -98.5484
27.0608  -98.5867
27.0968  -98.6249
27.1327  -98.6631
27.1686  -98.7014
27.1686  -98.7396
27.1686  -98.7779
27.1686  -98.8161
27.1686  -98.8543
27.1686  -98.8926
27.2046  -98.9308
27.2046  -98.9691
27.2405  -99.0073
27.2764  -99.0455
27.3124  -99.0838
27.3483  -99.1220
27.3842  -99.1602
27.4202  -99.1985
27.4561  -99.2367
27.4920  -99.2750
27.4920  -99.3132
27.5280  -99.3514
27.5639  -99.3897
27.5998  -99.4279
27.6358  -99.4662
27.6717  -99.5044
27.7076  -99.5426
27.7436  -99.5809
27.7795  -99.6191
27.7795  -99.6574
27.8154  -99.6956
27.8514  -99.7338
27.8873  -99.7721
27.9232  -99.8103
27.9592  -99.8485
27.9951  -99.8868
28.0310  -99.9250
28.0310  -99.9633
28.1029 -100.0015
28.1748 -100.0397
28.2466 -100.0780
28.2826 -100.1162
28.3544 -100.1545
28.4263 -100.1927
28.4622 -100.2309
28.5341 -100.2692
28.6060 -100.3074
28.6778 -100.3457
28.7138 -100.3839
28.7856 -100.4221
28.8575 -100.4604
28.8934 -100.4986
28.9653 -100.5368
29.0372 -100.5751
29.0731 -100.6133
29.1450 -100.6516
29.1450 -100.6898
29.1809 -100.7280
29.2168 -100.7663
29.2528 -100.8045
29.2887 -100.8428
29.3246 -100.8810
29.3605 -100.9192
29.3605 -100.9575
29.3965 -100.9957
29.4324 -101.0340
29.4683 -101.0722
29.5043 -101.1104
29.5402 -101.1487
29.5761 -101.1869
29.5761 -101.2252
29.6121 -101.2634
29.6480 -101.3016
29.6480 -101.3399
29.6480 -101.3781
29.6480 -101.4164
29.6480 -101.4546
29.6480 -101.4928
29.6480 -101.5311
29.6839 -101.5693
29.7199 -101.6075
29.7558 -101.6458
29.7917 -101.6840
29.7917 -101.7223
29.7917 -101.7605
29.7917 -101.7987
29.7917 -101.8370
29.7917 -101.8752
29.7917 -101.9135
29.8277 -101.9517
29.8277 -101.9899
29.8636 -102.0282
29.8995 -102.0664
29.9355 -102.1047
29.9714 -102.1429
29.9714 -102.1811
29.9714 -102.2194
29.9714 -102.2576
29.9714 -102.2958
29.9714 -102.3341
29.9355 -102.3723
29.8995 -102.4106
29.8636 -102.4488
29.8277 -102.4870
29.7917 -102.5253
29.7558 -102.5635
29.6839 -102.6018
29.5761 -102.6400
29.5043 -102.6782
29.4324 -102.7165
29.3605 -102.7547
29.3246 -102.7930
29.2887 -102.8312
29.2528 -102.8694
29.2168 -102.9077
29.1809 -102.9459
29.1450 -102.9841
29.1090 -103.0224
29.0731 -103.0606
29.0372 -103.0989
29.0012 -103.1371
29.0372 -103.1753
29.0731 -103.2136
29.1090 -103.2518
29.1450 -103.2901
29.1450 -103.3283
29.1809 -103.3665
29.2168 -103.4048
29.2528 -103.4430
29.2887 -103.4813
29.2887 -103.5195
29.3246 -103.5577
29.3605 -103.5960
29.3965 -103.6342
29.4324 -103.6724
29.4683 -103.7107
29.4683 -103.7489
29.5043 -103.7872
29.5402 -103.8254
29.5761 -103.8636
29.6121 -103.9019
29.6121 -103.9401
29.6480 -103.9784
29.6839 -104.0166
29.7199 -104.0548
29.7558 -104.0931
29.7558 -104.1313
29.7917 -104.1696
29.8277 -104.2078
29.8636 -104.2460
29.8995 -104.2843
29.9355 -104.3225
29.9355 -104.3607
29.9714 -104.3990
30.0073 -104.4372
30.0433 -104.4755
30.0073 -104.5137
30.0073 -104.5519
30.0073 -104.5902
30.0073 -104.6284
30.0073 -104.6667
30.0792 -104.7049
30.1511 -104.7431
30.2229 -104.7814
30.2948 -104.8196
30.4026 -104.8579
30.4745 -104.8961
30.5463 -104.9343
30.6182 -104.9726
30.6541 -105.0108
30.7260 -105.0491
30.7619 -105.0873
30.8338 -105.1255
30.8697 -105.1638
30.9057 -105.2020
30.9416 -105.2402
30.9775 -105.2785
31.0135 -105.3167
31.0135 -105.3550
31.0494 -105.3932
31.0853 -105.4314
31.1213 -105.4697
31.1572 -105.5079
31.1572 -105.5462
31.1931 -105.5844
31.2291 -105.6226
31.2650 -105.6609
31.2650 -105.6991
31.3009 -105.7374
31.3369 -105.7756
31.3728 -105.8138
31.3728 -105.8521
31.4087 -105.8903
31.4447 -105.9286
31.4806 -105.9668
31.5165 -106.0050
31.5165 -106.0433
31.5525 -106.0815
31.5884 -106.1197
31.6243 -106.1580
31.6243 -106.1962
31.6603 -106.2345
31.6962 -106.2727
31.7321 -106.3109
31.7321 -106.3492
31.7681 -106.3874
31.8040 -106.4257
31.8399 -106.4639
31.8759 -106.5021
31.8759 -106.5404
31.8759 -106.5786
31.8759 -106.6169
31.8759 -106.6551
31.8759 -106.6933
31.8759 -106.7316
31.8759 -106.7698
31.8759 -106.8080
31.8759 -106.8463
31.8759 -106.8845
31.8759 -106.9228
31.8759 -106.9610
31.8759 -106.9992
31.8399 -107.0375
31.8399 -107.0757
31.8399 -107.1140
31.8399 -107.1522
31.8399 -107.1904
31.8399 -107.2287
31.8399 -107.2669
31.8399 -107.3052
31.8399 -107.3434
31.8399 -107.3816
31.8399 -107.4199
31.8399 -107.4581
31.8040 -107.4964
31.8040 -107.5346
31.8040 -107.5728
31.8040 -107.6111
31.8399 -107.6493
31.8759 -107.6875
31.8759 -107.7258
31.9118 -107.7640
31.9477 -107.8023
31.9837 -107.8405
31.9837 -107.8787
31.9837 -107.9170
31.9837 -107.9552
31.9477 -107.9935
31.9477 -108.0317
31.9118 -108.0699
31.7681 -108.1082
31.6243 -108.1464
31.4806 -108.1847
31.4087 -108.2229
31.4087 -108.2611
31.3728 -108.2994
31.3728 -108.3376
31.3728 -108.3758
31.3728 -108.4141
31.3728 -108.4523
31.3728 -108.4906
31.3728 -108.5288
31.3728 -108.5670
31.3728 -108.6053
31.3728 -108.6435
31.4087 -108.6818
31.4087 -108.7200
31.4447 -108.7582
31.4806 -108.7965
31.5165 -108.8347
31.5165 -108.8730
31.5165 -108.9112
31.5165 -108.9494
31.5165 -108.9877
31.5165 -109.0259
31.5165 -109.0641
31.5165 -109.1024
31.5165 -109.1406
31.4806 -109.1789
31.4806 -109.2171
31.4806 -109.2553
31.4806 -109.2936
31.4806 -109.3318
31.4806 -109.3701
31.4806 -109.4083
31.4806 -109.4465
31.4806 -109.4848
31.4806 -109.5230
31.4447 -109.5613
31.4447 -109.5995
31.4447 -109.6377
31.4447 -109.6760
31.4447 -109.7142
31.4447 -109.7524
31.4447 -109.7907
31.4447 -109.8289
31.4447 -109.8672
31.4447 -109.9054
31.4087 -109.9436
31.4087 -109.9819
31.4087 -110.0201
31.4087 -110.0584
31.4087 -110.0966
31.4087 -110.1348
31.4087 -110.1731
31.4087 -110.2113
31.4087 -110.2496
31.4087 -110.2878
31.3728 -110.3260
31.3728 -110.3643
31.3728 -110.4025
31.3728 -110.4408
31.3728 -110.4790
31.3728 -110.5172
31.3728 -110.5555
31.4087 -110.5937
31.4087 -110.6319
31.4447 -110.6702
31.4806 -110.7084
31.4806 -110.7467
31.5165 -110.7849
31.5165 -110.8231
31.5165 -110.8614
31.5165 -110.8996
31.5165 -110.9379
31.5165 -110.9761
31.5165 -111.0143
31.5165 -111.0526
31.4806 -111.0908
31.4806 -111.1291
31.4806 -111.1673
31.4806 -111.2055
31.4806 -111.2438
31.4806 -111.2820
31.4806 -111.3203
31.4806 -111.3585
31.4806 -111.3967
31.4806 -111.4350
31.4806 -111.4732
31.5165 -111.5114
31.5525 -111.5497
31.5884 -111.5879
31.5884 -111.6262
31.6243 -111.6644
31.6243 -111.7026
31.6243 -111.7409
31.6243 -111.7791
31.5884 -111.8174
31.5884 -111.8556
31.6243 -111.8938
31.6243 -111.9321
31.6603 -111.9703
31.6962 -112.0086
31.6962 -112.0468
31.7321 -112.0850
31.7681 -112.1233
31.8040 -112.1615
31.8040 -112.1997
31.8399 -112.2380
31.8759 -112.2762
31.8759 -112.3145
31.9118 -112.3527
31.9118 -112.3909
31.9118 -112.4292
31.9118 -112.4674
31.9118 -112.5057
31.8759 -112.5439
31.9118 -112.5821
31.9118 -112.6204
31.9477 -112.6586
31.9837 -112.6969
31.9837 -112.7351
32.0196 -112.7733
32.0555 -112.8116
32.0555 -112.8498
32.0196 -112.8880
32.0196 -112.9263
32.0196 -112.9645
32.0196 -113.0028
32.0555 -113.0410
32.0555 -113.0792
32.0915 -113.1175
32.1274 -113.1557
32.1274 -113.1940
32.1633 -113.2322
32.1633 -113.2704
32.1633 -113.3087
32.1633 -113.3469
32.1633 -113.3852
32.1633 -113.4234
32.1633 -113.4616
32.1633 -113.4999
32.1993 -113.5381
32.2352 -113.5764
32.2352 -113.6146
32.2711 -113.6528
32.3071 -113.6911
32.3071 -113.7293
32.3071 -113.7675
32.3071 -113.8058
32.3071 -113.8440
32.2711 -113.8823
32.2711 -113.9205
32.3071 -113.9587
32.3430 -113.9970
32.3430 -114.0352
32.3789 -114.0735
32.4149 -114.1117
32.4149 -114.1499
32.4508 -114.1882
32.4149 -114.2264
32.4149 -114.2646
32.4149 -114.3029
32.4149 -114.3411
32.4149 -114.3794
32.4508 -114.4176
32.4508 -114.4558
32.4867 -114.4941
32.5227 -114.5323
32.5227 -114.5706
32.5586 -114.6088
32.5945 -114.6470
32.6305 -114.6853
32.7023 -114.7235
32.7383 -114.7618
32.7742 -114.8000
32.8461 -114.8382
32.8820 -114.8765
32.8820 -114.9147
32.8820 -114.9530
32.8820 -114.9912
32.8820 -115.0294
32.8820 -115.0677
32.8820 -115.1059
32.8820 -115.1441
32.8461 -115.1824
32.8461 -115.2206
32.8461 -115.2589
32.8461 -115.2971
32.8461 -115.3353
32.8461 -115.3736
32.8461 -115.4118
32.8101 -115.4501
32.8101 -115.4883
32.8101 -115.5265
32.8101 -115.5648
32.8101 -115.6030
32.8101 -115.6413
32.8101 -115.6795
32.7742 -115.7177
32.7742 -115.7560
32.7742 -115.7942
32.7742 -115.8325
32.7742 -115.8707
32.7742 -115.9089
32.7742 -115.9472
32.7742 -115.9854
32.7383 -116.0236
32.7383 -116.0619
32.7383 -116.1001
32.7383 -116.1384
32.7383 -116.1766
32.7383 -116.2148
32.7383 -116.2531
32.7023 -116.2913
32.7023 -116.3296
32.7023 -116.3678
32.7023 -116.4060
32.7023 -116.4443
32.7023 -116.4825
32.7023 -116.5208
32.6664 -116.5590
32.6664 -116.5972
32.6664 -116.6355
32.6664 -116.6737
32.6664 -116.7119
32.6664 -116.7502
32.6664 -116.7884
32.6305 -116.8267
32.6305 -116.8649
32.6305 -116.9031
32.6305 -116.9414
32.6305 -116.9796
32.6305 -117.0179
32.5945 -117.0561
32.5945 -117.0943
32.5945 -117.1326
32.5945 -117.1708
32.5945 -117.2091
32.5945 -117.2473
32.5945 -117.2855
32.5586 -117.3238
32.5586 -117.3620
32.5586 -117.4003
32.5586 -117.4385
32.5227 -117.4767
32.4867 -117.5150
32.4149 -117.5532
32.3789 -117.5914
32.3430 -117.6297
32.3430 -117.6679
32.3430 -117.7062
32.3430 -117.7444
32.3430 -117.7826
32.3071 -117.8209
32.3071 -117.8591
32.3071 -117.8974
32.3071 -117.9356
32.3071 -117.9738
32.3071 -118.0121
32.2711 -118.0503
32.2352 -118.0886
32.1993 -118.1268
32.1274 -118.1650
32.0915 -118.2033
32.0915 -118.2415
32.0555 -118.2797
32.0555 -118.3180
32.0555 -118.3562
32.0555 -118.3945
32.0555 -118.4327
32.0555 -118.4709
32.0196 -118.5092
32.0196 -118.5474
32.0196 -118.5857
32.0196 -118.6239
31.9837 -118.6621
31.9477 -118.7004
31.9118 -118.7386
31.8399 -118.7769
31.8040 -118.8151
31.8040 -118.8533
31.8040 -118.8916
31.8040 -118.9298
31.7681 -118.9680
31.7681 -119.0063
31.7681 -119.0445
31.7681 -119.0828
31.7681 -119.1210
31.7681 -119.1592
31.7321 -119.1975
31.7321 -119.2357
31.6962 -119.2740
31.6603 -119.3122
31.5884 -119.3504
31.5525 -119.3887
31.5165 -119.4269
31.5165 -119.4652
31.5165 -119.5034
31.5165 -119.5416
31.5165 -119.5799
31.4806 -119.6181
31.4806 -119.6563
31.4806 -119.6946
31.4806 -119.7328
31.4806 -119.7711
31.4806 -119.8093
31.4447 -119.8475
31.4447 -119.8858
31.4447 -119.9240
31.4447 -119.9623
31.4447 -120.0005
31.4087 -120.0387
31.3728 -120.0770
31.3369 -120.1152
31.2650 -120.1535
31.2291 -120.1917
31.2291 -120.2299
31.1931 -120.2682
31.1931 -120.3064
31.1931 -120.3447
31.1931 -120.3829


More information about the Met_help mailing list