Skip to content

Instantly share code, notes, and snippets.

@maptastik
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maptastik/029ef9eb93762576f4f7 to your computer and use it in GitHub Desktop.
Save maptastik/029ef9eb93762576f4f7 to your computer and use it in GitHub Desktop.
BCC Routes
[user]
name = maptastik
email = ryancooper729@gmail.com
[core]
autocrlf = input
safecrlf = false
[filter "lfs"]
clean = git lfs clean %f
smudge = git lfs smudge %f
required = true
L.mapbox.accessToken = 'pk.eyJ1IjoiZ3NjcGxhbm5pbmciLCJhIjoiRVZMNXpsQSJ9.5OxUlJTCDplPkdkKNlB91A';
var map = L.map('map').setView([38.046441, -84.497019], 10);
var base = L.tileLayer('http://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png', {
attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> &copy; <a href="http://cartodb.com/attributions">CartoDB</a>',
subdomains: 'abcd',
maxZoom: 19
}).addTo(map);
new L.geoJson({"type": "LineString","coordinates":[[0,0],[0,0]]}).addTo(map);
var mapsense_url = "https://{s}-api.mapsense.co/explore/api/universes/mapsense.demographics/{z}/{x}/{y}.topojson?s=10&ringSpan=8&api-key=key-b4bc5affdce44f7d86e3efdf72f5d0d4";
mapsense_url += "&where=layer=='county'";
new L.TileLayer.d3_JSON(mapsense_url, {
attribution: '<a target="_blank" href="https://developer.mapsense.co/tileViewer/?tileset=mapsense.demographics">©Mapsense ©OpenStreetMap</a>',
// https://developer.mapsense.co/documentation/basemap
mapsenseStyle: false // choose a basemap style, or style your own at styler.mapsense.co
}).addTo(map);
var bcc2013, bcc2014, bcc2015, ky, layers
var kyStyle = {
color: '#333',
fillOpacity: 0,
// opacity:0.1,
weight: 2
}
var style = {
color: '#E80087',
opacity: 0.06,
weight: 1
}
bcc2013 = omnivore.topojson('bcc_2013.json')
.on('ready', function(e) {
layers = e.target;
myStyleFunction();
}).addTo(map);
bcc2014 = omnivore.topojson('bcc_2014.json')
.on('ready', function(e) {
layers = e.target;
myStyleFunction();
}).addTo(map);
bcc2015 = omnivore.topojson('bcc_201501-201507.json')
.on('ready', function(e) {
layers = e.target;
myStyleFunction();
}).addTo(map);
// ky = omnivore.topojson('ky_counties.json')
// .on('ready', function(e) {
// layers = e.target;
// kyStyleFunction();
// }).addTo(map);
function kyStyleFunction() {
layers.setStyle(kyStyle);
}
function myStyleFunction() {
layers.setStyle(style);
}
L.control.layers({}, {
'2013': bcc2013,
'2014': bcc2014,
'2015': bcc2015
},{collapsed:false}).addTo(map);
$( "form" ).before( "<p><strong>BCC Ride Years</strong></p>" );
L.TileLayer.d3_JSON = L.TileLayer.extend({
//extending L.TileLayer to support topoJSON and geoJSON vector sources
//rendering with d3, borrows from zjonsson & https://github.com/glenrobertson/leaflet-tilelayer-geojson/
onAdd: function(map) {
var map_container_svg = d3.select(map._container).select("svg");
L.TileLayer.prototype.onAdd.call(this, map);
this.mapsenseStyle = this.options.mapsenseStyle;
this._path = d3.geo.path().projection({
stream: function(stream) {
// no sampling along great arc
// just a pure projection, without the default d3 projection-stream pipeline
// so, long lines don't make curves, i.e. they obey the mercator projection
return {
point: function(x, y) {
var p = map.latLngToLayerPoint(new L.LatLng(y, x));
stream.point(p.x, p.y);
},
lineStart: stream.lineStart,
lineEnd: stream.lineEnd,
polygonStart: stream.polygonStart,
polygonEnd: stream.polygonEnd,
sphere: stream.sphere
};
}
});
this.on("tileunload", function(d) {
if (d.tile.xhr) d.tile.xhr.abort();
if (d.tile.nodes) d.tile.nodes.remove();
d.tile.nodes = null;
d.tile.xhr = null;
});
},
_loadTile: function(tile, tilePoint) {
var self = this;
this._adjustTilePoint(tilePoint);
var mapsenseStyle = this.mapsenseStyle;
if (!tile.nodes && !tile.xhr) {
tile.xhr = d3.json(this.getTileUrl(tilePoint), function(data) {
var geoJson;
if (data === '') {
// Ignore empty submissions
} else {
geoJson = topo2Geo(data);
}
tile.xhr = null;
nwPoint = tilePoint.multiplyBy(256);
sePoint = nwPoint.add([256, 256]);
nw = map.unproject(nwPoint);
se = map.unproject(sePoint);
var point = map.latLngToLayerPoint(new L.LatLng(nw.lat, nw.lng));
var tile_coords = "tile_" + point.x + "_" + point.y;
d3.select(map._container).select("svg")
.append("clipPath")
.attr("id", tile_coords)
.attr("style", "fill: none; stroke: pink; transform: translate(" + point.x + "px, " + point.y + "px); -webkit-transform: translate(" + point.x + "px, " + point.y + "px);")
.append("rect")
.attr("width", "256")
.attr("height", "256");
d3.select(map._container).select("svg")
.append("rect")
.attr("style", "transform: translate(" + point.x + "px, " + point.y + "px); -webkit-transform: translate(" + point.x + "px, " + point.y + "px);")
.attr("width", "256")
.attr("height", "256")
.attr("class", "mapsense-"+self.mapsenseStyle +" tile-background");
tile.nodes = d3.select(map._container).select("svg").append("g");
// tile.nodes is now a bunch of appended g's
var grp = tile.nodes.selectAll("path")
.data(geoJson.features)
.enter()
.append("g")
.attr("class", "groupr");
grp.append("path")
.attr("d", self._path)
.attr("clip-path", "url(#" + tile_coords + ")")
.attr("class", self.options.class)
.attr("class", function(d) { // this data is a bunch of features
var zoomClass = "_" + Math.floor(map.getZoom());
var classes = ['mapsense-'+self.mapsenseStyle];
if (d.properties) {
if (d.properties) {
if (d.properties.layer)
classes.push(d.properties.layer);
if (d.properties.natural)
classes.push(d.properties.natural);
if (d.properties.sub_layer)
classes.push(d.properties.sub_layer);
} else {
classes.push('unknown');
}
classes = classes.join(' ');
return classes;
} else {}
});
});
}
}
});
function topologyFeatures(topology) {
function convert(topology, object, layer, features) {
var featureOrCollection = topojson.feature(topology, object),
layerFeatures;
if (featureOrCollection.type === "FeatureCollection") {
layerFeatures = featureOrCollection.features;
} else {
layerFeatures = [featureOrCollection];
}
layerFeatures.forEach(function(f) {
f.properties.layer = layer;
});
features.push.apply(features, layerFeatures);
}
var features = [];
for (var o in topology.objects) {
convert(topology, topology.objects[o], o, features);
}
return features;
}
function topo2Geo(tj) {
var gj = {
type: "FeatureCollection",
features: topologyFeatures(tj)
};
return gj;
}
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[{"type":"Feature","properties":{"name":"Paul's Mill"},"geometry":{"type":"LineString","coordinates":[[-84.59093,37.98573],[-84.59164,37.98598],[-84.59211,37.98603],[-84.59215,37.98622],[-84.59236,37.98621],[-84.59282,37.98625],[-84.5929,37.98626],[-84.5945,37.98636],[-84.59466,37.98638],[-84.5957,37.98681],[-84.59863,37.98725],[-84.60215,37.98808],[-84.60282,37.98809],[-84.60346,37.98769],[-84.6043,37.98622],[-84.60494,37.98609],[-84.60539,37.98624],[-84.60563,37.98635],[-84.60608,37.98652],[-84.60653,37.98558],[-84.6086,37.98155],[-84.60898,37.98075],[-84.60902,37.98067],[-84.61083,37.977],[-84.61088,37.9769],[-84.6114,37.97588],[-84.61154,37.9756],[-84.61164,37.97542],[-84.61202,37.97467],[-84.61243,37.97407],[-84.61369,37.97318],[-84.61375,37.97314],[-84.61475,37.97262],[-84.6153,37.97235],[-84.61569,37.97219],[-84.61595,37.9722],[-84.61682,37.97246],[-84.62003,37.97348],[-84.62024,37.97354],[-84.62077,37.97371],[-84.62529,37.97515],[-84.62786,37.97593],[-84.62893,37.97627],[-84.63198,37.97719],[-84.63244,37.97714],[-84.63335,37.97679],[-84.63403,37.97658],[-84.63429,37.97648],[-84.63523,37.97611],[-84.63611,37.97597],[-84.6377,37.9765],[-84.63849,37.97678],[-84.64028,37.97742],[-84.64049,37.9775],[-84.6409,37.97764],[-84.64109,37.97771],[-84.64139,37.97748],[-84.64184,37.97713],[-84.64217,37.97687],[-84.64229,37.97677],[-84.64392,37.97549],[-84.64414,37.97533],[-84.64535,37.9745],[-84.64547,37.97441],[-84.64821,37.97213],[-84.64811,37.97127],[-84.64728,37.97029],[-84.64706,37.96984],[-84.64785,37.96818],[-84.64797,37.96794],[-84.64915,37.96551],[-84.6493,37.9652],[-84.64983,37.96411],[-84.65106,37.9626],[-84.6512,37.96239],[-84.6528,37.95967],[-84.65286,37.95956],[-84.65351,37.95778],[-84.65355,37.95762],[-84.65373,37.957],[-84.65453,37.9556],[-84.65478,37.95514],[-84.65567,37.95353],[-84.6558,37.95327],[-84.65606,37.95332],[-84.65823,37.95378],[-84.65933,37.95402],[-84.66033,37.95424],[-84.66058,37.95429],[-84.66079,37.95434],[-84.66235,37.95482],[-84.66256,37.95491],[-84.66276,37.955],[-84.66333,37.95411],[-84.66388,37.95323],[-84.66451,37.95222],[-84.66438,37.95164],[-84.66445,37.95104],[-84.66453,37.95038],[-84.66468,37.94898],[-84.66476,37.94826],[-84.66488,37.94747],[-84.66659,37.94444],[-84.6665,37.94423],[-84.66574,37.94402],[-84.66505,37.94364],[-84.66367,37.94346],[-84.66316,37.94315],[-84.66407,37.94048],[-84.66397,37.94008],[-84.66373,37.93977],[-84.66276,37.93834],[-84.66181,37.93657],[-84.66176,37.9365],[-84.66092,37.93552],[-84.66077,37.93534],[-84.66069,37.9352],[-84.66066,37.93509],[-84.66064,37.93496],[-84.66028,37.93238],[-84.65999,37.93028],[-84.65977,37.92864],[-84.65974,37.92833],[-84.65967,37.92701],[-84.65964,37.92641],[-84.65956,37.92429],[-84.66075,37.92149],[-84.66015,37.9202],[-84.65944,37.91968],[-84.6593,37.91942],[-84.65796,37.91577],[-84.6573,37.91268],[-84.65727,37.91252],[-84.65662,37.90845],[-84.6563,37.90796],[-84.65459,37.90652],[-84.65474,37.90641],[-84.6548,37.90636],[-84.65565,37.90566],[-84.65578,37.90555],[-84.65749,37.90419],[-84.66208,37.90116],[-84.66232,37.90113],[-84.66272,37.90151],[-84.66293,37.90154],[-84.66454,37.90046],[-84.66486,37.90024],[-84.66636,37.89929],[-84.66638,37.8993],[-84.66671,37.89964],[-84.66857,37.90163],[-84.66862,37.90162],[-84.66889,37.90154],[-84.66942,37.90137],[-84.67,37.90118],[-84.67449,37.89971],[-84.67491,37.89957],[-84.67505,37.89953],[-84.67759,37.89939],[-84.68207,37.89845],[-84.68442,37.89778],[-84.68569,37.89753],[-84.68644,37.89751],[-84.68724,37.89781],[-84.68975,37.8993],[-84.69026,37.89947],[-84.69034,37.90002],[-84.69137,37.9017],[-84.69429,37.90477],[-84.69453,37.90499],[-84.69508,37.90552],[-84.69593,37.90632],[-84.69833,37.90461],[-84.70306,37.90123],[-84.70371,37.90069],[-84.7038,37.90061],[-84.70407,37.90071],[-84.70447,37.90082],[-84.70463,37.90087],[-84.70748,37.90146],[-84.70899,37.90123],[-84.70993,37.9014],[-84.7105,37.90239],[-84.71032,37.90446],[-84.71054,37.90585],[-84.71057,37.90601],[-84.71071,37.90799],[-84.71105,37.90899],[-84.71128,37.9093],[-84.71155,37.90962],[-84.71214,37.9102],[-84.71261,37.91176],[-84.71251,37.91175],[-84.71215,37.91172],[-84.71197,37.9117],[-84.71162,37.91167],[-84.71044,37.9118],[-84.70789,37.91268],[-84.70654,37.91403],[-84.70393,37.91551],[-84.69979,37.91871],[-84.69437,37.90992],[-84.69406,37.91012],[-84.69355,37.9105],[-84.69337,37.91064],[-84.69284,37.91102],[-84.69243,37.91132],[-84.69062,37.9127],[-84.69039,37.91314],[-84.69023,37.91402],[-84.68988,37.91542],[-84.68751,37.9172],[-84.68694,37.91762],[-84.68548,37.91863],[-84.68434,37.91934],[-84.68332,37.91993],[-84.68228,37.92054],[-84.68096,37.92139],[-84.6796,37.92228],[-84.67845,37.92322],[-84.67601,37.92562],[-84.67377,37.92755],[-84.67331,37.92792],[-84.67258,37.92852],[-84.6711,37.92974],[-84.6704,37.9303],[-84.66887,37.93151],[-84.66775,37.93227],[-84.66567,37.93363],[-84.66399,37.93434],[-84.6613,37.93506],[-84.66069,37.9352],[-84.66077,37.93534],[-84.66092,37.93552],[-84.66176,37.9365],[-84.66181,37.93657],[-84.66276,37.93834],[-84.66373,37.93977],[-84.66397,37.94008],[-84.66407,37.94048],[-84.66316,37.94315],[-84.66367,37.94346],[-84.66505,37.94364],[-84.66574,37.94402],[-84.6665,37.94423],[-84.66659,37.94444],[-84.66488,37.94747],[-84.66476,37.94826],[-84.66468,37.94898],[-84.66453,37.95038],[-84.66445,37.95104],[-84.66438,37.95164],[-84.66451,37.95222],[-84.66388,37.95323],[-84.66333,37.95411],[-84.66276,37.955],[-84.66256,37.95491],[-84.66235,37.95482],[-84.66079,37.95434],[-84.66058,37.95429],[-84.66033,37.95424],[-84.65933,37.95402],[-84.65823,37.95378],[-84.65606,37.95332],[-84.6558,37.95327],[-84.65567,37.95353],[-84.65478,37.95514],[-84.65453,37.9556],[-84.65373,37.957],[-84.65355,37.95762],[-84.65351,37.95778],[-84.65286,37.95956],[-84.6528,37.95967],[-84.6512,37.96239],[-84.65106,37.9626],[-84.64983,37.96411],[-84.6493,37.9652],[-84.64915,37.96551],[-84.64797,37.96794],[-84.64785,37.96818],[-84.64706,37.96984],[-84.64728,37.97029],[-84.64811,37.97127],[-84.64821,37.97213],[-84.64547,37.97441],[-84.64535,37.9745],[-84.64414,37.97533],[-84.64392,37.97549],[-84.64229,37.97677],[-84.64217,37.97687],[-84.64184,37.97713],[-84.64139,37.97748],[-84.64109,37.97771],[-84.6409,37.97764],[-84.64049,37.9775],[-84.64028,37.97742],[-84.63849,37.97678],[-84.6377,37.9765],[-84.63611,37.97597],[-84.63523,37.97611],[-84.63429,37.97648],[-84.63403,37.97658],[-84.63335,37.97679],[-84.63244,37.97714],[-84.63198,37.97719],[-84.62893,37.97627],[-84.62786,37.97593],[-84.62529,37.97515],[-84.62077,37.97371],[-84.62024,37.97354],[-84.62003,37.97348],[-84.61682,37.97246],[-84.61595,37.9722],[-84.61569,37.97219],[-84.6153,37.97235],[-84.61475,37.97262],[-84.61375,37.97314],[-84.61369,37.97318],[-84.61243,37.97407],[-84.61202,37.97467],[-84.61164,37.97542],[-84.61154,37.9756],[-84.6114,37.97588],[-84.61088,37.9769],[-84.61083,37.977],[-84.60902,37.98067],[-84.60898,37.98075],[-84.6086,37.98155],[-84.60653,37.98558],[-84.60608,37.98652],[-84.60563,37.98635],[-84.60539,37.98624],[-84.60494,37.98609],[-84.6043,37.98622],[-84.60346,37.98769],[-84.60282,37.98809],[-84.60215,37.98808],[-84.59863,37.98725],[-84.5957,37.98681],[-84.59466,37.98638],[-84.5945,37.98636],[-84.5929,37.98626],[-84.59282,37.98625],[-84.59236,37.98621],[-84.59232,37.98601],[-84.59211,37.98603],[-84.59164,37.98598],[-84.59093,37.98573]]}},
{"type":"Feature","properties":{"name":"Year's End Miles"},"geometry":{"type":"LineString","coordinates":[[-84.40258,37.99841],[-84.40249,37.99785],[-84.4025,37.99748],[-84.40258,37.99698],[-84.40213,37.99692],[-84.39974,37.99662],[-84.39963,37.9966],[-84.39792,37.99625],[-84.39711,37.99609],[-84.39655,37.99598],[-84.39657,37.9961],[-84.39658,37.99612],[-84.3966,37.99618],[-84.39663,37.99623],[-84.39683,37.99656],[-84.39707,37.99696],[-84.39768,37.99811],[-84.39756,37.99855],[-84.39744,37.99867],[-84.39674,37.99927],[-84.396,37.9999],[-84.39581,38.00004],[-84.39576,38.00008],[-84.39468,38.00094],[-84.39397,38.00151],[-84.39278,38.00256],[-84.39264,38.00269],[-84.39237,38.00297],[-84.39218,38.00316],[-84.39185,38.00351],[-84.39173,38.00363],[-84.39166,38.0037],[-84.39152,38.00385],[-84.39133,38.00404],[-84.39107,38.00431],[-84.38969,38.00557],[-84.38929,38.0059],[-84.38842,38.00668],[-84.38785,38.0072],[-84.38754,38.00749],[-84.38741,38.00766],[-84.38722,38.00819],[-84.3872,38.0083],[-84.38724,38.00862],[-84.38725,38.00866],[-84.38727,38.00869],[-84.38729,38.00873],[-84.38736,38.00881],[-84.38731,38.00885],[-84.38727,38.00888],[-84.38725,38.00893],[-84.38726,38.00899],[-84.3873,38.00908],[-84.38734,38.0092],[-84.38734,38.00927],[-84.38721,38.0093],[-84.38716,38.00932],[-84.38711,38.00935],[-84.38705,38.00941],[-84.387,38.00946],[-84.38686,38.0098],[-84.38676,38.01021],[-84.38673,38.01031],[-84.3866,38.01049],[-84.38631,38.01074],[-84.38596,38.01112],[-84.3856,38.01155],[-84.385,38.01229],[-84.38462,38.0127],[-84.38346,38.01384],[-84.38254,38.01479],[-84.38204,38.01529],[-84.3813,38.01613],[-84.38075,38.0167],[-84.38016,38.01732],[-84.37971,38.01769],[-84.37843,38.01861],[-84.37633,38.02015],[-84.37491,38.02119],[-84.37419,38.02172],[-84.37359,38.02217],[-84.37292,38.02266],[-84.37286,38.02269],[-84.37279,38.02271],[-84.37236,38.02246],[-84.37207,38.0225],[-84.37162,38.02283],[-84.37058,38.02362],[-84.36854,38.0251],[-84.36578,38.02711],[-84.3651,38.02762],[-84.36421,38.02825],[-84.36266,38.02937],[-84.36218,38.02973],[-84.36206,38.0298],[-84.36193,38.02987],[-84.36169,38.03002],[-84.36096,38.03055],[-84.36056,38.03084],[-84.36004,38.03121],[-84.35984,38.03136],[-84.3596,38.03158],[-84.35993,38.03213],[-84.36434,38.03596],[-84.36629,38.03762],[-84.36814,38.03921],[-84.36897,38.03994],[-84.37034,38.0411],[-84.3763,38.04633],[-84.3767,38.04711],[-84.37706,38.04746],[-84.37866,38.04872],[-84.37928,38.04921],[-84.38075,38.05037],[-84.3835,38.05259],[-84.38366,38.05274],[-84.38467,38.05343],[-84.38527,38.05377],[-84.38577,38.05405],[-84.38722,38.05485],[-84.38799,38.05528],[-84.38879,38.05573],[-84.38916,38.0559],[-84.39201,38.0571],[-84.39398,38.05792],[-84.39805,38.05958],[-84.39906,38.06001],[-84.40103,38.06136],[-84.40231,38.06224],[-84.40303,38.06279],[-84.40382,38.06434],[-84.40087,38.06656],[-84.3964,38.06925],[-84.39728,38.06931],[-84.39757,38.06937],[-84.40001,38.06997],[-84.40206,38.07065],[-84.40617,38.07255],[-84.40703,38.0729],[-84.40761,38.07313],[-84.40918,38.07384],[-84.41101,38.07528],[-84.41175,38.07565],[-84.41226,38.07606],[-84.41319,38.07679],[-84.41033,38.07895],[-84.40498,38.08253],[-84.40034,38.08573],[-84.39533,38.0894],[-84.39436,38.09023],[-84.39382,38.09074],[-84.38848,38.09559],[-84.38275,38.10131],[-84.37865,38.10292],[-84.37803,38.10316],[-84.37679,38.10366],[-84.37551,38.10426],[-84.37429,38.10289],[-84.37142,38.09976],[-84.36979,38.09797],[-84.36853,38.09655],[-84.36837,38.09637],[-84.36672,38.09421],[-84.36132,38.08939],[-84.36061,38.08865],[-84.35934,38.08755],[-84.35839,38.08675],[-84.35777,38.08619],[-84.35759,38.08584],[-84.35757,38.08575],[-84.35769,38.08512],[-84.35899,38.08333],[-84.35923,38.0818],[-84.35918,38.08132],[-84.35894,38.0811],[-84.35741,38.08036],[-84.35674,38.07974],[-84.35433,38.0759],[-84.35426,38.07576],[-84.35382,38.07489],[-84.35357,38.07438],[-84.35337,38.07396],[-84.35156,38.07026],[-84.35111,38.06935],[-84.35031,38.0677],[-84.34991,38.06686],[-84.34978,38.06658],[-84.34975,38.06636],[-84.34986,38.06614],[-84.3501,38.06572],[-84.35029,38.06536],[-84.35139,38.06341],[-84.35159,38.06305],[-84.35187,38.06255],[-84.35203,38.06226],[-84.35216,38.062],[-84.35239,38.06162],[-84.35256,38.06132],[-84.35294,38.06041],[-84.3531,38.05749],[-84.35312,38.05718],[-84.35324,38.05421],[-84.35328,38.05354],[-84.35334,38.05273],[-84.35335,38.05251],[-84.35338,38.05159],[-84.3534,38.05122],[-84.35366,38.0462],[-84.35397,38.04461],[-84.35419,38.04355],[-84.35545,38.03719],[-84.35568,38.03609],[-84.35605,38.03371],[-84.35621,38.03135],[-84.35625,38.03074],[-84.35628,38.03001],[-84.3563,38.02984],[-84.35632,38.02967],[-84.35695,38.02968],[-84.35714,38.02968],[-84.35983,38.02961],[-84.36001,38.02961],[-84.36152,38.02977],[-84.36162,38.0298],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38734,38.0092],[-84.3873,38.00908],[-84.38726,38.00899],[-84.38725,38.00893],[-84.38727,38.00888],[-84.38731,38.00885],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39618,38.00074],[-84.3965,38.00126],[-84.39768,38.00321],[-84.39795,38.00426],[-84.39796,38.00449],[-84.39797,38.00476],[-84.39795,38.00492],[-84.39772,38.00579],[-84.39713,38.00764],[-84.39685,38.00882],[-84.39672,38.01051],[-84.39672,38.01084],[-84.39695,38.01091],[-84.40679,38.01194],[-84.41458,38.01278],[-84.41652,38.01318],[-84.42001,38.0135],[-84.41652,38.01318],[-84.41458,38.01278],[-84.40679,38.01194],[-84.40677,38.01069],[-84.40698,38.01001],[-84.40689,38.00951],[-84.40597,38.00774],[-84.40485,38.00678],[-84.40468,38.00638],[-84.4047,38.00587],[-84.4049,38.00545],[-84.40576,38.00479],[-84.40538,38.00426],[-84.40531,38.00363],[-84.40603,38.00245],[-84.40651,38.00208],[-84.4083,38.00116],[-84.40978,38.00015],[-84.4079,37.99852],[-84.40572,37.9975],[-84.4043,37.99715],[-84.39979,37.99657],[-84.40007,37.99571],[-84.40052,37.99504],[-84.40086,37.99476],[-84.40181,37.99386],[-84.40252,37.9922],[-84.40288,37.99053],[-84.40334,37.98986],[-84.40439,37.98919],[-84.40737,37.98848],[-84.40767,37.98842],[-84.40841,37.9881],[-84.40888,37.9876],[-84.40934,37.98577],[-84.40994,37.98491],[-84.41256,37.98292],[-84.41324,37.98257],[-84.41391,37.9825],[-84.41452,37.98264],[-84.41521,37.98314],[-84.41602,37.98378],[-84.41611,37.98382],[-84.41699,37.98407],[-84.41765,37.98407],[-84.41847,37.98383],[-84.41913,37.98341],[-84.41936,37.98325],[-84.41968,37.98306],[-84.41974,37.98303],[-84.42228,37.98249],[-84.42239,37.98243],[-84.42266,37.98227],[-84.42271,37.98223],[-84.42285,37.98206],[-84.42271,37.98198],[-84.42209,37.98238],[-84.42143,37.98253],[-84.42118,37.98255],[-84.42031,37.98265],[-84.4197,37.98285],[-84.41961,37.98289],[-84.41816,37.98375],[-84.4172,37.98391],[-84.41624,37.98367],[-84.41466,37.98249],[-84.4136,37.98232],[-84.41258,37.98264],[-84.41136,37.98354],[-84.41076,37.98396],[-84.41004,37.98453],[-84.40943,37.98524],[-84.40915,37.9857],[-84.40888,37.98685],[-84.40836,37.98761],[-84.40751,37.9882],[-84.40663,37.98847],[-84.40636,37.98853],[-84.40401,37.98909],[-84.40359,37.98925],[-84.40291,37.98981],[-84.40263,37.99028],[-84.40241,37.99176],[-84.40205,37.99282],[-84.40129,37.99397],[-84.40019,37.99509],[-84.39989,37.99559],[-84.39965,37.99653],[-84.39963,37.9966],[-84.39974,37.99662],[-84.40213,37.99692],[-84.40258,37.99698],[-84.4025,37.99748],[-84.40249,37.99785],[-84.40258,37.99841],[-84.40351,37.99831],[-84.40349,37.99773],[-84.40351,37.99831],[-84.40258,37.99841]]}},
{"type":"Feature","properties":{"name":"Bellerive to Bike Trail Out & Back 16 Miles v 1.0"},"geometry":{"type":"LineString","coordinates":[[-84.59061,37.98358],[-84.59062,37.98365],[-84.59063,37.98448],[-84.59088,37.98525],[-84.59093,37.98541],[-84.59093,37.98573],[-84.59164,37.98598],[-84.59195,37.98601],[-84.59211,37.98603],[-84.59232,37.98601],[-84.59226,37.98568],[-84.59074,37.98147],[-84.59073,37.98024],[-84.59114,37.97875],[-84.59148,37.97781],[-84.59315,37.97328],[-84.59562,37.96681],[-84.59644,37.9621],[-84.59683,37.95963],[-84.59749,37.95548],[-84.59748,37.95376],[-84.59761,37.95369],[-84.59798,37.95362],[-84.59819,37.95346],[-84.59828,37.95337],[-84.59946,37.95035],[-84.60112,37.94671],[-84.604,37.9417],[-84.60502,37.93788],[-84.60573,37.93382],[-84.60623,37.93285],[-84.60642,37.93253],[-84.60714,37.93149],[-84.61034,37.92939],[-84.61297,37.92748],[-84.61398,37.92657],[-84.615,37.92541],[-84.61514,37.92524],[-84.61609,37.92383],[-84.61626,37.92353],[-84.61642,37.9232],[-84.61639,37.92277],[-84.61648,37.92255],[-84.61627,37.92249],[-84.61518,37.92222],[-84.61482,37.92212],[-84.61461,37.92207],[-84.6147,37.92188],[-84.61479,37.92168],[-84.61491,37.9214],[-84.61736,37.91625],[-84.61767,37.91074],[-84.61768,37.91063],[-84.61852,37.90773],[-84.61886,37.90711],[-84.62102,37.90525],[-84.62182,37.9041],[-84.62323,37.90263],[-84.62796,37.89865],[-84.62874,37.89797],[-84.63036,37.89655],[-84.63143,37.89567],[-84.63172,37.89552],[-84.63181,37.8955],[-84.63191,37.89547],[-84.63201,37.89542],[-84.63192,37.89531],[-84.63207,37.89528],[-84.63289,37.89456],[-84.63724,37.89138],[-84.63891,37.88988],[-84.63724,37.89138],[-84.63289,37.89456],[-84.63207,37.89528],[-84.63192,37.89531],[-84.63201,37.89542],[-84.63191,37.89547],[-84.63181,37.8955],[-84.63172,37.89552],[-84.63143,37.89567],[-84.63036,37.89655],[-84.62874,37.89797],[-84.62796,37.89865],[-84.62323,37.90263],[-84.62182,37.9041],[-84.62102,37.90525],[-84.61886,37.90711],[-84.61852,37.90773],[-84.61768,37.91063],[-84.61767,37.91074],[-84.61736,37.91625],[-84.61491,37.9214],[-84.61479,37.92168],[-84.6147,37.92188],[-84.61461,37.92207],[-84.61482,37.92212],[-84.61518,37.92222],[-84.61627,37.92249],[-84.61648,37.92255],[-84.61639,37.92277],[-84.61642,37.9232],[-84.61626,37.92353],[-84.61609,37.92383],[-84.61514,37.92524],[-84.615,37.92541],[-84.61398,37.92657],[-84.61297,37.92748],[-84.61034,37.92939],[-84.60714,37.93149],[-84.60642,37.93253],[-84.60623,37.93285],[-84.60573,37.93382],[-84.60502,37.93788],[-84.604,37.9417],[-84.60112,37.94671],[-84.59946,37.95035],[-84.59828,37.95337],[-84.59819,37.95346],[-84.59798,37.95362],[-84.59761,37.95369],[-84.59724,37.95369],[-84.59731,37.95521],[-84.59548,37.96648],[-84.59294,37.97323],[-84.59108,37.97828],[-84.59048,37.9804],[-84.59052,37.98134],[-84.59091,37.98272],[-84.59026,37.98294],[-84.59059,37.98349]]}},
{"type":"Feature","properties":{"name":"Bellerive to Bike Trail Out & Back 17 Miles"},"geometry":{"type":"LineString","coordinates":[[-84.59061,37.98358],[-84.59062,37.98365],[-84.59063,37.98448],[-84.59088,37.98525],[-84.59093,37.98541],[-84.59093,37.98573],[-84.59164,37.98598],[-84.59195,37.98601],[-84.59164,37.98598],[-84.59093,37.98573],[-84.58712,37.98417],[-84.58553,37.98314],[-84.58307,37.98206],[-84.5821,37.98146],[-84.58,37.98082],[-84.5793,37.98041],[-84.57914,37.98034],[-84.57889,37.98025],[-84.57921,37.97965],[-84.58002,37.97877],[-84.5804,37.97807],[-84.58561,37.97907],[-84.58682,37.9793],[-84.5875,37.97614],[-84.58979,37.97271],[-84.58989,37.97255],[-84.59003,37.9723],[-84.59201,37.97293],[-84.59294,37.97323],[-84.59315,37.97328],[-84.59562,37.96681],[-84.59644,37.9621],[-84.59683,37.95963],[-84.59749,37.95548],[-84.59748,37.95376],[-84.59761,37.95369],[-84.59798,37.95362],[-84.59819,37.95346],[-84.59828,37.95337],[-84.59946,37.95035],[-84.60112,37.94671],[-84.604,37.9417],[-84.60502,37.93788],[-84.60573,37.93382],[-84.60623,37.93285],[-84.60642,37.93253],[-84.60714,37.93149],[-84.61034,37.92939],[-84.61297,37.92748],[-84.61398,37.92657],[-84.615,37.92541],[-84.61514,37.92524],[-84.61609,37.92383],[-84.61626,37.92353],[-84.61642,37.9232],[-84.61639,37.92277],[-84.61648,37.92255],[-84.61627,37.92249],[-84.61518,37.92222],[-84.61482,37.92212],[-84.61461,37.92207],[-84.6147,37.92188],[-84.61479,37.92168],[-84.61491,37.9214],[-84.61736,37.91625],[-84.61767,37.91074],[-84.61768,37.91063],[-84.61852,37.90773],[-84.61886,37.90711],[-84.62102,37.90525],[-84.62182,37.9041],[-84.62323,37.90263],[-84.62796,37.89865],[-84.62874,37.89797],[-84.63036,37.89655],[-84.63143,37.89567],[-84.63172,37.89552],[-84.63181,37.8955],[-84.63191,37.89547],[-84.63201,37.89542],[-84.63192,37.89531],[-84.63207,37.89528],[-84.63289,37.89456],[-84.63724,37.89138],[-84.63891,37.88988],[-84.63724,37.89138],[-84.63289,37.89456],[-84.63207,37.89528],[-84.63192,37.89531],[-84.63201,37.89542],[-84.63191,37.89547],[-84.63181,37.8955],[-84.63172,37.89552],[-84.63143,37.89567],[-84.63036,37.89655],[-84.62874,37.89797],[-84.62796,37.89865],[-84.62323,37.90263],[-84.62182,37.9041],[-84.62102,37.90525],[-84.61886,37.90711],[-84.61852,37.90773],[-84.61768,37.91063],[-84.61767,37.91074],[-84.61736,37.91625],[-84.61491,37.9214],[-84.61479,37.92168],[-84.6147,37.92188],[-84.61461,37.92207],[-84.61482,37.92212],[-84.61518,37.92222],[-84.61627,37.92249],[-84.61648,37.92255],[-84.61639,37.92277],[-84.61642,37.9232],[-84.61626,37.92353],[-84.61609,37.92383],[-84.61514,37.92524],[-84.615,37.92541],[-84.61398,37.92657],[-84.61297,37.92748],[-84.61034,37.92939],[-84.60714,37.93149],[-84.60642,37.93253],[-84.60623,37.93285],[-84.60573,37.93382],[-84.60502,37.93788],[-84.604,37.9417],[-84.60112,37.94671],[-84.59946,37.95035],[-84.59828,37.95337],[-84.59819,37.95346],[-84.59798,37.95362],[-84.59761,37.95369],[-84.59724,37.95369],[-84.59731,37.95521],[-84.59548,37.96648],[-84.59294,37.97323],[-84.59108,37.97828],[-84.59048,37.9804],[-84.59052,37.98134],[-84.59091,37.98272],[-84.59026,37.98294],[-84.59059,37.98349]]}},
{"type":"Feature","properties":{"name":"Georgetown-Hill 34 miles"},"geometry":{"type":"LineString","coordinates":[[-84.55887,38.21063],[-84.55901,38.2099],[-84.55894,38.2099],[-84.55904,38.20823],[-84.5513,38.20776],[-84.55131,38.20762],[-84.55137,38.20692],[-84.55145,38.20602],[-84.55148,38.20553],[-84.5516,38.20398],[-84.5492,38.20384],[-84.54763,38.20353],[-84.54835,38.20185],[-84.54831,38.20159],[-84.548,38.20137],[-84.54614,38.2008],[-84.54537,38.20054],[-84.53467,38.19686],[-84.53427,38.19672],[-84.52971,38.19519],[-84.52931,38.19504],[-84.52603,38.1939],[-84.50871,38.18792],[-84.50686,38.18701],[-84.50668,38.1873],[-84.50614,38.1882],[-84.50573,38.18891],[-84.5022,38.19507],[-84.50095,38.19728],[-84.50087,38.19743],[-84.49842,38.20202],[-84.49499,38.20405],[-84.49482,38.20414],[-84.49024,38.20683],[-84.48933,38.20726],[-84.4886,38.20744],[-84.48736,38.20767],[-84.48606,38.20781],[-84.48389,38.20677],[-84.4835,38.20631],[-84.48368,38.20556],[-84.4833,38.20545],[-84.4832,38.20602],[-84.48254,38.20721],[-84.47847,38.20742],[-84.47325,38.20559],[-84.46953,38.21173],[-84.46644,38.21602],[-84.46483,38.21854],[-84.46463,38.21911],[-84.4645,38.22094],[-84.4702,38.22027],[-84.4693,38.22179],[-84.46673,38.22366],[-84.46452,38.22579],[-84.45733,38.23395],[-84.45503,38.23685],[-84.45092,38.24159],[-84.45034,38.243],[-84.44919,38.24372],[-84.44707,38.24582],[-84.44578,38.24754],[-84.4361,38.25861],[-84.43545,38.25923],[-84.4319,38.26173],[-84.42555,38.26625],[-84.42308,38.26888],[-84.41758,38.27244],[-84.41695,38.27296],[-84.41283,38.2693],[-84.41251,38.26895],[-84.41229,38.26835],[-84.41375,38.2649],[-84.41453,38.25458],[-84.40932,38.25371],[-84.40586,38.25345],[-84.40066,38.25327],[-84.39315,38.25332],[-84.38701,38.25302],[-84.38382,38.25158],[-84.37905,38.2497],[-84.37771,38.249],[-84.37161,38.24493],[-84.37149,38.24458],[-84.37168,38.24156],[-84.37152,38.2413],[-84.36524,38.23933],[-84.36229,38.23743],[-84.35835,38.23098],[-84.35807,38.2303],[-84.35834,38.22716],[-84.3578,38.22177],[-84.35294,38.22149],[-84.35349,38.22012],[-84.35582,38.21658],[-84.35649,38.21485],[-84.35724,38.2135],[-84.35782,38.21192],[-84.36863,38.19623],[-84.37503,38.19623],[-84.37787,38.19622],[-84.38136,38.19622],[-84.38879,38.19646],[-84.39055,38.19698],[-84.39528,38.19723],[-84.39549,38.19727],[-84.3961,38.19747],[-84.39648,38.1976],[-84.39768,38.19535],[-84.40745,38.19692],[-84.40889,38.1972],[-84.41416,38.19911],[-84.41657,38.2],[-84.41799,38.20057],[-84.42173,38.20197],[-84.42784,38.20398],[-84.42862,38.20277],[-84.42886,38.20271],[-84.43474,38.20293],[-84.4404,38.20403],[-84.44151,38.20425],[-84.44227,38.2044],[-84.44266,38.20449],[-84.44306,38.20457],[-84.4437,38.20471],[-84.44374,38.2024],[-84.44373,38.20211],[-84.44373,38.20196],[-84.44374,38.20034],[-84.44374,38.1964],[-84.44406,38.19582],[-84.44418,38.19569],[-84.44522,38.19465],[-84.44652,38.19364],[-84.44936,38.18991],[-84.44965,38.18986],[-84.45104,38.19027],[-84.45209,38.18914],[-84.45382,38.18709],[-84.45582,38.18468],[-84.45769,38.1825],[-84.45947,38.1811],[-84.4626,38.17866],[-84.46379,38.17663],[-84.46423,38.17584],[-84.46507,38.17436],[-84.46594,38.17277],[-84.4722,38.17514],[-84.47507,38.17623],[-84.47665,38.17682],[-84.481,38.17842],[-84.48144,38.17858],[-84.48174,38.1787],[-84.48181,38.17893],[-84.48096,38.17976],[-84.48072,38.18053],[-84.48104,38.18245],[-84.48186,38.18346],[-84.48326,38.18426],[-84.48428,38.1845],[-84.48502,38.18459],[-84.48662,38.1847],[-84.48758,38.18446],[-84.48786,38.18438],[-84.48967,38.18391],[-84.48939,38.18255],[-84.491,38.18253],[-84.49153,38.18262],[-84.49215,38.18292],[-84.49284,38.18356],[-84.49404,38.18414],[-84.50022,38.18517],[-84.50136,38.18536],[-84.5031,38.18562],[-84.5036,38.1858],[-84.50388,38.18591],[-84.50487,38.18627],[-84.5062,38.18676],[-84.50686,38.18701],[-84.50871,38.18792],[-84.52603,38.1939],[-84.52931,38.19504],[-84.52971,38.19519],[-84.53427,38.19672],[-84.53467,38.19686],[-84.54537,38.20054],[-84.54614,38.2008],[-84.548,38.20137],[-84.54831,38.20159],[-84.54835,38.20185],[-84.54763,38.20353],[-84.5492,38.20384],[-84.5516,38.20398],[-84.55148,38.20553],[-84.55145,38.20602],[-84.55137,38.20692],[-84.55131,38.20762],[-84.5513,38.20776],[-84.55116,38.20943],[-84.55894,38.2099],[-84.55901,38.2099],[-84.559,38.21]]}},
{"type":"Feature","properties":{"name":"Gtown Duncan Clifton Paynes Depot 52mi"},"geometry":{"type":"LineString","coordinates":[[-84.55833435,38.21119216],[-84.5587796,38.21140291],[-84.55876,38.21155],[-84.55965,38.2116],[-84.55969,38.21115],[-84.55972,38.21078],[-84.55988,38.20903],[-84.55995,38.2083],[-84.56001,38.20759],[-84.56018,38.20584],[-84.56031,38.20441],[-84.56364,38.20458],[-84.56426,38.20465],[-84.56473,38.20472],[-84.56492,38.20473],[-84.56729,38.20461],[-84.56857,38.20406],[-84.57035,38.20367],[-84.57096,38.20373],[-84.57285,38.20429],[-84.57361,38.20452],[-84.57462,38.20449],[-84.57473,38.20445],[-84.57579,38.20389],[-84.57596,38.20372],[-84.57646,38.20404],[-84.57795,38.20579],[-84.57946,38.20631],[-84.58011,38.20651],[-84.58029,38.20621],[-84.5821,38.20323],[-84.5833,38.20111],[-84.58464,38.19889],[-84.58494,38.19838],[-84.58522,38.19789],[-84.58542,38.19778],[-84.58661,38.19549],[-84.5883,38.19072],[-84.59042,38.18824],[-84.59462,38.18051],[-84.59778,38.17604],[-84.60042,38.17157],[-84.60089,38.17174],[-84.62471,38.17986],[-84.62546,38.18008],[-84.6264,38.18034],[-84.62752,38.18064],[-84.62913,38.18111],[-84.62931,38.18116],[-84.62996,38.18135],[-84.63447,38.18264],[-84.63628,38.18317],[-84.63871,38.18386],[-84.64026,38.1843],[-84.64374,38.18529],[-84.64538,38.18575],[-84.64774,38.18643],[-84.64913,38.18682],[-84.65056,38.18722],[-84.6591,38.18967],[-84.66135,38.19032],[-84.66135,38.19019],[-84.66134,38.19014],[-84.66116,38.18976],[-84.66115,38.18973],[-84.66121,38.18953],[-84.66124,38.18948],[-84.66144,38.18919],[-84.66152,38.18909],[-84.66295,38.18717],[-84.66305,38.18703],[-84.66346,38.18647],[-84.66356,38.18633],[-84.66405,38.18568],[-84.66414,38.18555],[-84.66424,38.18542],[-84.66534,38.18392],[-84.66603,38.1827],[-84.66611,38.18256],[-84.66669,38.18167],[-84.66713,38.18032],[-84.6672,38.18017],[-84.66734,38.17987],[-84.66748,38.17955],[-84.66785,38.17876],[-84.66791,38.1786],[-84.66852,38.17724],[-84.66864,38.17695],[-84.66888,38.17641],[-84.66893,38.17629],[-84.66936,38.17538],[-84.66946,38.17523],[-84.66983,38.17461],[-84.66994,38.17444],[-84.67114,38.1725],[-84.67137,38.17212],[-84.67195,38.17116],[-84.67203,38.17101],[-84.6722,38.17072],[-84.67237,38.17043],[-84.67254,38.17016],[-84.67324,38.16904],[-84.67344,38.16871],[-84.67395,38.16789],[-84.67425,38.16742],[-84.67488,38.16641],[-84.67517,38.16594],[-84.67596,38.16456],[-84.67619,38.16416],[-84.67641,38.16377],[-84.67652,38.16356],[-84.67662,38.1634],[-84.6768,38.1631],[-84.67688,38.16296],[-84.67704,38.16269],[-84.67724,38.16237],[-84.67732,38.16223],[-84.6776,38.16168],[-84.67769,38.16155],[-84.67771,38.16148],[-84.67773,38.16138],[-84.67784,38.16036],[-84.67791,38.15958],[-84.67794,38.15926],[-84.67798,38.1587],[-84.67802,38.15838],[-84.67803,38.15834],[-84.67816,38.1582],[-84.67848,38.15814],[-84.67885,38.15828],[-84.67905,38.15834],[-84.67955,38.15852],[-84.68012,38.15873],[-84.68053,38.1589],[-84.68081,38.15901],[-84.68174,38.15944],[-84.68182,38.15924],[-84.68187,38.15917],[-84.68278,38.15851],[-84.68297,38.15841],[-84.68336,38.15818],[-84.68352,38.15807],[-84.68365,38.15796],[-84.68406,38.15747],[-84.68427,38.15684],[-84.68428,38.15665],[-84.68427,38.15654],[-84.6842,38.15619],[-84.68407,38.15587],[-84.68356,38.15499],[-84.68348,38.15487],[-84.68324,38.15453],[-84.68313,38.15437],[-84.68306,38.15426],[-84.68299,38.15414],[-84.68279,38.15339],[-84.6829,38.15294],[-84.68366,38.1516],[-84.68391,38.15115],[-84.68404,38.15123],[-84.6842,38.15131],[-84.68538,38.15172],[-84.68546,38.15159],[-84.6856,38.15139],[-84.68578,38.15108],[-84.6859,38.15088],[-84.68597,38.15074],[-84.68621,38.1503],[-84.6876,38.14784],[-84.68832,38.14809],[-84.68864,38.1482],[-84.68931,38.14844],[-84.68992,38.14866],[-84.6904,38.14883],[-84.69118,38.14912],[-84.69191,38.14939],[-84.69256,38.14957],[-84.69299,38.14952],[-84.69324,38.14946],[-84.69386,38.14926],[-84.69434,38.1491],[-84.69567,38.14875],[-84.69596,38.14864],[-84.69633,38.14849],[-84.69662,38.14837],[-84.69771,38.14792],[-84.69797,38.14782],[-84.69839,38.14768],[-84.69857,38.14772],[-84.69866,38.14777],[-84.69878,38.14782],[-84.69903,38.14795],[-84.69952,38.14818],[-84.69989,38.14835],[-84.70008,38.14844],[-84.70103,38.1489],[-84.70122,38.14899],[-84.70231,38.14951],[-84.70264,38.14967],[-84.70333,38.15001],[-84.70367,38.15017],[-84.70382,38.15025],[-84.70397,38.15032],[-84.70411,38.15039],[-84.70424,38.15045],[-84.70483,38.15062],[-84.7049,38.15058],[-84.70501,38.15041],[-84.70506,38.15031],[-84.70512,38.15018],[-84.70616,38.14818],[-84.70623,38.14802],[-84.70659,38.14735],[-84.70673,38.14708],[-84.70688,38.1468],[-84.70715,38.14627],[-84.70739,38.1458],[-84.70749,38.14562],[-84.70776,38.14547],[-84.70841,38.14566],[-84.70859,38.14572],[-84.70897,38.14584],[-84.70937,38.14597],[-84.7102,38.14624],[-84.71085,38.14645],[-84.71106,38.14652],[-84.71168,38.14673],[-84.71336,38.14727],[-84.71358,38.14734],[-84.714,38.14748],[-84.71483,38.14775],[-84.71504,38.14782],[-84.71545,38.14795],[-84.71604,38.14815],[-84.71663,38.14833],[-84.71857,38.14893],[-84.71879,38.149],[-84.72099,38.14967],[-84.72118,38.14971],[-84.72292,38.15026],[-84.72352,38.15045],[-84.72453,38.15078],[-84.72474,38.15085],[-84.72538,38.15106],[-84.72621,38.15134],[-84.72723,38.15168],[-84.72743,38.15175],[-84.72906,38.15228],[-84.72922,38.15234],[-84.73027,38.15265],[-84.73102,38.15289],[-84.73197,38.15319],[-84.73235,38.15331],[-84.73516,38.1542],[-84.73532,38.15425],[-84.73594,38.15446],[-84.73613,38.1545],[-84.73654,38.15431],[-84.73677,38.1542],[-84.73778,38.15388],[-84.73867,38.15382],[-84.73915,38.15384],[-84.74119,38.154],[-84.74298,38.15412],[-84.74347,38.15416],[-84.74361,38.15416],[-84.74381,38.15418],[-84.74399,38.1542],[-84.74403,38.15399],[-84.74401,38.15396],[-84.74394,38.15386],[-84.74387,38.1538],[-84.74382,38.15359],[-84.74386,38.15352],[-84.74514,38.15143],[-84.74528,38.15119],[-84.74561,38.15065],[-84.74576,38.1504],[-84.74619,38.14966],[-84.74841,38.14606],[-84.74863,38.1457],[-84.74904,38.14505],[-84.7495,38.14431],[-84.75054,38.14262],[-84.75076,38.14226],[-84.75084,38.14215],[-84.75111,38.14172],[-84.7515,38.14186],[-84.75365,38.14264],[-84.75491,38.14311],[-84.75521,38.14322],[-84.75727,38.14423],[-84.75785,38.14456],[-84.75905,38.14547],[-84.75957,38.14592],[-84.7598,38.14611],[-84.75994,38.14622],[-84.7615,38.1473],[-84.76376,38.14883],[-84.76511,38.14975],[-84.76814,38.15179],[-84.76879,38.15223],[-84.76916,38.15249],[-84.7696,38.1528],[-84.7702,38.15321],[-84.7715,38.15414],[-84.77164,38.15428],[-84.77171,38.15451],[-84.77165,38.15529],[-84.77188,38.15577],[-84.77231,38.15599],[-84.77245,38.15601],[-84.77294,38.15595],[-84.77367,38.15583],[-84.77377,38.15584],[-84.77389,38.15587],[-84.77436,38.15611],[-84.77535,38.15677],[-84.77655,38.15746],[-84.77849,38.15854],[-84.77916,38.15892],[-84.78019,38.15947],[-84.78058,38.1597],[-84.78097,38.16006],[-84.78141,38.16083],[-84.78181,38.16153],[-84.78221,38.16217],[-84.78292,38.16306],[-84.78345,38.16395],[-84.78371,38.16434],[-84.78377,38.1644],[-84.78379,38.16441],[-84.78386,38.16444],[-84.78406,38.16445],[-84.78437,38.16443],[-84.78524,38.1643],[-84.78802,38.16308],[-84.78834,38.16294],[-84.79094,38.16189],[-84.79306,38.16249],[-84.79361,38.16265],[-84.79413,38.16278],[-84.79422,38.16279],[-84.79449,38.16279],[-84.79466,38.16278],[-84.79483,38.16278],[-84.79534,38.16285],[-84.79563,38.16293],[-84.79734,38.1634],[-84.80255,38.16483],[-84.80437,38.16484],[-84.80666,38.1648],[-84.80696,38.16479],[-84.80776,38.16475],[-84.8079,38.16474],[-84.80851,38.16457],[-84.81052,38.16406],[-84.81114,38.16422],[-84.81125,38.16429],[-84.81184,38.16469],[-84.81221,38.16494],[-84.81331,38.16574],[-84.81363,38.16644],[-84.81264,38.16977],[-84.81289,38.16981],[-84.814,38.16967],[-84.81415,38.1696],[-84.81445,38.16941],[-84.81487,38.16893],[-84.81519,38.1685],[-84.81583,38.16763],[-84.81604,38.16734],[-84.81635,38.16689],[-84.81737,38.16574],[-84.81757,38.16532],[-84.81792,38.16429],[-84.81782,38.1638],[-84.81765,38.16358],[-84.817,38.1628],[-84.81572,38.16122],[-84.81567,38.1611],[-84.81565,38.16103],[-84.81565,38.16092],[-84.81569,38.16076],[-84.81571,38.16071],[-84.81613,38.15988],[-84.8162,38.15973],[-84.81628,38.15957],[-84.81676,38.15853],[-84.81854,38.155],[-84.81846,38.1535],[-84.81822,38.15229],[-84.81824,38.1516],[-84.81828,38.15122],[-84.81827,38.15101],[-84.81826,38.15094],[-84.81822,38.15068],[-84.8182,38.15032],[-84.81828,38.15007],[-84.8184,38.14987],[-84.81873,38.14948],[-84.81879,38.14941],[-84.81934,38.14878],[-84.81944,38.14856],[-84.81956,38.14813],[-84.81965,38.14793],[-84.8201,38.14694],[-84.8202,38.14671],[-84.82032,38.14654],[-84.82168,38.14526],[-84.82349,38.14338],[-84.82417,38.14127],[-84.82502,38.14035],[-84.82439,38.14004],[-84.82419,38.1399],[-84.82384,38.13959],[-84.82316,38.139],[-84.82298,38.13881],[-84.82281,38.13859],[-84.8227,38.13842],[-84.82246,38.13792],[-84.82199,38.13665],[-84.8218,38.13565],[-84.82183,38.13536],[-84.82193,38.13512],[-84.82206,38.13489],[-84.82215,38.13478],[-84.82271,38.13417],[-84.82286,38.13396],[-84.82295,38.1338],[-84.82303,38.13367],[-84.82396,38.13195],[-84.82406,38.13136],[-84.82389,38.13065],[-84.82384,38.13054],[-84.82311,38.12914],[-84.82319,38.12848],[-84.82327,38.12828],[-84.82341,38.12773],[-84.8234,38.12746],[-84.82339,38.12741],[-84.82331,38.12711],[-84.82293,38.12577],[-84.82287,38.12556],[-84.82286,38.12546],[-84.82296,38.12521],[-84.82303,38.12516],[-84.82316,38.12509],[-84.82362,38.12493],[-84.82394,38.1248],[-84.82444,38.12455],[-84.82507,38.12424],[-84.82556,38.12399],[-84.82681,38.12331],[-84.82723,38.12287],[-84.82736,38.12244],[-84.82736,38.12207],[-84.82735,38.1219],[-84.82648,38.11952],[-84.82754,38.1193],[-84.82815,38.11933],[-84.82842,38.11941],[-84.82873,38.11953],[-84.82883,38.11957],[-84.82928,38.11979],[-84.82964,38.11995],[-84.82978,38.12001],[-84.83037,38.12015],[-84.83096,38.12024],[-84.83181,38.1202],[-84.83212,38.12016],[-84.8325,38.12013],[-84.83273,38.12014],[-84.83288,38.12016],[-84.83305,38.1202],[-84.83322,38.12025],[-84.83349,38.12036],[-84.83388,38.12057],[-84.83431,38.12079],[-84.83441,38.12083],[-84.83448,38.12086],[-84.83461,38.12088],[-84.8358,38.12067],[-84.83589,38.12065],[-84.83716,38.12036],[-84.83814,38.12013],[-84.83982,38.11974],[-84.84048,38.11959],[-84.84086,38.11951],[-84.84106,38.11946],[-84.84101,38.1193],[-84.83856,38.11191],[-84.83849,38.11176],[-84.83776,38.11114],[-84.8351,38.11048],[-84.83443,38.11009],[-84.83283,38.10611],[-84.83271,38.10427],[-84.83269,38.10409],[-84.83236,38.10216],[-84.83248,38.10188],[-84.83295,38.10159],[-84.83484,38.1014],[-84.83542,38.10115],[-84.83552,38.10096],[-84.83372,38.09953],[-84.83276,38.09856],[-84.83073,38.09549],[-84.83058,38.09526],[-84.83005,38.09411],[-84.82869,38.09181],[-84.82772,38.09075],[-84.82619,38.08761],[-84.826,38.08717],[-84.82549,38.08533],[-84.82543,38.08358],[-84.82543,38.08336],[-84.8254,38.08306],[-84.82539,38.08304],[-84.82532,38.08298],[-84.82527,38.08298],[-84.82475,38.08297],[-84.82398,38.08291],[-84.82317,38.08254],[-84.82255,38.08256],[-84.8221,38.083],[-84.82233,38.08363],[-84.82224,38.08385],[-84.82199,38.08392],[-84.8213,38.08376],[-84.82026,38.08425],[-84.81987,38.08422],[-84.81897,38.08382],[-84.81707,38.08375],[-84.816,38.08338],[-84.81405,38.08295],[-84.81369,38.08253],[-84.81299,38.07997],[-84.81226,38.07839],[-84.81122,38.07756],[-84.80873,38.07636],[-84.8085,38.07625],[-84.80802,38.07603],[-84.80787,38.07626],[-84.80566,38.07945],[-84.80553,38.07963],[-84.80072,38.08667],[-84.80045,38.08705],[-84.79585,38.0934],[-84.79558,38.09376],[-84.79411,38.09573],[-84.79403,38.09584],[-84.79378,38.09617],[-84.79371,38.09627],[-84.79345,38.09667],[-84.79338,38.09681],[-84.79334,38.09691],[-84.79333,38.09695],[-84.79319,38.09725],[-84.79315,38.09735],[-84.79318,38.0987],[-84.79265,38.1006],[-84.79218,38.10172],[-84.78966,38.10603],[-84.78786,38.11169],[-84.78779,38.1119],[-84.78744,38.11224],[-84.7874,38.11225],[-84.78738,38.11226],[-84.78719,38.1123],[-84.78708,38.11232],[-84.78697,38.11236],[-84.78474,38.1143],[-84.7828,38.11604],[-84.78232,38.11645],[-84.78168,38.11677],[-84.78017,38.11745],[-84.77903,38.11796],[-84.7786,38.11819],[-84.77839,38.11848],[-84.77808,38.12106],[-84.77778,38.12119],[-84.77665,38.12112],[-84.77646,38.12108],[-84.77638,38.12107],[-84.77576,38.12103],[-84.77557,38.12102],[-84.77516,38.12109],[-84.77436,38.12154],[-84.7726,38.12302],[-84.77197,38.12395],[-84.77152,38.12472],[-84.76747,38.13209],[-84.76676,38.13344],[-84.7661,38.13469],[-84.76528,38.13629],[-84.76381,38.13913],[-84.76363,38.13948],[-84.76324,38.14023],[-84.76297,38.14076],[-84.76141,38.14375],[-84.76118,38.14415],[-84.76024,38.14586],[-84.76013,38.14603],[-84.75994,38.14622],[-84.7598,38.14611],[-84.75957,38.14592],[-84.75905,38.14547],[-84.75785,38.14456],[-84.75727,38.14423],[-84.75521,38.14322],[-84.75491,38.14311],[-84.75365,38.14264],[-84.7515,38.14186],[-84.75111,38.14172],[-84.75084,38.14215],[-84.75076,38.14226],[-84.75054,38.14262],[-84.7495,38.14431],[-84.74904,38.14505],[-84.74863,38.1457],[-84.74841,38.14606],[-84.74619,38.14966],[-84.74576,38.1504],[-84.74561,38.15065],[-84.74528,38.15119],[-84.74514,38.15143],[-84.74386,38.15352],[-84.74382,38.15359],[-84.74387,38.1538],[-84.74394,38.15386],[-84.74401,38.15396],[-84.74403,38.15399],[-84.74399,38.1542],[-84.74381,38.15418],[-84.74361,38.15416],[-84.74347,38.15416],[-84.74298,38.15412],[-84.74119,38.154],[-84.73915,38.15384],[-84.73867,38.15382],[-84.73778,38.15388],[-84.73677,38.1542],[-84.73654,38.15431],[-84.73613,38.1545],[-84.73594,38.15446],[-84.73532,38.15425],[-84.73516,38.1542],[-84.73235,38.15331],[-84.73197,38.15319],[-84.73102,38.15289],[-84.73027,38.15265],[-84.72922,38.15234],[-84.72906,38.15228],[-84.72743,38.15175],[-84.72723,38.15168],[-84.72621,38.15134],[-84.72538,38.15106],[-84.72474,38.15085],[-84.72453,38.15078],[-84.72352,38.15045],[-84.72292,38.15026],[-84.72118,38.14971],[-84.72099,38.14967],[-84.71879,38.149],[-84.71857,38.14893],[-84.71663,38.14833],[-84.71604,38.14815],[-84.71545,38.14795],[-84.71504,38.14782],[-84.71483,38.14775],[-84.714,38.14748],[-84.71358,38.14734],[-84.71336,38.14727],[-84.71168,38.14673],[-84.71106,38.14652],[-84.71085,38.14645],[-84.7102,38.14624],[-84.70937,38.14597],[-84.70897,38.14584],[-84.70859,38.14572],[-84.70841,38.14566],[-84.70776,38.14547],[-84.70749,38.14562],[-84.70739,38.1458],[-84.70715,38.14627],[-84.70688,38.1468],[-84.70673,38.14708],[-84.70659,38.14735],[-84.70623,38.14802],[-84.70616,38.14818],[-84.70512,38.15018],[-84.70506,38.15031],[-84.70501,38.15041],[-84.7049,38.15058],[-84.70483,38.15062],[-84.70424,38.15045],[-84.70411,38.15039],[-84.70397,38.15032],[-84.70382,38.15025],[-84.70367,38.15017],[-84.70333,38.15001],[-84.70264,38.14967],[-84.70231,38.14951],[-84.70122,38.14899],[-84.70103,38.1489],[-84.70008,38.14844],[-84.69989,38.14835],[-84.69952,38.14818],[-84.69903,38.14795],[-84.69878,38.14782],[-84.69866,38.14777],[-84.69857,38.14772],[-84.69839,38.14768],[-84.69797,38.14782],[-84.69771,38.14792],[-84.69662,38.14837],[-84.69633,38.14849],[-84.69596,38.14864],[-84.69567,38.14875],[-84.69434,38.1491],[-84.69386,38.14926],[-84.69324,38.14946],[-84.69299,38.14952],[-84.69256,38.14957],[-84.69191,38.14939],[-84.69118,38.14912],[-84.6904,38.14883],[-84.68992,38.14866],[-84.68931,38.14844],[-84.68864,38.1482],[-84.68832,38.14809],[-84.6876,38.14784],[-84.68686,38.14757],[-84.6861,38.14731],[-84.68603,38.14728],[-84.6855,38.14708],[-84.68515,38.14695],[-84.68457,38.14675],[-84.68443,38.1467],[-84.68417,38.1466],[-84.6838,38.14647],[-84.6831,38.14622],[-84.68275,38.14609],[-84.68234,38.14595],[-84.68186,38.14578],[-84.68141,38.14562],[-84.68123,38.14555],[-84.6804,38.14519],[-84.6798,38.14474],[-84.67972,38.14469],[-84.67952,38.14453],[-84.67943,38.14445],[-84.67932,38.14436],[-84.67828,38.14351],[-84.67817,38.14341],[-84.67803,38.14331],[-84.67733,38.14274],[-84.67701,38.1425],[-84.67696,38.14246],[-84.67667,38.14228],[-84.67653,38.1422],[-84.67637,38.14211],[-84.67608,38.14193],[-84.67582,38.14173],[-84.67463,38.14056],[-84.67425,38.14026],[-84.67412,38.14017],[-84.67259,38.1385],[-84.67146,38.13832],[-84.67058,38.13827],[-84.67008,38.13824],[-84.66993,38.13823],[-84.66863,38.13816],[-84.66847,38.13815],[-84.66768,38.13807],[-84.66693,38.13775],[-84.66677,38.13768],[-84.66629,38.13743],[-84.66613,38.13735],[-84.6645,38.13654],[-84.66316,38.13606],[-84.66277,38.13592],[-84.66239,38.13578],[-84.66203,38.13565],[-84.66144,38.13545],[-84.65922,38.13467],[-84.65871,38.13449],[-84.6581,38.13428],[-84.65776,38.13416],[-84.65738,38.13402],[-84.65719,38.13396],[-84.65551,38.13338],[-84.65532,38.13331],[-84.65512,38.13324],[-84.65296,38.13251],[-84.6522,38.13225],[-84.64904,38.13111],[-84.64891,38.13105],[-84.64878,38.13098],[-84.64866,38.13091],[-84.64811,38.13065],[-84.64797,38.1306],[-84.64697,38.13026],[-84.64683,38.13021],[-84.64559,38.12979],[-84.64545,38.12974],[-84.64429,38.1293],[-84.64412,38.12925],[-84.64297,38.12918],[-84.64224,38.12926],[-84.64116,38.12931],[-84.64036,38.1292],[-84.64009,38.12912],[-84.63949,38.12885],[-84.63876,38.12823],[-84.63868,38.12816],[-84.63852,38.12802],[-84.63814,38.12793],[-84.63791,38.12788],[-84.63768,38.12783],[-84.63752,38.1278],[-84.63718,38.12781],[-84.63697,38.12802],[-84.63647,38.12875],[-84.63639,38.12896],[-84.6356,38.13135],[-84.63557,38.1315],[-84.63482,38.13366],[-84.63476,38.13376],[-84.63453,38.13427],[-84.63369,38.13514],[-84.63361,38.13521],[-84.63355,38.13527],[-84.63324,38.13556],[-84.63262,38.13524],[-84.63211,38.1355],[-84.62957,38.13674],[-84.62872,38.13717],[-84.62805,38.13755],[-84.62673,38.13898],[-84.62606,38.13973],[-84.62558,38.14025],[-84.62534,38.14051],[-84.6251,38.14077],[-84.62485,38.14104],[-84.62436,38.14156],[-84.62389,38.14206],[-84.62382,38.14213],[-84.62306,38.14295],[-84.6228,38.14324],[-84.62265,38.1434],[-84.62249,38.14357],[-84.62202,38.14407],[-84.62118,38.14496],[-84.62065,38.14553],[-84.61979,38.14644],[-84.61904,38.14723],[-84.61835,38.14796],[-84.61796,38.14837],[-84.61727,38.1491],[-84.61697,38.14949],[-84.61689,38.14961],[-84.61677,38.14981],[-84.61673,38.14989],[-84.61387,38.15485],[-84.61385,38.15489],[-84.61306,38.15622],[-84.61296,38.15639],[-84.61278,38.15672],[-84.6122,38.15773],[-84.61059,38.16054],[-84.61037,38.16091],[-84.60897,38.16324],[-84.60816,38.16412],[-84.60702,38.16485],[-84.60425,38.1659],[-84.60332,38.16657],[-84.60264,38.16737],[-84.60215,38.16818],[-84.60179,38.16878],[-84.60023,38.17148],[-84.599,38.1736],[-84.59793,38.17543],[-84.59753,38.17605],[-84.59444,38.18043],[-84.59366,38.18173],[-84.59351,38.18201],[-84.59004,38.18847],[-84.58873,38.18979],[-84.58803,38.19078],[-84.58794,38.19097],[-84.58713,38.19346],[-84.58677,38.19451],[-84.58662,38.19494],[-84.58648,38.19527],[-84.58526,38.19771],[-84.58522,38.19789],[-84.58494,38.19838],[-84.58464,38.19889],[-84.5833,38.20111],[-84.5821,38.20323],[-84.58029,38.20621],[-84.58011,38.20651],[-84.57946,38.20631],[-84.57795,38.20579],[-84.57646,38.20404],[-84.57596,38.20372],[-84.57579,38.20389],[-84.57473,38.20445],[-84.57462,38.20449],[-84.57361,38.20452],[-84.57285,38.20429],[-84.57096,38.20373],[-84.57035,38.20367],[-84.56857,38.20406],[-84.56729,38.20461],[-84.56492,38.20473],[-84.56473,38.20472],[-84.56426,38.20465],[-84.56364,38.20458],[-84.56031,38.20441],[-84.56018,38.20584],[-84.56001,38.20759],[-84.55995,38.2083],[-84.55988,38.20903],[-84.55972,38.21078],[-84.55969,38.21115],[-84.55965,38.2116],[-84.55876,38.21155],[-84.55879,38.21124],[-84.55839872,38.21118794]]}},
{"type":"Feature","properties":{"name":"Masterson-Can Run out and back"},"geometry":{"type":"LineString","coordinates":[[-84.55341,38.10637],[-84.55298,38.10638],[-84.55215,38.10637],[-84.55071,38.10638],[-84.54952,38.10639],[-84.54823,38.1064],[-84.54684,38.10641],[-84.54669,38.10657],[-84.54668,38.10671],[-84.54668,38.10716],[-84.54669,38.10778],[-84.5467,38.10803],[-84.54655,38.10851],[-84.54598,38.10888],[-84.54593,38.10891],[-84.54589,38.10893],[-84.54584,38.10897],[-84.54561,38.10925],[-84.54542,38.10954],[-84.54516,38.10995],[-84.5449,38.11032],[-84.54419,38.11061],[-84.54409,38.11065],[-84.54385,38.11078],[-84.54379,38.11082],[-84.54373,38.11087],[-84.54371,38.1109],[-84.54365,38.11122],[-84.54436,38.11108],[-84.54699,38.11055],[-84.54753,38.11045],[-84.54803,38.11045],[-84.54969,38.11096],[-84.54994,38.111],[-84.55177,38.11135],[-84.55205,38.11141],[-84.55294,38.11158],[-84.55464,38.1119],[-84.55655,38.11226],[-84.55723,38.1124],[-84.55817,38.11294],[-84.55991,38.11385],[-84.56047,38.11421],[-84.56016,38.11525],[-84.56016,38.11532],[-84.56022,38.11542],[-84.56026,38.11547],[-84.56041,38.11556],[-84.56164,38.1162],[-84.56222,38.11652],[-84.5642,38.11752],[-84.56488,38.11787],[-84.56569,38.11829],[-84.56714,38.11904],[-84.56854,38.11977],[-84.56874,38.11987],[-84.57329,38.12219],[-84.573,38.12311],[-84.57241,38.12494],[-84.57229,38.12534],[-84.572,38.12636],[-84.5718,38.12711],[-84.57176,38.12729],[-84.57235,38.12816],[-84.57247,38.12925],[-84.57256,38.13014],[-84.57257,38.13035],[-84.57255,38.13043],[-84.57252,38.1305],[-84.57216,38.13112],[-84.57183,38.13165],[-84.57129,38.13255],[-84.57089,38.13327],[-84.57107,38.13462],[-84.56995,38.13553],[-84.56928,38.13605],[-84.56871,38.1365],[-84.56884,38.1366],[-84.56898,38.13673],[-84.56905,38.13685],[-84.56909,38.13691],[-84.56921,38.13734],[-84.56923,38.13752],[-84.56938,38.13827],[-84.56977,38.13874],[-84.57099,38.13965],[-84.57186,38.14031],[-84.5736,38.14162],[-84.57404,38.14183],[-84.57475,38.1418],[-84.57541,38.14123],[-84.5773,38.13899],[-84.57889,38.13711],[-84.57959,38.13627],[-84.57996,38.13585],[-84.58108,38.13448],[-84.58176,38.13368],[-84.58238,38.13295],[-84.58276,38.1325],[-84.58296,38.13231],[-84.58322,38.13228],[-84.58328,38.1323],[-84.58348,38.13238],[-84.58373,38.13251],[-84.58441,38.13287],[-84.58466,38.13302],[-84.5851,38.13327],[-84.58569,38.1336],[-84.58722,38.1344],[-84.58904,38.13538],[-84.58982,38.13579],[-84.59076,38.1363],[-84.59144,38.13668],[-84.59168,38.13681],[-84.59416,38.13816],[-84.59513,38.13867],[-84.59554,38.13887],[-84.59672,38.1395],[-84.59856,38.1405],[-84.599,38.14072],[-84.59948,38.14097],[-84.60092,38.14173],[-84.60166,38.14213],[-84.60212,38.14237],[-84.60288,38.14277],[-84.60373,38.14322],[-84.60437,38.14356],[-84.60539,38.14411],[-84.60617,38.14453],[-84.60732,38.14513],[-84.60853,38.14577],[-84.61031,38.14672],[-84.61226,38.14777],[-84.6157,38.1496],[-84.61587,38.14969],[-84.61595,38.14972],[-84.61603,38.14975],[-84.61609,38.14977],[-84.61615,38.14978],[-84.61657,38.14984],[-84.61663,38.14985],[-84.61673,38.14989],[-84.61677,38.14981],[-84.61689,38.14961],[-84.61677,38.14981],[-84.61685,38.14984],[-84.61689,38.14985],[-84.61695,38.14987],[-84.61738,38.14994],[-84.61743,38.14995],[-84.61756,38.14999],[-84.61765,38.15004],[-84.61776,38.1501],[-84.61793,38.15019],[-84.61867,38.15062],[-84.62051,38.15163],[-84.62183,38.15238],[-84.6225,38.15283],[-84.62319,38.15329],[-84.62393,38.15381],[-84.62479,38.15449],[-84.62572,38.15538],[-84.62964,38.15906],[-84.63249,38.15905],[-84.63283,38.15904],[-84.63309,38.15903],[-84.63334,38.15902],[-84.63359,38.15902],[-84.63409,38.15901],[-84.63434,38.159],[-84.63644,38.15894],[-84.63669,38.15892],[-84.63804,38.15887],[-84.63838,38.15885],[-84.63853,38.15885],[-84.63889,38.15885],[-84.63883,38.15896],[-84.63889,38.15885],[-84.63853,38.15885],[-84.63838,38.15885],[-84.63804,38.15887],[-84.63669,38.15892],[-84.63644,38.15894],[-84.63434,38.159],[-84.63409,38.15901],[-84.63359,38.15902],[-84.63334,38.15902],[-84.63309,38.15903],[-84.63283,38.15904],[-84.63249,38.15905],[-84.62964,38.15906],[-84.62572,38.15538],[-84.62479,38.15449],[-84.62393,38.15381],[-84.62319,38.15329],[-84.6225,38.15283],[-84.62183,38.15238],[-84.62051,38.15163],[-84.61867,38.15062],[-84.61793,38.15019],[-84.61776,38.1501],[-84.61765,38.15004],[-84.61756,38.14999],[-84.61743,38.14995],[-84.61738,38.14994],[-84.61695,38.14987],[-84.61689,38.14985],[-84.61685,38.14984],[-84.61677,38.14981],[-84.61673,38.14989],[-84.61663,38.14985],[-84.61657,38.14984],[-84.61615,38.14978],[-84.61609,38.14977],[-84.61603,38.14975],[-84.61595,38.14972],[-84.61587,38.14969],[-84.6157,38.1496],[-84.61226,38.14777],[-84.61031,38.14672],[-84.60853,38.14577],[-84.60732,38.14513],[-84.60617,38.14453],[-84.60539,38.14411],[-84.60437,38.14356],[-84.60373,38.14322],[-84.60288,38.14277],[-84.60212,38.14237],[-84.60166,38.14213],[-84.60092,38.14173],[-84.59948,38.14097],[-84.599,38.14072],[-84.59856,38.1405],[-84.59672,38.1395],[-84.59554,38.13887],[-84.59513,38.13867],[-84.59416,38.13816],[-84.59168,38.13681],[-84.59144,38.13668],[-84.59076,38.1363],[-84.58982,38.13579],[-84.58904,38.13538],[-84.58722,38.1344],[-84.58569,38.1336],[-84.5851,38.13327],[-84.58466,38.13302],[-84.58441,38.13287],[-84.58447,38.13272],[-84.58451,38.13246],[-84.58452,38.13222],[-84.58462,38.13106],[-84.58466,38.13066],[-84.58498,38.12929],[-84.58518,38.12841],[-84.5857,38.12631],[-84.58491,38.12528],[-84.58408,38.12424],[-84.58363,38.12362],[-84.58177,38.12109],[-84.57905,38.11741],[-84.5787,38.11692],[-84.57823,38.1163],[-84.57805,38.11652],[-84.57776,38.11691],[-84.57726,38.11751],[-84.57624,38.11871],[-84.57529,38.11983],[-84.5748,38.1204],[-84.57394,38.12143],[-84.57329,38.12219],[-84.56874,38.11987],[-84.56854,38.11977],[-84.56714,38.11904],[-84.56569,38.11829],[-84.56488,38.11787],[-84.5642,38.11752],[-84.56222,38.11652],[-84.56164,38.1162],[-84.56041,38.11556],[-84.56026,38.11547],[-84.56022,38.11542],[-84.56016,38.11532],[-84.56016,38.11525],[-84.56047,38.11421],[-84.55991,38.11385],[-84.55817,38.11294],[-84.55723,38.1124],[-84.55655,38.11226],[-84.55464,38.1119],[-84.55294,38.11158],[-84.55205,38.11141],[-84.55177,38.11135],[-84.54994,38.111],[-84.54969,38.11096],[-84.54803,38.11045],[-84.54753,38.11045],[-84.54699,38.11055],[-84.54436,38.11108],[-84.54365,38.11122],[-84.54371,38.1109],[-84.54373,38.11087],[-84.54379,38.11082],[-84.54385,38.11078],[-84.54409,38.11065],[-84.54419,38.11061],[-84.5449,38.11032],[-84.54516,38.10995],[-84.54542,38.10954],[-84.54561,38.10925],[-84.54584,38.10897],[-84.54589,38.10893],[-84.54593,38.10891],[-84.54598,38.10888],[-84.54655,38.10851],[-84.5467,38.10803],[-84.54669,38.10778],[-84.54668,38.10716],[-84.54668,38.10671],[-84.54669,38.10657],[-84.54684,38.10641],[-84.54823,38.1064],[-84.54952,38.10639],[-84.55071,38.10638],[-84.55215,38.10637],[-84.55298,38.10638],[-84.55341,38.10637]]}},
{"type":"Feature","properties":{"name":"Davids Fork Out and Back 21 Miles"},"geometry":{"type":"LineString","coordinates":[[-84.35566,38.03617],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34945,38.06663],[-84.34918,38.06676],[-84.34908,38.06681],[-84.34898,38.06684],[-84.34887,38.06688],[-84.34873,38.0669],[-84.34629,38.06724],[-84.34526,38.06738],[-84.34027,38.06808],[-84.33963,38.06817],[-84.33616,38.06865],[-84.33411,38.06894],[-84.33348,38.06903],[-84.33178,38.06927],[-84.33103,38.06937],[-84.33116,38.07006],[-84.33125,38.0705],[-84.33198,38.0739],[-84.33251,38.07436],[-84.33384,38.07477],[-84.33402,38.0751],[-84.33395,38.07541],[-84.33369,38.07613],[-84.33306,38.07769],[-84.33291,38.07821],[-84.3343,38.08457],[-84.33641,38.08868],[-84.33654,38.08893],[-84.33774,38.09147],[-84.3378,38.09159],[-84.34035,38.09692],[-84.33999,38.10057],[-84.34149,38.10313],[-84.34162,38.10336],[-84.34242,38.10494],[-84.34343,38.10705],[-84.34348,38.10716],[-84.34353,38.10725],[-84.34545,38.11119],[-84.34627,38.1143],[-84.34642,38.11479],[-84.34807,38.1207],[-84.34972,38.12147],[-84.35145,38.12264],[-84.34931,38.12414],[-84.34918,38.12423],[-84.34569,38.12668],[-84.34554,38.12677],[-84.34381,38.1275],[-84.33906,38.12891],[-84.33868,38.12902],[-84.33658,38.12964],[-84.33587,38.13015],[-84.33559,38.13038],[-84.33462,38.13385],[-84.33465,38.13704],[-84.33464,38.1371],[-84.33462,38.13729],[-84.31741,38.13703],[-84.31717,38.13702],[-84.30543,38.13662],[-84.30104,38.13667],[-84.29684,38.13649],[-84.29649,38.13648],[-84.29599,38.13647],[-84.29649,38.13648],[-84.29684,38.13649],[-84.30104,38.13667],[-84.30543,38.13662],[-84.31717,38.13702],[-84.31741,38.13703],[-84.33462,38.13729],[-84.33464,38.1371],[-84.33465,38.13704],[-84.33462,38.13385],[-84.33559,38.13038],[-84.33587,38.13015],[-84.33658,38.12964],[-84.33868,38.12902],[-84.33906,38.12891],[-84.34381,38.1275],[-84.34554,38.12677],[-84.34569,38.12668],[-84.34918,38.12423],[-84.34931,38.12414],[-84.35145,38.12264],[-84.34972,38.12147],[-84.34807,38.1207],[-84.34642,38.11479],[-84.34627,38.1143],[-84.34545,38.11119],[-84.34353,38.10725],[-84.34348,38.10716],[-84.34343,38.10705],[-84.34242,38.10494],[-84.34162,38.10336],[-84.34149,38.10313],[-84.33999,38.10057],[-84.34035,38.09692],[-84.3378,38.09159],[-84.33774,38.09147],[-84.33654,38.08893],[-84.33641,38.08868],[-84.3343,38.08457],[-84.33291,38.07821],[-84.33306,38.07769],[-84.33369,38.07613],[-84.33395,38.07541],[-84.33402,38.0751],[-84.33384,38.07477],[-84.33251,38.07436],[-84.33198,38.0739],[-84.33125,38.0705],[-84.33116,38.07006],[-84.33103,38.06937],[-84.33178,38.06927],[-84.33348,38.06903],[-84.33411,38.06894],[-84.33616,38.06865],[-84.33963,38.06817],[-84.34027,38.06808],[-84.34526,38.06738],[-84.34629,38.06724],[-84.34873,38.0669],[-84.34887,38.06688],[-84.34898,38.06684],[-84.34908,38.06681],[-84.34918,38.06676],[-84.34945,38.06663],[-84.34978,38.06658],[-84.34975,38.06636],[-84.34986,38.06614],[-84.3501,38.06572],[-84.35029,38.06536],[-84.35139,38.06341],[-84.35159,38.06305],[-84.35187,38.06255],[-84.35203,38.06226],[-84.35216,38.062],[-84.35239,38.06162],[-84.35256,38.06132],[-84.35294,38.06041],[-84.3531,38.05749],[-84.35312,38.05718],[-84.35324,38.05421],[-84.35328,38.05354],[-84.35334,38.05273],[-84.35335,38.05251],[-84.35338,38.05159],[-84.3534,38.05122],[-84.35366,38.0462],[-84.35397,38.04461],[-84.35419,38.04355],[-84.35545,38.03719],[-84.35566,38.03617]]}},
{"type":"Feature","properties":{"name":"Davids Fork - 27 miles Bethel Road"},"geometry":{"type":"LineString","coordinates":[[-84.35566,38.03617],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34945,38.06663],[-84.34918,38.06676],[-84.34908,38.06681],[-84.34898,38.06684],[-84.34887,38.06688],[-84.34873,38.0669],[-84.34629,38.06724],[-84.34526,38.06738],[-84.34027,38.06808],[-84.33963,38.06817],[-84.33616,38.06865],[-84.33411,38.06894],[-84.33348,38.06903],[-84.33178,38.06927],[-84.33103,38.06937],[-84.33116,38.07006],[-84.33125,38.0705],[-84.33198,38.0739],[-84.33251,38.07436],[-84.33384,38.07477],[-84.33402,38.0751],[-84.33395,38.07541],[-84.33369,38.07613],[-84.33306,38.07769],[-84.33291,38.07821],[-84.33277,38.0784],[-84.33268,38.0785],[-84.33226,38.0789],[-84.33159,38.07954],[-84.33051,38.08032],[-84.32765,38.08084],[-84.32656,38.08119],[-84.32333,38.08231],[-84.32098,38.08352],[-84.31672,38.08786],[-84.31649,38.08835],[-84.31625,38.08963],[-84.31646,38.09122],[-84.31648,38.09149],[-84.31623,38.09401],[-84.31618,38.09432],[-84.31587,38.0974],[-84.31587,38.09894],[-84.31587,38.09952],[-84.31593,38.10298],[-84.31593,38.10311],[-84.31593,38.10507],[-84.31566,38.10774],[-84.31558,38.10866],[-84.31553,38.1092],[-84.31486,38.10919],[-84.31359,38.10917],[-84.31316,38.10917],[-84.31223,38.10929],[-84.30651,38.11086],[-84.30254,38.11339],[-84.29739,38.11528],[-84.29729,38.11541],[-84.29736,38.11644],[-84.2968,38.12484],[-84.29679,38.12505],[-84.29595,38.13444],[-84.29592,38.13478],[-84.29599,38.13647],[-84.29635,38.14032],[-84.29625,38.14082],[-84.29593,38.14127],[-84.29509,38.14168],[-84.28867,38.14288],[-84.28631,38.14407],[-84.28466,38.14594],[-84.28455,38.14606],[-84.28411,38.14663],[-84.28393,38.14711],[-84.28282,38.15217],[-84.281,38.15626],[-84.28087,38.15653],[-84.27671,38.16588],[-84.2768,38.16688],[-84.27703,38.16774],[-84.27715,38.17032],[-84.27747,38.17279],[-84.27686,38.17762],[-84.27685,38.17772],[-84.27671,38.17915],[-84.27664,38.17974],[-84.27657,38.18051],[-84.27655,38.18072],[-84.27622,38.18419],[-84.27654,38.18623],[-84.27656,38.18651],[-84.27648,38.18692],[-84.27645,38.18699],[-84.27639,38.18708],[-84.27622,38.18729],[-84.27604,38.18755],[-84.2758,38.18804],[-84.2756,38.18969],[-84.27558,38.18981],[-84.27538,38.1926],[-84.27537,38.19312],[-84.27538,38.1926],[-84.27558,38.18981],[-84.2756,38.18969],[-84.2758,38.18804],[-84.27604,38.18755],[-84.27622,38.18729],[-84.27639,38.18708],[-84.27645,38.18699],[-84.27648,38.18692],[-84.27656,38.18651],[-84.27654,38.18623],[-84.27622,38.18419],[-84.27655,38.18072],[-84.27657,38.18051],[-84.27664,38.17974],[-84.27671,38.17915],[-84.27685,38.17772],[-84.27686,38.17762],[-84.27747,38.17279],[-84.27715,38.17032],[-84.27703,38.16774],[-84.2768,38.16688],[-84.27671,38.16588],[-84.28087,38.15653],[-84.281,38.15626],[-84.28282,38.15217],[-84.28393,38.14711],[-84.28411,38.14663],[-84.28455,38.14606],[-84.28466,38.14594],[-84.28631,38.14407],[-84.28867,38.14288],[-84.29509,38.14168],[-84.29593,38.14127],[-84.29625,38.14082],[-84.29635,38.14032],[-84.29599,38.13647],[-84.29592,38.13478],[-84.29595,38.13444],[-84.29679,38.12505],[-84.2968,38.12484],[-84.29736,38.11644],[-84.29729,38.11541],[-84.29739,38.11528],[-84.30254,38.11339],[-84.30651,38.11086],[-84.31223,38.10929],[-84.31316,38.10917],[-84.31359,38.10917],[-84.31486,38.10919],[-84.31553,38.1092],[-84.31558,38.10866],[-84.31566,38.10774],[-84.31593,38.10507],[-84.31593,38.10311],[-84.31593,38.10298],[-84.31587,38.09952],[-84.31587,38.09894],[-84.31587,38.0974],[-84.31618,38.09432],[-84.31623,38.09401],[-84.31648,38.09149],[-84.31646,38.09122],[-84.31625,38.08963],[-84.31649,38.08835],[-84.31672,38.08786],[-84.32098,38.08352],[-84.32333,38.08231],[-84.32656,38.08119],[-84.32765,38.08084],[-84.33051,38.08032],[-84.33159,38.07954],[-84.33226,38.0789],[-84.33268,38.0785],[-84.33277,38.0784],[-84.33291,38.07821],[-84.33306,38.07769],[-84.33369,38.07613],[-84.33395,38.07541],[-84.33402,38.0751],[-84.33384,38.07477],[-84.33251,38.07436],[-84.33198,38.0739],[-84.33125,38.0705],[-84.33116,38.07006],[-84.33103,38.06937],[-84.33178,38.06927],[-84.33348,38.06903],[-84.33411,38.06894],[-84.33616,38.06865],[-84.33963,38.06817],[-84.34027,38.06808],[-84.34526,38.06738],[-84.34629,38.06724],[-84.34873,38.0669],[-84.34887,38.06688],[-84.34898,38.06684],[-84.34908,38.06681],[-84.34918,38.06676],[-84.34945,38.06663],[-84.34978,38.06658],[-84.34975,38.06636],[-84.34986,38.06614],[-84.3501,38.06572],[-84.35029,38.06536],[-84.35139,38.06341],[-84.35159,38.06305],[-84.35187,38.06255],[-84.35203,38.06226],[-84.35216,38.062],[-84.35239,38.06162],[-84.35256,38.06132],[-84.35294,38.06041],[-84.3531,38.05749],[-84.35312,38.05718],[-84.35324,38.05421],[-84.35328,38.05354],[-84.35334,38.05273],[-84.35335,38.05251],[-84.35338,38.05159],[-84.3534,38.05122],[-84.35366,38.0462],[-84.35397,38.04461],[-84.35419,38.04355],[-84.35545,38.03719],[-84.35566,38.03617]]}},
{"type":"Feature","properties":{"name":"David's Fork 27 Out and Back"},"geometry":{"type":"LineString","coordinates":[[-84.35568,38.03609],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34945,38.06663],[-84.34918,38.06676],[-84.34908,38.06681],[-84.34898,38.06684],[-84.34887,38.06688],[-84.34873,38.0669],[-84.34629,38.06724],[-84.34526,38.06738],[-84.34027,38.06808],[-84.33963,38.06817],[-84.33616,38.06865],[-84.33411,38.06894],[-84.33348,38.06903],[-84.33178,38.06927],[-84.33103,38.06937],[-84.32999,38.06952],[-84.32767,38.06985],[-84.32657,38.07001],[-84.32485,38.07018],[-84.32337,38.0704],[-84.32146,38.07069],[-84.32025,38.0711],[-84.3199,38.07128],[-84.31785,38.07255],[-84.31705,38.07307],[-84.31296,38.07535],[-84.31275,38.07546],[-84.31239,38.07557],[-84.30702,38.07582],[-84.30671,38.07592],[-84.30593,38.07653],[-84.30387,38.07818],[-84.30172,38.07999],[-84.30122,38.08042],[-84.29912,38.0822],[-84.29794,38.08272],[-84.29659,38.08288],[-84.29001,38.08319],[-84.28869,38.08326],[-84.28239,38.08357],[-84.28124,38.08362],[-84.27745,38.08431],[-84.27632,38.08454],[-84.273,38.08514],[-84.26999,38.08516],[-84.26938,38.08516],[-84.26928,38.08516],[-84.26923,38.08515],[-84.26865,38.08514],[-84.26784,38.09381],[-84.26783,38.09399],[-84.26782,38.09416],[-84.26771,38.0954],[-84.2673,38.09901],[-84.26575,38.10207],[-84.26559,38.10238],[-84.26494,38.10366],[-84.26167,38.10999],[-84.26141,38.11097],[-84.2614,38.11112],[-84.26138,38.11158],[-84.26134,38.11245],[-84.26086,38.11224],[-84.26075,38.11218],[-84.2506,38.10691],[-84.23759,38.11956],[-84.23431,38.12252],[-84.23046,38.12636],[-84.22998,38.12643],[-84.22734,38.12633],[-84.22594,38.12687],[-84.22557,38.12691],[-84.22009,38.12335],[-84.21997,38.12327],[-84.21839,38.12229],[-84.21426,38.12572],[-84.21246,38.12614],[-84.21179,38.12617],[-84.21087,38.12654],[-84.20903,38.12824],[-84.20842,38.12905],[-84.20838,38.13053],[-84.20544,38.13234],[-84.20838,38.13053],[-84.20842,38.12905],[-84.20903,38.12824],[-84.21087,38.12654],[-84.21179,38.12617],[-84.21246,38.12614],[-84.21426,38.12572],[-84.21839,38.12229],[-84.21997,38.12327],[-84.22009,38.12335],[-84.22557,38.12691],[-84.22594,38.12687],[-84.22734,38.12633],[-84.22998,38.12643],[-84.23046,38.12636],[-84.23431,38.12252],[-84.23759,38.11956],[-84.2506,38.10691],[-84.26075,38.11218],[-84.26086,38.11224],[-84.26134,38.11245],[-84.26138,38.11158],[-84.2614,38.11112],[-84.26141,38.11097],[-84.26167,38.10999],[-84.26494,38.10366],[-84.26559,38.10238],[-84.26575,38.10207],[-84.2673,38.09901],[-84.26771,38.0954],[-84.26782,38.09416],[-84.26783,38.09399],[-84.26784,38.09381],[-84.26865,38.08514],[-84.26923,38.08515],[-84.26928,38.08516],[-84.26938,38.08516],[-84.26999,38.08516],[-84.273,38.08514],[-84.27632,38.08454],[-84.27745,38.08431],[-84.28124,38.08362],[-84.28239,38.08357],[-84.28869,38.08326],[-84.29001,38.08319],[-84.29659,38.08288],[-84.29794,38.08272],[-84.29912,38.0822],[-84.30122,38.08042],[-84.30172,38.07999],[-84.30387,38.07818],[-84.30593,38.07653],[-84.30671,38.07592],[-84.30702,38.07582],[-84.31239,38.07557],[-84.31275,38.07546],[-84.31296,38.07535],[-84.31705,38.07307],[-84.31785,38.07255],[-84.3199,38.07128],[-84.32025,38.0711],[-84.32146,38.07069],[-84.32337,38.0704],[-84.32485,38.07018],[-84.32657,38.07001],[-84.32767,38.06985],[-84.32999,38.06952],[-84.33103,38.06937],[-84.33178,38.06927],[-84.33348,38.06903],[-84.33411,38.06894],[-84.33616,38.06865],[-84.33963,38.06817],[-84.34027,38.06808],[-84.34526,38.06738],[-84.34629,38.06724],[-84.34873,38.0669],[-84.34887,38.06688],[-84.34898,38.06684],[-84.34908,38.06681],[-84.34918,38.06676],[-84.34945,38.06663],[-84.34978,38.06658],[-84.34975,38.06636],[-84.34986,38.06614],[-84.3501,38.06572],[-84.35029,38.06536],[-84.35139,38.06341],[-84.35159,38.06305],[-84.35187,38.06255],[-84.35203,38.06226],[-84.35216,38.062],[-84.35239,38.06162],[-84.35256,38.06132],[-84.35294,38.06041],[-84.3531,38.05749],[-84.35312,38.05718],[-84.35324,38.05421],[-84.35328,38.05354],[-84.35334,38.05273],[-84.35335,38.05251],[-84.35338,38.05159],[-84.3534,38.05122],[-84.35366,38.0462],[-84.35397,38.04461],[-84.35419,38.04355],[-84.35545,38.03719],[-84.35568,38.03609]]}},
{"type":"Feature","properties":{"name":"Hartland-Athens"},"geometry":{"type":"LineString","coordinates":[[-84.47987,37.96007],[-84.4796,37.96019],[-84.47939,37.9603],[-84.47901,37.96056],[-84.47809,37.96166],[-84.47735,37.96224],[-84.47719,37.96232],[-84.47675,37.96248],[-84.47655,37.96253],[-84.47565,37.9626],[-84.47495,37.96253],[-84.47382,37.96238],[-84.47276,37.9624],[-84.47172,37.96255],[-84.47083,37.96282],[-84.46796,37.96476],[-84.46738,37.96519],[-84.46732,37.96523],[-84.46731,37.96525],[-84.46728,37.96532],[-84.46701,37.96551],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44198,37.92938],[-84.4414,37.93037],[-84.44063,37.93165],[-84.44022,37.93236],[-84.43829,37.9357],[-84.43677,37.93832],[-84.43372,37.94362],[-84.43502,37.94622],[-84.43548,37.94766],[-84.43593,37.94912],[-84.43604,37.9498],[-84.43378,37.95367],[-84.43211,37.95652],[-84.43085,37.95869],[-84.42986,37.96038],[-84.42947,37.96107],[-84.42732,37.96515],[-84.42525,37.96669],[-84.42404,37.96758],[-84.42336,37.96801],[-84.42286,37.96817],[-84.4217,37.96842],[-84.42145,37.96848],[-84.42089,37.96755],[-84.41807,37.96275],[-84.41724,37.96138],[-84.41664,37.96036],[-84.41582,37.95899],[-84.41578,37.9589],[-84.4156,37.95894],[-84.41534,37.95902],[-84.41514,37.95907],[-84.41507,37.95907],[-84.40941,37.95638],[-84.40882,37.95609],[-84.40737,37.95538],[-84.40425,37.95386],[-84.39626,37.95031],[-84.39213,37.95027],[-84.39109,37.95027],[-84.38995,37.9503],[-84.38658,37.95032],[-84.38262,37.95034],[-84.38148,37.95033],[-84.38041,37.95033],[-84.3772,37.95031],[-84.37362,37.95026],[-84.36895,37.95018],[-84.36718,37.95018],[-84.3671,37.95021],[-84.36673,37.95063],[-84.3671,37.95021],[-84.36718,37.95018],[-84.36895,37.95018],[-84.37362,37.95026],[-84.3772,37.95031],[-84.38041,37.95033],[-84.38148,37.95033],[-84.38262,37.95034],[-84.38658,37.95032],[-84.38995,37.9503],[-84.39109,37.95027],[-84.39213,37.95027],[-84.39626,37.95031],[-84.40425,37.95386],[-84.40737,37.95538],[-84.40882,37.95609],[-84.40941,37.95638],[-84.41507,37.95907],[-84.41514,37.95907],[-84.41534,37.95902],[-84.4156,37.95894],[-84.41578,37.9589],[-84.41582,37.95899],[-84.41664,37.96036],[-84.41724,37.96138],[-84.41807,37.96275],[-84.42089,37.96755],[-84.42145,37.96848],[-84.4217,37.96842],[-84.42286,37.96817],[-84.42336,37.96801],[-84.42404,37.96758],[-84.42525,37.96669],[-84.42732,37.96515],[-84.42947,37.96107],[-84.42986,37.96038],[-84.43085,37.95869],[-84.43211,37.95652],[-84.43378,37.95367],[-84.43604,37.9498],[-84.43593,37.94912],[-84.43548,37.94766],[-84.43502,37.94622],[-84.43372,37.94362],[-84.43677,37.93832],[-84.43829,37.9357],[-84.44022,37.93236],[-84.44063,37.93165],[-84.4414,37.93037],[-84.44198,37.92938],[-84.44238,37.92874],[-84.44283,37.928],[-84.44298,37.92785],[-84.44302,37.92783],[-84.44402,37.92818],[-84.4444,37.92834],[-84.44483,37.9286],[-84.44492,37.92871],[-84.44528,37.92924],[-84.44579,37.92957],[-84.45069,37.93238],[-84.45107,37.9326],[-84.45257,37.93346],[-84.45482,37.93483],[-84.45607,37.93557],[-84.45603,37.93561],[-84.45599,37.93565],[-84.45581,37.9359],[-84.45422,37.93823],[-84.45364,37.93893],[-84.45345,37.93909],[-84.45328,37.93923],[-84.45263,37.9398],[-84.4521,37.94018],[-84.45186,37.9403],[-84.45002,37.94239],[-84.45001,37.94303],[-84.45056,37.94405],[-84.45057,37.9441],[-84.45061,37.94482],[-84.45123,37.94559],[-84.45213,37.94643],[-84.45322,37.9474],[-84.45358,37.94779],[-84.45611,37.95093],[-84.4562,37.9513],[-84.45621,37.95149],[-84.4562,37.9519],[-84.45558,37.95295],[-84.45533,37.95338],[-84.45525,37.9535],[-84.45488,37.95412],[-84.45474,37.95435],[-84.45361,37.95614],[-84.45263,37.95772],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46701,37.96551],[-84.46728,37.96532],[-84.46731,37.96525],[-84.46732,37.96523],[-84.46738,37.96519],[-84.46796,37.96476],[-84.47083,37.96282],[-84.47172,37.96255],[-84.47276,37.9624],[-84.47382,37.96238],[-84.47495,37.96253],[-84.47565,37.9626],[-84.47655,37.96253],[-84.47675,37.96248],[-84.47719,37.96232],[-84.47735,37.96224],[-84.47809,37.96166],[-84.47901,37.96056],[-84.47939,37.9603],[-84.4796,37.96019],[-84.47987,37.96007]]}},
{"type":"Feature","properties":{"name":"David's Fork 17"},"geometry":{"type":"LineString","coordinates":[[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34991,38.06686],[-84.35031,38.0677],[-84.35111,38.06935],[-84.35156,38.07026],[-84.35337,38.07396],[-84.35357,38.07438],[-84.35382,38.07489],[-84.35426,38.07576],[-84.35433,38.0759],[-84.35674,38.07974],[-84.35741,38.08036],[-84.35894,38.0811],[-84.35918,38.08132],[-84.35923,38.0818],[-84.35899,38.08333],[-84.35769,38.08512],[-84.35757,38.08575],[-84.35759,38.08584],[-84.35777,38.08619],[-84.35839,38.08675],[-84.35934,38.08755],[-84.36061,38.08865],[-84.36132,38.08939],[-84.36672,38.09421],[-84.36837,38.09637],[-84.36853,38.09655],[-84.36979,38.09797],[-84.37142,38.09976],[-84.37429,38.10289],[-84.37551,38.10426],[-84.37414,38.10556],[-84.37249,38.10722],[-84.37156,38.10809],[-84.36805,38.10975],[-84.36763,38.11006],[-84.36689,38.11067],[-84.36647,38.11109],[-84.36577,38.11188],[-84.36411,38.1132],[-84.36344,38.11374],[-84.3625,38.11449],[-84.35725,38.1178],[-84.35598,38.1194],[-84.35573,38.11959],[-84.35413,38.12074],[-84.35396,38.12086],[-84.35207,38.12219],[-84.35194,38.12229],[-84.35145,38.12264],[-84.34972,38.12147],[-84.34807,38.1207],[-84.34642,38.11479],[-84.34627,38.1143],[-84.34545,38.11119],[-84.34353,38.10725],[-84.34348,38.10716],[-84.34343,38.10705],[-84.34242,38.10494],[-84.34221,38.10499],[-84.34213,38.10501],[-84.33657,38.1063],[-84.33613,38.1064],[-84.33397,38.10689],[-84.333,38.10696],[-84.32842,38.10625],[-84.3253,38.10712],[-84.32499,38.10721],[-84.32177,38.10818],[-84.32112,38.10839],[-84.31836,38.10922],[-84.31553,38.1092],[-84.31558,38.10866],[-84.31566,38.10774],[-84.31593,38.10507],[-84.31593,38.10311],[-84.31593,38.10298],[-84.31587,38.09952],[-84.31587,38.09894],[-84.31587,38.0974],[-84.31618,38.09432],[-84.31623,38.09401],[-84.31648,38.09149],[-84.31646,38.09122],[-84.31625,38.08963],[-84.31649,38.08835],[-84.31672,38.08786],[-84.32098,38.08352],[-84.32333,38.08231],[-84.32656,38.08119],[-84.32765,38.08084],[-84.33051,38.08032],[-84.33159,38.07954],[-84.33226,38.0789],[-84.33268,38.0785],[-84.33277,38.0784],[-84.33291,38.07821],[-84.33306,38.07769],[-84.33369,38.07613],[-84.33395,38.07541],[-84.33402,38.0751],[-84.33384,38.07477],[-84.33251,38.07436],[-84.33198,38.0739],[-84.33125,38.0705],[-84.33116,38.07006],[-84.33103,38.06937],[-84.33178,38.06927],[-84.33348,38.06903],[-84.33411,38.06894],[-84.33616,38.06865],[-84.33963,38.06817],[-84.34027,38.06808],[-84.34526,38.06738],[-84.34629,38.06724],[-84.34873,38.0669],[-84.34887,38.06688],[-84.34898,38.06684],[-84.34908,38.06681],[-84.34918,38.06676],[-84.34945,38.06663],[-84.34978,38.06658],[-84.34975,38.06636],[-84.34986,38.06614],[-84.3501,38.06572],[-84.35029,38.06536],[-84.35139,38.06341],[-84.35159,38.06305],[-84.35187,38.06255],[-84.35203,38.06226],[-84.35216,38.062],[-84.35239,38.06162],[-84.35256,38.06132],[-84.35294,38.06041],[-84.3531,38.05749],[-84.35312,38.05718],[-84.35324,38.05421],[-84.35328,38.05354],[-84.35334,38.05273],[-84.35335,38.05251],[-84.35338,38.05159],[-84.3534,38.05122],[-84.35366,38.0462],[-84.35397,38.04461],[-84.35419,38.04355],[-84.35545,38.03719]]}},
{"type":"Feature","properties":{"name":"David's Fork 23"},"geometry":{"type":"LineString","coordinates":[[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34991,38.06686],[-84.35031,38.0677],[-84.35111,38.06935],[-84.35156,38.07026],[-84.35337,38.07396],[-84.35357,38.07438],[-84.35382,38.07489],[-84.35426,38.07576],[-84.35433,38.0759],[-84.35674,38.07974],[-84.35741,38.08036],[-84.35894,38.0811],[-84.35918,38.08132],[-84.35923,38.0818],[-84.35899,38.08333],[-84.35769,38.08512],[-84.35757,38.08575],[-84.35759,38.08584],[-84.35777,38.08619],[-84.35839,38.08675],[-84.35934,38.08755],[-84.36061,38.08865],[-84.36132,38.08939],[-84.36672,38.09421],[-84.36837,38.09637],[-84.36853,38.09655],[-84.36979,38.09797],[-84.37142,38.09976],[-84.37429,38.10289],[-84.37551,38.10426],[-84.37414,38.10556],[-84.37249,38.10722],[-84.37156,38.10809],[-84.36805,38.10975],[-84.36763,38.11006],[-84.36689,38.11067],[-84.36647,38.11109],[-84.36577,38.11188],[-84.36411,38.1132],[-84.36344,38.11374],[-84.3625,38.11449],[-84.35725,38.1178],[-84.35598,38.1194],[-84.35573,38.11959],[-84.35413,38.12074],[-84.35396,38.12086],[-84.35207,38.12219],[-84.35194,38.12229],[-84.35145,38.12264],[-84.34931,38.12414],[-84.34918,38.12423],[-84.34569,38.12668],[-84.34554,38.12677],[-84.34381,38.1275],[-84.33906,38.12891],[-84.33868,38.12902],[-84.33658,38.12964],[-84.33587,38.13015],[-84.33559,38.13038],[-84.33462,38.13385],[-84.33465,38.13704],[-84.33464,38.1371],[-84.33462,38.13729],[-84.31741,38.13703],[-84.31717,38.13702],[-84.30543,38.13662],[-84.30104,38.13667],[-84.29684,38.13649],[-84.29649,38.13648],[-84.29599,38.13647],[-84.29592,38.13478],[-84.29595,38.13444],[-84.29679,38.12505],[-84.2968,38.12484],[-84.29736,38.11644],[-84.29727,38.11644],[-84.29692,38.11641],[-84.29642,38.11638],[-84.29596,38.11635],[-84.2957,38.11634],[-84.2953,38.11632],[-84.29068,38.11606],[-84.28786,38.11576],[-84.28588,38.11508],[-84.28014,38.11398],[-84.27119,38.11316],[-84.26223,38.11264],[-84.26134,38.11245],[-84.26138,38.11158],[-84.2614,38.11112],[-84.26141,38.11097],[-84.26167,38.10999],[-84.26494,38.10366],[-84.26559,38.10238],[-84.26575,38.10207],[-84.2673,38.09901],[-84.26771,38.0954],[-84.26782,38.09416],[-84.26783,38.09399],[-84.26784,38.09381],[-84.26865,38.08514],[-84.26923,38.08515],[-84.26928,38.08516],[-84.26938,38.08516],[-84.26999,38.08516],[-84.273,38.08514],[-84.27632,38.08454],[-84.27745,38.08431],[-84.28124,38.08362],[-84.28239,38.08357],[-84.28869,38.08326],[-84.29001,38.08319],[-84.29659,38.08288],[-84.29794,38.08272],[-84.29912,38.0822],[-84.30122,38.08042],[-84.30172,38.07999],[-84.30387,38.07818],[-84.30593,38.07653],[-84.30671,38.07592],[-84.30702,38.07582],[-84.31239,38.07557],[-84.31275,38.07546],[-84.31296,38.07535],[-84.31705,38.07307],[-84.31785,38.07255],[-84.3199,38.07128],[-84.32025,38.0711],[-84.32146,38.07069],[-84.32337,38.0704],[-84.32485,38.07018],[-84.32657,38.07001],[-84.32767,38.06985],[-84.32999,38.06952],[-84.33103,38.06937],[-84.33178,38.06927],[-84.33348,38.06903],[-84.33411,38.06894],[-84.33616,38.06865],[-84.33963,38.06817],[-84.34027,38.06808],[-84.34526,38.06738],[-84.34629,38.06724],[-84.34873,38.0669],[-84.34887,38.06688],[-84.34898,38.06684],[-84.34908,38.06681],[-84.34918,38.06676],[-84.34945,38.06663],[-84.34978,38.06658],[-84.34975,38.06636],[-84.34986,38.06614],[-84.3501,38.06572],[-84.35029,38.06536],[-84.35139,38.06341],[-84.35159,38.06305],[-84.35187,38.06255],[-84.35203,38.06226],[-84.35216,38.062],[-84.35239,38.06162],[-84.35256,38.06132],[-84.35294,38.06041],[-84.3531,38.05749],[-84.35312,38.05718],[-84.35324,38.05421],[-84.35328,38.05354],[-84.35334,38.05273],[-84.35335,38.05251],[-84.35338,38.05159],[-84.3534,38.05122],[-84.35366,38.0462],[-84.35397,38.04461],[-84.35419,38.04355],[-84.35545,38.03719]]}},
{"type":"Feature","properties":{"name":"Angel Ride 27 Draft A"},"geometry":{"type":"LineString","coordinates":[[-84.52338,38.04723],[-84.52319,38.04878],[-84.52324,38.04981],[-84.52326,38.05045],[-84.52331,38.05125],[-84.52362,38.05181],[-84.52373,38.05192],[-84.52473,38.05288],[-84.52493,38.05326],[-84.52496,38.05398],[-84.52493,38.0542],[-84.5249,38.05555],[-84.5249,38.05574],[-84.52473,38.05673],[-84.52426,38.05756],[-84.52764,38.05783],[-84.52892,38.05796],[-84.52976,38.05807],[-84.5334,38.05862],[-84.53364,38.0587],[-84.53432,38.05896],[-84.5351,38.05929],[-84.53577,38.05954],[-84.53983,38.06095],[-84.54059,38.0612],[-84.54527,38.06274],[-84.54705,38.06342],[-84.55025,38.06467],[-84.55102,38.06502],[-84.55177,38.06543],[-84.55423,38.06712],[-84.55664,38.06879],[-84.5574,38.06944],[-84.55745,38.06964],[-84.55786,38.06975],[-84.55854,38.07022],[-84.56097,38.07218],[-84.56228,38.07354],[-84.56247,38.07374],[-84.56478,38.0755],[-84.56591,38.07623],[-84.5669,38.07687],[-84.56972,38.07863],[-84.57287,38.0801],[-84.57345,38.0804],[-84.5766,38.08203],[-84.57809,38.08267],[-84.58002,38.08357],[-84.58083,38.08397],[-84.58216,38.08463],[-84.58273,38.08487],[-84.58355,38.08508],[-84.59016,38.0867],[-84.59044,38.08651],[-84.59346,38.08449],[-84.59443,38.08384],[-84.59872,38.0811],[-84.6002,38.08016],[-84.60095,38.07969],[-84.60129,38.0795],[-84.6032,38.07848],[-84.60513,38.07743],[-84.60646,38.07672],[-84.60675,38.07685],[-84.6073,38.07739],[-84.6081,38.07775],[-84.60839,38.07773],[-84.60905,38.07728],[-84.60943,38.07702],[-84.61219,38.07511],[-84.6134,38.07431],[-84.6141,38.07381],[-84.61486,38.07331],[-84.6179,38.07211],[-84.61844,38.07309],[-84.61961,38.07513],[-84.61993,38.0757],[-84.62121,38.07801],[-84.62169,38.07883],[-84.62247,38.08008],[-84.62443,38.08361],[-84.62467,38.08406],[-84.6251,38.0848],[-84.62565,38.0858],[-84.62924,38.08433],[-84.63141,38.08349],[-84.63419,38.08241],[-84.63493,38.0823],[-84.63606,38.08218],[-84.63653,38.08215],[-84.63773,38.08203],[-84.63851,38.0819],[-84.63938,38.08035],[-84.64018,38.08076],[-84.64206,38.08217],[-84.64255,38.08213],[-84.64463,38.08157],[-84.64628,38.0814],[-84.64695,38.08132],[-84.64772,38.08124],[-84.64801,38.08122],[-84.64829,38.08119],[-84.64901,38.08104],[-84.65177,38.08003],[-84.65272,38.0797],[-84.65412,38.0792],[-84.65581,38.07909],[-84.65722,38.07839],[-84.65756,38.07815],[-84.65794,38.07787],[-84.66224,38.0748],[-84.6604,38.07356],[-84.66015,38.07328],[-84.6591,38.07002],[-84.65833,38.06675],[-84.65828,38.06655],[-84.65775,38.06435],[-84.65765,38.06211],[-84.6564,38.0596],[-84.65608,38.05874],[-84.65528,38.05587],[-84.65551,38.05497],[-84.65562,38.05485],[-84.65571,38.05462],[-84.65561,38.05443],[-84.6542,38.05311],[-84.65339,38.05112],[-84.65605,38.04601],[-84.65628,38.04559],[-84.65691,38.04358],[-84.65832,38.04148],[-84.65881,38.04063],[-84.66472,38.0305],[-84.66741,38.02483],[-84.66894,38.02214],[-84.66902,38.02196],[-84.66938,38.0193],[-84.66942,38.01895],[-84.66951,38.01337],[-84.6688,38.00941],[-84.66808,38.00486],[-84.6684,37.99913],[-84.66892,37.9985],[-84.66482,37.99738],[-84.66363,37.9975],[-84.66253,37.99718],[-84.66112,37.9968],[-84.65876,37.99746],[-84.65796,37.99741],[-84.65237,37.99562],[-84.65068,37.99854],[-84.65034,37.99873],[-84.6482,37.99899],[-84.64786,37.99916],[-84.63661,38.00836],[-84.63553,38.01012],[-84.64181,38.0123],[-84.63995,38.01633],[-84.63752,38.02135],[-84.6359,38.02081],[-84.63037,38.01905],[-84.62941,38.01957],[-84.62808,38.02101],[-84.62729,38.02209],[-84.62647,38.02283],[-84.62531,38.02342],[-84.6211,38.02529],[-84.62057,38.02553],[-84.62022,38.02521],[-84.62,38.02517],[-84.61893,38.02562],[-84.61762,38.02595],[-84.61706,38.0259],[-84.61613,38.02558],[-84.61598,38.02556],[-84.61521,38.02565],[-84.61269,38.02657],[-84.60682,38.02675],[-84.60588,38.02687],[-84.60549,38.02692],[-84.60505,38.02696],[-84.60355,38.02707],[-84.60334,38.02707],[-84.60245,38.02705],[-84.59884,38.02694],[-84.59386,38.02531],[-84.59278,38.02518],[-84.59213,38.02524],[-84.59192,38.0253],[-84.59115,38.02561],[-84.58965,38.02622],[-84.58641,38.02758],[-84.58367,38.02852],[-84.58281,38.02893],[-84.58013,38.03066],[-84.57956,38.03103],[-84.57826,38.03179],[-84.57531,38.03286],[-84.57247,38.03388],[-84.57053,38.03445],[-84.56927,38.03473],[-84.56653,38.03542],[-84.56358,38.03685],[-84.55681,38.03446],[-84.55664,38.0344],[-84.55454,38.03369],[-84.55435,38.03364],[-84.55082,38.03242],[-84.54943,38.03192],[-84.54768,38.0313],[-84.54445,38.03078],[-84.54422,38.03142],[-84.54388,38.03187],[-84.54233,38.03312],[-84.54193,38.03326],[-84.54151,38.03336],[-84.54078,38.03378],[-84.53927,38.03639],[-84.53805,38.03853],[-84.53777,38.03898],[-84.53744,38.03941],[-84.53601,38.04095],[-84.53413,38.04285],[-84.53371,38.04264],[-84.533,38.04255],[-84.53029,38.04229],[-84.53008,38.04234],[-84.52995,38.04314],[-84.5298,38.044],[-84.52908,38.04392],[-84.52897,38.0437],[-84.52881,38.04381],[-84.52873,38.04392],[-84.52868,38.04398],[-84.52881,38.04425],[-84.52888,38.04433],[-84.52892,38.04476],[-84.52834,38.04485],[-84.52815,38.04485],[-84.52737,38.04484],[-84.52635,38.04526],[-84.52614,38.04544],[-84.52609,38.04548],[-84.52594,38.04609],[-84.52392,38.046],[-84.52355,38.046],[-84.52347,38.0466],[-84.52338,38.04723]]}},
{"type":"Feature","properties":{"name":"Angel Ride 18 Draft A"},"geometry":{"type":"LineString","coordinates":[[-84.52338,38.04723],[-84.52319,38.04878],[-84.52324,38.04981],[-84.52326,38.05045],[-84.52331,38.05125],[-84.52362,38.05181],[-84.52373,38.05192],[-84.52473,38.05288],[-84.52493,38.05326],[-84.52496,38.05398],[-84.52493,38.0542],[-84.5249,38.05555],[-84.5249,38.05574],[-84.52473,38.05673],[-84.52426,38.05756],[-84.52764,38.05783],[-84.52892,38.05796],[-84.52976,38.05807],[-84.5334,38.05862],[-84.53364,38.0587],[-84.53432,38.05896],[-84.5351,38.05929],[-84.53577,38.05954],[-84.53983,38.06095],[-84.54059,38.0612],[-84.54527,38.06274],[-84.54705,38.06342],[-84.55025,38.06467],[-84.55102,38.06502],[-84.55177,38.06543],[-84.55423,38.06712],[-84.55664,38.06879],[-84.5574,38.06944],[-84.55745,38.06964],[-84.55786,38.06975],[-84.55854,38.07022],[-84.56097,38.07218],[-84.56228,38.07354],[-84.56247,38.07374],[-84.56478,38.0755],[-84.56591,38.07623],[-84.5669,38.07687],[-84.56972,38.07863],[-84.57287,38.0801],[-84.57345,38.0804],[-84.5766,38.08203],[-84.57809,38.08267],[-84.58002,38.08357],[-84.58083,38.08397],[-84.58216,38.08463],[-84.58273,38.08487],[-84.58355,38.08508],[-84.59016,38.0867],[-84.59044,38.08651],[-84.59346,38.08449],[-84.59443,38.08384],[-84.59872,38.0811],[-84.6002,38.08016],[-84.60095,38.07969],[-84.60129,38.0795],[-84.6032,38.07848],[-84.60513,38.07743],[-84.60646,38.07672],[-84.60675,38.07685],[-84.6073,38.07739],[-84.6081,38.07775],[-84.60839,38.07773],[-84.60905,38.07728],[-84.60943,38.07702],[-84.61219,38.07511],[-84.6134,38.07431],[-84.6141,38.07381],[-84.61486,38.07331],[-84.6179,38.07211],[-84.61952,38.07153],[-84.62056,38.07182],[-84.62151,38.07194],[-84.62235,38.07183],[-84.62331,38.07147],[-84.62684,38.06838],[-84.62754,38.0679],[-84.6277,38.06774],[-84.62885,38.06601],[-84.62919,38.06473],[-84.62955,38.06398],[-84.62997,38.06393],[-84.63065,38.06328],[-84.63167,38.06275],[-84.63196,38.06265],[-84.63239,38.06259],[-84.63097,38.06129],[-84.62908,38.06033],[-84.62712,38.05949],[-84.62646,38.05908],[-84.62559,38.05818],[-84.62484,38.05781],[-84.62407,38.05755],[-84.62178,38.05678],[-84.6248,38.05127],[-84.62397,38.04459],[-84.62362,38.04286],[-84.62362,38.04253],[-84.62382,38.04236],[-84.62474,38.04245],[-84.62528,38.04231],[-84.62662,38.04115],[-84.62663,38.04081],[-84.62692,38.04053],[-84.62817,38.04021],[-84.62883,38.03972],[-84.62901,38.03919],[-84.62904,38.03702],[-84.62917,38.03662],[-84.62949,38.03623],[-84.63256,38.0337],[-84.63298,38.03282],[-84.63098,38.03195],[-84.62426,38.02944],[-84.62057,38.02553],[-84.62022,38.02521],[-84.62,38.02517],[-84.61893,38.02562],[-84.61762,38.02595],[-84.61706,38.0259],[-84.61613,38.02558],[-84.61598,38.02556],[-84.61521,38.02565],[-84.61269,38.02657],[-84.60682,38.02675],[-84.60588,38.02687],[-84.60549,38.02692],[-84.60505,38.02696],[-84.60355,38.02707],[-84.60334,38.02707],[-84.60245,38.02705],[-84.59884,38.02694],[-84.59386,38.02531],[-84.59278,38.02518],[-84.59213,38.02524],[-84.59192,38.0253],[-84.59115,38.02561],[-84.58965,38.02622],[-84.58641,38.02758],[-84.58367,38.02852],[-84.58281,38.02893],[-84.58013,38.03066],[-84.57956,38.03103],[-84.57826,38.03179],[-84.57531,38.03286],[-84.57247,38.03388],[-84.57053,38.03445],[-84.56927,38.03473],[-84.56653,38.03542],[-84.56358,38.03685],[-84.55681,38.03446],[-84.55664,38.0344],[-84.55454,38.03369],[-84.55435,38.03364],[-84.55082,38.03242],[-84.54943,38.03192],[-84.54768,38.0313],[-84.54445,38.03078],[-84.54422,38.03142],[-84.54388,38.03187],[-84.54233,38.03312],[-84.54193,38.03326],[-84.54151,38.03336],[-84.54078,38.03378],[-84.53927,38.03639],[-84.53805,38.03853],[-84.53777,38.03898],[-84.53744,38.03941],[-84.53601,38.04095],[-84.53413,38.04285],[-84.53371,38.04264],[-84.533,38.04255],[-84.53029,38.04229],[-84.53008,38.04234],[-84.52995,38.04314],[-84.5298,38.044],[-84.52908,38.04392],[-84.52897,38.0437],[-84.52881,38.04381],[-84.52873,38.04392],[-84.52868,38.04398],[-84.52881,38.04425],[-84.52888,38.04433],[-84.52892,38.04476],[-84.52834,38.04485],[-84.52815,38.04485],[-84.52737,38.04484],[-84.52635,38.04526],[-84.52614,38.04544],[-84.52609,38.04548],[-84.52594,38.04609],[-84.52392,38.046],[-84.52355,38.046],[-84.52347,38.0466],[-84.52338,38.04723]]}},
{"type":"Feature","properties":{"name":"Angel Ride 5 Draft A"},"geometry":{"type":"LineString","coordinates":[[-84.52347,38.0466],[-84.52355,38.046],[-84.52408,38.04202],[-84.52393,38.0413],[-84.52338,38.04057],[-84.52336,38.04045],[-84.52256,38.03998],[-84.52158,38.03972],[-84.52078,38.03972],[-84.5181,38.04029],[-84.51722,38.04025],[-84.51649,38.0399],[-84.51528,38.0388],[-84.51508,38.03867],[-84.51466,38.03823],[-84.51448,38.03801],[-84.51337,38.03652],[-84.51271,38.03603],[-84.51173,38.03566],[-84.50896,38.03503],[-84.50833,38.03492],[-84.50733,38.03768],[-84.50639,38.03953],[-84.50577,38.04013],[-84.50271,38.04234],[-84.50229,38.04265],[-84.50188,38.04293],[-84.50128,38.0434],[-84.50055,38.04391],[-84.49986,38.0444],[-84.49888,38.04509],[-84.49877,38.04515],[-84.498,38.04571],[-84.49773,38.04519],[-84.49669,38.04427],[-84.49408,38.04193],[-84.49221,38.04103],[-84.49276,38.04063],[-84.49031,38.03854],[-84.49604,38.03449],[-84.49979,38.03783],[-84.50609,38.03337],[-84.50637,38.03367],[-84.50663,38.03432],[-84.50833,38.03492],[-84.50896,38.03503],[-84.51173,38.03566],[-84.51271,38.03603],[-84.51337,38.03652],[-84.51448,38.03801],[-84.51466,38.03823],[-84.51508,38.03867],[-84.51636,38.03996],[-84.51725,38.04038],[-84.5183,38.04042],[-84.52119,38.03983],[-84.5222,38.03996],[-84.52338,38.04057],[-84.52393,38.0413],[-84.52408,38.04202],[-84.52355,38.046],[-84.52347,38.0466]]}},
{"type":"Feature","properties":{"name":"Angel Ride 38 Draft A"},"geometry":{"type":"LineString","coordinates":[[-84.52338,38.04723],[-84.52319,38.04878],[-84.52324,38.04981],[-84.52326,38.05045],[-84.52331,38.05125],[-84.52362,38.05181],[-84.52373,38.05192],[-84.52473,38.05288],[-84.52493,38.05326],[-84.52496,38.05398],[-84.52493,38.0542],[-84.5249,38.05555],[-84.5249,38.05574],[-84.52473,38.05673],[-84.52426,38.05756],[-84.52764,38.05783],[-84.52892,38.05796],[-84.52976,38.05807],[-84.5334,38.05862],[-84.53364,38.0587],[-84.53432,38.05896],[-84.5351,38.05929],[-84.53577,38.05954],[-84.53983,38.06095],[-84.54059,38.0612],[-84.54527,38.06274],[-84.54705,38.06342],[-84.55025,38.06467],[-84.55102,38.06502],[-84.55177,38.06543],[-84.55423,38.06712],[-84.55664,38.06879],[-84.5574,38.06944],[-84.55745,38.06964],[-84.55786,38.06975],[-84.55854,38.07022],[-84.56097,38.07218],[-84.56228,38.07354],[-84.56247,38.07374],[-84.56478,38.0755],[-84.56591,38.07623],[-84.5669,38.07687],[-84.56972,38.07863],[-84.57287,38.0801],[-84.57345,38.0804],[-84.5766,38.08203],[-84.57809,38.08267],[-84.58002,38.08357],[-84.58083,38.08397],[-84.58216,38.08463],[-84.58273,38.08487],[-84.58355,38.08508],[-84.59016,38.0867],[-84.59556,38.08813],[-84.59724,38.08881],[-84.59898,38.08958],[-84.60015,38.09014],[-84.60139,38.09075],[-84.59972,38.09212],[-84.59934,38.09243],[-84.59877,38.0929],[-84.59816,38.0934],[-84.5971,38.09426],[-84.59482,38.09577],[-84.5929,38.09705],[-84.59152,38.09798],[-84.59103,38.09834],[-84.59085,38.09871],[-84.59037,38.10008],[-84.58991,38.10135],[-84.58702,38.10506],[-84.58493,38.10777],[-84.58206,38.11145],[-84.58153,38.11213],[-84.58026,38.11372],[-84.57948,38.1147],[-84.57873,38.11565],[-84.57823,38.1163],[-84.5787,38.11692],[-84.57905,38.11741],[-84.58177,38.12109],[-84.58363,38.12362],[-84.58408,38.12424],[-84.58491,38.12528],[-84.5857,38.12631],[-84.58518,38.12841],[-84.58498,38.12929],[-84.58466,38.13066],[-84.58462,38.13106],[-84.58452,38.13222],[-84.58451,38.13246],[-84.58447,38.13272],[-84.58441,38.13287],[-84.58466,38.13302],[-84.5851,38.13327],[-84.58569,38.1336],[-84.58722,38.1344],[-84.58904,38.13538],[-84.58982,38.13579],[-84.59076,38.1363],[-84.59144,38.13668],[-84.59168,38.13681],[-84.59416,38.13816],[-84.59513,38.13867],[-84.59554,38.13887],[-84.59672,38.1395],[-84.59856,38.1405],[-84.599,38.14072],[-84.59948,38.14097],[-84.60092,38.14173],[-84.60166,38.14213],[-84.60212,38.14237],[-84.60288,38.14277],[-84.60373,38.14322],[-84.60437,38.14356],[-84.60539,38.14411],[-84.60617,38.14453],[-84.60732,38.14513],[-84.60853,38.14577],[-84.61031,38.14672],[-84.61226,38.14777],[-84.6157,38.1496],[-84.61587,38.14969],[-84.61595,38.14972],[-84.61603,38.14975],[-84.61609,38.14977],[-84.61615,38.14978],[-84.61657,38.14984],[-84.61663,38.14985],[-84.61673,38.14989],[-84.61677,38.14981],[-84.61685,38.14984],[-84.61689,38.14985],[-84.61695,38.14987],[-84.61738,38.14994],[-84.61743,38.14995],[-84.61756,38.14999],[-84.61765,38.15004],[-84.61776,38.1501],[-84.61793,38.15019],[-84.61867,38.15062],[-84.62051,38.15163],[-84.62183,38.15238],[-84.6225,38.15283],[-84.62319,38.15329],[-84.62393,38.15381],[-84.62479,38.15449],[-84.62572,38.15538],[-84.62964,38.15906],[-84.63249,38.15905],[-84.63283,38.15904],[-84.63309,38.15903],[-84.63334,38.15902],[-84.63359,38.15902],[-84.63409,38.15901],[-84.63434,38.159],[-84.63644,38.15894],[-84.63669,38.15892],[-84.63804,38.15887],[-84.63838,38.15885],[-84.63853,38.15885],[-84.63889,38.15885],[-84.63883,38.15896],[-84.63852,38.15945],[-84.63838,38.15966],[-84.63826,38.15988],[-84.63725,38.16161],[-84.63707,38.16192],[-84.63545,38.16457],[-84.63435,38.16638],[-84.6336,38.1678],[-84.63271,38.16943],[-84.63136,38.17204],[-84.63128,38.17219],[-84.63106,38.17263],[-84.63083,38.17311],[-84.63075,38.17327],[-84.63049,38.17377],[-84.62977,38.17522],[-84.62956,38.17562],[-84.62935,38.17599],[-84.62746,38.17742],[-84.6269,38.17783],[-84.62571,38.17875],[-84.62561,38.17886],[-84.625,38.17953],[-84.62471,38.17986],[-84.62546,38.18008],[-84.6264,38.18034],[-84.62752,38.18064],[-84.62913,38.18111],[-84.62931,38.18116],[-84.62996,38.18135],[-84.63447,38.18264],[-84.63628,38.18317],[-84.63871,38.18386],[-84.64026,38.1843],[-84.64374,38.18529],[-84.64538,38.18575],[-84.64774,38.18643],[-84.64913,38.18682],[-84.65056,38.18722],[-84.6591,38.18967],[-84.66135,38.19032],[-84.66135,38.19019],[-84.66134,38.19014],[-84.66116,38.18976],[-84.66115,38.18973],[-84.66121,38.18953],[-84.66124,38.18948],[-84.66144,38.18919],[-84.66152,38.18909],[-84.66295,38.18717],[-84.66305,38.18703],[-84.66346,38.18647],[-84.66356,38.18633],[-84.66405,38.18568],[-84.66414,38.18555],[-84.66424,38.18542],[-84.66534,38.18392],[-84.66603,38.1827],[-84.66611,38.18256],[-84.66669,38.18167],[-84.66713,38.18032],[-84.6672,38.18017],[-84.66734,38.17987],[-84.66748,38.17955],[-84.66785,38.17876],[-84.66791,38.1786],[-84.66852,38.17724],[-84.66864,38.17695],[-84.66888,38.17641],[-84.66893,38.17629],[-84.66936,38.17538],[-84.66946,38.17523],[-84.66983,38.17461],[-84.66994,38.17444],[-84.67114,38.1725],[-84.67137,38.17212],[-84.67195,38.17116],[-84.67203,38.17101],[-84.6722,38.17072],[-84.67237,38.17043],[-84.67254,38.17016],[-84.67324,38.16904],[-84.67344,38.16871],[-84.67395,38.16789],[-84.67425,38.16742],[-84.67488,38.16641],[-84.67517,38.16594],[-84.67596,38.16456],[-84.67619,38.16416],[-84.67641,38.16377],[-84.67652,38.16356],[-84.67662,38.1634],[-84.6768,38.1631],[-84.67688,38.16296],[-84.67704,38.16269],[-84.67724,38.16237],[-84.67732,38.16223],[-84.6776,38.16168],[-84.67769,38.16155],[-84.67771,38.16148],[-84.67773,38.16138],[-84.67784,38.16036],[-84.67791,38.15958],[-84.67794,38.15926],[-84.67798,38.1587],[-84.67802,38.15838],[-84.67803,38.15834],[-84.67816,38.1582],[-84.67848,38.15814],[-84.67885,38.15828],[-84.67905,38.15834],[-84.67955,38.15852],[-84.68012,38.15873],[-84.68053,38.1589],[-84.68081,38.15901],[-84.68174,38.15944],[-84.68182,38.15924],[-84.68187,38.15917],[-84.68278,38.15851],[-84.68297,38.15841],[-84.68336,38.15818],[-84.68352,38.15807],[-84.68365,38.15796],[-84.68406,38.15747],[-84.68427,38.15684],[-84.68428,38.15665],[-84.68427,38.15654],[-84.6842,38.15619],[-84.68407,38.15587],[-84.68356,38.15499],[-84.68348,38.15487],[-84.68324,38.15453],[-84.68313,38.15437],[-84.68306,38.15426],[-84.68299,38.15414],[-84.68279,38.15339],[-84.6829,38.15294],[-84.68366,38.1516],[-84.68391,38.15115],[-84.684,38.151],[-84.68434,38.1504],[-84.6845,38.15012],[-84.6847,38.14977],[-84.68605,38.14739],[-84.6861,38.14731],[-84.68603,38.14728],[-84.6855,38.14708],[-84.68515,38.14695],[-84.68457,38.14675],[-84.68443,38.1467],[-84.68417,38.1466],[-84.6838,38.14647],[-84.6831,38.14622],[-84.68275,38.14609],[-84.68234,38.14595],[-84.68186,38.14578],[-84.68141,38.14562],[-84.68123,38.14555],[-84.6804,38.14519],[-84.6798,38.14474],[-84.67972,38.14469],[-84.67952,38.14453],[-84.67943,38.14445],[-84.67932,38.14436],[-84.67828,38.14351],[-84.67817,38.14341],[-84.67803,38.14331],[-84.67733,38.14274],[-84.67701,38.1425],[-84.67696,38.14246],[-84.67667,38.14228],[-84.67653,38.1422],[-84.67637,38.14211],[-84.67608,38.14193],[-84.67582,38.14173],[-84.67463,38.14056],[-84.67425,38.14026],[-84.67412,38.14017],[-84.67259,38.1385],[-84.67146,38.13832],[-84.67058,38.13827],[-84.67008,38.13824],[-84.66993,38.13823],[-84.66863,38.13816],[-84.66847,38.13815],[-84.66768,38.13807],[-84.66693,38.13775],[-84.66677,38.13768],[-84.66629,38.13743],[-84.66613,38.13735],[-84.6645,38.13654],[-84.66316,38.13606],[-84.66277,38.13592],[-84.66239,38.13578],[-84.66203,38.13565],[-84.66144,38.13545],[-84.65922,38.13467],[-84.65871,38.13449],[-84.6581,38.13428],[-84.65776,38.13416],[-84.65738,38.13402],[-84.65719,38.13396],[-84.65551,38.13338],[-84.65532,38.13331],[-84.65512,38.13324],[-84.65296,38.13251],[-84.6522,38.13225],[-84.64904,38.13111],[-84.64891,38.13105],[-84.64878,38.13098],[-84.64866,38.13091],[-84.64811,38.13065],[-84.64797,38.1306],[-84.64697,38.13026],[-84.64683,38.13021],[-84.64559,38.12979],[-84.64545,38.12974],[-84.64429,38.1293],[-84.64412,38.12925],[-84.64297,38.12918],[-84.64224,38.12926],[-84.64116,38.12931],[-84.64036,38.1292],[-84.64009,38.12912],[-84.63949,38.12885],[-84.63876,38.12823],[-84.63868,38.12816],[-84.63852,38.12802],[-84.6385,38.12753],[-84.63845,38.12735],[-84.63796,38.12629],[-84.63819,38.12598],[-84.63871,38.1257],[-84.63867,38.12517],[-84.63864,38.12498],[-84.63863,38.12451],[-84.63887,38.12398],[-84.639,38.1237],[-84.63923,38.12322],[-84.63937,38.1229],[-84.64002,38.12146],[-84.64011,38.12127],[-84.64059,38.12026],[-84.64185,38.1191],[-84.64233,38.11767],[-84.6424,38.11746],[-84.64261,38.11686],[-84.64269,38.11669],[-84.64301,38.11609],[-84.64344,38.11553],[-84.64408,38.11456],[-84.64645,38.11096],[-84.64654,38.11082],[-84.64664,38.11067],[-84.64673,38.11053],[-84.6468,38.11042],[-84.64767,38.1091],[-84.6479,38.10875],[-84.64878,38.10743],[-84.6491,38.10694],[-84.64917,38.10683],[-84.64924,38.10672],[-84.65043,38.10491],[-84.6507,38.10496],[-84.65093,38.10501],[-84.65151,38.10392],[-84.65184,38.1033],[-84.65282,38.10145],[-84.65296,38.10118],[-84.65334,38.10047],[-84.65343,38.1003],[-84.65381,38.09959],[-84.6548,38.09774],[-84.65488,38.09759],[-84.6551,38.09718],[-84.65556,38.09614],[-84.65555,38.09601],[-84.65547,38.09456],[-84.65645,38.09385],[-84.6574,38.09292],[-84.65771,38.09261],[-84.65901,38.09129],[-84.65908,38.09121],[-84.65937,38.09079],[-84.65946,38.09066],[-84.65954,38.09053],[-84.66056,38.08898],[-84.66105,38.08825],[-84.66113,38.08811],[-84.6615,38.08756],[-84.66253,38.08574],[-84.6626,38.08562],[-84.66387,38.08317],[-84.66394,38.08196],[-84.66394,38.08177],[-84.66392,38.08116],[-84.66392,38.08093],[-84.66391,38.08029],[-84.6639,38.08008],[-84.66389,38.07958],[-84.66384,38.07723],[-84.66307,38.07602],[-84.66287,38.07573],[-84.66278,38.07558],[-84.66248,38.07513],[-84.66243,38.07504],[-84.66224,38.0748],[-84.65794,38.07787],[-84.65756,38.07815],[-84.65722,38.07839],[-84.65581,38.07909],[-84.65412,38.0792],[-84.65272,38.0797],[-84.65177,38.08003],[-84.64901,38.08104],[-84.64829,38.08119],[-84.64801,38.08122],[-84.64772,38.08124],[-84.64695,38.08132],[-84.64628,38.0814],[-84.64463,38.08157],[-84.64255,38.08213],[-84.64206,38.08217],[-84.64018,38.08076],[-84.63938,38.08035],[-84.63851,38.0819],[-84.63773,38.08203],[-84.63653,38.08215],[-84.63606,38.08218],[-84.63493,38.0823],[-84.63419,38.08241],[-84.63141,38.08349],[-84.62924,38.08433],[-84.62565,38.0858],[-84.6251,38.0848],[-84.62467,38.08406],[-84.62443,38.08361],[-84.62247,38.08008],[-84.62169,38.07883],[-84.62121,38.07801],[-84.61993,38.0757],[-84.61961,38.07513],[-84.61844,38.07309],[-84.6179,38.07211],[-84.61486,38.07331],[-84.6141,38.07381],[-84.6134,38.07431],[-84.61219,38.07511],[-84.60943,38.07702],[-84.60905,38.07728],[-84.60839,38.07773],[-84.6081,38.07775],[-84.6073,38.07739],[-84.60675,38.07685],[-84.60646,38.07672],[-84.60513,38.07743],[-84.6032,38.07848],[-84.60129,38.0795],[-84.60095,38.07969],[-84.6002,38.08016],[-84.59872,38.0811],[-84.59443,38.08384],[-84.59346,38.08449],[-84.59044,38.08651],[-84.59016,38.0867],[-84.58355,38.08508],[-84.58273,38.08487],[-84.58216,38.08463],[-84.58083,38.08397],[-84.58002,38.08357],[-84.57809,38.08267],[-84.5766,38.08203],[-84.57345,38.0804],[-84.57287,38.0801],[-84.56972,38.07863],[-84.5669,38.07687],[-84.56591,38.07623],[-84.56478,38.0755],[-84.56247,38.07374],[-84.56228,38.07354],[-84.56097,38.07218],[-84.55854,38.07022],[-84.55783,38.06959],[-84.55776,38.06936],[-84.55742,38.0693],[-84.55664,38.06879],[-84.55423,38.06712],[-84.55177,38.06543],[-84.55102,38.06502],[-84.55025,38.06467],[-84.54705,38.06342],[-84.54527,38.06274],[-84.54059,38.0612],[-84.53983,38.06095],[-84.53577,38.05954],[-84.5351,38.05929],[-84.53432,38.05896],[-84.53364,38.0587],[-84.5334,38.05862],[-84.52976,38.05807],[-84.52892,38.05796],[-84.52764,38.05783],[-84.52426,38.05756],[-84.52473,38.05673],[-84.5249,38.05574],[-84.5249,38.05555],[-84.52493,38.0542],[-84.52496,38.05398],[-84.52493,38.05326],[-84.52473,38.05288],[-84.52373,38.05192],[-84.52362,38.05181],[-84.52331,38.05125],[-84.52326,38.05045],[-84.52324,38.04981],[-84.52319,38.04878],[-84.52338,38.04723]]}},
{"type":"Feature","properties":{"name":"Angel Ride 25 Draft A"},"geometry":{"type":"LineString","coordinates":[[-84.52338,38.04723],[-84.52319,38.04878],[-84.52324,38.04981],[-84.52326,38.05045],[-84.52331,38.05125],[-84.52362,38.05181],[-84.52373,38.05192],[-84.52473,38.05288],[-84.52493,38.05326],[-84.52496,38.05398],[-84.52493,38.0542],[-84.5249,38.05555],[-84.5249,38.05574],[-84.52473,38.05673],[-84.52426,38.05756],[-84.52764,38.05783],[-84.52892,38.05796],[-84.52976,38.05807],[-84.5334,38.05862],[-84.53364,38.0587],[-84.53432,38.05896],[-84.5351,38.05929],[-84.53577,38.05954],[-84.53983,38.06095],[-84.54059,38.0612],[-84.54527,38.06274],[-84.54705,38.06342],[-84.55025,38.06467],[-84.55102,38.06502],[-84.55177,38.06543],[-84.55423,38.06712],[-84.55664,38.06879],[-84.5574,38.06944],[-84.55745,38.06964],[-84.55786,38.06975],[-84.55854,38.07022],[-84.56097,38.07218],[-84.56228,38.07354],[-84.56247,38.07374],[-84.56478,38.0755],[-84.56591,38.07623],[-84.5669,38.07687],[-84.56972,38.07863],[-84.57287,38.0801],[-84.57345,38.0804],[-84.5766,38.08203],[-84.57809,38.08267],[-84.58002,38.08357],[-84.58083,38.08397],[-84.58216,38.08463],[-84.58273,38.08487],[-84.58355,38.08508],[-84.59016,38.0867],[-84.59044,38.08651],[-84.59346,38.08449],[-84.59443,38.08384],[-84.59872,38.0811],[-84.6002,38.08016],[-84.60095,38.07969],[-84.60129,38.0795],[-84.6032,38.07848],[-84.60513,38.07743],[-84.60646,38.07672],[-84.60675,38.07685],[-84.6073,38.07739],[-84.6081,38.07775],[-84.60839,38.07773],[-84.60905,38.07728],[-84.60943,38.07702],[-84.61219,38.07511],[-84.6134,38.07431],[-84.6141,38.07381],[-84.61486,38.07331],[-84.6179,38.07211],[-84.61844,38.07309],[-84.61961,38.07513],[-84.61993,38.0757],[-84.62121,38.07801],[-84.62169,38.07883],[-84.62247,38.08008],[-84.62443,38.08361],[-84.62467,38.08406],[-84.6251,38.0848],[-84.62565,38.0858],[-84.62924,38.08433],[-84.63141,38.08349],[-84.63419,38.08241],[-84.63493,38.0823],[-84.63606,38.08218],[-84.63653,38.08215],[-84.63773,38.08203],[-84.63851,38.0819],[-84.63938,38.08035],[-84.64018,38.08076],[-84.64206,38.08217],[-84.64255,38.08213],[-84.64463,38.08157],[-84.64628,38.0814],[-84.64695,38.08132],[-84.64772,38.08124],[-84.64801,38.08122],[-84.64829,38.08119],[-84.64901,38.08104],[-84.65177,38.08003],[-84.65272,38.0797],[-84.65412,38.0792],[-84.65581,38.07909],[-84.65722,38.07839],[-84.65756,38.07815],[-84.65794,38.07787],[-84.66224,38.0748],[-84.6604,38.07356],[-84.66015,38.07328],[-84.6591,38.07002],[-84.65833,38.06675],[-84.65828,38.06655],[-84.65775,38.06435],[-84.65765,38.06211],[-84.6564,38.0596],[-84.65608,38.05874],[-84.65528,38.05587],[-84.65551,38.05497],[-84.65562,38.05485],[-84.65571,38.05462],[-84.65561,38.05443],[-84.6542,38.05311],[-84.65339,38.05112],[-84.65605,38.04601],[-84.65628,38.04559],[-84.65691,38.04358],[-84.65832,38.04148],[-84.65881,38.04063],[-84.66472,38.0305],[-84.66741,38.02483],[-84.66894,38.02214],[-84.66902,38.02196],[-84.66558,38.0207],[-84.66446,38.02029],[-84.64181,38.0123],[-84.63995,38.01633],[-84.63752,38.02135],[-84.6359,38.02081],[-84.63037,38.01905],[-84.62941,38.01957],[-84.62808,38.02101],[-84.62729,38.02209],[-84.62647,38.02283],[-84.62531,38.02342],[-84.6211,38.02529],[-84.62057,38.02553],[-84.62022,38.02521],[-84.62,38.02517],[-84.61893,38.02562],[-84.61762,38.02595],[-84.61706,38.0259],[-84.61613,38.02558],[-84.61598,38.02556],[-84.61521,38.02565],[-84.61269,38.02657],[-84.60682,38.02675],[-84.60588,38.02687],[-84.60549,38.02692],[-84.60505,38.02696],[-84.60355,38.02707],[-84.60334,38.02707],[-84.60245,38.02705],[-84.59884,38.02694],[-84.59386,38.02531],[-84.59278,38.02518],[-84.59213,38.02524],[-84.59192,38.0253],[-84.59115,38.02561],[-84.58965,38.02622],[-84.58641,38.02758],[-84.58367,38.02852],[-84.58281,38.02893],[-84.58013,38.03066],[-84.57956,38.03103],[-84.57826,38.03179],[-84.57531,38.03286],[-84.57247,38.03388],[-84.57053,38.03445],[-84.56927,38.03473],[-84.56653,38.03542],[-84.56358,38.03685],[-84.55681,38.03446],[-84.55664,38.0344],[-84.55454,38.03369],[-84.55435,38.03364],[-84.55082,38.03242],[-84.54943,38.03192],[-84.54768,38.0313],[-84.54445,38.03078],[-84.54422,38.03142],[-84.54388,38.03187],[-84.54233,38.03312],[-84.54193,38.03326],[-84.54151,38.03336],[-84.54078,38.03378],[-84.53927,38.03639],[-84.53805,38.03853],[-84.53777,38.03898],[-84.53744,38.03941],[-84.53601,38.04095],[-84.53413,38.04285],[-84.53371,38.04264],[-84.533,38.04255],[-84.53029,38.04229],[-84.53008,38.04234],[-84.52995,38.04314],[-84.5298,38.044],[-84.52908,38.04392],[-84.52897,38.0437],[-84.52881,38.04381],[-84.52873,38.04392],[-84.52868,38.04398],[-84.52881,38.04425],[-84.52888,38.04433],[-84.52892,38.04476],[-84.52834,38.04485],[-84.52815,38.04485],[-84.52737,38.04484],[-84.52635,38.04526],[-84.52614,38.04544],[-84.52609,38.04548],[-84.52594,38.04609],[-84.52392,38.046],[-84.52355,38.046],[-84.52347,38.0466],[-84.52338,38.04723]]}},
{"type":"Feature","properties":{"name":"Georgetown-Stamping Ground-Midway: 44 Miler"},"geometry":{"type":"LineString","coordinates":[[-84.55965,38.2116],[-84.55961,38.21297],[-84.55964,38.21309],[-84.56004,38.2148],[-84.5609,38.21592],[-84.56125,38.21632],[-84.56202,38.21721],[-84.5628,38.21812],[-84.56375,38.21935],[-84.56414,38.21992],[-84.56664,38.22348],[-84.5674,38.22464],[-84.56872,38.22694],[-84.56875,38.22707],[-84.5688,38.22753],[-84.5683,38.23113],[-84.56828,38.23134],[-84.56826,38.2315],[-84.56875,38.23154],[-84.56994,38.23164],[-84.5706,38.23177],[-84.57267,38.2345],[-84.57294,38.23487],[-84.57399,38.2363],[-84.57435,38.23684],[-84.57529,38.23838],[-84.57533,38.23855],[-84.57526,38.23906],[-84.57862,38.241],[-84.57918,38.24127],[-84.58215,38.24247],[-84.58344,38.24346],[-84.58414,38.24404],[-84.58526,38.24497],[-84.58671,38.24618],[-84.58714,38.24693],[-84.58735,38.24733],[-84.58899,38.25053],[-84.58941,38.2514],[-84.59048,38.25365],[-84.59104,38.25483],[-84.59209,38.25688],[-84.59265,38.25801],[-84.59299,38.25842],[-84.59562,38.26044],[-84.59661,38.2612],[-84.59917,38.26313],[-84.5996,38.26346],[-84.60176,38.2651],[-84.60315,38.26561],[-84.60383,38.26608],[-84.60417,38.26639],[-84.60759,38.2695],[-84.60811,38.26997],[-84.61018,38.27219],[-84.61864,38.27986],[-84.61906,38.28023],[-84.62075,38.28117],[-84.62276,38.28288],[-84.62121,38.28357],[-84.6193,38.28504],[-84.6192,38.28511],[-84.6172,38.28662],[-84.61714,38.28691],[-84.6173,38.28711],[-84.62013,38.28971],[-84.62043,38.29022],[-84.62064,38.29099],[-84.62212,38.29231],[-84.62314,38.29301],[-84.62323,38.29308],[-84.62499,38.29443],[-84.62714,38.29632],[-84.6285,38.29891],[-84.62798,38.29959],[-84.62798,38.30029],[-84.628,38.30038],[-84.62862,38.30341],[-84.62846,38.30378],[-84.62758,38.30446],[-84.62739,38.30459],[-84.62575,38.30572],[-84.62556,38.30599],[-84.62562,38.30652],[-84.62647,38.30821],[-84.62627,38.30903],[-84.62597,38.30957],[-84.62225,38.31201],[-84.61877,38.31541],[-84.61867,38.31549],[-84.61657,38.31752],[-84.61595,38.31835],[-84.61539,38.31935],[-84.61531,38.32003],[-84.61499,38.32069],[-84.61509,38.32103],[-84.61566,38.32181],[-84.61596,38.32259],[-84.61635,38.32296],[-84.61708,38.32337],[-84.61726,38.32384],[-84.61793,38.32477],[-84.62266,38.32659],[-84.62635,38.32999],[-84.62627,38.32941],[-84.62595,38.32873],[-84.62605,38.32837],[-84.62818,38.32699],[-84.62876,38.32637],[-84.62891,38.32535],[-84.62836,38.32332],[-84.62858,38.32286],[-84.62933,38.3223],[-84.62952,38.32057],[-84.62988,38.32011],[-84.63129,38.31895],[-84.63182,38.31864],[-84.63254,38.31842],[-84.63249,38.31748],[-84.63299,38.31576],[-84.6356,38.31263],[-84.63597,38.3118],[-84.63615,38.31037],[-84.6369,38.30841],[-84.63718,38.30811],[-84.63834,38.30742],[-84.64188,38.30696],[-84.64181,38.30781],[-84.64194,38.30883],[-84.64257,38.31091],[-84.64322,38.31466],[-84.6442,38.31625],[-84.64528,38.31739],[-84.64598,38.31837],[-84.64811,38.32005],[-84.64953,38.3208],[-84.64978,38.32108],[-84.64988,38.32168],[-84.64973,38.32238],[-84.64989,38.32425],[-84.65093,38.32772],[-84.65158,38.32881],[-84.65192,38.3298],[-84.65273,38.33079],[-84.65307,38.33198],[-84.65378,38.33277],[-84.65444,38.3338],[-84.65569,38.33692],[-84.6571,38.33871],[-84.65799,38.34092],[-84.65822,38.3425],[-84.66008,38.34208],[-84.66062,38.34182],[-84.66179,38.34007],[-84.66287,38.3389],[-84.66263,38.33746],[-84.66292,38.33531],[-84.66296,38.33518],[-84.66349,38.33338],[-84.66362,38.33238],[-84.66407,38.33123],[-84.66395,38.33],[-84.66447,38.32834],[-84.66466,38.32606],[-84.66589,38.32395],[-84.66726,38.32367],[-84.66772,38.32334],[-84.66793,38.32198],[-84.66814,38.32153],[-84.66819,38.32145],[-84.66995,38.31939],[-84.67105,38.31646],[-84.67235,38.3145],[-84.67343,38.31258],[-84.67355,38.31206],[-84.67495,38.30971],[-84.67623,38.3082],[-84.67631,38.30807],[-84.67672,38.30718],[-84.67701,38.30584],[-84.67701,38.30522],[-84.6775,38.30396],[-84.68102,38.29666],[-84.68146,38.29538],[-84.68153,38.29396],[-84.68274,38.29196],[-84.68321,38.28983],[-84.68484,38.28784],[-84.68569,38.28644],[-84.68609,38.28414],[-84.68599,38.28272],[-84.68609,38.28217],[-84.68611,38.28203],[-84.68639,38.27944],[-84.68608,38.2765],[-84.68626,38.27469],[-84.68645,38.27428],[-84.68811,38.27241],[-84.6877,38.27226],[-84.68737,38.27211],[-84.68547,38.27103],[-84.68324,38.26961],[-84.68302,38.26946],[-84.68092,38.26759],[-84.68064,38.26733],[-84.68054,38.26724],[-84.68026,38.26698],[-84.68015,38.26689],[-84.67979,38.26657],[-84.67895,38.26583],[-84.67865,38.26556],[-84.67631,38.26347],[-84.67454,38.26219],[-84.67416,38.26182],[-84.67355,38.26122],[-84.6751,38.26025],[-84.67564,38.2593],[-84.67656,38.25919],[-84.67724,38.25877],[-84.67785,38.25774],[-84.67834,38.25636],[-84.67942,38.25552],[-84.67951,38.25543],[-84.68039,38.25244],[-84.68114,38.25125],[-84.68126,38.25114],[-84.68167,38.25085],[-84.68182,38.25076],[-84.68344,38.25],[-84.68414,38.24951],[-84.68505,38.24831],[-84.68572,38.24712],[-84.68578,38.24698],[-84.68601,38.24628],[-84.686,38.2455],[-84.68598,38.24533],[-84.6858,38.24408],[-84.68605,38.24348],[-84.68647,38.24328],[-84.68795,38.24308],[-84.68897,38.24254],[-84.68949,38.24177],[-84.69037,38.24051],[-84.69112,38.24023],[-84.69262,38.24004],[-84.69458,38.24034],[-84.6953,38.24035],[-84.69546,38.24033],[-84.69597,38.24],[-84.69677,38.2387],[-84.69831,38.23759],[-84.69853,38.23687],[-84.69853,38.23672],[-84.69852,38.23657],[-84.69851,38.23642],[-84.69844,38.23612],[-84.69839,38.23598],[-84.69835,38.23583],[-84.69831,38.2351],[-84.69878,38.23427],[-84.69884,38.23384],[-84.69862,38.23176],[-84.69868,38.23073],[-84.6987,38.23058],[-84.69883,38.22925],[-84.69847,38.22659],[-84.69848,38.22541],[-84.69854,38.22511],[-84.69863,38.22451],[-84.69865,38.22436],[-84.69859,38.22379],[-84.69786,38.22274],[-84.69751,38.22159],[-84.69674,38.22068],[-84.69607,38.21981],[-84.69477,38.21803],[-84.6961,38.21556],[-84.69757,38.21281],[-84.69796,38.21222],[-84.69871,38.21105],[-84.70099,38.20721],[-84.70231,38.20727],[-84.7035,38.20731],[-84.70347,38.20719],[-84.70342,38.20704],[-84.70333,38.20685],[-84.70215,38.20483],[-84.70049,38.20374],[-84.69997,38.20344],[-84.69854,38.2027],[-84.69832,38.20259],[-84.69761,38.20225],[-84.68203,38.19689],[-84.68128,38.19663],[-84.6788,38.19583],[-84.67684,38.19528],[-84.67641,38.19515],[-84.66653,38.19181],[-84.66646,38.19179],[-84.66135,38.19032],[-84.66135,38.19019],[-84.66134,38.19014],[-84.66116,38.18976],[-84.66115,38.18973],[-84.66121,38.18953],[-84.66124,38.18948],[-84.66144,38.18919],[-84.66152,38.18909],[-84.66295,38.18717],[-84.66305,38.18703],[-84.66346,38.18647],[-84.66356,38.18633],[-84.66405,38.18568],[-84.66414,38.18555],[-84.66424,38.18542],[-84.66534,38.18392],[-84.66603,38.1827],[-84.66611,38.18256],[-84.66669,38.18167],[-84.66713,38.18032],[-84.6672,38.18017],[-84.66734,38.17987],[-84.66748,38.17955],[-84.66785,38.17876],[-84.66791,38.1786],[-84.66852,38.17724],[-84.66864,38.17695],[-84.66888,38.17641],[-84.66893,38.17629],[-84.66936,38.17538],[-84.66946,38.17523],[-84.66983,38.17461],[-84.66994,38.17444],[-84.67114,38.1725],[-84.67137,38.17212],[-84.67195,38.17116],[-84.67203,38.17101],[-84.6722,38.17072],[-84.67237,38.17043],[-84.67254,38.17016],[-84.67324,38.16904],[-84.67344,38.16871],[-84.67395,38.16789],[-84.67425,38.16742],[-84.67488,38.16641],[-84.67517,38.16594],[-84.67596,38.16456],[-84.67619,38.16416],[-84.67641,38.16377],[-84.67652,38.16356],[-84.67662,38.1634],[-84.6768,38.1631],[-84.67688,38.16296],[-84.67704,38.16269],[-84.67724,38.16237],[-84.67732,38.16223],[-84.6776,38.16168],[-84.67769,38.16155],[-84.67771,38.16148],[-84.67773,38.16138],[-84.67784,38.16036],[-84.67791,38.15958],[-84.67794,38.15926],[-84.67798,38.1587],[-84.67802,38.15838],[-84.67803,38.15834],[-84.67816,38.1582],[-84.67848,38.15814],[-84.67885,38.15828],[-84.67905,38.15834],[-84.67955,38.15852],[-84.68012,38.15873],[-84.68053,38.1589],[-84.68081,38.15901],[-84.68174,38.15944],[-84.68182,38.15924],[-84.68187,38.15917],[-84.68278,38.15851],[-84.68297,38.15841],[-84.68336,38.15818],[-84.68352,38.15807],[-84.68365,38.15796],[-84.68406,38.15747],[-84.68427,38.15684],[-84.68428,38.15665],[-84.68427,38.15654],[-84.6842,38.15619],[-84.68407,38.15587],[-84.68356,38.15499],[-84.68348,38.15487],[-84.68324,38.15453],[-84.68313,38.15437],[-84.68306,38.15426],[-84.68299,38.15414],[-84.68279,38.15339],[-84.6829,38.15294],[-84.68366,38.1516],[-84.68391,38.15115],[-84.684,38.151],[-84.68434,38.1504],[-84.6845,38.15012],[-84.6847,38.14977],[-84.68605,38.14739],[-84.6861,38.14731],[-84.68603,38.14728],[-84.6855,38.14708],[-84.68515,38.14695],[-84.68457,38.14675],[-84.68443,38.1467],[-84.68417,38.1466],[-84.6838,38.14647],[-84.6831,38.14622],[-84.68275,38.14609],[-84.68234,38.14595],[-84.68186,38.14578],[-84.68141,38.14562],[-84.68123,38.14555],[-84.6804,38.14519],[-84.6798,38.14474],[-84.67972,38.14469],[-84.67952,38.14453],[-84.67943,38.14445],[-84.67932,38.14436],[-84.67828,38.14351],[-84.67817,38.14341],[-84.67803,38.14331],[-84.67733,38.14274],[-84.67701,38.1425],[-84.67696,38.14246],[-84.67667,38.14228],[-84.67653,38.1422],[-84.67637,38.14211],[-84.67608,38.14193],[-84.67582,38.14173],[-84.67463,38.14056],[-84.67425,38.14026],[-84.67412,38.14017],[-84.67259,38.1385],[-84.67146,38.13832],[-84.67058,38.13827],[-84.67008,38.13824],[-84.66993,38.13823],[-84.66863,38.13816],[-84.66847,38.13815],[-84.66768,38.13807],[-84.66693,38.13775],[-84.66677,38.13768],[-84.66629,38.13743],[-84.66613,38.13735],[-84.6645,38.13654],[-84.66316,38.13606],[-84.66277,38.13592],[-84.66239,38.13578],[-84.66203,38.13565],[-84.66144,38.13545],[-84.65922,38.13467],[-84.65871,38.13449],[-84.6581,38.13428],[-84.65776,38.13416],[-84.65738,38.13402],[-84.65719,38.13396],[-84.65551,38.13338],[-84.65532,38.13331],[-84.65512,38.13324],[-84.65296,38.13251],[-84.6522,38.13225],[-84.64904,38.13111],[-84.64891,38.13105],[-84.64878,38.13098],[-84.64866,38.13091],[-84.64811,38.13065],[-84.64797,38.1306],[-84.64697,38.13026],[-84.64683,38.13021],[-84.64559,38.12979],[-84.64545,38.12974],[-84.64429,38.1293],[-84.64412,38.12925],[-84.64297,38.12918],[-84.64224,38.12926],[-84.64116,38.12931],[-84.64036,38.1292],[-84.64009,38.12912],[-84.63949,38.12885],[-84.63876,38.12823],[-84.63868,38.12816],[-84.63852,38.12802],[-84.63814,38.12793],[-84.63791,38.12788],[-84.63768,38.12783],[-84.63752,38.1278],[-84.63718,38.12781],[-84.63697,38.12802],[-84.63647,38.12875],[-84.63639,38.12896],[-84.6356,38.13135],[-84.63557,38.1315],[-84.63482,38.13366],[-84.63476,38.13376],[-84.63453,38.13427],[-84.63369,38.13514],[-84.63361,38.13521],[-84.63355,38.13527],[-84.63324,38.13556],[-84.63262,38.13524],[-84.63211,38.1355],[-84.62957,38.13674],[-84.62872,38.13717],[-84.62805,38.13755],[-84.62673,38.13898],[-84.62606,38.13973],[-84.62558,38.14025],[-84.62534,38.14051],[-84.6251,38.14077],[-84.62485,38.14104],[-84.62436,38.14156],[-84.62389,38.14206],[-84.62382,38.14213],[-84.62306,38.14295],[-84.6228,38.14324],[-84.62265,38.1434],[-84.62249,38.14357],[-84.62202,38.14407],[-84.62118,38.14496],[-84.62065,38.14553],[-84.61979,38.14644],[-84.61904,38.14723],[-84.61835,38.14796],[-84.61796,38.14837],[-84.61727,38.1491],[-84.61697,38.14949],[-84.61689,38.14961],[-84.61677,38.14981],[-84.61673,38.14989],[-84.61387,38.15485],[-84.61385,38.15489],[-84.61306,38.15622],[-84.61296,38.15639],[-84.61278,38.15672],[-84.6122,38.15773],[-84.61059,38.16054],[-84.61037,38.16091],[-84.60897,38.16324],[-84.60816,38.16412],[-84.60702,38.16485],[-84.60425,38.1659],[-84.60332,38.16657],[-84.60264,38.16737],[-84.60215,38.16818],[-84.60179,38.16878],[-84.60023,38.17148],[-84.599,38.1736],[-84.59793,38.17543],[-84.59753,38.17605],[-84.59444,38.18043],[-84.59462,38.18051],[-84.59494,38.18061],[-84.59462,38.18051],[-84.59444,38.18043],[-84.59366,38.18173],[-84.59351,38.18201],[-84.59004,38.18847],[-84.58873,38.18979],[-84.58803,38.19078],[-84.58794,38.19097],[-84.58713,38.19346],[-84.58677,38.19451],[-84.58662,38.19494],[-84.58648,38.19527],[-84.58526,38.19771],[-84.58522,38.19789],[-84.58494,38.19838],[-84.58464,38.19889],[-84.5833,38.20111],[-84.58269,38.2009],[-84.58218,38.20141],[-84.57866,38.20012],[-84.57748,38.20209],[-84.57647,38.20298],[-84.57596,38.20372],[-84.57579,38.20389],[-84.57473,38.20445],[-84.57462,38.20449],[-84.57361,38.20452],[-84.57285,38.20429],[-84.57096,38.20373],[-84.57035,38.20367],[-84.56857,38.20406],[-84.56729,38.20461],[-84.56492,38.20473],[-84.56473,38.20472],[-84.56426,38.20465],[-84.56364,38.20458],[-84.56031,38.20441],[-84.56018,38.20584],[-84.56001,38.20759],[-84.55995,38.2083],[-84.55988,38.20903],[-84.55972,38.21078],[-84.55969,38.21115],[-84.55965,38.2116]]}},
{"type":"Feature","properties":{"name":"Russell Cave Elementry School - 25 miler"},"geometry":{"type":"LineString","coordinates":[[-84.44533,38.12006],[-84.44474,38.12069],[-84.44329,38.12224],[-84.44241,38.12317],[-84.44128,38.12438],[-84.44402,38.12558],[-84.44756,38.12687],[-84.45022,38.12774],[-84.4508,38.12794],[-84.45274,38.12861],[-84.45414,38.12916],[-84.45419,38.12935],[-84.45396,38.1299],[-84.45384,38.13018],[-84.45376,38.13036],[-84.45365,38.1306],[-84.45357,38.13075],[-84.4528,38.13221],[-84.44924,38.13916],[-84.44876,38.1401],[-84.44755,38.1424],[-84.44734,38.14246],[-84.44659,38.14228],[-84.44636,38.14243],[-84.44539,38.14451],[-84.44359,38.14765],[-84.44045,38.15355],[-84.43939,38.15549],[-84.43904,38.15618],[-84.43881,38.15663],[-84.43749,38.1593],[-84.43687,38.16053],[-84.43621,38.16184],[-84.44215,38.16369],[-84.44409,38.1643],[-84.44564,38.16479],[-84.45144,38.1666],[-84.45253,38.16695],[-84.45411,38.16744],[-84.45689,38.16831],[-84.45878,38.16889],[-84.46062,38.16949],[-84.46209,38.16996],[-84.46332,38.17035],[-84.46323,38.17115],[-84.46321,38.17164],[-84.46339,38.17186],[-84.46456,38.17227],[-84.46594,38.17277],[-84.46507,38.17436],[-84.46423,38.17584],[-84.46379,38.17663],[-84.4626,38.17866],[-84.45947,38.1811],[-84.45769,38.1825],[-84.45582,38.18468],[-84.45382,38.18709],[-84.45209,38.18914],[-84.45104,38.19027],[-84.44965,38.18986],[-84.44936,38.18991],[-84.44652,38.19364],[-84.44522,38.19465],[-84.44418,38.19569],[-84.44406,38.19582],[-84.44374,38.1964],[-84.44374,38.20034],[-84.44373,38.20196],[-84.44373,38.20211],[-84.44374,38.2024],[-84.4437,38.20471],[-84.44306,38.20457],[-84.44266,38.20449],[-84.44227,38.2044],[-84.44151,38.20425],[-84.4404,38.20403],[-84.43713,38.20342],[-84.43673,38.20335],[-84.43636,38.20328],[-84.43459,38.20295],[-84.42885,38.20273],[-84.42856,38.20288],[-84.42852,38.20294],[-84.42783,38.20401],[-84.4252,38.20315],[-84.42484,38.20303],[-84.42293,38.20239],[-84.42272,38.20233],[-84.41799,38.20057],[-84.41657,38.2],[-84.41416,38.19911],[-84.40889,38.1972],[-84.40745,38.19692],[-84.39769,38.19535],[-84.39899,38.19303],[-84.40028,38.19071],[-84.40047,38.19025],[-84.40079,38.18942],[-84.39906,38.1884],[-84.39609,38.18659],[-84.39475,38.18577],[-84.38964,38.18265],[-84.38742,38.18176],[-84.38495,38.18086],[-84.38026,38.17918],[-84.37882,38.17867],[-84.37134,38.17588],[-84.36744,38.17436],[-84.35523,38.1657],[-84.35145,38.1634],[-84.35116,38.16324],[-84.34364,38.15865],[-84.33795,38.15376],[-84.33814,38.15357],[-84.33832,38.1534],[-84.33869,38.15308],[-84.34049,38.15163],[-84.34235,38.15037],[-84.34639,38.1482],[-84.34908,38.14642],[-84.35293,38.14428],[-84.35484,38.14307],[-84.35706,38.14135],[-84.3576,38.1418],[-84.35806,38.14219],[-84.35878,38.14279],[-84.35906,38.14303],[-84.35986,38.14374],[-84.36121,38.14418],[-84.36154,38.14427],[-84.3665,38.14584],[-84.36665,38.14589],[-84.37296,38.14797],[-84.37545,38.14425],[-84.37628,38.14297],[-84.37653,38.14274],[-84.37791,38.14316],[-84.38131,38.14431],[-84.3841,38.14524],[-84.38644,38.14596],[-84.39038,38.1472],[-84.39374,38.14824],[-84.3962,38.14902],[-84.39659,38.14915],[-84.40335,38.15128],[-84.40343,38.1512],[-84.40376,38.15083],[-84.40428,38.15034],[-84.40469,38.15006],[-84.4067,38.14874],[-84.40703,38.14872],[-84.40779,38.149],[-84.40864,38.1493],[-84.41056,38.14993],[-84.41075,38.15045],[-84.41109,38.15096],[-84.41344,38.15457],[-84.41369,38.15462],[-84.41389,38.15469],[-84.41818,38.15607],[-84.42052,38.15683],[-84.42301,38.15762],[-84.42438,38.15808],[-84.42785,38.1592],[-84.42849,38.15941],[-84.43621,38.16184],[-84.43687,38.16053],[-84.43749,38.1593],[-84.43881,38.15663],[-84.43904,38.15618],[-84.43939,38.15549],[-84.44045,38.15355],[-84.44359,38.14765],[-84.44539,38.14451],[-84.44636,38.14243],[-84.44659,38.14228],[-84.44734,38.14246],[-84.44755,38.1424],[-84.44876,38.1401],[-84.44924,38.13916],[-84.4528,38.13221],[-84.45357,38.13075],[-84.45365,38.1306],[-84.45376,38.13036],[-84.45384,38.13018],[-84.45396,38.1299],[-84.45419,38.12935],[-84.45414,38.12916],[-84.45274,38.12861],[-84.4508,38.12794],[-84.45022,38.12774],[-84.44756,38.12687],[-84.44402,38.12558],[-84.44128,38.12438],[-84.44241,38.12317],[-84.44329,38.12224],[-84.44474,38.12069],[-84.44529,38.1201]]}},
{"type":"Feature","properties":{"name":"Russell Cave Elementary School 21 miles"},"geometry":{"type":"LineString","coordinates":[[-84.44533,38.12006],[-84.44474,38.12069],[-84.44329,38.12224],[-84.44241,38.12317],[-84.44128,38.12438],[-84.44402,38.12558],[-84.44756,38.12687],[-84.45022,38.12774],[-84.4508,38.12794],[-84.45274,38.12861],[-84.45414,38.12916],[-84.45419,38.12935],[-84.45396,38.1299],[-84.45384,38.13018],[-84.45376,38.13036],[-84.45365,38.1306],[-84.45357,38.13075],[-84.4528,38.13221],[-84.44924,38.13916],[-84.44876,38.1401],[-84.44755,38.1424],[-84.44734,38.14246],[-84.44659,38.14228],[-84.44636,38.14243],[-84.44539,38.14451],[-84.44359,38.14765],[-84.44045,38.15355],[-84.43939,38.15549],[-84.43904,38.15618],[-84.43881,38.15663],[-84.43749,38.1593],[-84.43687,38.16053],[-84.43621,38.16184],[-84.44215,38.16369],[-84.44409,38.1643],[-84.44564,38.16479],[-84.45144,38.1666],[-84.45253,38.16695],[-84.45411,38.16744],[-84.45689,38.16831],[-84.45878,38.16889],[-84.46062,38.16949],[-84.46209,38.16996],[-84.46332,38.17035],[-84.46323,38.17115],[-84.46321,38.17164],[-84.46339,38.17186],[-84.46456,38.17227],[-84.46594,38.17277],[-84.46507,38.17436],[-84.46423,38.17584],[-84.46379,38.17663],[-84.4626,38.17866],[-84.45947,38.1811],[-84.45769,38.1825],[-84.45582,38.18468],[-84.45382,38.18709],[-84.45209,38.18914],[-84.45104,38.19027],[-84.44965,38.18986],[-84.44936,38.18991],[-84.44652,38.19364],[-84.44522,38.19465],[-84.44418,38.19569],[-84.44406,38.19582],[-84.44374,38.1964],[-84.44374,38.20034],[-84.44373,38.20196],[-84.44373,38.20211],[-84.44374,38.2024],[-84.4437,38.20471],[-84.44306,38.20457],[-84.44266,38.20449],[-84.44227,38.2044],[-84.44151,38.20425],[-84.4404,38.20403],[-84.43713,38.20342],[-84.43673,38.20335],[-84.43636,38.20328],[-84.43459,38.20295],[-84.42885,38.20273],[-84.42856,38.20288],[-84.42852,38.20294],[-84.42783,38.20401],[-84.4252,38.20315],[-84.42484,38.20303],[-84.42293,38.20239],[-84.42272,38.20233],[-84.41799,38.20057],[-84.41657,38.2],[-84.41416,38.19911],[-84.40889,38.1972],[-84.40745,38.19692],[-84.39769,38.19535],[-84.39899,38.19303],[-84.40028,38.19071],[-84.40047,38.19025],[-84.40079,38.18942],[-84.39906,38.1884],[-84.39609,38.18659],[-84.39475,38.18577],[-84.38964,38.18265],[-84.38742,38.18176],[-84.38495,38.18086],[-84.38026,38.17918],[-84.38105,38.17743],[-84.3814,38.17664],[-84.38293,38.1734],[-84.38344,38.17266],[-84.38367,38.17235],[-84.38452,38.17129],[-84.38746,38.16696],[-84.38808,38.16608],[-84.38844,38.16557],[-84.38886,38.16498],[-84.39058,38.1628],[-84.39537,38.15925],[-84.39718,38.15767],[-84.39741,38.15746],[-84.39972,38.15499],[-84.4001,38.15461],[-84.40046,38.15424],[-84.40335,38.15128],[-84.40343,38.1512],[-84.40376,38.15083],[-84.40428,38.15034],[-84.40469,38.15006],[-84.4067,38.14874],[-84.40703,38.14872],[-84.40779,38.149],[-84.40864,38.1493],[-84.41056,38.14993],[-84.41075,38.15045],[-84.41109,38.15096],[-84.41344,38.15457],[-84.41369,38.15462],[-84.41389,38.15469],[-84.41818,38.15607],[-84.42052,38.15683],[-84.42301,38.15762],[-84.42438,38.15808],[-84.42785,38.1592],[-84.42849,38.15941],[-84.43621,38.16184],[-84.43687,38.16053],[-84.43749,38.1593],[-84.43881,38.15663],[-84.43904,38.15618],[-84.43939,38.15549],[-84.44045,38.15355],[-84.44359,38.14765],[-84.44539,38.14451],[-84.44636,38.14243],[-84.44659,38.14228],[-84.44734,38.14246],[-84.44755,38.1424],[-84.44876,38.1401],[-84.44924,38.13916],[-84.4528,38.13221],[-84.45357,38.13075],[-84.45365,38.1306],[-84.45376,38.13036],[-84.45384,38.13018],[-84.45396,38.1299],[-84.45419,38.12935],[-84.45414,38.12916],[-84.45274,38.12861],[-84.4508,38.12794],[-84.45022,38.12774],[-84.44756,38.12687],[-84.44402,38.12558],[-84.44128,38.12438],[-84.44241,38.12317],[-84.44329,38.12224],[-84.44474,38.12069],[-84.44517,38.12023]]}},
{"type":"Feature","properties":{"name":"Masterson thru Versailles"},"geometry":{"type":"LineString","coordinates":[[-84.54952,38.10639],[-84.54823,38.1064],[-84.54684,38.10641],[-84.54669,38.10657],[-84.54668,38.10671],[-84.54668,38.10716],[-84.54669,38.10778],[-84.5467,38.10803],[-84.54655,38.10851],[-84.54598,38.10888],[-84.54593,38.10891],[-84.54589,38.10893],[-84.54584,38.10897],[-84.54561,38.10925],[-84.54542,38.10954],[-84.54516,38.10995],[-84.5449,38.11032],[-84.54419,38.11061],[-84.54409,38.11065],[-84.54385,38.11078],[-84.54379,38.11082],[-84.54373,38.11087],[-84.54371,38.1109],[-84.54365,38.11122],[-84.54436,38.11108],[-84.54699,38.11055],[-84.54753,38.11045],[-84.54803,38.11045],[-84.54969,38.11096],[-84.54994,38.111],[-84.55177,38.11135],[-84.55205,38.11141],[-84.55294,38.11158],[-84.55464,38.1119],[-84.55655,38.11226],[-84.55723,38.1124],[-84.55817,38.11294],[-84.55991,38.11385],[-84.56047,38.11421],[-84.56016,38.11525],[-84.56016,38.11532],[-84.56022,38.11542],[-84.56026,38.11547],[-84.56041,38.11556],[-84.56164,38.1162],[-84.56222,38.11652],[-84.5642,38.11752],[-84.56488,38.11787],[-84.56569,38.11829],[-84.56714,38.11904],[-84.56854,38.11977],[-84.56874,38.11987],[-84.57329,38.12219],[-84.573,38.12311],[-84.57241,38.12494],[-84.57229,38.12534],[-84.572,38.12636],[-84.5718,38.12711],[-84.57176,38.12729],[-84.57235,38.12816],[-84.57247,38.12925],[-84.57256,38.13014],[-84.57257,38.13035],[-84.57255,38.13043],[-84.57252,38.1305],[-84.57216,38.13112],[-84.57183,38.13165],[-84.57129,38.13255],[-84.57089,38.13327],[-84.57107,38.13462],[-84.56995,38.13553],[-84.56928,38.13605],[-84.56871,38.1365],[-84.56884,38.1366],[-84.56898,38.13673],[-84.56905,38.13685],[-84.56909,38.13691],[-84.56921,38.13734],[-84.56923,38.13752],[-84.56938,38.13827],[-84.56977,38.13874],[-84.57099,38.13965],[-84.57186,38.14031],[-84.5736,38.14162],[-84.57404,38.14183],[-84.57475,38.1418],[-84.57541,38.14123],[-84.5773,38.13899],[-84.57889,38.13711],[-84.57959,38.13627],[-84.57996,38.13585],[-84.58108,38.13448],[-84.58176,38.13368],[-84.58238,38.13295],[-84.58276,38.1325],[-84.58296,38.13231],[-84.58322,38.13228],[-84.58328,38.1323],[-84.58348,38.13238],[-84.58373,38.13251],[-84.58441,38.13287],[-84.58466,38.13302],[-84.5851,38.13327],[-84.58569,38.1336],[-84.58722,38.1344],[-84.58904,38.13538],[-84.58982,38.13579],[-84.59076,38.1363],[-84.59144,38.13668],[-84.59168,38.13681],[-84.59416,38.13816],[-84.59513,38.13867],[-84.59554,38.13887],[-84.59672,38.1395],[-84.59856,38.1405],[-84.599,38.14072],[-84.59948,38.14097],[-84.60092,38.14173],[-84.60166,38.14213],[-84.60212,38.14237],[-84.60288,38.14277],[-84.60373,38.14322],[-84.60437,38.14356],[-84.60539,38.14411],[-84.60617,38.14453],[-84.60732,38.14513],[-84.60853,38.14577],[-84.61031,38.14672],[-84.61226,38.14777],[-84.6157,38.1496],[-84.61587,38.14969],[-84.61595,38.14972],[-84.61603,38.14975],[-84.61609,38.14977],[-84.61615,38.14978],[-84.61657,38.14984],[-84.61663,38.14985],[-84.61673,38.14989],[-84.61677,38.14981],[-84.61685,38.14984],[-84.61689,38.14985],[-84.61695,38.14987],[-84.61738,38.14994],[-84.61743,38.14995],[-84.61756,38.14999],[-84.61765,38.15004],[-84.61776,38.1501],[-84.61793,38.15019],[-84.61867,38.15062],[-84.62051,38.15163],[-84.62183,38.15238],[-84.6225,38.15283],[-84.62319,38.15329],[-84.62393,38.15381],[-84.62479,38.15449],[-84.62572,38.15538],[-84.62964,38.15906],[-84.63249,38.15905],[-84.63283,38.15904],[-84.63309,38.15903],[-84.63334,38.15902],[-84.63359,38.15902],[-84.63409,38.15901],[-84.63434,38.159],[-84.63644,38.15894],[-84.63669,38.15892],[-84.63804,38.15887],[-84.63838,38.15885],[-84.63853,38.15885],[-84.63889,38.15885],[-84.63883,38.15896],[-84.63852,38.15945],[-84.63838,38.15966],[-84.63826,38.15988],[-84.63725,38.16161],[-84.63707,38.16192],[-84.63545,38.16457],[-84.63435,38.16638],[-84.6336,38.1678],[-84.63271,38.16943],[-84.63136,38.17204],[-84.63128,38.17219],[-84.63106,38.17263],[-84.63083,38.17311],[-84.63075,38.17327],[-84.63049,38.17377],[-84.62977,38.17522],[-84.62956,38.17562],[-84.62935,38.17599],[-84.62746,38.17742],[-84.6269,38.17783],[-84.62571,38.17875],[-84.62561,38.17886],[-84.625,38.17953],[-84.62471,38.17986],[-84.62546,38.18008],[-84.6264,38.18034],[-84.62752,38.18064],[-84.62913,38.18111],[-84.62931,38.18116],[-84.62996,38.18135],[-84.63447,38.18264],[-84.63628,38.18317],[-84.63871,38.18386],[-84.64026,38.1843],[-84.64374,38.18529],[-84.64538,38.18575],[-84.64774,38.18643],[-84.64913,38.18682],[-84.65056,38.18722],[-84.6591,38.18967],[-84.66135,38.19032],[-84.66135,38.19019],[-84.66134,38.19014],[-84.66116,38.18976],[-84.66116,38.18973],[-84.66115,38.18973],[-84.66121,38.18953],[-84.66124,38.18948],[-84.66144,38.18919],[-84.66152,38.18909],[-84.66295,38.18717],[-84.66305,38.18703],[-84.66346,38.18647],[-84.66356,38.18633],[-84.66405,38.18568],[-84.66414,38.18555],[-84.66424,38.18542],[-84.66534,38.18392],[-84.66603,38.1827],[-84.66611,38.18256],[-84.66669,38.18167],[-84.66713,38.18032],[-84.6672,38.18017],[-84.66734,38.17987],[-84.66748,38.17955],[-84.66785,38.17876],[-84.66791,38.1786],[-84.66852,38.17724],[-84.66864,38.17695],[-84.66888,38.17641],[-84.66893,38.17629],[-84.66936,38.17538],[-84.66946,38.17523],[-84.66983,38.17461],[-84.66994,38.17444],[-84.67114,38.1725],[-84.67137,38.17212],[-84.67195,38.17116],[-84.67203,38.17101],[-84.6722,38.17072],[-84.67237,38.17043],[-84.67254,38.17016],[-84.67324,38.16904],[-84.67344,38.16871],[-84.67395,38.16789],[-84.67425,38.16742],[-84.67488,38.16641],[-84.67517,38.16594],[-84.67596,38.16456],[-84.67619,38.16416],[-84.67641,38.16377],[-84.67652,38.16356],[-84.67662,38.1634],[-84.6768,38.1631],[-84.67688,38.16296],[-84.67704,38.16269],[-84.67724,38.16237],[-84.67732,38.16223],[-84.6776,38.16168],[-84.67769,38.16155],[-84.67771,38.16148],[-84.67773,38.16138],[-84.67784,38.16036],[-84.67791,38.15958],[-84.67794,38.15926],[-84.67798,38.1587],[-84.67802,38.15838],[-84.67803,38.15834],[-84.67816,38.1582],[-84.67848,38.15814],[-84.67885,38.15828],[-84.67905,38.15834],[-84.67955,38.15852],[-84.68012,38.15873],[-84.68053,38.1589],[-84.68081,38.15901],[-84.68174,38.15944],[-84.68182,38.15924],[-84.68187,38.15917],[-84.68278,38.15851],[-84.68297,38.15841],[-84.68336,38.15818],[-84.68352,38.15807],[-84.68365,38.15796],[-84.68406,38.15747],[-84.68427,38.15684],[-84.68428,38.15665],[-84.68427,38.15654],[-84.6842,38.15619],[-84.68407,38.15587],[-84.68356,38.15499],[-84.68348,38.15487],[-84.68324,38.15453],[-84.68313,38.15437],[-84.68306,38.15426],[-84.68299,38.15414],[-84.68279,38.15339],[-84.6829,38.15294],[-84.68366,38.1516],[-84.68391,38.15115],[-84.684,38.151],[-84.68434,38.1504],[-84.6845,38.15012],[-84.6847,38.14977],[-84.68605,38.14739],[-84.6861,38.14731],[-84.68686,38.14757],[-84.6876,38.14784],[-84.68832,38.14809],[-84.68864,38.1482],[-84.68931,38.14844],[-84.68992,38.14866],[-84.6904,38.14883],[-84.69118,38.14912],[-84.69191,38.14939],[-84.69256,38.14957],[-84.69299,38.14952],[-84.69324,38.14946],[-84.69386,38.14926],[-84.69434,38.1491],[-84.69567,38.14875],[-84.69596,38.14864],[-84.69633,38.14849],[-84.69662,38.14837],[-84.69771,38.14792],[-84.69797,38.14782],[-84.69839,38.14768],[-84.69857,38.14772],[-84.69866,38.14777],[-84.69878,38.14782],[-84.69903,38.14795],[-84.69952,38.14818],[-84.69989,38.14835],[-84.70008,38.14844],[-84.70103,38.1489],[-84.70122,38.14899],[-84.70231,38.14951],[-84.70264,38.14967],[-84.70333,38.15001],[-84.70367,38.15017],[-84.70382,38.15025],[-84.70397,38.15032],[-84.70411,38.15039],[-84.70424,38.15045],[-84.70483,38.15062],[-84.7049,38.15058],[-84.70501,38.15041],[-84.70506,38.15031],[-84.70512,38.15018],[-84.70616,38.14818],[-84.70623,38.14802],[-84.70659,38.14735],[-84.70673,38.14708],[-84.70688,38.1468],[-84.70715,38.14627],[-84.70739,38.1458],[-84.70749,38.14562],[-84.70776,38.14547],[-84.70841,38.14566],[-84.70859,38.14572],[-84.70897,38.14584],[-84.70937,38.14597],[-84.7102,38.14624],[-84.71085,38.14645],[-84.71106,38.14652],[-84.71168,38.14673],[-84.71336,38.14727],[-84.71358,38.14734],[-84.714,38.14748],[-84.71483,38.14775],[-84.71504,38.14782],[-84.71545,38.14795],[-84.71604,38.14815],[-84.71663,38.14833],[-84.71857,38.14893],[-84.71879,38.149],[-84.72099,38.14967],[-84.72118,38.14971],[-84.72292,38.15026],[-84.72352,38.15045],[-84.72453,38.15078],[-84.72474,38.15085],[-84.72538,38.15106],[-84.72621,38.15134],[-84.72723,38.15168],[-84.72743,38.15175],[-84.72906,38.15228],[-84.72922,38.15234],[-84.73027,38.15265],[-84.73102,38.15289],[-84.73197,38.15319],[-84.73235,38.15331],[-84.73516,38.1542],[-84.73532,38.15425],[-84.73594,38.15446],[-84.73613,38.1545],[-84.73654,38.15431],[-84.73677,38.1542],[-84.73778,38.15388],[-84.73867,38.15382],[-84.73915,38.15384],[-84.74119,38.154],[-84.74298,38.15412],[-84.74347,38.15416],[-84.74361,38.15416],[-84.74381,38.15418],[-84.74399,38.1542],[-84.74403,38.15399],[-84.74401,38.15396],[-84.74394,38.15386],[-84.74387,38.1538],[-84.74382,38.15359],[-84.74386,38.15352],[-84.74514,38.15143],[-84.74528,38.15119],[-84.74561,38.15065],[-84.74576,38.1504],[-84.74619,38.14966],[-84.74841,38.14606],[-84.74863,38.1457],[-84.74904,38.14505],[-84.7495,38.14431],[-84.75054,38.14262],[-84.75076,38.14226],[-84.75084,38.14215],[-84.75111,38.14172],[-84.7515,38.14186],[-84.75365,38.14264],[-84.75491,38.14311],[-84.75521,38.14322],[-84.75727,38.14423],[-84.75785,38.14456],[-84.75905,38.14547],[-84.75957,38.14592],[-84.7598,38.14611],[-84.75994,38.14622],[-84.76013,38.14603],[-84.76024,38.14586],[-84.76118,38.14415],[-84.76141,38.14375],[-84.76297,38.14076],[-84.76324,38.14023],[-84.76363,38.13948],[-84.76381,38.13913],[-84.76528,38.13629],[-84.7661,38.13469],[-84.76676,38.13344],[-84.76747,38.13209],[-84.77152,38.12472],[-84.77197,38.12395],[-84.7726,38.12302],[-84.77436,38.12154],[-84.77516,38.12109],[-84.77557,38.12102],[-84.77576,38.12103],[-84.77638,38.12107],[-84.77646,38.12108],[-84.77665,38.12112],[-84.77778,38.12119],[-84.77808,38.12106],[-84.77839,38.11848],[-84.7786,38.11819],[-84.77903,38.11796],[-84.78017,38.11745],[-84.78168,38.11677],[-84.78232,38.11645],[-84.7828,38.11604],[-84.78474,38.1143],[-84.78697,38.11236],[-84.78708,38.11232],[-84.78719,38.1123],[-84.78738,38.11226],[-84.78783,38.11232],[-84.7882,38.11238],[-84.7883,38.11239],[-84.7901,38.11251],[-84.79099,38.11256],[-84.79326,38.1127],[-84.79893,38.11306],[-84.80104,38.11366],[-84.80143,38.11383],[-84.80178,38.11397],[-84.80199,38.11324],[-84.80321,38.10888],[-84.80349,38.10698],[-84.80403,38.10596],[-84.80434,38.10546],[-84.80651,38.10284],[-84.8066,38.10259],[-84.80558,38.10086],[-84.80449,38.09973],[-84.80367,38.09912],[-84.80264,38.09858],[-84.80118,38.0975],[-84.79908,38.0956],[-84.79861,38.09547],[-84.79782,38.09556],[-84.79463,38.09647],[-84.79436,38.09658],[-84.79372,38.09686],[-84.79338,38.09681],[-84.79231,38.09582],[-84.79029,38.09329],[-84.78998,38.09312],[-84.78989,38.09309],[-84.7896,38.09304],[-84.78944,38.09303],[-84.78837,38.09297],[-84.78737,38.09269],[-84.78619,38.0923],[-84.78603,38.09224],[-84.78577,38.09211],[-84.78553,38.09196],[-84.78457,38.09052],[-84.7841,38.08966],[-84.78388,38.08935],[-84.78329,38.08893],[-84.78315,38.08887],[-84.78268,38.08877],[-84.78208,38.08871],[-84.78145,38.08852],[-84.77948,38.08781],[-84.77932,38.08773],[-84.77893,38.08751],[-84.77862,38.08728],[-84.77736,38.08619],[-84.77621,38.08529],[-84.77486,38.08491],[-84.77471,38.08487],[-84.77425,38.08459],[-84.77371,38.08403],[-84.77316,38.08349],[-84.77207,38.08244],[-84.77151,38.08203],[-84.77112,38.0818],[-84.77095,38.08171],[-84.77072,38.08158],[-84.77043,38.08144],[-84.77028,38.08139],[-84.768,38.08102],[-84.76745,38.08079],[-84.76734,38.08073],[-84.76672,38.08023],[-84.76465,38.07811],[-84.76408,38.07753],[-84.76208,38.0755],[-84.76093,38.07462],[-84.76067,38.07442],[-84.75891,38.07309],[-84.75834,38.07264],[-84.75636,38.07113],[-84.75586,38.07074],[-84.75249,38.06819],[-84.75173,38.0676],[-84.75107,38.06711],[-84.7505,38.06667],[-84.74983,38.06615],[-84.74829,38.06486],[-84.74799,38.0646],[-84.74641,38.06365],[-84.7409,38.0609],[-84.74051,38.06072],[-84.74033,38.06062],[-84.74005,38.06049],[-84.73941,38.06019],[-84.73886,38.05992],[-84.73705,38.059],[-84.734,38.05748],[-84.73359,38.05728],[-84.73326,38.05714],[-84.73308,38.05708],[-84.73285,38.05701],[-84.7321,38.05678],[-84.73105,38.05647],[-84.73099,38.05645],[-84.73042,38.0563],[-84.73009,38.05624],[-84.72958,38.05625],[-84.72911,38.05629],[-84.72846,38.0563],[-84.72561,38.0563],[-84.72464,38.0563],[-84.72448,38.05641],[-84.72423,38.05658],[-84.72262,38.05771],[-84.72205,38.05812],[-84.72173,38.05836],[-84.72162,38.05843],[-84.72051,38.05919],[-84.72031,38.05933],[-84.72002,38.05952],[-84.71987,38.05962],[-84.71955,38.05984],[-84.71908,38.06018],[-84.71817,38.06082],[-84.71809,38.06087],[-84.718,38.06093],[-84.71667,38.06189],[-84.71648,38.06203],[-84.71245,38.06478],[-84.71194,38.06469],[-84.71129,38.06448],[-84.71114,38.06442],[-84.71084,38.06433],[-84.71072,38.06429],[-84.7104,38.06426],[-84.71011,38.06441],[-84.70728,38.06789],[-84.70688,38.06809],[-84.70605,38.06814],[-84.70576,38.06812],[-84.70503,38.06817],[-84.70387,38.06949],[-84.70357,38.06984],[-84.70192,38.0718],[-84.70176,38.07199],[-84.70157,38.07221],[-84.70002,38.07404],[-84.69873,38.07375],[-84.69822,38.07366],[-84.69529,38.07309],[-84.69496,38.07302],[-84.69195,38.07239],[-84.69161,38.07232],[-84.68939,38.07184],[-84.68902,38.07176],[-84.68861,38.07167],[-84.68845,38.07163],[-84.68287,38.07047],[-84.68264,38.07206],[-84.68243,38.07219],[-84.68218,38.07216],[-84.68146,38.07202],[-84.68005,38.07171],[-84.6797,38.07164],[-84.67658,38.07099],[-84.67639,38.07094],[-84.6762,38.0709],[-84.67418,38.07048],[-84.67389,38.06993],[-84.67188,38.06817],[-84.67025,38.06775],[-84.66995,38.06835],[-84.66981,38.0686],[-84.66967,38.06883],[-84.66955,38.06907],[-84.66916,38.06978],[-84.6691,38.06987],[-84.66902,38.06995],[-84.66224,38.0748],[-84.65794,38.07787],[-84.65756,38.07815],[-84.65722,38.07839],[-84.65581,38.07909],[-84.65412,38.0792],[-84.65272,38.0797],[-84.65177,38.08003],[-84.64901,38.08104],[-84.64829,38.08119],[-84.64801,38.08122],[-84.64772,38.08124],[-84.64695,38.08132],[-84.64628,38.0814],[-84.64463,38.08157],[-84.64255,38.08213],[-84.64206,38.08217],[-84.64018,38.08076],[-84.63938,38.08035],[-84.63851,38.0819],[-84.63773,38.08203],[-84.63653,38.08215],[-84.63606,38.08218],[-84.63493,38.0823],[-84.63419,38.08241],[-84.63141,38.08349],[-84.62924,38.08433],[-84.62565,38.0858],[-84.6251,38.0848],[-84.62467,38.08406],[-84.62443,38.08361],[-84.62247,38.08008],[-84.62169,38.07883],[-84.62121,38.07801],[-84.61993,38.0757],[-84.61961,38.07513],[-84.61844,38.07309],[-84.6179,38.07211],[-84.61486,38.07331],[-84.6141,38.07381],[-84.6134,38.07431],[-84.61219,38.07511],[-84.60943,38.07702],[-84.60905,38.07728],[-84.60839,38.07773],[-84.6081,38.07775],[-84.6073,38.07739],[-84.60675,38.07685],[-84.60646,38.07672],[-84.60513,38.07743],[-84.6032,38.07848],[-84.60129,38.0795],[-84.60095,38.07969],[-84.6002,38.08016],[-84.59872,38.0811],[-84.59443,38.08384],[-84.59346,38.08449],[-84.59044,38.08651],[-84.59016,38.0867],[-84.59556,38.08813],[-84.59724,38.08881],[-84.59898,38.08958],[-84.60015,38.09014],[-84.60139,38.09075],[-84.59972,38.09212],[-84.59934,38.09243],[-84.59877,38.0929],[-84.59816,38.0934],[-84.5971,38.09426],[-84.59482,38.09577],[-84.5929,38.09705],[-84.59152,38.09798],[-84.59103,38.09834],[-84.59085,38.09871],[-84.59037,38.10008],[-84.58991,38.10135],[-84.58702,38.10506],[-84.58493,38.10777],[-84.58206,38.11145],[-84.58153,38.11213],[-84.58026,38.11372],[-84.57948,38.1147],[-84.57873,38.11565],[-84.57823,38.1163],[-84.57805,38.11652],[-84.57776,38.11691],[-84.57726,38.11751],[-84.57624,38.11871],[-84.57529,38.11983],[-84.5748,38.1204],[-84.57394,38.12143],[-84.57329,38.12219],[-84.56874,38.11987],[-84.56854,38.11977],[-84.56714,38.11904],[-84.56569,38.11829],[-84.56488,38.11787],[-84.5642,38.11752],[-84.56222,38.11652],[-84.56164,38.1162],[-84.56041,38.11556],[-84.56026,38.11547],[-84.56022,38.11542],[-84.56016,38.11532],[-84.56016,38.11525],[-84.56047,38.11421],[-84.55991,38.11385],[-84.55817,38.11294],[-84.55723,38.1124],[-84.55655,38.11226],[-84.55464,38.1119],[-84.55294,38.11158],[-84.55205,38.11141],[-84.55177,38.11135],[-84.54994,38.111],[-84.54969,38.11096],[-84.54803,38.11045],[-84.54753,38.11045],[-84.54699,38.11055],[-84.54436,38.11108],[-84.54365,38.11122],[-84.54371,38.1109],[-84.54373,38.11087],[-84.54379,38.11082],[-84.54385,38.11078],[-84.54409,38.11065],[-84.54419,38.11061],[-84.5449,38.11032],[-84.54516,38.10995],[-84.54542,38.10954],[-84.54561,38.10925],[-84.54584,38.10897],[-84.54589,38.10893],[-84.54593,38.10891],[-84.54598,38.10888],[-84.54655,38.10851],[-84.5467,38.10803],[-84.54669,38.10778],[-84.54668,38.10716],[-84.54668,38.10671],[-84.54669,38.10657],[-84.54684,38.10641],[-84.54823,38.1064],[-84.54952,38.10639]]}},
{"type":"Feature","properties":{"name":"Versailles/Midway/Millvile Loop"},"geometry":{"type":"LineString","coordinates":[[-84.7153,38.05241],[-84.71554,38.05256],[-84.71645,38.05355],[-84.71519,38.05431],[-84.71465,38.05462],[-84.7144,38.05477],[-84.71295,38.05566],[-84.71287,38.05574],[-84.71259,38.05621],[-84.71246,38.05678],[-84.71233,38.05748],[-84.71242,38.05788],[-84.71288,38.05824],[-84.71463,38.05896],[-84.71479,38.05902],[-84.71734,38.06008],[-84.71817,38.06082],[-84.71809,38.06087],[-84.718,38.06093],[-84.71667,38.06189],[-84.71648,38.06203],[-84.71245,38.06478],[-84.71194,38.06469],[-84.71129,38.06448],[-84.71114,38.06442],[-84.71084,38.06433],[-84.71072,38.06429],[-84.7104,38.06426],[-84.71011,38.06441],[-84.70728,38.06789],[-84.70688,38.06809],[-84.70605,38.06814],[-84.70576,38.06812],[-84.70503,38.06817],[-84.70387,38.06949],[-84.70357,38.06984],[-84.70192,38.0718],[-84.70176,38.07199],[-84.70157,38.07221],[-84.70002,38.07404],[-84.69873,38.07375],[-84.69822,38.07366],[-84.69529,38.07309],[-84.69496,38.07302],[-84.69195,38.07239],[-84.69161,38.07232],[-84.68939,38.07184],[-84.68902,38.07176],[-84.68861,38.07167],[-84.68845,38.07163],[-84.68287,38.07047],[-84.68264,38.07206],[-84.68243,38.07219],[-84.68218,38.07216],[-84.68146,38.07202],[-84.68005,38.07171],[-84.6797,38.07164],[-84.67658,38.07099],[-84.67639,38.07094],[-84.6762,38.0709],[-84.67418,38.07048],[-84.67389,38.06993],[-84.67188,38.06817],[-84.67025,38.06775],[-84.66995,38.06835],[-84.66981,38.0686],[-84.66967,38.06883],[-84.66955,38.06907],[-84.66916,38.06978],[-84.6691,38.06987],[-84.66902,38.06995],[-84.66224,38.0748],[-84.66243,38.07504],[-84.66248,38.07513],[-84.66278,38.07558],[-84.66287,38.07573],[-84.66307,38.07602],[-84.66384,38.07723],[-84.66389,38.07958],[-84.6639,38.08008],[-84.66391,38.08029],[-84.66392,38.08093],[-84.66392,38.08116],[-84.66394,38.08177],[-84.66394,38.08196],[-84.66387,38.08317],[-84.6626,38.08562],[-84.66253,38.08574],[-84.6615,38.08756],[-84.66113,38.08811],[-84.66105,38.08825],[-84.66056,38.08898],[-84.65954,38.09053],[-84.65946,38.09066],[-84.65937,38.09079],[-84.65908,38.09121],[-84.65901,38.09129],[-84.65771,38.09261],[-84.6574,38.09292],[-84.65645,38.09385],[-84.65547,38.09456],[-84.65555,38.09601],[-84.65556,38.09614],[-84.6551,38.09718],[-84.65488,38.09759],[-84.6548,38.09774],[-84.65381,38.09959],[-84.65343,38.1003],[-84.65334,38.10047],[-84.65296,38.10118],[-84.65282,38.10145],[-84.65184,38.1033],[-84.65151,38.10392],[-84.65093,38.10501],[-84.6507,38.10496],[-84.65043,38.10491],[-84.64924,38.10672],[-84.64917,38.10683],[-84.6491,38.10694],[-84.64878,38.10743],[-84.6479,38.10875],[-84.64767,38.1091],[-84.6468,38.11042],[-84.64673,38.11053],[-84.64664,38.11067],[-84.64654,38.11082],[-84.64645,38.11096],[-84.64408,38.11456],[-84.64344,38.11553],[-84.64301,38.11609],[-84.64269,38.11669],[-84.64261,38.11686],[-84.6424,38.11746],[-84.64233,38.11767],[-84.64185,38.1191],[-84.64059,38.12026],[-84.64011,38.12127],[-84.64002,38.12146],[-84.63937,38.1229],[-84.63923,38.12322],[-84.639,38.1237],[-84.63887,38.12398],[-84.63863,38.12451],[-84.63864,38.12498],[-84.63867,38.12517],[-84.63871,38.1257],[-84.63819,38.12598],[-84.63796,38.12629],[-84.63845,38.12735],[-84.6385,38.12753],[-84.63852,38.12802],[-84.63868,38.12816],[-84.63876,38.12823],[-84.63949,38.12885],[-84.64009,38.12912],[-84.64036,38.1292],[-84.64116,38.12931],[-84.64224,38.12926],[-84.64297,38.12918],[-84.64412,38.12925],[-84.64429,38.1293],[-84.64545,38.12974],[-84.64559,38.12979],[-84.64683,38.13021],[-84.64697,38.13026],[-84.64797,38.1306],[-84.64811,38.13065],[-84.64866,38.13091],[-84.64878,38.13098],[-84.64891,38.13105],[-84.64904,38.13111],[-84.6522,38.13225],[-84.65296,38.13251],[-84.65512,38.13324],[-84.65532,38.13331],[-84.65551,38.13338],[-84.65719,38.13396],[-84.65738,38.13402],[-84.65776,38.13416],[-84.6581,38.13428],[-84.65871,38.13449],[-84.65922,38.13467],[-84.66144,38.13545],[-84.66203,38.13565],[-84.66239,38.13578],[-84.66277,38.13592],[-84.66316,38.13606],[-84.6645,38.13654],[-84.66613,38.13735],[-84.66629,38.13743],[-84.66677,38.13768],[-84.66693,38.13775],[-84.66768,38.13807],[-84.66847,38.13815],[-84.66863,38.13816],[-84.66993,38.13823],[-84.67008,38.13824],[-84.67058,38.13827],[-84.67146,38.13832],[-84.67259,38.1385],[-84.67412,38.14017],[-84.67425,38.14026],[-84.67463,38.14056],[-84.67582,38.14173],[-84.67608,38.14193],[-84.67637,38.14211],[-84.67653,38.1422],[-84.67667,38.14228],[-84.67696,38.14246],[-84.67701,38.1425],[-84.67733,38.14274],[-84.67803,38.14331],[-84.67817,38.14341],[-84.67828,38.14351],[-84.67932,38.14436],[-84.67943,38.14445],[-84.67952,38.14453],[-84.67972,38.14469],[-84.6798,38.14474],[-84.6804,38.14519],[-84.68123,38.14555],[-84.68141,38.14562],[-84.68186,38.14578],[-84.68234,38.14595],[-84.68275,38.14609],[-84.6831,38.14622],[-84.6838,38.14647],[-84.68417,38.1466],[-84.68443,38.1467],[-84.68457,38.14675],[-84.68515,38.14695],[-84.6855,38.14708],[-84.68603,38.14728],[-84.6861,38.14731],[-84.68686,38.14757],[-84.6876,38.14784],[-84.68832,38.14809],[-84.68864,38.1482],[-84.68931,38.14844],[-84.68992,38.14866],[-84.6904,38.14883],[-84.69118,38.14912],[-84.69191,38.14939],[-84.69256,38.14957],[-84.69299,38.14952],[-84.69324,38.14946],[-84.69386,38.14926],[-84.69434,38.1491],[-84.69567,38.14875],[-84.69596,38.14864],[-84.69633,38.14849],[-84.69662,38.14837],[-84.69771,38.14792],[-84.69797,38.14782],[-84.69839,38.14768],[-84.69857,38.14772],[-84.69866,38.14777],[-84.69878,38.14782],[-84.69903,38.14795],[-84.69952,38.14818],[-84.69989,38.14835],[-84.70008,38.14844],[-84.70103,38.1489],[-84.70122,38.14899],[-84.70231,38.14951],[-84.70264,38.14967],[-84.70333,38.15001],[-84.70367,38.15017],[-84.70382,38.15025],[-84.70397,38.15032],[-84.70411,38.15039],[-84.70424,38.15045],[-84.70483,38.15062],[-84.7049,38.15058],[-84.70501,38.15041],[-84.70506,38.15031],[-84.70512,38.15018],[-84.70616,38.14818],[-84.70623,38.14802],[-84.70659,38.14735],[-84.70673,38.14708],[-84.70688,38.1468],[-84.70715,38.14627],[-84.70739,38.1458],[-84.70749,38.14562],[-84.70776,38.14547],[-84.70841,38.14566],[-84.70859,38.14572],[-84.70897,38.14584],[-84.70937,38.14597],[-84.7102,38.14624],[-84.71085,38.14645],[-84.71106,38.14652],[-84.71168,38.14673],[-84.71336,38.14727],[-84.71358,38.14734],[-84.714,38.14748],[-84.71483,38.14775],[-84.71504,38.14782],[-84.71545,38.14795],[-84.71604,38.14815],[-84.71663,38.14833],[-84.71857,38.14893],[-84.71879,38.149],[-84.72099,38.14967],[-84.72118,38.14971],[-84.72292,38.15026],[-84.72352,38.15045],[-84.72453,38.15078],[-84.72474,38.15085],[-84.72538,38.15106],[-84.72621,38.15134],[-84.72723,38.15168],[-84.72743,38.15175],[-84.72906,38.15228],[-84.72922,38.15234],[-84.73027,38.15265],[-84.73102,38.15289],[-84.73197,38.15319],[-84.73235,38.15331],[-84.73516,38.1542],[-84.73532,38.15425],[-84.73594,38.15446],[-84.73613,38.1545],[-84.73654,38.15431],[-84.73677,38.1542],[-84.73778,38.15388],[-84.73867,38.15382],[-84.73915,38.15384],[-84.74119,38.154],[-84.74298,38.15412],[-84.74347,38.15416],[-84.74361,38.15416],[-84.74381,38.15418],[-84.74399,38.1542],[-84.74403,38.15399],[-84.74401,38.15396],[-84.74394,38.15386],[-84.74387,38.1538],[-84.74382,38.15359],[-84.74386,38.15352],[-84.74514,38.15143],[-84.74528,38.15119],[-84.74561,38.15065],[-84.74576,38.1504],[-84.74619,38.14966],[-84.74841,38.14606],[-84.74863,38.1457],[-84.74904,38.14505],[-84.7495,38.14431],[-84.75054,38.14262],[-84.75076,38.14226],[-84.75084,38.14215],[-84.75111,38.14172],[-84.7515,38.14186],[-84.75365,38.14264],[-84.75491,38.14311],[-84.75521,38.14322],[-84.75727,38.14423],[-84.75785,38.14456],[-84.75905,38.14547],[-84.75957,38.14592],[-84.7598,38.14611],[-84.75994,38.14622],[-84.7615,38.1473],[-84.76376,38.14883],[-84.76511,38.14975],[-84.76814,38.15179],[-84.76879,38.15223],[-84.76916,38.15249],[-84.7696,38.1528],[-84.7702,38.15321],[-84.7715,38.15414],[-84.77164,38.15428],[-84.77171,38.15451],[-84.77165,38.15529],[-84.77188,38.15577],[-84.77231,38.15599],[-84.77245,38.15601],[-84.77294,38.15595],[-84.77367,38.15583],[-84.77377,38.15584],[-84.77389,38.15587],[-84.77436,38.15611],[-84.77535,38.15677],[-84.77655,38.15746],[-84.77849,38.15854],[-84.77916,38.15892],[-84.78019,38.15947],[-84.78058,38.1597],[-84.78097,38.16006],[-84.78141,38.16083],[-84.78181,38.16153],[-84.78221,38.16217],[-84.78292,38.16306],[-84.78345,38.16395],[-84.78371,38.16434],[-84.78377,38.1644],[-84.78379,38.16441],[-84.78386,38.16444],[-84.78406,38.16445],[-84.78437,38.16443],[-84.78524,38.1643],[-84.78802,38.16308],[-84.78834,38.16294],[-84.79094,38.16189],[-84.79306,38.16249],[-84.79361,38.16265],[-84.79413,38.16278],[-84.79422,38.16279],[-84.79449,38.16279],[-84.79466,38.16278],[-84.79483,38.16278],[-84.79534,38.16285],[-84.79563,38.16293],[-84.79734,38.1634],[-84.80255,38.16483],[-84.80437,38.16484],[-84.80666,38.1648],[-84.80696,38.16479],[-84.80776,38.16475],[-84.8079,38.16474],[-84.80851,38.16457],[-84.81052,38.16406],[-84.81114,38.16422],[-84.81125,38.16429],[-84.81184,38.16469],[-84.81221,38.16494],[-84.81331,38.16574],[-84.81363,38.16644],[-84.81264,38.16977],[-84.81289,38.16981],[-84.814,38.16967],[-84.81415,38.1696],[-84.81445,38.16941],[-84.81487,38.16893],[-84.81519,38.1685],[-84.81583,38.16763],[-84.81604,38.16734],[-84.81635,38.16689],[-84.81737,38.16574],[-84.81757,38.16532],[-84.81792,38.16429],[-84.81782,38.1638],[-84.81765,38.16358],[-84.817,38.1628],[-84.81572,38.16122],[-84.81567,38.1611],[-84.81565,38.16103],[-84.81565,38.16092],[-84.81569,38.16076],[-84.81571,38.16071],[-84.81613,38.15988],[-84.8162,38.15973],[-84.81628,38.15957],[-84.81648,38.15914],[-84.81676,38.15853],[-84.81854,38.155],[-84.81846,38.1535],[-84.8184,38.15305],[-84.81824,38.1516],[-84.81828,38.15122],[-84.81827,38.15101],[-84.81826,38.15094],[-84.81822,38.15068],[-84.8182,38.15032],[-84.81828,38.15007],[-84.8184,38.14987],[-84.81873,38.14948],[-84.81879,38.14941],[-84.81934,38.14878],[-84.81944,38.14856],[-84.81956,38.14813],[-84.81965,38.14793],[-84.8201,38.14694],[-84.8202,38.14671],[-84.82032,38.14654],[-84.82037,38.14648],[-84.82053,38.14632],[-84.82168,38.14526],[-84.82201,38.14491],[-84.82256,38.1444],[-84.82363,38.14312],[-84.8238,38.14221],[-84.82419,38.1412],[-84.82501,38.14036],[-84.82477,38.14025],[-84.82455,38.14014],[-84.82439,38.14004],[-84.82419,38.1399],[-84.82403,38.13977],[-84.82384,38.13959],[-84.82316,38.139],[-84.82298,38.13881],[-84.82281,38.13859],[-84.8227,38.13842],[-84.82246,38.13792],[-84.82199,38.13665],[-84.82188,38.13623],[-84.82182,38.13583],[-84.8218,38.13565],[-84.82183,38.13536],[-84.82193,38.13512],[-84.82206,38.13489],[-84.82215,38.13478],[-84.82271,38.13417],[-84.82286,38.13396],[-84.82295,38.1338],[-84.82301,38.13371],[-84.82303,38.13367],[-84.82397,38.13195],[-84.82406,38.13136],[-84.82389,38.13065],[-84.82384,38.13054],[-84.82312,38.12914],[-84.82319,38.12848],[-84.82327,38.12828],[-84.82341,38.12773],[-84.8234,38.12746],[-84.82339,38.12741],[-84.82331,38.12711],[-84.82326,38.12694],[-84.82293,38.12577],[-84.82287,38.12556],[-84.82286,38.12546],[-84.82296,38.12521],[-84.82303,38.12516],[-84.82316,38.12509],[-84.82362,38.12493],[-84.82394,38.1248],[-84.82444,38.12455],[-84.82507,38.12424],[-84.82556,38.12399],[-84.82697,38.12319],[-84.82721,38.12293],[-84.82736,38.12244],[-84.82736,38.12207],[-84.82735,38.1219],[-84.82697,38.12065],[-84.8269,38.1205],[-84.8265,38.11951],[-84.82647,38.11939],[-84.82646,38.11929],[-84.82644,38.1191],[-84.82624,38.1184],[-84.82562,38.11796],[-84.82551,38.11789],[-84.82488,38.11741],[-84.82394,38.11703],[-84.82374,38.11695],[-84.8216,38.11622],[-84.81767,38.11572],[-84.81722,38.11548],[-84.81658,38.11484],[-84.81643,38.11471],[-84.81537,38.11378],[-84.81521,38.11361],[-84.81462,38.11289],[-84.81437,38.11275],[-84.81412,38.11271],[-84.81365,38.11269],[-84.81276,38.11277],[-84.81183,38.11297],[-84.81158,38.11304],[-84.8112,38.11348],[-84.8111,38.11383],[-84.81102,38.11506],[-84.81098,38.11523],[-84.81065,38.11576],[-84.80958,38.11638],[-84.80928,38.11646],[-84.80869,38.11654],[-84.80852,38.11654],[-84.80819,38.1165],[-84.80776,38.1164],[-84.8068,38.11595],[-84.80641,38.11583],[-84.80318,38.11492],[-84.80228,38.11458],[-84.80178,38.11397],[-84.80199,38.11324],[-84.80321,38.10888],[-84.80349,38.10698],[-84.80403,38.10596],[-84.80434,38.10546],[-84.80651,38.10284],[-84.8066,38.10259],[-84.80558,38.10086],[-84.80449,38.09973],[-84.80367,38.09912],[-84.80264,38.09858],[-84.80118,38.0975],[-84.79908,38.0956],[-84.79861,38.09547],[-84.79782,38.09556],[-84.79463,38.09647],[-84.79436,38.09658],[-84.79372,38.09686],[-84.79338,38.09681],[-84.79231,38.09582],[-84.79029,38.09329],[-84.78998,38.09312],[-84.78989,38.09309],[-84.7896,38.09304],[-84.78944,38.09303],[-84.78837,38.09297],[-84.78737,38.09269],[-84.78619,38.0923],[-84.78603,38.09224],[-84.78577,38.09211],[-84.78553,38.09196],[-84.78457,38.09052],[-84.7841,38.08966],[-84.78388,38.08935],[-84.78329,38.08893],[-84.78315,38.08887],[-84.78268,38.08877],[-84.78208,38.08871],[-84.78145,38.08852],[-84.77948,38.08781],[-84.77932,38.08773],[-84.77893,38.08751],[-84.77862,38.08728],[-84.77736,38.08619],[-84.77621,38.08529],[-84.77486,38.08491],[-84.77471,38.08487],[-84.77425,38.08459],[-84.77371,38.08403],[-84.77316,38.08349],[-84.77207,38.08244],[-84.77151,38.08203],[-84.77112,38.0818],[-84.77095,38.08171],[-84.77072,38.08158],[-84.77043,38.08144],[-84.77028,38.08139],[-84.768,38.08102],[-84.76745,38.08079],[-84.76734,38.08073],[-84.76672,38.08023],[-84.76465,38.07811],[-84.76408,38.07753],[-84.76208,38.0755],[-84.76093,38.07462],[-84.76067,38.07442],[-84.75891,38.07309],[-84.75834,38.07264],[-84.75636,38.07113],[-84.75586,38.07074],[-84.75249,38.06819],[-84.75173,38.0676],[-84.75107,38.06711],[-84.7505,38.06667],[-84.74983,38.06615],[-84.74829,38.06486],[-84.74799,38.0646],[-84.74641,38.06365],[-84.7409,38.0609],[-84.74051,38.06072],[-84.74033,38.06062],[-84.74005,38.06049],[-84.73941,38.06019],[-84.73886,38.05992],[-84.73705,38.059],[-84.734,38.05748],[-84.73359,38.05728],[-84.73326,38.05714],[-84.73308,38.05708],[-84.73285,38.05701],[-84.7321,38.05678],[-84.73105,38.05647],[-84.73099,38.05645],[-84.73042,38.0563],[-84.73009,38.05624],[-84.72958,38.05625],[-84.72911,38.05629],[-84.72846,38.0563],[-84.72561,38.0563],[-84.72464,38.0563],[-84.72448,38.05641],[-84.72423,38.05658],[-84.72262,38.05771],[-84.72205,38.05812],[-84.72173,38.05836],[-84.72162,38.05843],[-84.72051,38.05919],[-84.72031,38.05933],[-84.72002,38.05952],[-84.71987,38.05962],[-84.71955,38.05984],[-84.71908,38.06018],[-84.71817,38.06082],[-84.71734,38.06008],[-84.71479,38.05902],[-84.71463,38.05896],[-84.71288,38.05824],[-84.71242,38.05788],[-84.71233,38.05748],[-84.71246,38.05678],[-84.71259,38.05621],[-84.71287,38.05574],[-84.71295,38.05566],[-84.7144,38.05477],[-84.71465,38.05462],[-84.71519,38.05431],[-84.71448,38.05353],[-84.71421,38.05318],[-84.7153,38.05241]]}},
{"type":"Feature","properties":{"name":"Hartland - Delong Loop + Interdiction"},"geometry":{"type":"LineString","coordinates":[[-84.47809,37.96166],[-84.47735,37.96224],[-84.47719,37.96232],[-84.47675,37.96248],[-84.47655,37.96253],[-84.47565,37.9626],[-84.47495,37.96253],[-84.47382,37.96238],[-84.47276,37.9624],[-84.47172,37.96255],[-84.47083,37.96282],[-84.46796,37.96476],[-84.46738,37.96519],[-84.46732,37.96523],[-84.46731,37.96525],[-84.46728,37.96532],[-84.46701,37.96551],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44198,37.92938],[-84.4414,37.93037],[-84.44063,37.93165],[-84.44022,37.93236],[-84.43829,37.9357],[-84.43677,37.93832],[-84.43372,37.94362],[-84.43502,37.94622],[-84.43548,37.94766],[-84.43593,37.94912],[-84.43604,37.9498],[-84.43378,37.95367],[-84.43211,37.95652],[-84.43085,37.95869],[-84.42986,37.96038],[-84.42947,37.96107],[-84.42732,37.96515],[-84.42525,37.96669],[-84.42404,37.96758],[-84.42336,37.96801],[-84.42286,37.96817],[-84.4217,37.96842],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42569,37.98108],[-84.42482,37.98118],[-84.4237,37.9813],[-84.42334,37.98143],[-84.42298,37.98179],[-84.42285,37.98184],[-84.42271,37.98198],[-84.42209,37.98238],[-84.42143,37.98253],[-84.42118,37.98255],[-84.42031,37.98265],[-84.4197,37.98285],[-84.41961,37.98289],[-84.41816,37.98375],[-84.4172,37.98391],[-84.41624,37.98367],[-84.41466,37.98249],[-84.4136,37.98232],[-84.41258,37.98264],[-84.41136,37.98354],[-84.41076,37.98396],[-84.41004,37.98453],[-84.40943,37.98524],[-84.40915,37.9857],[-84.40888,37.98685],[-84.40836,37.98761],[-84.40751,37.9882],[-84.40663,37.98847],[-84.40636,37.98853],[-84.40401,37.98909],[-84.40359,37.98925],[-84.40291,37.98981],[-84.40263,37.99028],[-84.40241,37.99176],[-84.40205,37.99282],[-84.40129,37.99397],[-84.40019,37.99509],[-84.39989,37.99559],[-84.39965,37.99653],[-84.39826,37.99629],[-84.39811,37.99627],[-84.39792,37.99625],[-84.39711,37.99609],[-84.39655,37.99598],[-84.39657,37.9961],[-84.39658,37.99612],[-84.3966,37.99618],[-84.39663,37.99623],[-84.39683,37.99656],[-84.39707,37.99696],[-84.39768,37.99811],[-84.39756,37.99855],[-84.39744,37.99867],[-84.39674,37.99927],[-84.396,37.9999],[-84.39581,38.00004],[-84.39576,38.00008],[-84.39468,38.00094],[-84.39397,38.00151],[-84.39278,38.00256],[-84.39264,38.00269],[-84.39237,38.00297],[-84.39218,38.00316],[-84.39185,38.00351],[-84.39173,38.00363],[-84.39166,38.0037],[-84.39152,38.00385],[-84.39133,38.00404],[-84.39107,38.00431],[-84.38969,38.00557],[-84.38929,38.0059],[-84.38842,38.00668],[-84.38785,38.0072],[-84.38754,38.00749],[-84.38741,38.00766],[-84.38722,38.00819],[-84.3872,38.0083],[-84.38724,38.00862],[-84.38725,38.00866],[-84.38727,38.00869],[-84.38729,38.00873],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39581,38.00004],[-84.396,37.9999],[-84.39674,37.99927],[-84.39744,37.99867],[-84.39756,37.99855],[-84.39768,37.99811],[-84.39707,37.99696],[-84.39683,37.99656],[-84.39663,37.99623],[-84.3966,37.99618],[-84.39658,37.99612],[-84.39657,37.9961],[-84.39655,37.99598],[-84.39711,37.99609],[-84.39792,37.99625],[-84.39963,37.9966],[-84.39974,37.99662],[-84.39979,37.99657],[-84.40007,37.99571],[-84.40052,37.99504],[-84.40086,37.99476],[-84.40181,37.99386],[-84.40218,37.99396],[-84.40259,37.994],[-84.40268,37.994],[-84.40326,37.99374],[-84.40476,37.99255],[-84.40514,37.99238],[-84.40697,37.99227],[-84.40872,37.99079],[-84.40914,37.9904],[-84.41033,37.98922],[-84.41243,37.98646],[-84.41246,37.98642],[-84.41246,37.98607],[-84.41202,37.98558],[-84.41212,37.98532],[-84.41291,37.98475],[-84.41476,37.98345],[-84.41521,37.98314],[-84.41602,37.98378],[-84.41611,37.98382],[-84.41699,37.98407],[-84.41765,37.98407],[-84.41847,37.98383],[-84.41913,37.98341],[-84.41936,37.98325],[-84.41968,37.98306],[-84.41974,37.98303],[-84.42228,37.98249],[-84.42239,37.98243],[-84.42266,37.98227],[-84.42271,37.98223],[-84.42285,37.98206],[-84.42297,37.98191],[-84.42298,37.98179],[-84.42334,37.98143],[-84.4237,37.9813],[-84.42482,37.98118],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46701,37.96551],[-84.46728,37.96532],[-84.46746,37.96525],[-84.46807,37.96483],[-84.46866,37.9644],[-84.47061,37.96305],[-84.47218,37.96257],[-84.47244,37.96254],[-84.47336,37.96249],[-84.47381,37.9625],[-84.47495,37.96253],[-84.47565,37.9626],[-84.47655,37.96253],[-84.47675,37.96248],[-84.47719,37.96232],[-84.47735,37.96224],[-84.47809,37.96166]]}},
{"type":"Feature","properties":{"name":"Walnut Hill - Athens - Cleveland - Hayes - Delong"},"geometry":{"type":"LineString","coordinates":[[-84.47809,37.96166],[-84.47735,37.96224],[-84.47719,37.96232],[-84.47675,37.96248],[-84.47655,37.96253],[-84.47565,37.9626],[-84.47495,37.96253],[-84.47382,37.96238],[-84.47276,37.9624],[-84.47172,37.96255],[-84.47083,37.96282],[-84.46796,37.96476],[-84.46738,37.96519],[-84.46732,37.96523],[-84.46731,37.96525],[-84.46728,37.96532],[-84.46701,37.96551],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44198,37.92938],[-84.4414,37.93037],[-84.44063,37.93165],[-84.44022,37.93236],[-84.43829,37.9357],[-84.43677,37.93832],[-84.43372,37.94362],[-84.43502,37.94622],[-84.43548,37.94766],[-84.43593,37.94912],[-84.43604,37.9498],[-84.43378,37.95367],[-84.43211,37.95652],[-84.43085,37.95869],[-84.42986,37.96038],[-84.42947,37.96107],[-84.42732,37.96515],[-84.42525,37.96669],[-84.42404,37.96758],[-84.42336,37.96801],[-84.42286,37.96817],[-84.4217,37.96842],[-84.42145,37.96848],[-84.42089,37.96755],[-84.41807,37.96275],[-84.41724,37.96138],[-84.41664,37.96036],[-84.41582,37.95899],[-84.41578,37.9589],[-84.4156,37.95894],[-84.41534,37.95902],[-84.41514,37.95907],[-84.41507,37.95907],[-84.40941,37.95638],[-84.40882,37.95609],[-84.40737,37.95538],[-84.40425,37.95386],[-84.39626,37.95031],[-84.39213,37.95027],[-84.39109,37.95027],[-84.38995,37.9503],[-84.38658,37.95032],[-84.38262,37.95034],[-84.38148,37.95033],[-84.38041,37.95033],[-84.3772,37.95031],[-84.37362,37.95026],[-84.36895,37.95018],[-84.36718,37.95018],[-84.3671,37.95021],[-84.36673,37.95063],[-84.36554,37.94999],[-84.36443,37.94937],[-84.36388,37.95001],[-84.36331,37.95073],[-84.36394,37.95107],[-84.36398,37.95121],[-84.36398,37.95125],[-84.36399,37.9515],[-84.364,37.95231],[-84.36404,37.95409],[-84.36406,37.95545],[-84.36407,37.95666],[-84.36453,37.96485],[-84.36428,37.96525],[-84.36297,37.96641],[-84.3626,37.96721],[-84.36253,37.9682],[-84.36293,37.96961],[-84.36488,37.97301],[-84.365,37.97328],[-84.36513,37.97383],[-84.36477,37.97524],[-84.36472,37.9765],[-84.36482,37.98285],[-84.3635,37.98638],[-84.36257,37.98829],[-84.36207,37.98927],[-84.3608,37.99184],[-84.36426,37.9905],[-84.36481,37.99031],[-84.36647,37.98981],[-84.36743,37.98995],[-84.36855,37.99066],[-84.3736,37.99142],[-84.375,37.9921],[-84.37549,37.99206],[-84.37805,37.99137],[-84.37881,37.99128],[-84.38046,37.99166],[-84.38136,37.99221],[-84.38225,37.99285],[-84.38277,37.99315],[-84.38508,37.99397],[-84.38707,37.99455],[-84.38738,37.99463],[-84.39337,37.99536],[-84.39655,37.99598],[-84.39711,37.99609],[-84.39792,37.99625],[-84.39963,37.9966],[-84.39974,37.99662],[-84.39979,37.99657],[-84.40007,37.99571],[-84.40052,37.99504],[-84.40086,37.99476],[-84.40181,37.99386],[-84.40218,37.99396],[-84.40259,37.994],[-84.40268,37.994],[-84.40326,37.99374],[-84.40476,37.99255],[-84.40514,37.99238],[-84.40697,37.99227],[-84.40872,37.99079],[-84.40914,37.9904],[-84.41033,37.98922],[-84.41243,37.98646],[-84.41246,37.98642],[-84.41246,37.98607],[-84.41202,37.98558],[-84.41212,37.98532],[-84.41291,37.98475],[-84.41476,37.98345],[-84.41521,37.98314],[-84.41602,37.98378],[-84.41611,37.98382],[-84.41699,37.98407],[-84.41765,37.98407],[-84.41847,37.98383],[-84.41913,37.98341],[-84.41936,37.98325],[-84.41968,37.98306],[-84.41974,37.98303],[-84.42228,37.98249],[-84.42239,37.98243],[-84.42266,37.98227],[-84.42271,37.98223],[-84.42285,37.98206],[-84.42297,37.98191],[-84.42298,37.98179],[-84.42334,37.98143],[-84.4237,37.9813],[-84.42482,37.98118],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46701,37.96551],[-84.46728,37.96532],[-84.46746,37.96525],[-84.46807,37.96483],[-84.46866,37.9644],[-84.47061,37.96305],[-84.47218,37.96257],[-84.47244,37.96254],[-84.47336,37.96249],[-84.47381,37.9625],[-84.47495,37.96253],[-84.47565,37.9626],[-84.47655,37.96253],[-84.47675,37.96248],[-84.47719,37.96232],[-84.47735,37.96224],[-84.47809,37.96166]]}},
{"type":"Feature","properties":{"name":"RRR 43 & 50 Miles"},"geometry":{"type":"LineString","coordinates":[[-83.69095,37.78225],[-83.6908,37.78217],[-83.69067,37.78215],[-83.69006,37.78207],[-83.68946,37.78216],[-83.68816,37.78267],[-83.68699,37.78294],[-83.68516,37.78302],[-83.68395,37.7827],[-83.68305,37.7821],[-83.68179,37.7804],[-83.68127,37.78015],[-83.68047,37.78003],[-83.68041,37.78053],[-83.68103,37.78064],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.75285,37.82234],[-83.75284,37.82219],[-83.75292,37.82006],[-83.75223,37.81925],[-83.75165,37.81902],[-83.74949,37.81889],[-83.74817,37.81867],[-83.74694,37.81802],[-83.7461,37.81709],[-83.74603,37.81629],[-83.74667,37.81385],[-83.74654,37.81349],[-83.74579,37.81287],[-83.74541,37.81195],[-83.74483,37.80975],[-83.745,37.80843],[-83.74457,37.80817],[-83.74334,37.80808],[-83.74214,37.80771],[-83.7415,37.8072],[-83.74079,37.80595],[-83.7411,37.80492],[-83.74191,37.80416],[-83.74232,37.80337],[-83.74232,37.80267],[-83.74211,37.80178],[-83.74223,37.80054],[-83.74258,37.80038],[-83.7439,37.7991],[-83.74517,37.79649],[-83.74556,37.79601],[-83.74821,37.79435],[-83.75071,37.79247],[-83.75337,37.79104],[-83.75408,37.79032],[-83.75452,37.7891],[-83.75491,37.78868],[-83.75664,37.78775],[-83.75856,37.78633],[-83.76065,37.78554],[-83.76122,37.78543],[-83.76238,37.78544],[-83.7642,37.78574],[-83.76518,37.78604],[-83.76713,37.78721],[-83.7692,37.78803],[-83.77027,37.78899],[-83.77051,37.78977],[-83.77081,37.78998],[-83.77109,37.78997],[-83.77174,37.78947],[-83.77265,37.78981],[-83.77357,37.78938],[-83.77385,37.78936],[-83.77448,37.7895],[-83.77564,37.79026],[-83.77609,37.79026],[-83.77633,37.78995],[-83.77629,37.7888],[-83.77674,37.78779],[-83.77651,37.7872],[-83.77541,37.7866],[-83.77528,37.78628],[-83.77621,37.78526],[-83.77801,37.78407],[-83.77862,37.78314],[-83.77983,37.78251],[-83.78033,37.78201],[-83.78063,37.77994],[-83.78042,37.77904],[-83.77993,37.77843],[-83.77991,37.77821],[-83.78023,37.77792],[-83.78095,37.77764],[-83.78187,37.77799],[-83.7824,37.77778],[-83.7825,37.77746],[-83.7823,37.77565],[-83.78272,37.77516],[-83.78331,37.77509],[-83.78399,37.77578],[-83.78478,37.77615],[-83.78651,37.77631],[-83.78792,37.77627],[-83.78859,37.77614],[-83.7891,37.77585],[-83.7897,37.77514],[-83.79046,37.77454],[-83.79132,37.77411],[-83.79343,37.77336],[-83.79455,37.77198],[-83.79497,37.77173],[-83.79603,37.77151],[-83.79784,37.77141],[-83.80245,37.76985],[-83.80392,37.76976],[-83.80429,37.76954],[-83.80493,37.76875],[-83.80526,37.76862],[-83.80739,37.76879],[-83.80852,37.76831],[-83.80948,37.76845],[-83.80983,37.7684],[-83.81144,37.76717],[-83.81228,37.76743],[-83.81305,37.76746],[-83.81418,37.76716],[-83.81496,37.76713],[-83.81528,37.76648],[-83.81595,37.7657],[-83.81805,37.76455],[-83.8182,37.76413],[-83.81801,37.76355],[-83.81839,37.7632],[-83.82045,37.76274],[-83.82249,37.76288],[-83.82404,37.76282],[-83.82596,37.7625],[-83.82727,37.76243],[-83.82843,37.76207],[-83.83137,37.7622],[-83.83155,37.76222],[-83.83168,37.76224],[-83.83142,37.76289],[-83.83147,37.76356],[-83.83123,37.76413],[-83.83127,37.76446],[-83.83165,37.76506],[-83.83161,37.76528],[-83.83085,37.76589],[-83.83052,37.76643],[-83.82939,37.7668],[-83.8287,37.76723],[-83.82814,37.76777],[-83.8278,37.76836],[-83.82771,37.76945],[-83.82788,37.76976],[-83.82834,37.77013],[-83.82838,37.77085],[-83.82792,37.77175],[-83.82673,37.7721],[-83.82643,37.77247],[-83.82642,37.77277],[-83.82693,37.77386],[-83.82693,37.77421],[-83.82668,37.77485],[-83.82595,37.77593],[-83.82646,37.77662],[-83.82661,37.77724],[-83.8265,37.77752],[-83.82586,37.77808],[-83.82567,37.779],[-83.82587,37.77937],[-83.82659,37.78],[-83.82689,37.78077],[-83.82789,37.78114],[-83.82797,37.78208],[-83.82855,37.78301],[-83.82824,37.78424],[-83.82895,37.78524],[-83.82928,37.78528],[-83.82984,37.78508],[-83.83178,37.78347],[-83.83299,37.78311],[-83.83345,37.78339],[-83.83413,37.78419],[-83.83493,37.78434],[-83.8356,37.78468],[-83.8367,37.78485],[-83.83701,37.78501],[-83.83721,37.78539],[-83.83711,37.78602],[-83.8374,37.78683],[-83.83702,37.78764],[-83.83729,37.78795],[-83.83856,37.78873],[-83.83854,37.78976],[-83.83897,37.79086],[-83.83976,37.79148],[-83.83997,37.79184],[-83.83999,37.79237],[-83.83953,37.79398],[-83.84002,37.79505],[-83.8396,37.79586],[-83.83968,37.79688],[-83.83945,37.79941],[-83.83956,37.80052],[-83.84021,37.80101],[-83.84031,37.80125],[-83.84014,37.80214],[-83.84025,37.8028],[-83.84009,37.80382],[-83.84058,37.80479],[-83.84105,37.80535],[-83.84183,37.80596],[-83.84145,37.807],[-83.84187,37.80864],[-83.84192,37.80941],[-83.84264,37.811],[-83.84289,37.81198],[-83.84397,37.81312],[-83.84416,37.81429],[-83.84396,37.8146],[-83.84195,37.8158],[-83.84114,37.81676],[-83.84123,37.81723],[-83.84184,37.81799],[-83.84156,37.8189],[-83.84159,37.81928],[-83.84274,37.8213],[-83.84208,37.82342],[-83.84142,37.82415],[-83.84124,37.82462],[-83.84128,37.82568],[-83.84093,37.8266],[-83.84093,37.82764],[-83.8408,37.8281],[-83.83974,37.82926],[-83.83914,37.82971],[-83.83904,37.82995],[-83.84011,37.83122],[-83.84086,37.83155],[-83.84292,37.83126],[-83.84523,37.8307],[-83.84553,37.83056],[-83.84626,37.82987],[-83.84696,37.82961],[-83.84748,37.82972],[-83.85091,37.83137],[-83.85236,37.83372],[-83.85468,37.83477],[-83.85525,37.83521],[-83.85571,37.83579],[-83.8585,37.84175],[-83.85847,37.84534],[-83.85847,37.8456],[-83.86165,37.84576],[-83.86907,37.84675],[-83.87055,37.84669],[-83.87076,37.84664],[-83.87108,37.84653],[-83.87131,37.84643],[-83.87109,37.84855],[-83.87067,37.85105],[-83.86822,37.85499],[-83.86808,37.85498],[-83.86791,37.85498],[-83.86748,37.85499],[-83.86601,37.85476],[-83.86509,37.85452],[-83.86484,37.85446],[-83.86097,37.85461],[-83.85622,37.8532],[-83.85579,37.85398],[-83.85546,37.8545],[-83.85493,37.85546],[-83.85475,37.8562],[-83.8544,37.86125],[-83.85469,37.86224],[-83.85603,37.86439],[-83.85522,37.86467],[-83.8549,37.86476],[-83.85467,37.86484],[-83.8541,37.86517],[-83.85312,37.86601],[-83.85198,37.86633],[-83.85154,37.8662],[-83.84987,37.86504],[-83.84936,37.86486],[-83.8458,37.86515],[-83.84091,37.86497],[-83.83954,37.86482],[-83.83827,37.86527],[-83.83623,37.86524],[-83.83543,37.86504],[-83.83452,37.8645],[-83.8322,37.8617],[-83.83114,37.86104],[-83.82982,37.86042],[-83.82533,37.85956],[-83.82251,37.86074],[-83.82182,37.86089],[-83.82098,37.86086],[-83.81901,37.86037],[-83.8181,37.85971],[-83.81762,37.85952],[-83.8154,37.85896],[-83.8095,37.85701],[-83.80889,37.85655],[-83.80862,37.85609],[-83.80745,37.85266],[-83.80728,37.85119],[-83.80733,37.84662],[-83.80715,37.84606],[-83.80541,37.8449],[-83.80255,37.84437],[-83.8012,37.84338],[-83.7996,37.8427],[-83.797,37.84269],[-83.7956,37.84232],[-83.79434,37.84157],[-83.79279,37.84128],[-83.79236,37.84139],[-83.7894,37.84317],[-83.78881,37.84372],[-83.78872,37.84409],[-83.78937,37.84642],[-83.78932,37.84688],[-83.78862,37.848],[-83.78792,37.84881],[-83.78694,37.84933],[-83.78646,37.8494],[-83.78584,37.84934],[-83.7847,37.84939],[-83.7838,37.84976],[-83.78259,37.85064],[-83.78218,37.85162],[-83.78107,37.85155],[-83.77878,37.85053],[-83.77862,37.85031],[-83.77862,37.8496],[-83.77835,37.84898],[-83.77741,37.84798],[-83.77629,37.84754],[-83.77271,37.84774],[-83.77112,37.84852],[-83.76913,37.84889],[-83.76883,37.84889],[-83.76814,37.84881],[-83.76821,37.84863],[-83.76836,37.84805],[-83.76853,37.84736],[-83.76917,37.84523],[-83.7711,37.84201],[-83.77136,37.84158],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71756,37.81374],[-83.71566,37.81185],[-83.71473,37.81129],[-83.71391,37.81093],[-83.71345,37.81059],[-83.71302,37.80984],[-83.71313,37.80814],[-83.71285,37.80748],[-83.71171,37.80575],[-83.71077,37.80495],[-83.70968,37.80424],[-83.70885,37.80337],[-83.70872,37.8032],[-83.7072,37.79949],[-83.70675,37.79917],[-83.70522,37.7987],[-83.70455,37.7985],[-83.70383,37.7983],[-83.70357,37.79822],[-83.70364,37.7979],[-83.70365,37.79784],[-83.70411,37.79508],[-83.70406,37.79464],[-83.70381,37.79421],[-83.70376,37.79416],[-83.7032,37.79377],[-83.69859,37.79141],[-83.69701,37.79001],[-83.69278,37.7881],[-83.69196,37.78759],[-83.69141,37.78695],[-83.69115,37.78627],[-83.69112,37.78504],[-83.69149,37.78369],[-83.69127,37.78308],[-83.69122,37.78303],[-83.69077,37.78275],[-83.69014,37.78266],[-83.68873,37.78321],[-83.68813,37.78333],[-83.68475,37.78341],[-83.68386,37.78333],[-83.6833,37.78311],[-83.68276,37.7827],[-83.68204,37.78135],[-83.68162,37.78094],[-83.68103,37.78064],[-83.68041,37.78053],[-83.68047,37.78003],[-83.68127,37.78015],[-83.68179,37.7804],[-83.68305,37.7821],[-83.68395,37.7827],[-83.68516,37.78302],[-83.68699,37.78294],[-83.68816,37.78267],[-83.68946,37.78216],[-83.69006,37.78207],[-83.69067,37.78215],[-83.69073,37.78216]]}},
{"type":"Feature","properties":{"name":"Midway - Versailles Loop via Big Sink & Steele 25.4 Miles"},"geometry":{"type":"LineString","coordinates":[[-84.68411,38.14917],[-84.68421,38.14896],[-84.68427,38.14886],[-84.68364,38.14864],[-84.68338,38.14854],[-84.68356,38.14822],[-84.68372,38.14793],[-84.68389,38.14763],[-84.68403,38.14739],[-84.68409,38.14728],[-84.68443,38.1467],[-84.68417,38.1466],[-84.6838,38.14647],[-84.6831,38.14622],[-84.68275,38.14609],[-84.68234,38.14595],[-84.68186,38.14578],[-84.68141,38.14562],[-84.68123,38.14555],[-84.6804,38.14519],[-84.6798,38.14474],[-84.67972,38.14469],[-84.67952,38.14453],[-84.67943,38.14445],[-84.67932,38.14436],[-84.67828,38.14351],[-84.67817,38.14341],[-84.67803,38.14331],[-84.67733,38.14274],[-84.67701,38.1425],[-84.67696,38.14246],[-84.67667,38.14228],[-84.67653,38.1422],[-84.67637,38.14211],[-84.67608,38.14193],[-84.67582,38.14173],[-84.67463,38.14056],[-84.67425,38.14026],[-84.67412,38.14017],[-84.67259,38.1385],[-84.67146,38.13832],[-84.67058,38.13827],[-84.67008,38.13824],[-84.66993,38.13823],[-84.66863,38.13816],[-84.66847,38.13815],[-84.66768,38.13807],[-84.66693,38.13775],[-84.66677,38.13768],[-84.66629,38.13743],[-84.66613,38.13735],[-84.6645,38.13654],[-84.66316,38.13606],[-84.66277,38.13592],[-84.66239,38.13578],[-84.66203,38.13565],[-84.66144,38.13545],[-84.65922,38.13467],[-84.65871,38.13449],[-84.6581,38.13428],[-84.65776,38.13416],[-84.65738,38.13402],[-84.65719,38.13396],[-84.65551,38.13338],[-84.65532,38.13331],[-84.65512,38.13324],[-84.65296,38.13251],[-84.6522,38.13225],[-84.64904,38.13111],[-84.64891,38.13105],[-84.64878,38.13098],[-84.64866,38.13091],[-84.64811,38.13065],[-84.64797,38.1306],[-84.64697,38.13026],[-84.64683,38.13021],[-84.64559,38.12979],[-84.64545,38.12974],[-84.64429,38.1293],[-84.64412,38.12925],[-84.64297,38.12918],[-84.64224,38.12926],[-84.64116,38.12931],[-84.64036,38.1292],[-84.64009,38.12912],[-84.63949,38.12885],[-84.63876,38.12823],[-84.63868,38.12816],[-84.63852,38.12802],[-84.6385,38.12753],[-84.63845,38.12735],[-84.63796,38.12629],[-84.63819,38.12598],[-84.63871,38.1257],[-84.63867,38.12517],[-84.63864,38.12498],[-84.63863,38.12451],[-84.63887,38.12398],[-84.639,38.1237],[-84.63923,38.12322],[-84.63937,38.1229],[-84.64002,38.12146],[-84.64011,38.12127],[-84.64059,38.12026],[-84.64185,38.1191],[-84.64233,38.11767],[-84.6424,38.11746],[-84.64261,38.11686],[-84.64269,38.11669],[-84.64301,38.11609],[-84.64344,38.11553],[-84.64408,38.11456],[-84.64645,38.11096],[-84.64654,38.11082],[-84.64664,38.11067],[-84.64673,38.11053],[-84.6468,38.11042],[-84.64767,38.1091],[-84.6479,38.10875],[-84.64878,38.10743],[-84.6491,38.10694],[-84.64917,38.10683],[-84.64924,38.10672],[-84.65043,38.10491],[-84.6507,38.10496],[-84.65093,38.10501],[-84.65147,38.10512],[-84.65199,38.10523],[-84.65661,38.10612],[-84.65972,38.10685],[-84.66541,38.10871],[-84.66571,38.10882],[-84.66659,38.10913],[-84.67171,38.10067],[-84.67223,38.10058],[-84.67626,38.10068],[-84.67652,38.10045],[-84.67786,38.09751],[-84.67912,38.09611],[-84.68091,38.09497],[-84.68472,38.09292],[-84.68713,38.09163],[-84.68777,38.09111],[-84.69543,38.08206],[-84.69944,38.07489],[-84.6995,38.0748],[-84.70002,38.07404],[-84.70157,38.07221],[-84.70176,38.07199],[-84.70192,38.0718],[-84.70357,38.06984],[-84.70387,38.06949],[-84.70503,38.06817],[-84.70576,38.06812],[-84.70605,38.06814],[-84.70688,38.06809],[-84.70728,38.06789],[-84.71011,38.06441],[-84.7104,38.06426],[-84.71072,38.06429],[-84.71084,38.06433],[-84.71114,38.06442],[-84.71129,38.06448],[-84.71194,38.06469],[-84.71245,38.06478],[-84.71648,38.06203],[-84.71667,38.06189],[-84.718,38.06093],[-84.71809,38.06087],[-84.71817,38.06082],[-84.71908,38.06018],[-84.71955,38.05984],[-84.71987,38.05962],[-84.72002,38.05952],[-84.72031,38.05933],[-84.72051,38.05919],[-84.72162,38.05843],[-84.72173,38.05836],[-84.72205,38.05812],[-84.72262,38.05771],[-84.72423,38.05658],[-84.72448,38.05641],[-84.72464,38.0563],[-84.72561,38.0563],[-84.72846,38.0563],[-84.72911,38.05629],[-84.72958,38.05625],[-84.73009,38.05624],[-84.73042,38.0563],[-84.73099,38.05645],[-84.73105,38.05647],[-84.7321,38.05678],[-84.73285,38.05701],[-84.73308,38.05708],[-84.73326,38.05714],[-84.73359,38.05728],[-84.734,38.05748],[-84.73705,38.059],[-84.73886,38.05992],[-84.73941,38.06019],[-84.74005,38.06049],[-84.74033,38.06062],[-84.74051,38.06072],[-84.7409,38.0609],[-84.74641,38.06365],[-84.74799,38.0646],[-84.74829,38.06486],[-84.74983,38.06615],[-84.7505,38.06667],[-84.75107,38.06711],[-84.75173,38.0676],[-84.75249,38.06819],[-84.75586,38.07074],[-84.75636,38.07113],[-84.75834,38.07264],[-84.75891,38.07309],[-84.76067,38.07442],[-84.76093,38.07462],[-84.76208,38.0755],[-84.76408,38.07753],[-84.76465,38.07811],[-84.76672,38.08023],[-84.76734,38.08073],[-84.76745,38.08079],[-84.768,38.08102],[-84.77028,38.08139],[-84.77043,38.08144],[-84.77072,38.08158],[-84.77095,38.08171],[-84.77112,38.0818],[-84.77151,38.08203],[-84.77207,38.08244],[-84.77316,38.08349],[-84.77371,38.08403],[-84.77425,38.08459],[-84.77471,38.08487],[-84.77486,38.08491],[-84.77621,38.08529],[-84.77736,38.08619],[-84.77862,38.08728],[-84.77893,38.08751],[-84.77932,38.08773],[-84.77948,38.08781],[-84.78145,38.08852],[-84.78208,38.08871],[-84.78268,38.08877],[-84.78315,38.08887],[-84.78329,38.08893],[-84.78388,38.08935],[-84.7841,38.08966],[-84.78457,38.09052],[-84.78553,38.09196],[-84.78577,38.09211],[-84.78603,38.09224],[-84.78619,38.0923],[-84.78737,38.09269],[-84.78837,38.09297],[-84.78944,38.09303],[-84.7896,38.09304],[-84.78989,38.09309],[-84.78998,38.09312],[-84.79029,38.09329],[-84.79231,38.09582],[-84.79338,38.09681],[-84.79334,38.09691],[-84.79333,38.09695],[-84.79319,38.09725],[-84.79315,38.09735],[-84.79318,38.0987],[-84.79265,38.1006],[-84.79218,38.10172],[-84.78966,38.10603],[-84.78786,38.11169],[-84.78779,38.1119],[-84.78744,38.11224],[-84.7874,38.11225],[-84.78738,38.11226],[-84.78719,38.1123],[-84.78708,38.11232],[-84.78697,38.11236],[-84.78474,38.1143],[-84.7828,38.11604],[-84.78232,38.11645],[-84.78168,38.11677],[-84.78017,38.11745],[-84.77903,38.11796],[-84.7786,38.11819],[-84.77839,38.11848],[-84.77808,38.12106],[-84.77778,38.12119],[-84.77665,38.12112],[-84.77646,38.12108],[-84.77638,38.12107],[-84.77576,38.12103],[-84.77557,38.12102],[-84.77516,38.12109],[-84.77436,38.12154],[-84.7726,38.12302],[-84.77197,38.12395],[-84.77152,38.12472],[-84.76747,38.13209],[-84.76676,38.13344],[-84.7661,38.13469],[-84.76528,38.13629],[-84.76381,38.13913],[-84.76363,38.13948],[-84.76324,38.14023],[-84.76297,38.14076],[-84.76141,38.14375],[-84.76118,38.14415],[-84.76024,38.14586],[-84.76013,38.14603],[-84.75994,38.14622],[-84.7598,38.14611],[-84.75957,38.14592],[-84.75905,38.14547],[-84.75785,38.14456],[-84.75727,38.14423],[-84.75521,38.14322],[-84.75491,38.14311],[-84.75365,38.14264],[-84.7515,38.14186],[-84.75111,38.14172],[-84.75084,38.14215],[-84.75076,38.14226],[-84.75054,38.14262],[-84.7495,38.14431],[-84.74904,38.14505],[-84.74863,38.1457],[-84.74841,38.14606],[-84.74619,38.14966],[-84.74576,38.1504],[-84.74561,38.15065],[-84.74528,38.15119],[-84.74514,38.15143],[-84.74386,38.15352],[-84.74382,38.15359],[-84.74387,38.1538],[-84.74394,38.15386],[-84.74401,38.15396],[-84.74403,38.15399],[-84.74399,38.1542],[-84.74381,38.15418],[-84.74361,38.15416],[-84.74347,38.15416],[-84.74298,38.15412],[-84.74119,38.154],[-84.73915,38.15384],[-84.73867,38.15382],[-84.73778,38.15388],[-84.73677,38.1542],[-84.73654,38.15431],[-84.73613,38.1545],[-84.73594,38.15446],[-84.73532,38.15425],[-84.73516,38.1542],[-84.73235,38.15331],[-84.73197,38.15319],[-84.73102,38.15289],[-84.73027,38.15265],[-84.72922,38.15234],[-84.72906,38.15228],[-84.72743,38.15175],[-84.72723,38.15168],[-84.72621,38.15134],[-84.72538,38.15106],[-84.72474,38.15085],[-84.72453,38.15078],[-84.72352,38.15045],[-84.72292,38.15026],[-84.72118,38.14971],[-84.72099,38.14967],[-84.71879,38.149],[-84.71857,38.14893],[-84.71663,38.14833],[-84.71604,38.14815],[-84.71545,38.14795],[-84.71504,38.14782],[-84.71483,38.14775],[-84.714,38.14748],[-84.71358,38.14734],[-84.71336,38.14727],[-84.71168,38.14673],[-84.71106,38.14652],[-84.71085,38.14645],[-84.7102,38.14624],[-84.70937,38.14597],[-84.70897,38.14584],[-84.70859,38.14572],[-84.70841,38.14566],[-84.70776,38.14547],[-84.70749,38.14562],[-84.70739,38.1458],[-84.70715,38.14627],[-84.70688,38.1468],[-84.70673,38.14708],[-84.70659,38.14735],[-84.70623,38.14802],[-84.70616,38.14818],[-84.70512,38.15018],[-84.70506,38.15031],[-84.70501,38.15041],[-84.7049,38.15058],[-84.70483,38.15062],[-84.70424,38.15045],[-84.70411,38.15039],[-84.70397,38.15032],[-84.70382,38.15025],[-84.70367,38.15017],[-84.70333,38.15001],[-84.70264,38.14967],[-84.70231,38.14951],[-84.70122,38.14899],[-84.70103,38.1489],[-84.70008,38.14844],[-84.69989,38.14835],[-84.69952,38.14818],[-84.69903,38.14795],[-84.69878,38.14782],[-84.69866,38.14777],[-84.69857,38.14772],[-84.69839,38.14768],[-84.69797,38.14782],[-84.69771,38.14792],[-84.69662,38.14837],[-84.69633,38.14849],[-84.69596,38.14864],[-84.69567,38.14875],[-84.69434,38.1491],[-84.69386,38.14926],[-84.69324,38.14946],[-84.69299,38.14952],[-84.69256,38.14957],[-84.69191,38.14939],[-84.69118,38.14912],[-84.6904,38.14883],[-84.68992,38.14866],[-84.68931,38.14844],[-84.68864,38.1482],[-84.68832,38.14809],[-84.6876,38.14784],[-84.68686,38.14757],[-84.6861,38.14731],[-84.68603,38.14728],[-84.6855,38.14708],[-84.68515,38.14695],[-84.68457,38.14675],[-84.68443,38.1467],[-84.68409,38.14728],[-84.68403,38.14739],[-84.68389,38.14763],[-84.68372,38.14793],[-84.68356,38.14822],[-84.68338,38.14854],[-84.68364,38.14864],[-84.68427,38.14886],[-84.68457,38.14897]]}},
{"type":"Feature","properties":{"name":"Day 4 GABRAKY 2013"},"geometry":{"type":"LineString","coordinates":[[-85.31571,37.27193],[-85.31551,37.27142],[-85.31578,37.27109],[-85.31618,37.27103],[-85.31729,37.27114],[-85.31788,37.2713],[-85.31848,37.27228],[-85.31897,37.27328],[-85.31967,37.27436],[-85.32145,37.27589],[-85.32297,37.27677],[-85.32488,37.27736],[-85.32623,37.27802],[-85.32659,37.27809],[-85.32707,37.27796],[-85.32822,37.27701],[-85.32872,37.27695],[-85.3291,37.27704],[-85.33103,37.27779],[-85.33145,37.27791],[-85.33207,37.2779],[-85.3335,37.27732],[-85.33425,37.27731],[-85.33475,37.2775],[-85.33642,37.27865],[-85.33745,37.27891],[-85.33954,37.27876],[-85.34145,37.27891],[-85.34388,37.27833],[-85.346,37.27865],[-85.3469,37.27843],[-85.34775,37.27792],[-85.34831,37.27733],[-85.34843,37.27719],[-85.34703,37.27643],[-85.34473,37.27362],[-85.34319,37.27266],[-85.34182,37.2712],[-85.34156,37.27071],[-85.34172,37.27036],[-85.34646,37.26656],[-85.34913,37.26271],[-85.34924,37.2621],[-85.34806,37.26101],[-85.34688,37.26002],[-85.34594,37.25898],[-85.34588,37.25863],[-85.34613,37.25768],[-85.34371,37.25311],[-85.34386,37.25235],[-85.3452,37.25131],[-85.34543,37.25085],[-85.34539,37.25036],[-85.34492,37.24939],[-85.34484,37.24835],[-85.34457,37.24805],[-85.34398,37.24783],[-85.34276,37.24798],[-85.34205,37.24824],[-85.34166,37.24815],[-85.33807,37.24294],[-85.33643,37.24011],[-85.33665,37.23925],[-85.33765,37.23806],[-85.34112,37.23583],[-85.34197,37.23507],[-85.34289,37.23393],[-85.34311,37.23276],[-85.34343,37.23263],[-85.34349,37.23107],[-85.34372,37.2298],[-85.34588,37.22255],[-85.34608,37.22066],[-85.34596,37.2191],[-85.34555,37.21739],[-85.34463,37.21536],[-85.33949,37.20788],[-85.33976,37.20774],[-85.33977,37.20754],[-85.33859,37.20487],[-85.3374,37.20315],[-85.3356,37.20147],[-85.33391,37.20033],[-85.33345,37.20037],[-85.33261,37.19917],[-85.33212,37.1992],[-85.33091,37.1987],[-85.32814,37.19787],[-85.32656,37.19774],[-85.32596,37.19757],[-85.32535,37.19708],[-85.32474,37.19617],[-85.32465,37.19575],[-85.32486,37.19426],[-85.32537,37.19329],[-85.32536,37.19278],[-85.32355,37.19094],[-85.32312,37.18952],[-85.32172,37.18779],[-85.3214,37.18692],[-85.32153,37.18633],[-85.32227,37.18526],[-85.32234,37.18389],[-85.32326,37.18286],[-85.3233,37.18237],[-85.32271,37.18174],[-85.31935,37.1801],[-85.31763,37.1791],[-85.31662,37.17831],[-85.31633,37.17791],[-85.31502,37.173],[-85.3141,37.17034],[-85.31339,37.16627],[-85.31265,37.16452],[-85.3123,37.1639],[-85.30904,37.16065],[-85.30767,37.15892],[-85.30764,37.15851],[-85.30796,37.15762],[-85.3078,37.15648],[-85.30846,37.15476],[-85.30785,37.15333],[-85.30803,37.15311],[-85.30838,37.15297],[-85.30936,37.15253],[-85.30988,37.15193],[-85.31063,37.15144],[-85.31081,37.15102],[-85.31019,37.15],[-85.30789,37.14779],[-85.30693,37.14632],[-85.30687,37.14572],[-85.30741,37.14416],[-85.30712,37.14275],[-85.30675,37.14228],[-85.30439,37.14099],[-85.30298,37.1399],[-85.30274,37.13955],[-85.30267,37.13869],[-85.30249,37.13828],[-85.30113,37.13734],[-85.29951,37.13505],[-85.29875,37.1328],[-85.29814,37.13231],[-85.29759,37.13229],[-85.29614,37.12946],[-85.29574,37.12805],[-85.29568,37.12538],[-85.29585,37.12201],[-85.29621,37.12073],[-85.29696,37.11912],[-85.30034,37.11407],[-85.30121,37.11233],[-85.30263,37.11051],[-85.30289,37.10975],[-85.30314,37.10694],[-85.30245,37.10692],[-85.30145,37.10646],[-85.29998,37.10499],[-85.2995,37.10469],[-85.30009,37.10355],[-85.29938,37.10332],[-85.30039,37.10155],[-85.30061,37.10156],[-85.30129,37.10138],[-85.30191,37.10105],[-85.30259,37.10099],[-85.30298,37.10094],[-85.30363,37.10042],[-85.30236,37.09909],[-85.30215,37.09569],[-85.30274,37.09449],[-85.30377,37.09307],[-85.30455,37.09154],[-85.30458,37.09125],[-85.30392,37.08968],[-85.30262,37.08755],[-85.29953,37.0835],[-85.2994,37.08318],[-85.29906,37.08177],[-85.2991,37.08137],[-85.29939,37.08052],[-85.30034,37.07897],[-85.30178,37.07686],[-85.30285,37.07378],[-85.30481,37.07225],[-85.30523,37.07156],[-85.30601,37.06566],[-85.30649,37.0577],[-85.30728,37.05067],[-85.30798,37.04815],[-85.3087,37.04708],[-85.30898,37.04615],[-85.30929,37.04453],[-85.30934,37.04301],[-85.30982,37.04085],[-85.3101,37.03843],[-85.31073,37.03604],[-85.3106,37.03479],[-85.3096,37.03274],[-85.30948,37.03204],[-85.30996,37.02902],[-85.31208,37.02311],[-85.31213,37.02183],[-85.31188,37.02072],[-85.31105,37.01846],[-85.30832,37.0156],[-85.30736,37.01497],[-85.30402,37.01377],[-85.30367,37.01348],[-85.30355,37.01315],[-85.3046,37.0095],[-85.30503,37.00854],[-85.30551,37.00806],[-85.30734,37.00684],[-85.3081,37.00584],[-85.31016,37.00054],[-85.31022,36.9997],[-85.30982,36.9989],[-85.30782,36.99688],[-85.30727,36.99489],[-85.30695,36.9943],[-85.30217,36.99079],[-85.30164,36.99028],[-85.30064,36.98756],[-85.29979,36.98653],[-85.29872,36.98594],[-85.2953,36.98506],[-85.29458,36.9847],[-85.29391,36.98395],[-85.29284,36.98131],[-85.2924,36.9807],[-85.2917,36.98006],[-85.28753,36.97779],[-85.28686,36.97712],[-85.28591,36.97583],[-85.28522,36.97529],[-85.28139,36.97396],[-85.27689,36.97176],[-85.27606,36.97126],[-85.27525,36.97019],[-85.27491,36.96936],[-85.2749,36.96867],[-85.27744,36.96094],[-85.27775,36.96075],[-85.27812,36.96073],[-85.28069,36.96184],[-85.28131,36.96178],[-85.28162,36.96151],[-85.28129,36.96095],[-85.28011,36.96012],[-85.27924,36.95927],[-85.27893,36.95884],[-85.27889,36.95831],[-85.28003,36.95503],[-85.27979,36.95267],[-85.27988,36.95202],[-85.28056,36.95095],[-85.28238,36.94919],[-85.28281,36.94858],[-85.2833,36.94693],[-85.28329,36.94471],[-85.28308,36.94413],[-85.28271,36.94369],[-85.28142,36.94306],[-85.28081,36.94289],[-85.27758,36.94257],[-85.2772,36.94244],[-85.27666,36.94201],[-85.27639,36.94135],[-85.27663,36.93839],[-85.27617,36.93696],[-85.27564,36.93651],[-85.27207,36.93441],[-85.27137,36.93379],[-85.27108,36.93046],[-85.27083,36.92933],[-85.27102,36.92584],[-85.27131,36.92529],[-85.27172,36.92502],[-85.27521,36.92391],[-85.27867,36.92164],[-85.27923,36.92138],[-85.28096,36.9209],[-85.28208,36.9202],[-85.28327,36.92],[-85.28576,36.92042],[-85.28794,36.92045],[-85.28988,36.92],[-85.29085,36.9196],[-85.29142,36.91917],[-85.2919,36.91845],[-85.29187,36.91624],[-85.29146,36.91536],[-85.29059,36.91442],[-85.28972,36.91216],[-85.28896,36.91074],[-85.28814,36.90962],[-85.28795,36.90899],[-85.28814,36.90871],[-85.28855,36.90865],[-85.28987,36.90901],[-85.29175,36.91038],[-85.2927,36.91077],[-85.29367,36.9109],[-85.29614,36.91079],[-85.29655,36.9106],[-85.29687,36.9101],[-85.29678,36.90932],[-85.29649,36.90851],[-85.29647,36.90751],[-85.2967,36.90592],[-85.29684,36.90566],[-85.29723,36.90538],[-85.29823,36.90529],[-85.30043,36.90562],[-85.30394,36.90541],[-85.30552,36.9059],[-85.30597,36.90594],[-85.30691,36.90583],[-85.30761,36.90562],[-85.30841,36.905],[-85.3102,36.90185],[-85.31077,36.90047],[-85.31094,36.89803],[-85.31078,36.89577],[-85.31127,36.89344],[-85.31121,36.89306],[-85.31025,36.89154],[-85.30997,36.89069],[-85.30982,36.88976],[-85.31018,36.8893],[-85.31333,36.88816],[-85.31428,36.88806],[-85.31586,36.88865],[-85.31925,36.88923],[-85.32302,36.89079],[-85.3249,36.8913],[-85.32576,36.89134],[-85.32633,36.89109],[-85.32765,36.89003],[-85.32861,36.88943],[-85.33005,36.88735],[-85.33145,36.88615],[-85.33462,36.88493],[-85.3373,36.88433],[-85.33953,36.88402],[-85.34261,36.88235],[-85.34317,36.88154],[-85.34435,36.87618],[-85.34542,36.87304],[-85.34564,36.87192],[-85.34568,36.86936],[-85.3455,36.86887],[-85.34509,36.8684],[-85.34279,36.8672],[-85.33975,36.86406],[-85.33951,36.86339],[-85.33966,36.8621],[-85.33957,36.86118],[-85.33901,36.85978],[-85.33763,36.85802],[-85.33756,36.85749],[-85.33773,36.85713],[-85.33892,36.85635],[-85.34062,36.85454],[-85.34182,36.85367],[-85.34256,36.85295],[-85.34293,36.85185],[-85.34371,36.8506],[-85.3454,36.84947],[-85.34659,36.84841],[-85.34781,36.84822],[-85.34999,36.84727],[-85.35251,36.84492],[-85.35886,36.83997],[-85.36285,36.83652],[-85.36333,36.83653],[-85.36498,36.83772],[-85.36583,36.83809],[-85.36805,36.83851],[-85.3699,36.83836],[-85.36866,36.83207],[-85.36871,36.83116],[-85.36905,36.83043],[-85.3716,36.82757],[-85.37236,36.82632],[-85.3739,36.82248],[-85.37415,36.82076],[-85.3763,36.81597],[-85.377,36.81497],[-85.37705,36.81449],[-85.3761,36.81176],[-85.37516,36.81052],[-85.37274,36.80908],[-85.36895,36.80773],[-85.3681,36.80662],[-85.36746,36.80605],[-85.36613,36.80501],[-85.36432,36.80396],[-85.36404,36.80344],[-85.36418,36.80188],[-85.36397,36.80026],[-85.36462,36.79881],[-85.36681,36.79539],[-85.36726,36.79372],[-85.37015,36.79055],[-85.37076,36.79022],[-85.37092,36.78971],[-85.37482,36.78538],[-85.37486,36.78469],[-85.37455,36.78373],[-85.37434,36.7833],[-85.37379,36.78271],[-85.36507,36.77724],[-85.36407,36.77646],[-85.36339,36.77566],[-85.36297,36.77492],[-85.3617,36.77093],[-85.36093,36.77003],[-85.36007,36.7695],[-85.35903,36.76916],[-85.35271,36.76812],[-85.34944,36.76718],[-85.32828,36.75862],[-85.32681,36.75836],[-85.32564,36.75835],[-85.32463,36.75848],[-85.32224,36.75905],[-85.32279,36.75702],[-85.32275,36.75635],[-85.32092,36.75344],[-85.32055,36.75254],[-85.31881,36.74651],[-85.31874,36.7441],[-85.31853,36.74344],[-85.31797,36.74292],[-85.31566,36.74226],[-85.31481,36.74241],[-85.31383,36.74292],[-85.31258,36.74326],[-85.31116,36.74303],[-85.31,36.74245],[-85.30972,36.74206],[-85.30985,36.74051],[-85.30955,36.73921],[-85.30894,36.73897],[-85.30733,36.73863],[-85.30692,36.73839],[-85.30676,36.73771],[-85.30705,36.73688],[-85.30661,36.73627],[-85.30598,36.73592],[-85.30482,36.73584],[-85.30344,36.73523],[-85.30161,36.73511],[-85.30094,36.73491],[-85.29982,36.73398],[-85.29741,36.73135],[-85.29873,36.72743],[-85.29861,36.72693],[-85.29763,36.72533],[-85.29756,36.72465],[-85.29767,36.72419],[-85.29951,36.72223],[-85.30136,36.7173],[-85.3035,36.71324],[-85.30375,36.71287],[-85.30409,36.71265],[-85.30669,36.71231],[-85.30818,36.71163],[-85.30954,36.71084],[-85.30929,36.70969],[-85.30887,36.70924],[-85.30302,36.70846],[-85.30262,36.70826],[-85.3015,36.70733],[-85.30007,36.70683],[-85.29966,36.70627],[-85.30017,36.70326],[-85.3011,36.70099],[-85.3027,36.69852],[-85.30301,36.69774],[-85.30311,36.69668],[-85.30262,36.69468],[-85.30335,36.69245],[-85.30312,36.69158],[-85.30141,36.69013],[-85.30102,36.68945],[-85.30117,36.68875],[-85.30256,36.68739],[-85.30288,36.6866],[-85.30205,36.68315],[-85.30246,36.67564],[-85.30214,36.67513],[-85.30093,36.6742],[-85.30042,36.67365],[-85.29953,36.67141],[-85.3,36.66946],[-85.3003,36.66723],[-85.30032,36.66521],[-85.30012,36.66464],[-85.29984,36.66437],[-85.29881,36.66392],[-85.29851,36.66364],[-85.29768,36.6623],[-85.29605,36.6608],[-85.29547,36.65935],[-85.29377,36.65865],[-85.29322,36.65806],[-85.29311,36.65756],[-85.29331,36.65657],[-85.29409,36.6552],[-85.29389,36.65474],[-85.29232,36.65389],[-85.29195,36.65337],[-85.2921,36.65215],[-85.29293,36.65084],[-85.29293,36.65033],[-85.29265,36.64941],[-85.29245,36.649],[-85.29212,36.64871],[-85.29071,36.64847],[-85.29037,36.6483],[-85.29022,36.64788],[-85.29078,36.64686],[-85.29078,36.64633],[-85.2897,36.64465],[-85.28919,36.64433],[-85.28813,36.64392],[-85.28693,36.64344],[-85.28651,36.64309],[-85.2864,36.64285],[-85.28639,36.64082],[-85.28614,36.64045],[-85.28513,36.63993],[-85.28483,36.63963],[-85.28482,36.63926],[-85.28543,36.63842],[-85.28584,36.63742],[-85.28578,36.63708],[-85.28554,36.63682],[-85.2846,36.63653]]}},
{"type":"Feature","properties":{"name":"Day 3 GABRAKY 2013"},"geometry":{"type":"LineString","coordinates":[[-85.45556,37.79825],[-85.4563,37.79879],[-85.45824,37.79628],[-85.45891,37.79566],[-85.45984,37.79516],[-85.46271,37.79399],[-85.46312,37.79362],[-85.46327,37.79313],[-85.46333,37.79042],[-85.46354,37.78969],[-85.46631,37.7862],[-85.4665,37.7858],[-85.46643,37.7844],[-85.46614,37.78365],[-85.46391,37.78109],[-85.4624,37.77964],[-85.45951,37.77557],[-85.45898,37.77471],[-85.45878,37.77411],[-85.4587,37.7732],[-85.45897,37.77209],[-85.45943,37.77135],[-85.46105,37.76945],[-85.46161,37.76773],[-85.46156,37.76608],[-85.46185,37.76485],[-85.46182,37.76425],[-85.46153,37.7635],[-85.46086,37.76257],[-85.46041,37.76066],[-85.46004,37.75981],[-85.46094,37.75942],[-85.46285,37.75795],[-85.46354,37.75721],[-85.46376,37.75661],[-85.46388,37.7548],[-85.46485,37.75324],[-85.46536,37.75345],[-85.46565,37.75418],[-85.46589,37.75429],[-85.46874,37.75294],[-85.46967,37.75268],[-85.47179,37.75268],[-85.47568,37.75365],[-85.47674,37.75375],[-85.47718,37.75366],[-85.47889,37.75271],[-85.47921,37.75168],[-85.47963,37.74767],[-85.48018,37.74628],[-85.47989,37.74538],[-85.48001,37.74399],[-85.47956,37.74305],[-85.4792,37.74148],[-85.47845,37.73616],[-85.47876,37.73391],[-85.47922,37.73304],[-85.47999,37.73069],[-85.48044,37.7301],[-85.48219,37.72883],[-85.48249,37.72702],[-85.48327,37.72602],[-85.48546,37.72477],[-85.48786,37.72446],[-85.49003,37.72384],[-85.49037,37.72396],[-85.49088,37.72306],[-85.49114,37.72211],[-85.49096,37.72001],[-85.49132,37.71778],[-85.49122,37.71672],[-85.49151,37.71526],[-85.49136,37.71435],[-85.49035,37.71182],[-85.49022,37.71113],[-85.49032,37.70989],[-85.49084,37.70882],[-85.4906,37.70854],[-85.49062,37.70822],[-85.4909,37.70788],[-85.49168,37.70738],[-85.49332,37.70726],[-85.49545,37.70861],[-85.49652,37.70996],[-85.49748,37.71067],[-85.49822,37.711],[-85.5004,37.71152],[-85.50267,37.71237],[-85.50432,37.71352],[-85.506,37.71368],[-85.50837,37.71325],[-85.5129,37.71275],[-85.5142,37.71228],[-85.51477,37.71142],[-85.51548,37.71078],[-85.51582,37.7095],[-85.51566,37.70766],[-85.51588,37.70582],[-85.51658,37.70455],[-85.51824,37.70209],[-85.51872,37.70179],[-85.51909,37.70173],[-85.52067,37.70218],[-85.52304,37.70105],[-85.52355,37.70095],[-85.52395,37.70108],[-85.52361,37.7007],[-85.52276,37.69855],[-85.52196,37.69728],[-85.52189,37.69631],[-85.52497,37.69028],[-85.5272,37.68317],[-85.52883,37.67913],[-85.53122,37.66907],[-85.5312,37.66749],[-85.5306,37.66411],[-85.53073,37.66285],[-85.5312,37.66211],[-85.53481,37.65925],[-85.53538,37.65846],[-85.5355,37.65795],[-85.5349,37.65439],[-85.53422,37.64974],[-85.53399,37.64933],[-85.52174,37.65015],[-85.51833,37.65023],[-85.51603,37.64981],[-85.50874,37.64817],[-85.50861,37.64799],[-85.50889,37.64682],[-85.50852,37.64375],[-85.50893,37.64003],[-85.5087,37.63885],[-85.50726,37.63639],[-85.5067,37.63566],[-85.50552,37.63479],[-85.50413,37.63421],[-85.50311,37.63401],[-85.50203,37.63396],[-85.49601,37.6341],[-85.49433,37.63438],[-85.49373,37.63477],[-85.49278,37.6358],[-85.49222,37.63792],[-85.49181,37.63865],[-85.4901,37.63998],[-85.48958,37.6402],[-85.48904,37.64027],[-85.48089,37.63952],[-85.47828,37.63907],[-85.47512,37.63824],[-85.45592,37.63635],[-85.4549,37.63631],[-85.45,37.63697],[-85.44955,37.63688],[-85.44905,37.63658],[-85.44848,37.63519],[-85.44754,37.63432],[-85.44326,37.63213],[-85.44165,37.63151],[-85.43617,37.62974],[-85.43381,37.62816],[-85.43289,37.62777],[-85.42999,37.62678],[-85.42789,37.62674],[-85.42742,37.6267],[-85.4273,37.62669],[-85.42573,37.62649],[-85.42354,37.62596],[-85.42197,37.62576],[-85.42104,37.62584],[-85.41974,37.62627],[-85.41927,37.62644],[-85.41829,37.62701],[-85.41725,37.62862],[-85.41641,37.62953],[-85.41382,37.63163],[-85.41218,37.63262],[-85.41046,37.63345],[-85.40724,37.63457],[-85.40516,37.6351],[-85.40261,37.63572],[-85.40124,37.63549],[-85.40144,37.63694],[-85.40139,37.63757],[-85.40081,37.63869],[-85.40069,37.63957],[-85.40075,37.64001],[-85.40172,37.64251],[-85.40177,37.64542],[-85.40163,37.64606],[-85.40057,37.64768],[-85.40044,37.64919],[-85.40061,37.65091],[-85.40011,37.65242],[-85.39989,37.65277],[-85.39979,37.65291],[-85.39957,37.65327],[-85.39877,37.6545],[-85.39764,37.65578],[-85.39749,37.65628],[-85.39747,37.6572],[-85.39726,37.65775],[-85.39577,37.65923],[-85.39571,37.65927],[-85.39564,37.65931],[-85.3961,37.65964],[-85.39649,37.65991],[-85.3971,37.66045],[-85.39758,37.66199],[-85.39775,37.66253],[-85.39794,37.66287],[-85.39819,37.66318],[-85.39847,37.66337],[-85.39819,37.66318],[-85.39794,37.66287],[-85.39775,37.66253],[-85.39758,37.66199],[-85.3971,37.66045],[-85.39649,37.65991],[-85.3961,37.65964],[-85.39564,37.65931],[-85.39571,37.65927],[-85.39577,37.65923],[-85.39726,37.65775],[-85.39747,37.6572],[-85.39749,37.65628],[-85.39764,37.65578],[-85.39877,37.6545],[-85.39957,37.65327],[-85.39979,37.65291],[-85.39989,37.65277],[-85.40011,37.65242],[-85.40061,37.65091],[-85.40044,37.64919],[-85.40057,37.64768],[-85.40163,37.64606],[-85.40177,37.64542],[-85.40172,37.64251],[-85.40075,37.64001],[-85.40069,37.63957],[-85.40081,37.63869],[-85.40139,37.63757],[-85.40246,37.63762],[-85.40385,37.63706],[-85.40501,37.63679],[-85.40516,37.6351],[-85.40724,37.63457],[-85.41046,37.63345],[-85.41218,37.63262],[-85.41382,37.63163],[-85.41641,37.62953],[-85.41725,37.62862],[-85.41829,37.62701],[-85.41927,37.62644],[-85.41974,37.62627],[-85.42104,37.62584],[-85.42197,37.62576],[-85.42354,37.62596],[-85.42573,37.62649],[-85.4273,37.62669],[-85.42742,37.6267],[-85.42789,37.62674],[-85.42779,37.62411],[-85.42974,37.62065],[-85.43037,37.61846],[-85.43092,37.61727],[-85.43158,37.61428],[-85.43117,37.61324],[-85.43041,37.6122],[-85.42959,37.61053],[-85.4289,37.60703],[-85.42898,37.60622],[-85.42952,37.60484],[-85.42939,37.60198],[-85.42992,37.59856],[-85.43058,37.5967],[-85.4305,37.59428],[-85.43123,37.5913],[-85.432,37.58916],[-85.43492,37.58504],[-85.4351,37.58461],[-85.4346,37.58336],[-85.43381,37.58251],[-85.43346,37.58185],[-85.43343,37.58143],[-85.43392,37.57915],[-85.43394,37.57828],[-85.43345,37.57635],[-85.43226,37.57382],[-85.432,37.57218],[-85.43148,37.5702],[-85.43081,37.5692],[-85.42956,37.56834],[-85.42927,37.56794],[-85.42931,37.56748],[-85.43033,37.56512],[-85.43043,37.56449],[-85.43029,37.56358],[-85.42955,37.56175],[-85.42953,37.56106],[-85.43013,37.56127],[-85.43042,37.56126],[-85.4312,37.55996],[-85.43184,37.55854],[-85.43176,37.55801],[-85.43107,37.55711],[-85.43086,37.55639],[-85.43116,37.55452],[-85.43095,37.55294],[-85.43161,37.54954],[-85.43157,37.54817],[-85.43131,37.5465],[-85.43152,37.54492],[-85.43164,37.54459],[-85.43203,37.5442],[-85.4338,37.54363],[-85.43629,37.54242],[-85.43664,37.5419],[-85.43754,37.53923],[-85.4375,37.53863],[-85.43727,37.53805],[-85.43595,37.53638],[-85.43603,37.53408],[-85.43584,37.53358],[-85.43499,37.53241],[-85.43506,37.53199],[-85.43543,37.53148],[-85.43585,37.53133],[-85.43752,37.53134],[-85.43972,37.53189],[-85.4403,37.53173],[-85.44139,37.53072],[-85.44277,37.53014],[-85.44357,37.52947],[-85.44404,37.52879],[-85.44428,37.52737],[-85.44493,37.52603],[-85.44482,37.52579],[-85.4439,37.52524],[-85.44375,37.52504],[-85.44359,37.52404],[-85.44313,37.52297],[-85.44278,37.52251],[-85.44239,37.52227],[-85.44108,37.52218],[-85.44058,37.5217],[-85.44009,37.52066],[-85.43942,37.51967],[-85.43898,37.51851],[-85.43885,37.51761],[-85.43729,37.51556],[-85.43712,37.51453],[-85.43728,37.51384],[-85.43722,37.51309],[-85.4361,37.51145],[-85.4362,37.51077],[-85.43675,37.50968],[-85.43712,37.50851],[-85.43666,37.5072],[-85.43653,37.50649],[-85.43662,37.50611],[-85.43807,37.50457],[-85.43913,37.50316],[-85.44018,37.5025],[-85.44048,37.5021],[-85.44118,37.49706],[-85.44131,37.49445],[-85.44154,37.49315],[-85.44188,37.49263],[-85.4431,37.49168],[-85.44422,37.48991],[-85.44544,37.48911],[-85.44557,37.48859],[-85.44521,37.48681],[-85.44644,37.4846],[-85.4464,37.48412],[-85.446,37.48352],[-85.4455,37.48214],[-85.4449,37.48115],[-85.44422,37.48044],[-85.44263,37.4794],[-85.44211,37.47866],[-85.44208,37.47823],[-85.44294,37.47745],[-85.44311,37.47722],[-85.44338,37.47537],[-85.44347,37.47361],[-85.44322,37.47264],[-85.44255,37.47131],[-85.44152,37.47005],[-85.4363,37.46497],[-85.43572,37.46393],[-85.43455,37.46291],[-85.43348,37.4613],[-85.4318,37.45933],[-85.43061,37.45852],[-85.42632,37.45716],[-85.42587,37.45671],[-85.4229,37.45265],[-85.42192,37.4518],[-85.42043,37.4513],[-85.41812,37.45147],[-85.41762,37.45135],[-85.41685,37.45031],[-85.41628,37.44985],[-85.41407,37.44843],[-85.41089,37.44684],[-85.41175,37.44445],[-85.4136,37.44173],[-85.4138,37.44092],[-85.41372,37.44044],[-85.41338,37.43984],[-85.41096,37.43703],[-85.40857,37.43369],[-85.40855,37.43325],[-85.40877,37.43286],[-85.41049,37.43154],[-85.4106,37.43117],[-85.41047,37.43061],[-85.4102,37.43017],[-85.40888,37.42883],[-85.40592,37.42426],[-85.40094,37.42024],[-85.3997,37.41816],[-85.3984,37.41462],[-85.39603,37.4111],[-85.39435,37.40872],[-85.394,37.40882],[-85.39194,37.41015],[-85.38767,37.40583],[-85.38397,37.40242],[-85.38332,37.402],[-85.37714,37.39894],[-85.37623,37.39832],[-85.37384,37.39494],[-85.37364,37.39339],[-85.37264,37.39191],[-85.36701,37.38675],[-85.36513,37.38519],[-85.36495,37.38478],[-85.3648,37.38299],[-85.36441,37.38197],[-85.36192,37.37729],[-85.35734,37.36759],[-85.35693,37.36699],[-85.35522,37.36546],[-85.35526,37.3646],[-85.35599,37.36288],[-85.356,37.36253],[-85.35487,37.3606],[-85.35396,37.35825],[-85.35249,37.35612],[-85.35119,37.35325],[-85.35036,37.35187],[-85.34778,37.34749],[-85.34194,37.33974],[-85.34378,37.33791],[-85.34511,37.33582],[-85.34563,37.33498],[-85.34812,37.33228],[-85.3506,37.3293],[-85.35222,37.32717],[-85.35337,37.32519],[-85.35548,37.323],[-85.3561,37.32216],[-85.35666,37.32109],[-85.35748,37.32054],[-85.35822,37.32011],[-85.3604,37.31794],[-85.36205,37.31567],[-85.36209,37.31508],[-85.361,37.31257],[-85.36075,37.31091],[-85.36088,37.31032],[-85.36156,37.30915],[-85.36219,37.30747],[-85.36287,37.30674],[-85.36535,37.30558],[-85.36649,37.30482],[-85.36689,37.30402],[-85.36708,37.30252],[-85.3679,37.30145],[-85.36829,37.30068],[-85.36842,37.3],[-85.3682,37.29917],[-85.36627,37.29507],[-85.36596,37.29215],[-85.36624,37.2913],[-85.36841,37.2881],[-85.36491,37.28452],[-85.36416,37.28428],[-85.36273,37.28436],[-85.36224,37.28414],[-85.35595,37.27724],[-85.35563,37.27714],[-85.35528,37.27719],[-85.35206,37.27948],[-85.35161,37.2796],[-85.35124,37.2795],[-85.34843,37.27719],[-85.34831,37.27733],[-85.34775,37.27792],[-85.3469,37.27843],[-85.346,37.27865],[-85.34388,37.27833],[-85.34145,37.27891],[-85.33954,37.27876],[-85.33745,37.27891],[-85.33642,37.27865],[-85.33475,37.2775],[-85.33425,37.27731],[-85.3335,37.27732],[-85.33207,37.2779],[-85.33145,37.27791],[-85.33103,37.27779],[-85.3291,37.27704],[-85.32872,37.27695],[-85.32822,37.27701],[-85.32707,37.27796],[-85.32659,37.27809],[-85.32623,37.27802],[-85.32488,37.27736],[-85.32297,37.27677],[-85.32145,37.27589],[-85.31967,37.27436],[-85.31897,37.27328],[-85.31848,37.27228],[-85.31788,37.2713],[-85.31729,37.27114],[-85.31641,37.27105]]}},
{"type":"Feature","properties":{"name":"Day 2 GABRAKY 2013"},"geometry":{"type":"LineString","coordinates":[[-84.87758,38.19892],[-84.87707,38.19962],[-84.87701,38.19959],[-84.8764,38.19933],[-84.87566,38.19896],[-84.87639,38.19788],[-84.87592,38.19773],[-84.87403,38.19765],[-84.87445,38.19474],[-84.87529,38.18843],[-84.87533,38.18825],[-84.87507,38.18822],[-84.87432,38.19473],[-84.87445,38.19474],[-84.88145,38.1952],[-84.88187,38.19515],[-84.88214,38.19499],[-84.8825,38.19497],[-84.88367,38.19606],[-84.88434,38.19689],[-84.88487,38.19797],[-84.88535,38.19777],[-84.88551,38.19755],[-84.88529,38.1953],[-84.88614,38.19423],[-84.88668,38.194],[-84.88823,38.19421],[-84.88984,38.19485],[-84.89051,38.19477],[-84.89145,38.19484],[-84.89242,38.19441],[-84.89316,38.19452],[-84.89578,38.19531],[-84.89821,38.19632],[-84.89977,38.19734],[-84.90105,38.19838],[-84.90489,38.19914],[-84.90474,38.19824],[-84.90502,38.19758],[-84.90526,38.19732],[-84.9059,38.19716],[-84.90654,38.1966],[-84.90707,38.19638],[-84.9083,38.19667],[-84.90901,38.19659],[-84.90972,38.19667],[-84.91036,38.19371],[-84.90956,38.19141],[-84.90978,38.191],[-84.91086,38.19068],[-84.91347,38.19043],[-84.91534,38.18996],[-84.91659,38.19009],[-84.91786,38.19056],[-84.91874,38.19057],[-84.9194,38.19025],[-84.92148,38.18865],[-84.92216,38.18849],[-84.926,38.18832],[-84.92657,38.18802],[-84.92748,38.18701],[-84.92806,38.18676],[-84.93047,38.18672],[-84.93177,38.18657],[-84.93733,38.18515],[-84.93924,38.18451],[-84.94221,38.18395],[-84.9428,38.184],[-84.9435,38.18424],[-84.95116,38.18869],[-84.95205,38.18903],[-84.95324,38.18894],[-84.95526,38.18812],[-84.95792,38.18678],[-84.95899,38.18655],[-84.95898,38.18477],[-84.95939,38.18445],[-84.96052,38.18423],[-84.9609,38.18382],[-84.96068,38.18306],[-84.95972,38.18224],[-84.95947,38.18148],[-84.95977,38.18102],[-84.96061,38.18054],[-84.96106,38.18007],[-84.96114,38.17968],[-84.96094,38.17838],[-84.9618,38.17837],[-84.96277,38.17856],[-84.96466,38.17848],[-84.96517,38.1784],[-84.96626,38.17796],[-84.96903,38.17853],[-84.9731,38.17868],[-84.97409,38.17855],[-84.97499,38.1781],[-84.97604,38.17794],[-84.9785,38.17876],[-84.9803,38.17846],[-84.98119,38.17849],[-84.98147,38.17835],[-84.98194,38.17732],[-84.98238,38.17692],[-84.98474,38.17603],[-84.98641,38.17501],[-84.98671,38.17471],[-84.9871,38.17396],[-84.98788,38.17308],[-84.98623,38.16963],[-84.98554,38.16865],[-84.98115,38.16535],[-84.97795,38.16254],[-84.98037,38.16239],[-84.9822,38.16257],[-84.98669,38.16358],[-84.98829,38.16426],[-84.98972,38.16467],[-84.99054,38.16475],[-84.99543,38.16266],[-84.99864,38.16222],[-85.00208,38.15945],[-85.00356,38.15877],[-85.00345,38.15858],[-85.00695,38.15822],[-85.00695,38.15805],[-85.00753,38.158],[-85.01109,38.15685],[-85.01234,38.15663],[-85.01283,38.15668],[-85.01407,38.15729],[-85.01394,38.15674],[-85.01338,38.15581],[-85.01601,38.15412],[-85.01669,38.15383],[-85.01952,38.15433],[-85.02059,38.15422],[-85.02158,38.15356],[-85.02257,38.15246],[-85.02439,38.15179],[-85.0257,38.15164],[-85.02809,38.15193],[-85.02865,38.15178],[-85.03016,38.14981],[-85.03074,38.1482],[-85.0311,38.14762],[-85.03159,38.14727],[-85.03206,38.14715],[-85.03256,38.14716],[-85.03416,38.14762],[-85.03622,38.1476],[-85.03688,38.14783],[-85.03822,38.14786],[-85.04021,38.14831],[-85.04318,38.14857],[-85.04592,38.14939],[-85.04722,38.1493],[-85.05154,38.1498],[-85.05267,38.14978],[-85.05478,38.14947],[-85.0565,38.14939],[-85.05752,38.14916],[-85.06167,38.14876],[-85.0639,38.14928],[-85.06579,38.14947],[-85.06916,38.15081],[-85.07097,38.15103],[-85.07184,38.14548],[-85.07336,38.1394],[-85.07779,38.12977],[-85.08032,38.12752],[-85.08072,38.12703],[-85.0833,38.12283],[-85.08383,38.1205],[-85.08418,38.12024],[-85.08469,38.1201],[-85.09223,38.11844],[-85.09586,38.11471],[-85.0953,38.11346],[-85.09526,38.11283],[-85.09564,38.11216],[-85.09593,38.11125],[-85.09592,38.11015],[-85.09624,38.10815],[-85.09626,38.10639],[-85.09651,38.10581],[-85.09726,38.10475],[-85.09744,38.10412],[-85.09732,38.10325],[-85.09644,38.10169],[-85.09527,38.10046],[-85.09414,38.09967],[-85.09176,38.09935],[-85.09062,38.09877],[-85.08979,38.09767],[-85.08955,38.09659],[-85.08839,38.09513],[-85.08752,38.0937],[-85.08063,38.09133],[-85.08165,38.08971],[-85.08231,38.08719],[-85.08294,38.08656],[-85.08371,38.08612],[-85.08492,38.08565],[-85.08987,38.0849],[-85.09217,38.08431],[-85.10126,38.08121],[-85.10321,38.08002],[-85.10788,38.07859],[-85.1109,38.07817],[-85.11347,38.07763],[-85.11632,38.07728],[-85.12202,38.07749],[-85.12451,38.07652],[-85.12653,38.07533],[-85.12977,38.07514],[-85.13249,38.07445],[-85.13372,38.07444],[-85.13842,38.07539],[-85.13908,38.07526],[-85.13939,38.07495],[-85.13948,38.07462],[-85.13934,38.07331],[-85.1395,38.07194],[-85.13964,38.07153],[-85.13997,38.07122],[-85.14068,38.07109],[-85.14529,38.07166],[-85.14594,38.07139],[-85.1465,38.07076],[-85.14648,38.07017],[-85.14472,38.06684],[-85.14444,38.06578],[-85.1445,38.06486],[-85.14472,38.06443],[-85.14651,38.06236],[-85.14787,38.06117],[-85.14864,38.05914],[-85.14961,38.05744],[-85.14992,38.05722],[-85.15056,38.0571],[-85.15146,38.05576],[-85.16046,38.05926],[-85.16142,38.05939],[-85.16236,38.05937],[-85.1656,38.05872],[-85.16671,38.05879],[-85.16768,38.05735],[-85.1695,38.05602],[-85.1706,38.05489],[-85.17184,38.05199],[-85.17248,38.05129],[-85.17316,38.05128],[-85.17384,38.05165],[-85.17425,38.0517],[-85.17664,38.05117],[-85.1771,38.0514],[-85.17752,38.05197],[-85.17789,38.05211],[-85.18122,38.05205],[-85.1817,38.05182],[-85.18411,38.04928],[-85.18637,38.04765],[-85.18697,38.0474],[-85.1882,38.04724],[-85.1901,38.04632],[-85.19112,38.046],[-85.19277,38.04581],[-85.19622,38.04612],[-85.19687,38.04594],[-85.19762,38.04516],[-85.19798,38.04501],[-85.19876,38.04514],[-85.19992,38.04509],[-85.20108,38.04551],[-85.20164,38.04556],[-85.20408,38.04507],[-85.2071,38.04471],[-85.2082,38.0448],[-85.21013,38.04542],[-85.21081,38.04544],[-85.21141,38.04516],[-85.21191,38.04451],[-85.21242,38.04414],[-85.21494,38.04353],[-85.21576,38.0434],[-85.21914,38.04352],[-85.22147,38.0432],[-85.22199,38.04302],[-85.22271,38.04255],[-85.22616,38.03919],[-85.22895,38.03756],[-85.23177,38.03649],[-85.23198,38.03643],[-85.23127,38.03543],[-85.23036,38.03369],[-85.23063,38.0336],[-85.23095,38.0335],[-85.23466,38.03225],[-85.24082,38.02947],[-85.24161,38.0295],[-85.24486,38.03075],[-85.24533,38.03082],[-85.24583,38.03079],[-85.24958,38.02984],[-85.25243,38.0298],[-85.25353,38.02959],[-85.25842,38.02792],[-85.25888,38.0273],[-85.25875,38.02594],[-85.25908,38.02524],[-85.25991,38.02478],[-85.26159,38.02482],[-85.26193,38.02484],[-85.26228,38.02485],[-85.26193,38.02484],[-85.26159,38.02482],[-85.25991,38.02478],[-85.25908,38.02524],[-85.25875,38.02594],[-85.25888,38.0273],[-85.25842,38.02792],[-85.25353,38.02959],[-85.25243,38.0298],[-85.24958,38.02984],[-85.24583,38.03079],[-85.24533,38.03082],[-85.24486,38.03075],[-85.24161,38.0295],[-85.24082,38.02947],[-85.23466,38.03225],[-85.23095,38.0335],[-85.23063,38.0336],[-85.23036,38.03369],[-85.23013,38.03376],[-85.23092,38.03527],[-85.23177,38.03649],[-85.23335,38.03816],[-85.23352,38.03804],[-85.23482,38.0391],[-85.23659,38.04022],[-85.24936,38.04659],[-85.25136,38.04781],[-85.25311,38.04907],[-85.25294,38.04917],[-85.25856,38.0533],[-85.25933,38.0537],[-85.26024,38.05395],[-85.26122,38.05402],[-85.26219,38.05387],[-85.26651,38.05235],[-85.2698,38.05164],[-85.26933,38.05039],[-85.27072,38.04975],[-85.27221,38.04984],[-85.27281,38.04968],[-85.27485,38.0479],[-85.27949,38.04329],[-85.28223,38.04197],[-85.2828,38.04222],[-85.28336,38.04176],[-85.28425,38.04144],[-85.28563,38.04118],[-85.28834,38.04092],[-85.28872,38.04067],[-85.28905,38.04011],[-85.28928,38.03997],[-85.28953,38.03996],[-85.28996,38.04019],[-85.2905,38.04063],[-85.29241,38.03992],[-85.29628,38.0374],[-85.29772,38.03522],[-85.29783,38.03479],[-85.29767,38.03436],[-85.29982,38.03378],[-85.30165,38.03354],[-85.30155,38.03237],[-85.30287,38.02745],[-85.303,38.02649],[-85.30294,38.02567],[-85.30233,38.0241],[-85.29908,38.02013],[-85.29765,38.01734],[-85.29738,38.01598],[-85.29764,38.01127],[-85.29789,38.01046],[-85.29846,38.00945],[-85.2991,38.00873],[-85.29981,38.00817],[-85.30138,38.00728],[-85.30473,38.00599],[-85.30552,38.00558],[-85.3073,38.00431],[-85.30932,38.00298],[-85.31008,38.00233],[-85.31055,38.00136],[-85.31045,38.00057],[-85.30897,37.99744],[-85.30907,37.99654],[-85.30968,37.99562],[-85.31196,37.99432],[-85.31325,37.99298],[-85.31398,37.99246],[-85.31654,37.9915],[-85.32055,37.9889],[-85.32121,37.98871],[-85.32128,37.98752],[-85.32263,37.98547],[-85.32287,37.98483],[-85.32267,37.98439],[-85.32106,37.98223],[-85.32181,37.98143],[-85.32196,37.97985],[-85.32216,37.97935],[-85.32258,37.97886],[-85.33461,37.97071],[-85.33506,37.97057],[-85.33734,37.97061],[-85.33862,37.97104],[-85.34048,37.97057],[-85.34262,37.97025],[-85.34317,37.96994],[-85.34405,37.96917],[-85.34535,37.96858],[-85.34646,37.96833],[-85.34742,37.9677],[-85.34851,37.96757],[-85.34965,37.96719],[-85.35075,37.96718],[-85.35196,37.96656],[-85.35269,37.96586],[-85.35335,37.96438],[-85.35367,37.96396],[-85.35692,37.96186],[-85.35779,37.96004],[-85.35824,37.95943],[-85.35892,37.95881],[-85.36072,37.95766],[-85.36289,37.95488],[-85.36334,37.9546],[-85.36518,37.95395],[-85.36897,37.94995],[-85.3694,37.94971],[-85.3708,37.94935],[-85.37128,37.94905],[-85.37305,37.94684],[-85.3738,37.9453],[-85.37585,37.94397],[-85.37639,37.9435],[-85.37746,37.94166],[-85.37786,37.94119],[-85.38121,37.93902],[-85.38205,37.93885],[-85.38343,37.93903],[-85.3832,37.93507],[-85.3838,37.93366],[-85.38025,37.93279],[-85.38054,37.93227],[-85.38153,37.93126],[-85.38321,37.92796],[-85.38348,37.92765],[-85.38672,37.92604],[-85.38931,37.92454],[-85.39168,37.92275],[-85.39245,37.92185],[-85.39541,37.91901],[-85.39678,37.91809],[-85.39734,37.91788],[-85.39967,37.91781],[-85.4004,37.91763],[-85.40063,37.91746],[-85.4016,37.91631],[-85.40233,37.9142],[-85.4035,37.91237],[-85.40414,37.90892],[-85.40467,37.90791],[-85.4079,37.90434],[-85.41047,37.902],[-85.41279,37.89901],[-85.41464,37.89729],[-85.41623,37.89494],[-85.42001,37.89088],[-85.42271,37.88852],[-85.42313,37.88837],[-85.42431,37.88865],[-85.42488,37.88854],[-85.42511,37.88806],[-85.42558,37.88512],[-85.42695,37.87887],[-85.4275,37.87858],[-85.43026,37.87794],[-85.43117,37.87748],[-85.43228,37.87711],[-85.43313,37.87655],[-85.43429,37.87625],[-85.43445,37.87569],[-85.43394,37.87394],[-85.43336,37.87262],[-85.43351,37.87224],[-85.43453,37.87133],[-85.44209,37.86678],[-85.444,37.86439],[-85.44459,37.86347],[-85.44794,37.85941],[-85.45011,37.85642],[-85.45346,37.85249],[-85.45468,37.85024],[-85.45585,37.8477],[-85.45631,37.84728],[-85.45728,37.84681],[-85.45816,37.84595],[-85.45917,37.84511],[-85.45978,37.84507],[-85.46175,37.82517],[-85.46227,37.8231],[-85.46341,37.81965],[-85.46161,37.81927],[-85.46227,37.81718],[-85.46288,37.8161],[-85.46517,37.80882],[-85.46197,37.80818],[-85.45689,37.8082],[-85.45394,37.80745],[-85.45441,37.80693],[-85.45462,37.80625],[-85.45477,37.80613],[-85.45612,37.80595],[-85.45692,37.80607]]}},
{"type":"Feature","properties":{"name":"Spears 22"},"geometry":{"type":"LineString","coordinates":[[-84.47565,37.9626],[-84.47495,37.96253],[-84.47382,37.96238],[-84.47276,37.9624],[-84.47172,37.96255],[-84.47083,37.96282],[-84.46796,37.96476],[-84.46738,37.96519],[-84.46732,37.96523],[-84.46731,37.96525],[-84.46728,37.96532],[-84.46701,37.96551],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.41219,37.92652],[-84.41285,37.92531],[-84.41574,37.92013],[-84.41629,37.91923],[-84.41705,37.91792],[-84.41947,37.91373],[-84.42003,37.91279],[-84.42215,37.90947],[-84.42237,37.90889],[-84.4238,37.90707],[-84.42395,37.90687],[-84.4241,37.90666],[-84.42434,37.90638],[-84.42579,37.90444],[-84.42742,37.90223],[-84.42858,37.9006],[-84.43148,37.89574],[-84.43541,37.8912],[-84.43574,37.89125],[-84.43906,37.89299],[-84.44129,37.89468],[-84.44546,37.89665],[-84.44578,37.89659],[-84.44821,37.89371],[-84.44817,37.89361],[-84.44788,37.89305],[-84.44644,37.89019],[-84.44398,37.88798],[-84.44328,37.88739],[-84.44273,37.88665],[-84.44227,37.88378],[-84.44266,37.8826],[-84.44355,37.88103],[-84.44336,37.87948],[-84.44307,37.87916],[-84.4418,37.87866],[-84.44131,37.87833],[-84.44019,37.87662],[-84.43846,37.87337],[-84.43837,37.87346],[-84.43832,37.87351],[-84.43774,37.87422],[-84.43268,37.88048],[-84.42798,37.88319],[-84.42691,37.88459],[-84.42621,37.88558],[-84.42299,37.89018],[-84.42265,37.8904],[-84.42198,37.89056],[-84.42181,37.89057],[-84.41998,37.89068],[-84.41997,37.89139],[-84.41996,37.89219],[-84.41986,37.89459],[-84.41854,37.8953],[-84.41841,37.89677],[-84.41829,37.89795],[-84.4193,37.90422],[-84.41964,37.90439],[-84.42017,37.90465],[-84.42087,37.90498],[-84.42103,37.90508],[-84.42127,37.90525],[-84.42377,37.90648],[-84.4241,37.90666],[-84.42395,37.90687],[-84.4238,37.90707],[-84.42237,37.90889],[-84.42215,37.90947],[-84.42003,37.91279],[-84.41947,37.91373],[-84.41705,37.91792],[-84.41629,37.91923],[-84.41574,37.92013],[-84.41285,37.92531],[-84.41219,37.92652],[-84.41296,37.92657],[-84.41736,37.92688],[-84.42484,37.92744],[-84.42877,37.92773],[-84.43633,37.92827],[-84.43851,37.92843],[-84.44035,37.92856],[-84.44158,37.92866],[-84.44208,37.92869],[-84.44223,37.92871],[-84.44238,37.92874],[-84.44283,37.928],[-84.44298,37.92785],[-84.44302,37.92783],[-84.44402,37.92818],[-84.4444,37.92834],[-84.44483,37.9286],[-84.44492,37.92871],[-84.44528,37.92924],[-84.44579,37.92957],[-84.45069,37.93238],[-84.45107,37.9326],[-84.45257,37.93346],[-84.45482,37.93483],[-84.45607,37.93557],[-84.45603,37.93561],[-84.45599,37.93565],[-84.45581,37.9359],[-84.45422,37.93823],[-84.45364,37.93893],[-84.45345,37.93909],[-84.45328,37.93923],[-84.45263,37.9398],[-84.4521,37.94018],[-84.45186,37.9403],[-84.45002,37.94239],[-84.45001,37.94303],[-84.45056,37.94405],[-84.45057,37.9441],[-84.45061,37.94482],[-84.45123,37.94559],[-84.45213,37.94643],[-84.45322,37.9474],[-84.45358,37.94779],[-84.45611,37.95093],[-84.4562,37.9513],[-84.45621,37.95149],[-84.4562,37.9519],[-84.45558,37.95295],[-84.45533,37.95338],[-84.45525,37.9535],[-84.45488,37.95412],[-84.45474,37.95435],[-84.45361,37.95614],[-84.45263,37.95772],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46701,37.96551],[-84.46728,37.96532],[-84.46731,37.96525],[-84.46732,37.96523],[-84.46738,37.96519],[-84.46796,37.96476],[-84.47083,37.96282],[-84.47172,37.96255],[-84.47276,37.9624],[-84.47382,37.96238],[-84.47495,37.96253],[-84.47565,37.9626]]}},
{"type":"Feature","properties":{"name":"Day 1 GABRAKY 2013"},"geometry":{"type":"LineString","coordinates":[[-85.16702,38.6704],[-85.16819,38.67033],[-85.16954,38.6818],[-85.1851,38.68065],[-85.18517,38.68107],[-85.18522,38.6814],[-85.18528,38.68178],[-85.1853,38.68203],[-85.1855,38.68323],[-85.18624,38.68335],[-85.18713,38.68333],[-85.187,38.68194],[-85.1853,38.68203],[-85.18528,38.68178],[-85.18522,38.6814],[-85.18517,38.68107],[-85.1851,38.68065],[-85.18686,38.68041],[-85.19276,38.68002],[-85.19239,38.67788],[-85.19482,38.67607],[-85.19614,38.67467],[-85.19615,38.67418],[-85.19094,38.67078],[-85.18905,38.6694],[-85.18845,38.66874],[-85.18131,38.65843],[-85.18054,38.65673],[-85.17948,38.65509],[-85.17853,38.65325],[-85.17806,38.65139],[-85.1778,38.64943],[-85.17749,38.64933],[-85.17688,38.64875],[-85.17641,38.64767],[-85.17567,38.64707],[-85.17498,38.64691],[-85.17263,38.64676],[-85.16848,38.64547],[-85.16761,38.64539],[-85.16679,38.64547],[-85.16263,38.64671],[-85.16166,38.64676],[-85.16,38.64664],[-85.15675,38.64626],[-85.15313,38.64563],[-85.14716,38.64379],[-85.14596,38.64332],[-85.14493,38.64272],[-85.14385,38.64187],[-85.14162,38.63959],[-85.14078,38.63844],[-85.14002,38.636],[-85.14005,38.6321],[-85.13914,38.63002],[-85.13868,38.62947],[-85.13816,38.62909],[-85.13598,38.62781],[-85.13555,38.62762],[-85.13485,38.62751],[-85.13237,38.62763],[-85.13112,38.62825],[-85.13024,38.62843],[-85.12807,38.62833],[-85.12785,38.62807],[-85.12804,38.62693],[-85.12784,38.62638],[-85.12418,38.62263],[-85.11977,38.61887],[-85.11913,38.61855],[-85.11793,38.61824],[-85.1166,38.61736],[-85.1157,38.61647],[-85.11478,38.61509],[-85.11409,38.61462],[-85.11331,38.61438],[-85.11093,38.61398],[-85.10988,38.6133],[-85.10906,38.61304],[-85.10356,38.61263],[-85.10216,38.61288],[-85.10066,38.61356],[-85.10012,38.61368],[-85.09948,38.61354],[-85.0982,38.61266],[-85.09694,38.61258],[-85.0965,38.61239],[-85.09412,38.60784],[-85.09144,38.60495],[-85.08808,38.60181],[-85.08249,38.59411],[-85.08186,38.59234],[-85.08163,38.59068],[-85.0817,38.58955],[-85.08225,38.58688],[-85.08214,38.58605],[-85.08183,38.58555],[-85.08133,38.58514],[-85.07939,38.58437],[-85.07785,38.58226],[-85.07754,38.58146],[-85.07744,38.57886],[-85.07654,38.57509],[-85.07579,38.57275],[-85.0753,38.57212],[-85.07368,38.57093],[-85.07222,38.56944],[-85.06988,38.56742],[-85.06698,38.56577],[-85.06526,38.56458],[-85.06328,38.56379],[-85.05982,38.5629],[-85.05839,38.56272],[-85.05722,38.56274],[-85.05529,38.56317],[-85.05254,38.56424],[-85.05113,38.56432],[-85.04221,38.56217],[-85.03219,38.5607],[-85.03137,38.56046],[-85.02695,38.55836],[-85.02519,38.55729],[-85.02249,38.55533],[-85.02195,38.55471],[-85.02155,38.55387],[-85.02052,38.54622],[-85.01932,38.54307],[-85.01921,38.54186],[-85.0204,38.53812],[-85.02143,38.53622],[-85.02174,38.53466],[-85.02265,38.53258],[-85.02537,38.52769],[-85.02688,38.52616],[-85.02716,38.52566],[-85.02723,38.52441],[-85.03106,38.51059],[-85.0308,38.5083],[-85.03013,38.5065],[-85.03027,38.50582],[-85.02934,38.50548],[-85.0282,38.50524],[-85.02558,38.50387],[-85.02257,38.5029],[-85.01707,38.50285],[-85.01242,38.5036],[-85.0107,38.50374],[-85.00897,38.5037],[-85.00168,38.50284],[-84.99828,38.50193],[-84.99488,38.5012],[-84.99432,38.50098],[-84.99373,38.50057],[-84.99341,38.50018],[-84.9931,38.49956],[-84.99295,38.49872],[-84.993,38.49787],[-84.99397,38.49383],[-84.9939,38.4918],[-84.99353,38.49042],[-84.99294,38.48943],[-84.99199,38.48836],[-84.99046,38.48691],[-84.98929,38.48609],[-84.98875,38.48554],[-84.98785,38.48439],[-84.98671,38.4824],[-84.9838,38.47893],[-84.98305,38.47839],[-84.97922,38.47642],[-84.97704,38.47482],[-84.97503,38.47419],[-84.96911,38.47201],[-84.96687,38.47148],[-84.96177,38.46969],[-84.96086,38.469],[-84.96057,38.47003],[-84.96021,38.47043],[-84.95959,38.47083],[-84.95174,38.47208],[-84.94947,38.47299],[-84.93489,38.46496],[-84.93332,38.46433],[-84.93183,38.46405],[-84.92975,38.46412],[-84.92627,38.46495],[-84.92422,38.46511],[-84.92188,38.46556],[-84.92119,38.46557],[-84.92041,38.46529],[-84.91889,38.46409],[-84.91645,38.46319],[-84.91447,38.46224],[-84.91263,38.46106],[-84.91071,38.45928],[-84.90942,38.45747],[-84.90848,38.45516],[-84.90813,38.45403],[-84.90806,38.45181],[-84.90825,38.45084],[-84.90924,38.44812],[-84.90911,38.44756],[-84.90885,38.44727],[-84.90804,38.44694],[-84.90471,38.44662],[-84.90275,38.44618],[-84.9001,38.44506],[-84.89863,38.44403],[-84.89733,38.44289],[-84.89674,38.442],[-84.89576,38.4398],[-84.89505,38.43896],[-84.8939,38.43819],[-84.8911,38.43691],[-84.88987,38.43678],[-84.88883,38.43696],[-84.88458,38.43909],[-84.88342,38.43949],[-84.88261,38.43963],[-84.88117,38.43967],[-84.88013,38.43953],[-84.87875,38.43915],[-84.8774,38.43857],[-84.87576,38.43753],[-84.8751,38.43684],[-84.8746,38.43608],[-84.87397,38.43443],[-84.87332,38.43133],[-84.8722,38.42937],[-84.87413,38.42722],[-84.87434,38.42639],[-84.87441,38.42483],[-84.874,38.42393],[-84.87349,38.42337],[-84.87005,38.42114],[-84.86661,38.4211],[-84.86504,38.42154],[-84.86329,38.41799],[-84.8624,38.41689],[-84.86123,38.41619],[-84.85687,38.41471],[-84.85571,38.41386],[-84.85494,38.41284],[-84.85338,38.40636],[-84.85081,38.40125],[-84.85002,38.39649],[-84.84924,38.39509],[-84.84724,38.39304],[-84.84662,38.39193],[-84.84649,38.39094],[-84.8467,38.38995],[-84.84731,38.38899],[-84.84802,38.38839],[-84.84734,38.38781],[-84.84573,38.38687],[-84.84419,38.3852],[-84.84343,38.38471],[-84.84248,38.38433],[-84.84099,38.38407],[-84.83419,38.38389],[-84.83348,38.38369],[-84.83296,38.38338],[-84.83273,38.38309],[-84.83211,38.38156],[-84.83166,38.38084],[-84.82993,38.37895],[-84.82911,38.37853],[-84.82825,38.3783],[-84.82709,38.37833],[-84.82441,38.37914],[-84.82372,38.37948],[-84.82303,38.38025],[-84.82132,38.38342],[-84.82091,38.38386],[-84.82033,38.38422],[-84.81956,38.38442],[-84.81687,38.38452],[-84.8159,38.3844],[-84.8151,38.3841],[-84.81412,38.38339],[-84.81308,38.3823],[-84.81217,38.38122],[-84.81128,38.37968],[-84.81034,38.37882],[-84.80915,38.37833],[-84.80536,38.37762],[-84.80451,38.37724],[-84.80367,38.37665],[-84.80276,38.37552],[-84.80202,38.37336],[-84.80123,38.37258],[-84.80014,38.37219],[-84.79703,38.37229],[-84.79544,38.37198],[-84.79442,38.37141],[-84.79179,38.36925],[-84.79027,38.36765],[-84.78957,38.36656],[-84.78813,38.36371],[-84.78575,38.36113],[-84.78576,38.35958],[-84.78536,38.35893],[-84.78487,38.35853],[-84.78416,38.35815],[-84.78352,38.35809],[-84.78109,38.35874],[-84.77929,38.35888],[-84.77778,38.35879],[-84.77721,38.35861],[-84.77675,38.35827],[-84.77648,38.3578],[-84.7765,38.3574],[-84.77757,38.35521],[-84.77759,38.35447],[-84.77736,38.35403],[-84.77682,38.35348],[-84.77338,38.35053],[-84.77255,38.34929],[-84.77232,38.34791],[-84.77266,38.34424],[-84.7723,38.34362],[-84.77173,38.34339],[-84.77116,38.34338],[-84.76912,38.34428],[-84.76859,38.3444],[-84.768,38.34427],[-84.76701,38.34372],[-84.76636,38.34354],[-84.76433,38.34361],[-84.76371,38.34347],[-84.76401,38.34321],[-84.76455,38.34303],[-84.76601,38.34221],[-84.76556,38.3401],[-84.76568,38.33957],[-84.76839,38.33631],[-84.77005,38.3354],[-84.77072,38.3347],[-84.77208,38.33372],[-84.77392,38.33325],[-84.7759,38.33213],[-84.77661,38.33159],[-84.77769,38.33139],[-84.77822,38.33116],[-84.77945,38.33025],[-84.78026,38.32931],[-84.78139,38.32874],[-84.78252,38.32775],[-84.78281,38.32733],[-84.78291,38.32671],[-84.78271,38.32593],[-84.78223,38.32493],[-84.78224,38.32446],[-84.78468,38.32153],[-84.78733,38.31904],[-84.78746,38.3179],[-84.78762,38.31767],[-84.78818,38.31744],[-84.78938,38.3172],[-84.79004,38.31686],[-84.79081,38.31613],[-84.79126,38.3153],[-84.79227,38.31493],[-84.79295,38.31494],[-84.7948,38.31563],[-84.7963,38.31531],[-84.79738,38.3157],[-84.79891,38.31563],[-84.80102,38.31613],[-84.80149,38.31602],[-84.80264,38.31542],[-84.80451,38.31502],[-84.80812,38.31447],[-84.80857,38.31404],[-84.80863,38.31328],[-84.80893,38.31296],[-84.80961,38.31293],[-84.811,38.3132],[-84.81154,38.31292],[-84.8118,38.31258],[-84.81217,38.31122],[-84.81231,38.3096],[-84.81251,38.30894],[-84.81304,38.3083],[-84.81405,38.30789],[-84.8147,38.30737],[-84.8146,38.30629],[-84.81436,38.3058],[-84.81176,38.30215],[-84.81145,38.30147],[-84.81146,38.30023],[-84.81212,38.29864],[-84.81226,38.29759],[-84.81225,38.29678],[-84.81173,38.29555],[-84.81067,38.29441],[-84.80708,38.29143],[-84.80583,38.29079],[-84.80082,38.28882],[-84.79969,38.28812],[-84.79901,38.28719],[-84.79823,38.28481],[-84.79793,38.28341],[-84.7967,38.28163],[-84.79671,38.28108],[-84.79776,38.28021],[-84.79984,38.27755],[-84.80162,38.27648],[-84.8022,38.2763],[-84.80276,38.27627],[-84.80579,38.27667],[-84.80693,38.27654],[-84.80867,38.27554],[-84.81129,38.27337],[-84.81212,38.27306],[-84.81356,38.27283],[-84.81418,38.27236],[-84.81435,38.27156],[-84.81403,38.26612],[-84.81374,38.26559],[-84.81144,38.26388],[-84.81102,38.26287],[-84.811,38.261],[-84.81071,38.25968],[-84.81071,38.259],[-84.81119,38.25673],[-84.81198,38.25438],[-84.81226,38.25422],[-84.81404,38.25387],[-84.81444,38.25364],[-84.81503,38.25308],[-84.81618,38.25128],[-84.81707,38.25016],[-84.81876,38.24903],[-84.81993,38.24861],[-84.82212,38.24825],[-84.82394,38.24716],[-84.82546,38.24656],[-84.82812,38.24646],[-84.83594,38.24648],[-84.84154,38.24559],[-84.84181,38.24547],[-84.84204,38.24513],[-84.8423,38.24383],[-84.84404,38.2403],[-84.84483,38.23671],[-84.84636,38.23509],[-84.84727,38.23366],[-84.84746,38.23304],[-84.84755,38.23012],[-84.84867,38.22801],[-84.84935,38.22714],[-84.85034,38.22662],[-84.85133,38.22659],[-84.85253,38.22706],[-84.85207,38.22781],[-84.85193,38.2283],[-84.85192,38.22882],[-84.85215,38.22952],[-84.85657,38.23599],[-84.85744,38.23771],[-84.86534,38.23322],[-84.87575,38.22954],[-84.87781,38.22865],[-84.87984,38.22744],[-84.88658,38.22268],[-84.88637,38.22223],[-84.88526,38.22108],[-84.88409,38.22018],[-84.88345,38.21987],[-84.88098,38.2195],[-84.87913,38.21953],[-84.87784,38.21936],[-84.87645,38.21953],[-84.87465,38.21925],[-84.87298,38.21953],[-84.87019,38.22066],[-84.86803,38.22136],[-84.86647,38.22173],[-84.86429,38.22201],[-84.86373,38.22165],[-84.86304,38.21902],[-84.86474,38.21872],[-84.86428,38.21819],[-84.86568,38.21755],[-84.86571,38.21744],[-84.8666,38.21702],[-84.86606,38.21625],[-84.8664,38.21606],[-84.86629,38.21555],[-84.86682,38.21487],[-84.86748,38.21434],[-84.86761,38.21405],[-84.87159,38.21005],[-84.8732,38.20916],[-84.87426,38.20901],[-84.87752,38.20564],[-84.87745,38.20542],[-84.8774,38.20527],[-84.87927,38.20378],[-84.88116,38.20168],[-84.87999,38.20107],[-84.88008,38.20094],[-84.87707,38.19962],[-84.87701,38.19959],[-84.8764,38.19933],[-84.87556,38.20052],[-84.87357,38.19964]]}},
{"type":"Feature","properties":{"name":"2013 RRR 48 Mile Test 2"},"geometry":{"type":"LineString","coordinates":[[-83.69129,37.78244],[-83.69114,37.78235],[-83.6908,37.78217],[-83.69067,37.78215],[-83.69006,37.78207],[-83.68946,37.78216],[-83.68816,37.78267],[-83.68699,37.78294],[-83.68516,37.78302],[-83.68395,37.7827],[-83.68305,37.7821],[-83.68179,37.7804],[-83.68127,37.78015],[-83.68047,37.78003],[-83.68041,37.78053],[-83.68103,37.78064],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.75285,37.82234],[-83.75284,37.82219],[-83.75292,37.82006],[-83.75223,37.81925],[-83.75165,37.81902],[-83.74949,37.81889],[-83.74817,37.81867],[-83.74694,37.81802],[-83.7461,37.81709],[-83.74603,37.81629],[-83.74667,37.81385],[-83.74654,37.81349],[-83.74579,37.81287],[-83.74541,37.81195],[-83.74483,37.80975],[-83.745,37.80843],[-83.74457,37.80817],[-83.74334,37.80808],[-83.74214,37.80771],[-83.7415,37.8072],[-83.74079,37.80595],[-83.7411,37.80492],[-83.74191,37.80416],[-83.74232,37.80337],[-83.74232,37.80267],[-83.74211,37.80178],[-83.74223,37.80054],[-83.74258,37.80038],[-83.7439,37.7991],[-83.74517,37.79649],[-83.74556,37.79601],[-83.74821,37.79435],[-83.75071,37.79247],[-83.75337,37.79104],[-83.75408,37.79032],[-83.75452,37.7891],[-83.75491,37.78868],[-83.75664,37.78775],[-83.75856,37.78633],[-83.76065,37.78554],[-83.76122,37.78543],[-83.76238,37.78544],[-83.7642,37.78574],[-83.76518,37.78604],[-83.76713,37.78721],[-83.7692,37.78803],[-83.77027,37.78899],[-83.77051,37.78977],[-83.77081,37.78998],[-83.77109,37.78997],[-83.77174,37.78947],[-83.77265,37.78981],[-83.77357,37.78938],[-83.77385,37.78936],[-83.77448,37.7895],[-83.77564,37.79026],[-83.77609,37.79026],[-83.77633,37.78995],[-83.77629,37.7888],[-83.77674,37.78779],[-83.77651,37.7872],[-83.77541,37.7866],[-83.77528,37.78628],[-83.77621,37.78526],[-83.77801,37.78407],[-83.77862,37.78314],[-83.77983,37.78251],[-83.78033,37.78201],[-83.78063,37.77994],[-83.78042,37.77904],[-83.77993,37.77843],[-83.77991,37.77821],[-83.78023,37.77792],[-83.78095,37.77764],[-83.78187,37.77799],[-83.7824,37.77778],[-83.7825,37.77746],[-83.7823,37.77565],[-83.78272,37.77516],[-83.78331,37.77509],[-83.78399,37.77578],[-83.78478,37.77615],[-83.78651,37.77631],[-83.78792,37.77627],[-83.78859,37.77614],[-83.7891,37.77585],[-83.7897,37.77514],[-83.79046,37.77454],[-83.79132,37.77411],[-83.79343,37.77336],[-83.79455,37.77198],[-83.79497,37.77173],[-83.79603,37.77151],[-83.79784,37.77141],[-83.80245,37.76985],[-83.80392,37.76976],[-83.80429,37.76954],[-83.80493,37.76875],[-83.80526,37.76862],[-83.80739,37.76879],[-83.80852,37.76831],[-83.80948,37.76845],[-83.80983,37.7684],[-83.81144,37.76717],[-83.81228,37.76743],[-83.81305,37.76746],[-83.81418,37.76716],[-83.81496,37.76713],[-83.81528,37.76648],[-83.81595,37.7657],[-83.81805,37.76455],[-83.8182,37.76413],[-83.81801,37.76355],[-83.81839,37.7632],[-83.82045,37.76274],[-83.82249,37.76288],[-83.82404,37.76282],[-83.82596,37.7625],[-83.82727,37.76243],[-83.82843,37.76207],[-83.83137,37.7622],[-83.83155,37.76222],[-83.83168,37.76224],[-83.83266,37.76227],[-83.83377,37.76212],[-83.83504,37.76226],[-83.83695,37.76275],[-83.83785,37.76346],[-83.83845,37.76343],[-83.83904,37.76429],[-83.83907,37.76471],[-83.83931,37.76485],[-83.8403,37.76462],[-83.84128,37.76416],[-83.84154,37.76417],[-83.84167,37.76501],[-83.84194,37.76536],[-83.84472,37.7675],[-83.84499,37.76929],[-83.84527,37.7698],[-83.84572,37.77009],[-83.8463,37.77017],[-83.84725,37.77002],[-83.84856,37.76942],[-83.84982,37.76901],[-83.85184,37.76904],[-83.85368,37.76946],[-83.85473,37.76943],[-83.85696,37.76977],[-83.85941,37.77104],[-83.85979,37.77142],[-83.86039,37.77265],[-83.86153,37.77313],[-83.86288,37.77588],[-83.86372,37.77642],[-83.86477,37.77782],[-83.86611,37.7787],[-83.86728,37.77977],[-83.87371,37.78256],[-83.87585,37.78331],[-83.87762,37.78634],[-83.87911,37.78838],[-83.87938,37.78859],[-83.88147,37.78898],[-83.88321,37.78889],[-83.88479,37.78914],[-83.88691,37.78879],[-83.88792,37.78905],[-83.88923,37.78883],[-83.8915,37.78873],[-83.89237,37.78888],[-83.89292,37.78921],[-83.89388,37.79038],[-83.89504,37.79106],[-83.89657,37.79221],[-83.89838,37.79305],[-83.8991,37.7939],[-83.90065,37.79448],[-83.9037,37.79629],[-83.90414,37.79672],[-83.90469,37.7976],[-83.90502,37.79786],[-83.90568,37.79815],[-83.9072,37.79848],[-83.90851,37.79926],[-83.91081,37.80109],[-83.91247,37.80336],[-83.91309,37.80387],[-83.91389,37.80516],[-83.91392,37.80568],[-83.91345,37.80754],[-83.91365,37.80891],[-83.9145,37.81039],[-83.91741,37.81438],[-83.91855,37.81586],[-83.91922,37.8165],[-83.91969,37.8177],[-83.91949,37.82125],[-83.92002,37.82475],[-83.91989,37.82614],[-83.92,37.82686],[-83.9194,37.82859],[-83.92039,37.83107],[-83.92044,37.83149],[-83.92032,37.83205],[-83.91963,37.83331],[-83.91967,37.8341],[-83.91949,37.83535],[-83.91963,37.83586],[-83.92001,37.83639],[-83.92164,37.83796],[-83.92253,37.83963],[-83.92259,37.8401],[-83.92214,37.84224],[-83.92179,37.84301],[-83.92117,37.84363],[-83.919,37.84526],[-83.91847,37.84587],[-83.91826,37.84648],[-83.91821,37.84927],[-83.91805,37.85035],[-83.91873,37.85293],[-83.91878,37.85361],[-83.91604,37.85649],[-83.91538,37.85717],[-83.91478,37.85661],[-83.91443,37.85605],[-83.91367,37.85239],[-83.91323,37.85165],[-83.91268,37.85115],[-83.90485,37.84648],[-83.90185,37.84356],[-83.89897,37.84174],[-83.8983,37.84141],[-83.89545,37.84052],[-83.89361,37.83959],[-83.89083,37.83852],[-83.88753,37.83684],[-83.88599,37.83629],[-83.88386,37.83597],[-83.88237,37.8362],[-83.88155,37.83657],[-83.87829,37.83875],[-83.87769,37.83928],[-83.87618,37.8414],[-83.8741,37.84304],[-83.8729,37.84508],[-83.87211,37.84592],[-83.87155,37.84632],[-83.87131,37.84643],[-83.87109,37.84855],[-83.87203,37.84861],[-83.87109,37.84855],[-83.87067,37.85105],[-83.86822,37.85499],[-83.86808,37.85498],[-83.86748,37.85499],[-83.86601,37.85476],[-83.86509,37.85452],[-83.86484,37.85446],[-83.86097,37.85461],[-83.85622,37.8532],[-83.85579,37.85398],[-83.85546,37.8545],[-83.85493,37.85546],[-83.85475,37.8562],[-83.8544,37.86125],[-83.85469,37.86224],[-83.85603,37.86439],[-83.85522,37.86467],[-83.8549,37.86476],[-83.85467,37.86484],[-83.8541,37.86517],[-83.85312,37.86601],[-83.85198,37.86633],[-83.85154,37.8662],[-83.84987,37.86504],[-83.84936,37.86486],[-83.8458,37.86515],[-83.84091,37.86497],[-83.83954,37.86482],[-83.83827,37.86527],[-83.83623,37.86524],[-83.83543,37.86504],[-83.83452,37.8645],[-83.8322,37.8617],[-83.83114,37.86104],[-83.82982,37.86042],[-83.82533,37.85956],[-83.82251,37.86074],[-83.82182,37.86089],[-83.82098,37.86086],[-83.81901,37.86037],[-83.8181,37.85971],[-83.81762,37.85952],[-83.8154,37.85896],[-83.8095,37.85701],[-83.80889,37.85655],[-83.80862,37.85609],[-83.80745,37.85266],[-83.80728,37.85119],[-83.80733,37.84662],[-83.80715,37.84606],[-83.80541,37.8449],[-83.80255,37.84437],[-83.8012,37.84338],[-83.7996,37.8427],[-83.797,37.84269],[-83.7956,37.84232],[-83.79434,37.84157],[-83.79279,37.84128],[-83.79236,37.84139],[-83.7894,37.84317],[-83.78881,37.84372],[-83.78872,37.84409],[-83.78937,37.84642],[-83.78932,37.84688],[-83.78862,37.848],[-83.78792,37.84881],[-83.78694,37.84933],[-83.78646,37.8494],[-83.78584,37.84934],[-83.7847,37.84939],[-83.7838,37.84976],[-83.78259,37.85064],[-83.78218,37.85162],[-83.78107,37.85155],[-83.77878,37.85053],[-83.77862,37.85031],[-83.77862,37.8496],[-83.77835,37.84898],[-83.77741,37.84798],[-83.77629,37.84754],[-83.77271,37.84774],[-83.77112,37.84852],[-83.76913,37.84889],[-83.76883,37.84889],[-83.76814,37.84881],[-83.76821,37.84863],[-83.76836,37.84805],[-83.76853,37.84736],[-83.76917,37.84523],[-83.7711,37.84201],[-83.77136,37.84158],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71756,37.81374],[-83.71566,37.81185],[-83.71473,37.81129],[-83.71391,37.81093],[-83.71345,37.81059],[-83.71302,37.80984],[-83.71313,37.80814],[-83.71285,37.80748],[-83.71171,37.80575],[-83.71077,37.80495],[-83.70968,37.80424],[-83.70885,37.80337],[-83.70872,37.8032],[-83.7072,37.79949],[-83.70675,37.79917],[-83.70522,37.7987],[-83.70455,37.7985],[-83.70383,37.7983],[-83.70357,37.79822],[-83.70364,37.7979],[-83.70365,37.79784],[-83.70411,37.79508],[-83.70406,37.79464],[-83.70381,37.79421],[-83.70376,37.79416],[-83.7032,37.79377],[-83.69859,37.79141],[-83.69701,37.79001],[-83.69278,37.7881],[-83.69196,37.78759],[-83.69141,37.78695],[-83.69115,37.78627],[-83.69112,37.78504],[-83.69149,37.78369],[-83.69127,37.78308],[-83.69122,37.78303],[-83.69077,37.78275],[-83.69014,37.78266],[-83.68873,37.78321],[-83.68813,37.78333],[-83.68475,37.78341],[-83.68386,37.78333],[-83.6833,37.78311],[-83.68276,37.7827],[-83.68204,37.78135],[-83.68162,37.78094],[-83.68103,37.78064],[-83.68041,37.78053],[-83.68047,37.78003],[-83.68127,37.78015],[-83.68179,37.7804],[-83.68305,37.7821],[-83.68395,37.7827],[-83.68516,37.78302],[-83.68699,37.78294],[-83.68816,37.78267],[-83.68946,37.78216],[-83.69006,37.78207],[-83.69067,37.78215],[-83.6908,37.78217],[-83.69114,37.78235],[-83.69127,37.78243]]}},
{"type":"Feature","properties":{"name":"2013 RRR 48 Mile Test"},"geometry":{"type":"LineString","coordinates":[[-83.69129,37.78244],[-83.69114,37.78235],[-83.6908,37.78217],[-83.69067,37.78215],[-83.69006,37.78207],[-83.68946,37.78216],[-83.68816,37.78267],[-83.68699,37.78294],[-83.68516,37.78302],[-83.68395,37.7827],[-83.68305,37.7821],[-83.68179,37.7804],[-83.68127,37.78015],[-83.68047,37.78003],[-83.68041,37.78053],[-83.68103,37.78064],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.75285,37.82234],[-83.75284,37.82219],[-83.75292,37.82006],[-83.75223,37.81925],[-83.75165,37.81902],[-83.74949,37.81889],[-83.74817,37.81867],[-83.74694,37.81802],[-83.7461,37.81709],[-83.74603,37.81629],[-83.74667,37.81385],[-83.74654,37.81349],[-83.74579,37.81287],[-83.74541,37.81195],[-83.74483,37.80975],[-83.745,37.80843],[-83.74457,37.80817],[-83.74334,37.80808],[-83.74214,37.80771],[-83.7415,37.8072],[-83.74079,37.80595],[-83.7411,37.80492],[-83.74191,37.80416],[-83.74232,37.80337],[-83.74232,37.80267],[-83.74211,37.80178],[-83.74223,37.80054],[-83.74258,37.80038],[-83.7439,37.7991],[-83.74517,37.79649],[-83.74556,37.79601],[-83.74821,37.79435],[-83.75071,37.79247],[-83.75337,37.79104],[-83.75408,37.79032],[-83.75452,37.7891],[-83.75491,37.78868],[-83.75664,37.78775],[-83.75856,37.78633],[-83.76065,37.78554],[-83.76122,37.78543],[-83.76238,37.78544],[-83.7642,37.78574],[-83.76518,37.78604],[-83.76713,37.78721],[-83.7692,37.78803],[-83.77027,37.78899],[-83.77051,37.78977],[-83.77081,37.78998],[-83.77109,37.78997],[-83.77174,37.78947],[-83.77265,37.78981],[-83.77357,37.78938],[-83.77385,37.78936],[-83.77448,37.7895],[-83.77564,37.79026],[-83.77609,37.79026],[-83.77633,37.78995],[-83.77629,37.7888],[-83.77674,37.78779],[-83.77651,37.7872],[-83.77541,37.7866],[-83.77528,37.78628],[-83.77621,37.78526],[-83.77801,37.78407],[-83.77862,37.78314],[-83.77983,37.78251],[-83.78033,37.78201],[-83.78063,37.77994],[-83.78042,37.77904],[-83.77993,37.77843],[-83.77991,37.77821],[-83.78023,37.77792],[-83.78095,37.77764],[-83.78187,37.77799],[-83.7824,37.77778],[-83.7825,37.77746],[-83.7823,37.77565],[-83.78272,37.77516],[-83.78331,37.77509],[-83.78399,37.77578],[-83.78478,37.77615],[-83.78651,37.77631],[-83.78792,37.77627],[-83.78859,37.77614],[-83.7891,37.77585],[-83.7897,37.77514],[-83.79046,37.77454],[-83.79132,37.77411],[-83.79343,37.77336],[-83.79455,37.77198],[-83.79497,37.77173],[-83.79603,37.77151],[-83.79784,37.77141],[-83.80245,37.76985],[-83.80392,37.76976],[-83.80429,37.76954],[-83.80493,37.76875],[-83.80526,37.76862],[-83.80739,37.76879],[-83.80852,37.76831],[-83.80948,37.76845],[-83.80983,37.7684],[-83.81144,37.76717],[-83.81228,37.76743],[-83.81305,37.76746],[-83.81418,37.76716],[-83.81496,37.76713],[-83.81528,37.76648],[-83.81595,37.7657],[-83.81805,37.76455],[-83.8182,37.76413],[-83.81801,37.76355],[-83.81839,37.7632],[-83.82045,37.76274],[-83.82249,37.76288],[-83.82404,37.76282],[-83.82596,37.7625],[-83.82727,37.76243],[-83.82843,37.76207],[-83.83137,37.7622],[-83.83155,37.76222],[-83.83168,37.76224],[-83.83266,37.76227],[-83.83377,37.76212],[-83.83504,37.76226],[-83.83695,37.76275],[-83.83785,37.76346],[-83.83845,37.76343],[-83.83904,37.76429],[-83.83907,37.76471],[-83.83931,37.76485],[-83.8403,37.76462],[-83.84128,37.76416],[-83.84154,37.76417],[-83.84167,37.76501],[-83.84194,37.76536],[-83.84472,37.7675],[-83.84499,37.76929],[-83.84527,37.7698],[-83.84572,37.77009],[-83.8463,37.77017],[-83.84725,37.77002],[-83.84856,37.76942],[-83.84982,37.76901],[-83.85184,37.76904],[-83.85368,37.76946],[-83.85473,37.76943],[-83.85696,37.76977],[-83.85941,37.77104],[-83.85979,37.77142],[-83.86039,37.77265],[-83.86153,37.77313],[-83.86288,37.77588],[-83.86372,37.77642],[-83.86477,37.77782],[-83.86611,37.7787],[-83.86728,37.77977],[-83.87371,37.78256],[-83.87585,37.78331],[-83.87762,37.78634],[-83.87911,37.78838],[-83.87938,37.78859],[-83.88147,37.78898],[-83.88321,37.78889],[-83.88479,37.78914],[-83.88691,37.78879],[-83.88792,37.78905],[-83.88923,37.78883],[-83.8915,37.78873],[-83.89237,37.78888],[-83.89292,37.78921],[-83.89388,37.79038],[-83.89504,37.79106],[-83.89657,37.79221],[-83.89838,37.79305],[-83.8991,37.7939],[-83.90065,37.79448],[-83.9037,37.79629],[-83.90414,37.79672],[-83.90469,37.7976],[-83.90502,37.79786],[-83.90568,37.79815],[-83.9072,37.79848],[-83.90851,37.79926],[-83.91081,37.80109],[-83.91247,37.80336],[-83.91309,37.80387],[-83.91389,37.80516],[-83.91392,37.80568],[-83.91345,37.80754],[-83.91365,37.80891],[-83.9145,37.81039],[-83.91741,37.81438],[-83.91855,37.81586],[-83.91922,37.8165],[-83.91969,37.8177],[-83.91949,37.82125],[-83.92002,37.82475],[-83.91989,37.82614],[-83.92,37.82686],[-83.9194,37.82859],[-83.92039,37.83107],[-83.92044,37.83149],[-83.92032,37.83205],[-83.91963,37.83331],[-83.91967,37.8341],[-83.91949,37.83535],[-83.91963,37.83586],[-83.92001,37.83639],[-83.92164,37.83796],[-83.92253,37.83963],[-83.92259,37.8401],[-83.92214,37.84224],[-83.92179,37.84301],[-83.92117,37.84363],[-83.919,37.84526],[-83.91847,37.84587],[-83.91826,37.84648],[-83.91821,37.84927],[-83.91805,37.85035],[-83.91873,37.85293],[-83.91878,37.85361],[-83.91604,37.85649],[-83.91538,37.85717],[-83.91886,37.85931],[-83.91804,37.8601],[-83.9136,37.86364],[-83.91336,37.86369],[-83.91287,37.8633],[-83.91206,37.86295],[-83.91195,37.8629],[-83.91146,37.86268],[-83.9111,37.86272],[-83.91051,37.86328],[-83.90995,37.86412],[-83.90801,37.86444],[-83.90664,37.86412],[-83.90587,37.86379],[-83.90518,37.86341],[-83.90484,37.86288],[-83.90451,37.86269],[-83.9034,37.86258],[-83.90258,37.86235],[-83.90187,37.86127],[-83.90105,37.86068],[-83.90067,37.86068],[-83.90016,37.86095],[-83.89909,37.86107],[-83.89779,37.86177],[-83.89589,37.86232],[-83.89446,37.86315],[-83.89344,37.86313],[-83.89225,37.86256],[-83.8906,37.8628],[-83.89016,37.86316],[-83.88955,37.86343],[-83.88744,37.86567],[-83.88571,37.86524],[-83.8843,37.86504],[-83.88379,37.86484],[-83.87794,37.86047],[-83.87566,37.85949],[-83.87543,37.85918],[-83.87518,37.85823],[-83.87084,37.85616],[-83.86858,37.85506],[-83.86822,37.85499],[-83.87067,37.85105],[-83.87109,37.84855],[-83.87203,37.84861],[-83.87217,37.84874],[-83.87203,37.84861],[-83.87109,37.84855],[-83.87067,37.85105],[-83.86822,37.85499],[-83.86808,37.85498],[-83.86748,37.85499],[-83.86601,37.85476],[-83.86509,37.85452],[-83.86484,37.85446],[-83.86097,37.85461],[-83.85622,37.8532],[-83.85579,37.85398],[-83.85546,37.8545],[-83.85493,37.85546],[-83.85475,37.8562],[-83.8544,37.86125],[-83.85469,37.86224],[-83.85603,37.86439],[-83.85522,37.86467],[-83.8549,37.86476],[-83.85467,37.86484],[-83.8541,37.86517],[-83.85312,37.86601],[-83.85198,37.86633],[-83.85154,37.8662],[-83.84987,37.86504],[-83.84936,37.86486],[-83.8458,37.86515],[-83.84091,37.86497],[-83.83954,37.86482],[-83.83827,37.86527],[-83.83623,37.86524],[-83.83543,37.86504],[-83.83452,37.8645],[-83.8322,37.8617],[-83.83114,37.86104],[-83.82982,37.86042],[-83.82533,37.85956],[-83.82251,37.86074],[-83.82182,37.86089],[-83.82098,37.86086],[-83.81901,37.86037],[-83.8181,37.85971],[-83.81762,37.85952],[-83.8154,37.85896],[-83.8095,37.85701],[-83.80889,37.85655],[-83.80862,37.85609],[-83.80745,37.85266],[-83.80728,37.85119],[-83.80733,37.84662],[-83.80715,37.84606],[-83.80541,37.8449],[-83.80255,37.84437],[-83.8012,37.84338],[-83.7996,37.8427],[-83.797,37.84269],[-83.7956,37.84232],[-83.79434,37.84157],[-83.79279,37.84128],[-83.79236,37.84139],[-83.7894,37.84317],[-83.78881,37.84372],[-83.78872,37.84409],[-83.78937,37.84642],[-83.78932,37.84688],[-83.78862,37.848],[-83.78792,37.84881],[-83.78694,37.84933],[-83.78646,37.8494],[-83.78584,37.84934],[-83.7847,37.84939],[-83.7838,37.84976],[-83.78259,37.85064],[-83.78218,37.85162],[-83.78107,37.85155],[-83.77878,37.85053],[-83.77862,37.85031],[-83.77862,37.8496],[-83.77835,37.84898],[-83.77741,37.84798],[-83.77629,37.84754],[-83.77271,37.84774],[-83.77112,37.84852],[-83.76913,37.84889],[-83.76883,37.84889],[-83.76814,37.84881],[-83.76821,37.84863],[-83.76836,37.84805],[-83.76853,37.84736],[-83.76917,37.84523],[-83.7711,37.84201],[-83.77136,37.84158],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71756,37.81374],[-83.71566,37.81185],[-83.71473,37.81129],[-83.71391,37.81093],[-83.71345,37.81059],[-83.71302,37.80984],[-83.71313,37.80814],[-83.71285,37.80748],[-83.71171,37.80575],[-83.71077,37.80495],[-83.70968,37.80424],[-83.70885,37.80337],[-83.70872,37.8032],[-83.7072,37.79949],[-83.70675,37.79917],[-83.70522,37.7987],[-83.70455,37.7985],[-83.70383,37.7983],[-83.70357,37.79822],[-83.70364,37.7979],[-83.70365,37.79784],[-83.70411,37.79508],[-83.70406,37.79464],[-83.70381,37.79421],[-83.70376,37.79416],[-83.7032,37.79377],[-83.69859,37.79141],[-83.69701,37.79001],[-83.69278,37.7881],[-83.69196,37.78759],[-83.69141,37.78695],[-83.69115,37.78627],[-83.69112,37.78504],[-83.69149,37.78369],[-83.69127,37.78308],[-83.69122,37.78303],[-83.69077,37.78275],[-83.69014,37.78266],[-83.68873,37.78321],[-83.68813,37.78333],[-83.68475,37.78341],[-83.68386,37.78333],[-83.6833,37.78311],[-83.68276,37.7827],[-83.68204,37.78135],[-83.68162,37.78094],[-83.68103,37.78064],[-83.68041,37.78053],[-83.68047,37.78003],[-83.68127,37.78015],[-83.68179,37.7804],[-83.68305,37.7821],[-83.68395,37.7827],[-83.68516,37.78302],[-83.68699,37.78294],[-83.68816,37.78267],[-83.68946,37.78216],[-83.69006,37.78207],[-83.69067,37.78215],[-83.6908,37.78217],[-83.69114,37.78235],[-83.69123,37.7824]]}},
{"type":"Feature","properties":{"name":"Hartland-Athens-Cleveland"},"geometry":{"type":"LineString","coordinates":[[-84.47987,37.96007],[-84.4796,37.96019],[-84.47939,37.9603],[-84.47901,37.96056],[-84.47809,37.96166],[-84.47735,37.96224],[-84.47719,37.96232],[-84.47675,37.96248],[-84.47655,37.96253],[-84.47565,37.9626],[-84.47495,37.96253],[-84.47382,37.96238],[-84.47276,37.9624],[-84.47172,37.96255],[-84.47083,37.96282],[-84.46796,37.96476],[-84.46738,37.96519],[-84.46732,37.96523],[-84.46731,37.96525],[-84.46728,37.96532],[-84.46701,37.96551],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44198,37.92938],[-84.4414,37.93037],[-84.44063,37.93165],[-84.44022,37.93236],[-84.43829,37.9357],[-84.43677,37.93832],[-84.43372,37.94362],[-84.43502,37.94622],[-84.43548,37.94766],[-84.43593,37.94912],[-84.43604,37.9498],[-84.43378,37.95367],[-84.43211,37.95652],[-84.43085,37.95869],[-84.42986,37.96038],[-84.42947,37.96107],[-84.42732,37.96515],[-84.42525,37.96669],[-84.42404,37.96758],[-84.42336,37.96801],[-84.42286,37.96817],[-84.4217,37.96842],[-84.42145,37.96848],[-84.42089,37.96755],[-84.41807,37.96275],[-84.41724,37.96138],[-84.41664,37.96036],[-84.41582,37.95899],[-84.41578,37.9589],[-84.4156,37.95894],[-84.41534,37.95902],[-84.41514,37.95907],[-84.41507,37.95907],[-84.40941,37.95638],[-84.40882,37.95609],[-84.40737,37.95538],[-84.40425,37.95386],[-84.39626,37.95031],[-84.39213,37.95027],[-84.39109,37.95027],[-84.38995,37.9503],[-84.38658,37.95032],[-84.38262,37.95034],[-84.38148,37.95033],[-84.38041,37.95033],[-84.3772,37.95031],[-84.37362,37.95026],[-84.36895,37.95018],[-84.36718,37.95018],[-84.3671,37.95021],[-84.36673,37.95063],[-84.36554,37.94999],[-84.36443,37.94937],[-84.36482,37.94889],[-84.36483,37.94876],[-84.36466,37.94835],[-84.36463,37.94797],[-84.3644,37.94277],[-84.36444,37.9426],[-84.3646,37.94172],[-84.36417,37.93891],[-84.36392,37.93499],[-84.3634,37.93331],[-84.36326,37.93218],[-84.36369,37.93158],[-84.36566,37.93005],[-84.36584,37.92959],[-84.36619,37.92718],[-84.36749,37.92573],[-84.36892,37.92417],[-84.36921,37.92427],[-84.37281,37.92535],[-84.37961,37.92923],[-84.38105,37.93],[-84.38446,37.9318],[-84.40096,37.93652],[-84.40502,37.93908],[-84.40536,37.93932],[-84.40546,37.93916],[-84.40573,37.93862],[-84.40837,37.93335],[-84.41152,37.92773],[-84.41213,37.92662],[-84.41219,37.92652],[-84.41296,37.92657],[-84.41736,37.92688],[-84.42484,37.92744],[-84.42877,37.92773],[-84.43633,37.92827],[-84.43851,37.92843],[-84.44035,37.92856],[-84.44158,37.92866],[-84.44208,37.92869],[-84.44223,37.92871],[-84.44238,37.92874],[-84.44283,37.928],[-84.44298,37.92785],[-84.44302,37.92783],[-84.44402,37.92818],[-84.4444,37.92834],[-84.44483,37.9286],[-84.44492,37.92871],[-84.44528,37.92924],[-84.44579,37.92957],[-84.45069,37.93238],[-84.45107,37.9326],[-84.45257,37.93346],[-84.45482,37.93483],[-84.45607,37.93557],[-84.45603,37.93561],[-84.45599,37.93565],[-84.45581,37.9359],[-84.45422,37.93823],[-84.45364,37.93893],[-84.45345,37.93909],[-84.45328,37.93923],[-84.45263,37.9398],[-84.4521,37.94018],[-84.45186,37.9403],[-84.45002,37.94239],[-84.45001,37.94303],[-84.45056,37.94405],[-84.45057,37.9441],[-84.45061,37.94482],[-84.45123,37.94559],[-84.45213,37.94643],[-84.45322,37.9474],[-84.45358,37.94779],[-84.45611,37.95093],[-84.4562,37.9513],[-84.45621,37.95149],[-84.4562,37.9519],[-84.45558,37.95295],[-84.45533,37.95338],[-84.45525,37.9535],[-84.45488,37.95412],[-84.45474,37.95435],[-84.45361,37.95614],[-84.45263,37.95772],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46701,37.96551],[-84.46728,37.96532],[-84.46731,37.96525],[-84.46732,37.96523],[-84.46738,37.96519],[-84.46796,37.96476],[-84.47083,37.96282],[-84.47172,37.96255],[-84.47276,37.9624],[-84.47382,37.96238],[-84.47495,37.96253],[-84.47565,37.9626],[-84.47655,37.96253],[-84.47675,37.96248],[-84.47719,37.96232],[-84.47735,37.96224],[-84.47809,37.96166],[-84.47901,37.96056],[-84.47939,37.9603],[-84.4796,37.96019],[-84.47987,37.96007]]}},
{"type":"Feature","properties":{"name":"Versailles/Midway/Millvile Loop"},"geometry":{"type":"LineString","coordinates":[[-84.7153,38.05241],[-84.71554,38.05256],[-84.71645,38.05355],[-84.71519,38.05431],[-84.71465,38.05462],[-84.7144,38.05477],[-84.71295,38.05566],[-84.71287,38.05574],[-84.71259,38.05621],[-84.71246,38.05678],[-84.71233,38.05748],[-84.71242,38.05788],[-84.71288,38.05824],[-84.71463,38.05896],[-84.71479,38.05902],[-84.71734,38.06008],[-84.71817,38.06082],[-84.71809,38.06087],[-84.718,38.06093],[-84.71667,38.06189],[-84.71648,38.06203],[-84.71245,38.06478],[-84.71194,38.06469],[-84.71129,38.06448],[-84.71114,38.06442],[-84.71084,38.06433],[-84.71072,38.06429],[-84.7104,38.06426],[-84.71011,38.06441],[-84.70728,38.06789],[-84.70688,38.06809],[-84.70605,38.06814],[-84.70576,38.06812],[-84.70503,38.06817],[-84.70387,38.06949],[-84.70357,38.06984],[-84.70192,38.0718],[-84.70176,38.07199],[-84.70157,38.07221],[-84.70002,38.07404],[-84.69873,38.07375],[-84.69822,38.07366],[-84.69529,38.07309],[-84.69496,38.07302],[-84.69195,38.07239],[-84.69161,38.07232],[-84.68939,38.07184],[-84.68902,38.07176],[-84.68861,38.07167],[-84.68845,38.07163],[-84.68287,38.07047],[-84.68264,38.07206],[-84.68243,38.07219],[-84.68218,38.07216],[-84.68146,38.07202],[-84.68005,38.07171],[-84.6797,38.07164],[-84.67658,38.07099],[-84.67639,38.07094],[-84.6762,38.0709],[-84.67418,38.07048],[-84.67389,38.06993],[-84.67188,38.06817],[-84.67025,38.06775],[-84.66995,38.06835],[-84.66981,38.0686],[-84.66967,38.06883],[-84.66955,38.06907],[-84.66916,38.06978],[-84.6691,38.06987],[-84.66902,38.06995],[-84.66224,38.0748],[-84.66243,38.07504],[-84.66248,38.07513],[-84.66278,38.07558],[-84.66287,38.07573],[-84.66307,38.07602],[-84.66384,38.07723],[-84.66389,38.07958],[-84.6639,38.08008],[-84.66391,38.08029],[-84.66392,38.08093],[-84.66392,38.08116],[-84.66394,38.08177],[-84.66394,38.08196],[-84.66387,38.08317],[-84.6626,38.08562],[-84.66253,38.08574],[-84.6615,38.08756],[-84.66113,38.08811],[-84.66105,38.08825],[-84.66056,38.08898],[-84.65954,38.09053],[-84.65946,38.09066],[-84.65937,38.09079],[-84.65908,38.09121],[-84.65901,38.09129],[-84.65771,38.09261],[-84.6574,38.09292],[-84.65645,38.09385],[-84.65547,38.09456],[-84.65555,38.09601],[-84.65556,38.09614],[-84.6551,38.09718],[-84.65488,38.09759],[-84.6548,38.09774],[-84.65381,38.09959],[-84.65343,38.1003],[-84.65334,38.10047],[-84.65296,38.10118],[-84.65282,38.10145],[-84.65184,38.1033],[-84.65151,38.10392],[-84.65093,38.10501],[-84.6507,38.10496],[-84.65043,38.10491],[-84.64924,38.10672],[-84.64917,38.10683],[-84.6491,38.10694],[-84.64878,38.10743],[-84.6479,38.10875],[-84.64767,38.1091],[-84.6468,38.11042],[-84.64673,38.11053],[-84.64664,38.11067],[-84.64654,38.11082],[-84.64645,38.11096],[-84.64408,38.11456],[-84.64344,38.11553],[-84.64301,38.11609],[-84.64269,38.11669],[-84.64261,38.11686],[-84.6424,38.11746],[-84.64233,38.11767],[-84.64185,38.1191],[-84.64059,38.12026],[-84.64011,38.12127],[-84.64002,38.12146],[-84.63937,38.1229],[-84.63923,38.12322],[-84.639,38.1237],[-84.63887,38.12398],[-84.63863,38.12451],[-84.63864,38.12498],[-84.63867,38.12517],[-84.63871,38.1257],[-84.63819,38.12598],[-84.63796,38.12629],[-84.63845,38.12735],[-84.6385,38.12753],[-84.63852,38.12802],[-84.63868,38.12816],[-84.63876,38.12823],[-84.63949,38.12885],[-84.64009,38.12912],[-84.64036,38.1292],[-84.64116,38.12931],[-84.64224,38.12926],[-84.64297,38.12918],[-84.64412,38.12925],[-84.64429,38.1293],[-84.64545,38.12974],[-84.64559,38.12979],[-84.64683,38.13021],[-84.64697,38.13026],[-84.64797,38.1306],[-84.64811,38.13065],[-84.64866,38.13091],[-84.64878,38.13098],[-84.64891,38.13105],[-84.64904,38.13111],[-84.6522,38.13225],[-84.65296,38.13251],[-84.65512,38.13324],[-84.65532,38.13331],[-84.65551,38.13338],[-84.65719,38.13396],[-84.65738,38.13402],[-84.65776,38.13416],[-84.6581,38.13428],[-84.65871,38.13449],[-84.65922,38.13467],[-84.66144,38.13545],[-84.66203,38.13565],[-84.66239,38.13578],[-84.66277,38.13592],[-84.66316,38.13606],[-84.6645,38.13654],[-84.66613,38.13735],[-84.66629,38.13743],[-84.66677,38.13768],[-84.66693,38.13775],[-84.66768,38.13807],[-84.66847,38.13815],[-84.66863,38.13816],[-84.66993,38.13823],[-84.67008,38.13824],[-84.67058,38.13827],[-84.67146,38.13832],[-84.67259,38.1385],[-84.67412,38.14017],[-84.67425,38.14026],[-84.67463,38.14056],[-84.67582,38.14173],[-84.67608,38.14193],[-84.67637,38.14211],[-84.67653,38.1422],[-84.67667,38.14228],[-84.67696,38.14246],[-84.67701,38.1425],[-84.67733,38.14274],[-84.67803,38.14331],[-84.67817,38.14341],[-84.67828,38.14351],[-84.67932,38.14436],[-84.67943,38.14445],[-84.67952,38.14453],[-84.67972,38.14469],[-84.6798,38.14474],[-84.6804,38.14519],[-84.68123,38.14555],[-84.68141,38.14562],[-84.68186,38.14578],[-84.68234,38.14595],[-84.68275,38.14609],[-84.6831,38.14622],[-84.6838,38.14647],[-84.68417,38.1466],[-84.68443,38.1467],[-84.68457,38.14675],[-84.68515,38.14695],[-84.6855,38.14708],[-84.68603,38.14728],[-84.6861,38.14731],[-84.68686,38.14757],[-84.6876,38.14784],[-84.68832,38.14809],[-84.68864,38.1482],[-84.68931,38.14844],[-84.68992,38.14866],[-84.6904,38.14883],[-84.69118,38.14912],[-84.69191,38.14939],[-84.69256,38.14957],[-84.69299,38.14952],[-84.69324,38.14946],[-84.69386,38.14926],[-84.69434,38.1491],[-84.69567,38.14875],[-84.69596,38.14864],[-84.69633,38.14849],[-84.69662,38.14837],[-84.69771,38.14792],[-84.69797,38.14782],[-84.69839,38.14768],[-84.69857,38.14772],[-84.69866,38.14777],[-84.69878,38.14782],[-84.69903,38.14795],[-84.69952,38.14818],[-84.69989,38.14835],[-84.70008,38.14844],[-84.70103,38.1489],[-84.70122,38.14899],[-84.70231,38.14951],[-84.70264,38.14967],[-84.70333,38.15001],[-84.70367,38.15017],[-84.70382,38.15025],[-84.70397,38.15032],[-84.70411,38.15039],[-84.70424,38.15045],[-84.70483,38.15062],[-84.7049,38.15058],[-84.70501,38.15041],[-84.70506,38.15031],[-84.70512,38.15018],[-84.70616,38.14818],[-84.70623,38.14802],[-84.70659,38.14735],[-84.70673,38.14708],[-84.70688,38.1468],[-84.70715,38.14627],[-84.70739,38.1458],[-84.70749,38.14562],[-84.70776,38.14547],[-84.70841,38.14566],[-84.70859,38.14572],[-84.70897,38.14584],[-84.70937,38.14597],[-84.7102,38.14624],[-84.71085,38.14645],[-84.71106,38.14652],[-84.71168,38.14673],[-84.71336,38.14727],[-84.71358,38.14734],[-84.714,38.14748],[-84.71483,38.14775],[-84.71504,38.14782],[-84.71545,38.14795],[-84.71604,38.14815],[-84.71663,38.14833],[-84.71857,38.14893],[-84.71879,38.149],[-84.72099,38.14967],[-84.72118,38.14971],[-84.72292,38.15026],[-84.72352,38.15045],[-84.72453,38.15078],[-84.72474,38.15085],[-84.72538,38.15106],[-84.72621,38.15134],[-84.72723,38.15168],[-84.72743,38.15175],[-84.72906,38.15228],[-84.72922,38.15234],[-84.73027,38.15265],[-84.73102,38.15289],[-84.73197,38.15319],[-84.73235,38.15331],[-84.73516,38.1542],[-84.73532,38.15425],[-84.73594,38.15446],[-84.73613,38.1545],[-84.73654,38.15431],[-84.73677,38.1542],[-84.73778,38.15388],[-84.73867,38.15382],[-84.73915,38.15384],[-84.74119,38.154],[-84.74298,38.15412],[-84.74347,38.15416],[-84.74361,38.15416],[-84.74381,38.15418],[-84.74399,38.1542],[-84.74403,38.15399],[-84.74401,38.15396],[-84.74394,38.15386],[-84.74387,38.1538],[-84.74382,38.15359],[-84.74386,38.15352],[-84.74514,38.15143],[-84.74528,38.15119],[-84.74561,38.15065],[-84.74576,38.1504],[-84.74619,38.14966],[-84.74841,38.14606],[-84.74863,38.1457],[-84.74904,38.14505],[-84.7495,38.14431],[-84.75054,38.14262],[-84.75076,38.14226],[-84.75084,38.14215],[-84.75111,38.14172],[-84.7515,38.14186],[-84.75365,38.14264],[-84.75491,38.14311],[-84.75521,38.14322],[-84.75727,38.14423],[-84.75785,38.14456],[-84.75905,38.14547],[-84.75957,38.14592],[-84.7598,38.14611],[-84.75994,38.14622],[-84.7615,38.1473],[-84.76376,38.14883],[-84.76511,38.14975],[-84.76814,38.15179],[-84.76879,38.15223],[-84.76916,38.15249],[-84.7696,38.1528],[-84.7702,38.15321],[-84.7715,38.15414],[-84.77164,38.15428],[-84.77171,38.15451],[-84.77165,38.15529],[-84.77188,38.15577],[-84.77231,38.15599],[-84.77245,38.15601],[-84.77294,38.15595],[-84.77367,38.15583],[-84.77377,38.15584],[-84.77389,38.15587],[-84.77436,38.15611],[-84.77535,38.15677],[-84.77655,38.15746],[-84.77849,38.15854],[-84.77916,38.15892],[-84.78019,38.15947],[-84.78058,38.1597],[-84.78097,38.16006],[-84.78141,38.16083],[-84.78181,38.16153],[-84.78221,38.16217],[-84.78292,38.16306],[-84.78345,38.16395],[-84.78371,38.16434],[-84.78377,38.1644],[-84.78379,38.16441],[-84.78386,38.16444],[-84.78406,38.16445],[-84.78437,38.16443],[-84.78524,38.1643],[-84.78802,38.16308],[-84.78834,38.16294],[-84.79094,38.16189],[-84.79306,38.16249],[-84.79361,38.16265],[-84.79413,38.16278],[-84.79422,38.16279],[-84.79449,38.16279],[-84.79466,38.16278],[-84.79483,38.16278],[-84.79534,38.16285],[-84.79563,38.16293],[-84.79734,38.1634],[-84.80255,38.16483],[-84.80437,38.16484],[-84.80666,38.1648],[-84.80696,38.16479],[-84.80776,38.16475],[-84.8079,38.16474],[-84.80851,38.16457],[-84.81052,38.16406],[-84.81114,38.16422],[-84.81125,38.16429],[-84.81184,38.16469],[-84.81221,38.16494],[-84.81331,38.16574],[-84.81363,38.16644],[-84.81264,38.16977],[-84.81289,38.16981],[-84.814,38.16967],[-84.81415,38.1696],[-84.81445,38.16941],[-84.81487,38.16893],[-84.81519,38.1685],[-84.81583,38.16763],[-84.81604,38.16734],[-84.81635,38.16689],[-84.81737,38.16574],[-84.81757,38.16532],[-84.81792,38.16429],[-84.81782,38.1638],[-84.81765,38.16358],[-84.817,38.1628],[-84.81572,38.16122],[-84.81567,38.1611],[-84.81565,38.16103],[-84.81565,38.16092],[-84.81569,38.16076],[-84.81571,38.16071],[-84.81613,38.15988],[-84.8162,38.15973],[-84.81628,38.15957],[-84.81648,38.15914],[-84.81676,38.15853],[-84.81854,38.155],[-84.81846,38.1535],[-84.8184,38.15305],[-84.81824,38.1516],[-84.81828,38.15122],[-84.81827,38.15101],[-84.81826,38.15094],[-84.81822,38.15068],[-84.8182,38.15032],[-84.81828,38.15007],[-84.8184,38.14987],[-84.81873,38.14948],[-84.81879,38.14941],[-84.81934,38.14878],[-84.81944,38.14856],[-84.81956,38.14813],[-84.81965,38.14793],[-84.8201,38.14694],[-84.8202,38.14671],[-84.82032,38.14654],[-84.82037,38.14648],[-84.82053,38.14632],[-84.82168,38.14526],[-84.82201,38.14491],[-84.82256,38.1444],[-84.82363,38.14312],[-84.8238,38.14221],[-84.82419,38.1412],[-84.82501,38.14036],[-84.82477,38.14025],[-84.82455,38.14014],[-84.82439,38.14004],[-84.82419,38.1399],[-84.82403,38.13977],[-84.82384,38.13959],[-84.82316,38.139],[-84.82298,38.13881],[-84.82281,38.13859],[-84.8227,38.13842],[-84.82246,38.13792],[-84.82199,38.13665],[-84.82188,38.13623],[-84.82182,38.13583],[-84.8218,38.13565],[-84.82183,38.13536],[-84.82193,38.13512],[-84.82206,38.13489],[-84.82215,38.13478],[-84.82271,38.13417],[-84.82286,38.13396],[-84.82295,38.1338],[-84.82301,38.13371],[-84.82303,38.13367],[-84.82397,38.13195],[-84.82406,38.13136],[-84.82389,38.13065],[-84.82384,38.13054],[-84.82312,38.12914],[-84.82319,38.12848],[-84.82327,38.12828],[-84.82341,38.12773],[-84.8234,38.12746],[-84.82339,38.12741],[-84.82331,38.12711],[-84.82326,38.12694],[-84.82293,38.12577],[-84.82287,38.12556],[-84.82286,38.12546],[-84.82296,38.12521],[-84.82303,38.12516],[-84.82316,38.12509],[-84.82362,38.12493],[-84.82394,38.1248],[-84.82444,38.12455],[-84.82507,38.12424],[-84.82556,38.12399],[-84.82697,38.12319],[-84.82721,38.12293],[-84.82736,38.12244],[-84.82736,38.12207],[-84.82735,38.1219],[-84.82697,38.12065],[-84.8269,38.1205],[-84.8265,38.11951],[-84.82647,38.11939],[-84.82646,38.11929],[-84.82644,38.1191],[-84.82624,38.1184],[-84.82562,38.11796],[-84.82551,38.11789],[-84.82488,38.11741],[-84.82394,38.11703],[-84.82374,38.11695],[-84.8216,38.11622],[-84.81767,38.11572],[-84.81722,38.11548],[-84.81658,38.11484],[-84.81643,38.11471],[-84.81537,38.11378],[-84.81521,38.11361],[-84.81462,38.11289],[-84.81437,38.11275],[-84.81412,38.11271],[-84.81365,38.11269],[-84.81276,38.11277],[-84.81183,38.11297],[-84.81158,38.11304],[-84.8112,38.11348],[-84.8111,38.11383],[-84.81102,38.11506],[-84.81098,38.11523],[-84.81065,38.11576],[-84.80958,38.11638],[-84.80928,38.11646],[-84.80869,38.11654],[-84.80852,38.11654],[-84.80819,38.1165],[-84.80776,38.1164],[-84.8068,38.11595],[-84.80641,38.11583],[-84.80318,38.11492],[-84.80228,38.11458],[-84.80178,38.11397],[-84.80199,38.11324],[-84.80321,38.10888],[-84.80349,38.10698],[-84.80403,38.10596],[-84.80434,38.10546],[-84.80651,38.10284],[-84.8066,38.10259],[-84.80558,38.10086],[-84.80449,38.09973],[-84.80367,38.09912],[-84.80264,38.09858],[-84.80118,38.0975],[-84.79908,38.0956],[-84.79861,38.09547],[-84.79782,38.09556],[-84.79463,38.09647],[-84.79436,38.09658],[-84.79372,38.09686],[-84.79338,38.09681],[-84.79231,38.09582],[-84.79029,38.09329],[-84.78998,38.09312],[-84.78989,38.09309],[-84.7896,38.09304],[-84.78944,38.09303],[-84.78837,38.09297],[-84.78737,38.09269],[-84.78619,38.0923],[-84.78603,38.09224],[-84.78577,38.09211],[-84.78553,38.09196],[-84.78457,38.09052],[-84.7841,38.08966],[-84.78388,38.08935],[-84.78329,38.08893],[-84.78315,38.08887],[-84.78268,38.08877],[-84.78208,38.08871],[-84.78145,38.08852],[-84.77948,38.08781],[-84.77932,38.08773],[-84.77893,38.08751],[-84.77862,38.08728],[-84.77736,38.08619],[-84.77621,38.08529],[-84.77486,38.08491],[-84.77471,38.08487],[-84.77425,38.08459],[-84.77371,38.08403],[-84.77316,38.08349],[-84.77207,38.08244],[-84.77151,38.08203],[-84.77112,38.0818],[-84.77095,38.08171],[-84.77072,38.08158],[-84.77043,38.08144],[-84.77028,38.08139],[-84.768,38.08102],[-84.76745,38.08079],[-84.76734,38.08073],[-84.76672,38.08023],[-84.76465,38.07811],[-84.76408,38.07753],[-84.76208,38.0755],[-84.76093,38.07462],[-84.76067,38.07442],[-84.75891,38.07309],[-84.75834,38.07264],[-84.75636,38.07113],[-84.75586,38.07074],[-84.75249,38.06819],[-84.75173,38.0676],[-84.75107,38.06711],[-84.7505,38.06667],[-84.74983,38.06615],[-84.74829,38.06486],[-84.74799,38.0646],[-84.74641,38.06365],[-84.7409,38.0609],[-84.74051,38.06072],[-84.74033,38.06062],[-84.74005,38.06049],[-84.73941,38.06019],[-84.73886,38.05992],[-84.73705,38.059],[-84.734,38.05748],[-84.73359,38.05728],[-84.73326,38.05714],[-84.73308,38.05708],[-84.73285,38.05701],[-84.7321,38.05678],[-84.73105,38.05647],[-84.73099,38.05645],[-84.73042,38.0563],[-84.73009,38.05624],[-84.72958,38.05625],[-84.72911,38.05629],[-84.72846,38.0563],[-84.72561,38.0563],[-84.72464,38.0563],[-84.72448,38.05641],[-84.72423,38.05658],[-84.72262,38.05771],[-84.72205,38.05812],[-84.72173,38.05836],[-84.72162,38.05843],[-84.72051,38.05919],[-84.72031,38.05933],[-84.72002,38.05952],[-84.71987,38.05962],[-84.71955,38.05984],[-84.71908,38.06018],[-84.71817,38.06082],[-84.71734,38.06008],[-84.71479,38.05902],[-84.71463,38.05896],[-84.71288,38.05824],[-84.71242,38.05788],[-84.71233,38.05748],[-84.71246,38.05678],[-84.71259,38.05621],[-84.71287,38.05574],[-84.71295,38.05566],[-84.7144,38.05477],[-84.71465,38.05462],[-84.71519,38.05431],[-84.71448,38.05353],[-84.71421,38.05318],[-84.7153,38.05241]]}},
{"type":"Feature","properties":{"name":"Versailles/Miway Loop 27 miles"},"geometry":{"type":"LineString","coordinates":[[-84.71421,38.05318],[-84.71448,38.05353],[-84.71519,38.05431],[-84.71465,38.05462],[-84.7144,38.05477],[-84.71295,38.05566],[-84.71287,38.05574],[-84.71259,38.05621],[-84.71246,38.05678],[-84.71233,38.05748],[-84.71242,38.05788],[-84.71288,38.05824],[-84.71463,38.05896],[-84.71479,38.05902],[-84.71734,38.06008],[-84.71817,38.06082],[-84.71809,38.06087],[-84.718,38.06093],[-84.71667,38.06189],[-84.71648,38.06203],[-84.71245,38.06478],[-84.71194,38.06469],[-84.71129,38.06448],[-84.71114,38.06442],[-84.71084,38.06433],[-84.71072,38.06429],[-84.7104,38.06426],[-84.71011,38.06441],[-84.70728,38.06789],[-84.70688,38.06809],[-84.70605,38.06814],[-84.70576,38.06812],[-84.70503,38.06817],[-84.70387,38.06949],[-84.70357,38.06984],[-84.70192,38.0718],[-84.70176,38.07199],[-84.70157,38.07221],[-84.70002,38.07404],[-84.69873,38.07375],[-84.69822,38.07366],[-84.69529,38.07309],[-84.69496,38.07302],[-84.69195,38.07239],[-84.69161,38.07232],[-84.68939,38.07184],[-84.68902,38.07176],[-84.68861,38.07167],[-84.68845,38.07163],[-84.68287,38.07047],[-84.68264,38.07206],[-84.68243,38.07219],[-84.68218,38.07216],[-84.68146,38.07202],[-84.68005,38.07171],[-84.6797,38.07164],[-84.67658,38.07099],[-84.67639,38.07094],[-84.6762,38.0709],[-84.67418,38.07048],[-84.67389,38.06993],[-84.67188,38.06817],[-84.67025,38.06775],[-84.66995,38.06835],[-84.66981,38.0686],[-84.66967,38.06883],[-84.66955,38.06907],[-84.66916,38.06978],[-84.6691,38.06987],[-84.66902,38.06995],[-84.66224,38.0748],[-84.66243,38.07504],[-84.66248,38.07513],[-84.66278,38.07558],[-84.66287,38.07573],[-84.66307,38.07602],[-84.66384,38.07723],[-84.66389,38.07958],[-84.6639,38.08008],[-84.66391,38.08029],[-84.66392,38.08093],[-84.66392,38.08116],[-84.66394,38.08177],[-84.66394,38.08196],[-84.66387,38.08317],[-84.6626,38.08562],[-84.66253,38.08574],[-84.6615,38.08756],[-84.66113,38.08811],[-84.66105,38.08825],[-84.66056,38.08898],[-84.65954,38.09053],[-84.65946,38.09066],[-84.65937,38.09079],[-84.65908,38.09121],[-84.65901,38.09129],[-84.65771,38.09261],[-84.6574,38.09292],[-84.65645,38.09385],[-84.65547,38.09456],[-84.65555,38.09601],[-84.65556,38.09614],[-84.6551,38.09718],[-84.65488,38.09759],[-84.6548,38.09774],[-84.65381,38.09959],[-84.65343,38.1003],[-84.65334,38.10047],[-84.65296,38.10118],[-84.65282,38.10145],[-84.65184,38.1033],[-84.65151,38.10392],[-84.65093,38.10501],[-84.6507,38.10496],[-84.65043,38.10491],[-84.64924,38.10672],[-84.64917,38.10683],[-84.6491,38.10694],[-84.64878,38.10743],[-84.6479,38.10875],[-84.64767,38.1091],[-84.6468,38.11042],[-84.64673,38.11053],[-84.64664,38.11067],[-84.64654,38.11082],[-84.64645,38.11096],[-84.64408,38.11456],[-84.64344,38.11553],[-84.64301,38.11609],[-84.64269,38.11669],[-84.64261,38.11686],[-84.6424,38.11746],[-84.64233,38.11767],[-84.64185,38.1191],[-84.64059,38.12026],[-84.64011,38.12127],[-84.64002,38.12146],[-84.63937,38.1229],[-84.63923,38.12322],[-84.639,38.1237],[-84.63887,38.12398],[-84.63863,38.12451],[-84.63864,38.12498],[-84.63867,38.12517],[-84.63871,38.1257],[-84.63819,38.12598],[-84.63796,38.12629],[-84.63845,38.12735],[-84.6385,38.12753],[-84.63852,38.12802],[-84.63868,38.12816],[-84.63876,38.12823],[-84.63949,38.12885],[-84.64009,38.12912],[-84.64036,38.1292],[-84.64116,38.12931],[-84.64224,38.12926],[-84.64297,38.12918],[-84.64412,38.12925],[-84.64429,38.1293],[-84.64545,38.12974],[-84.64559,38.12979],[-84.64683,38.13021],[-84.64697,38.13026],[-84.64797,38.1306],[-84.64811,38.13065],[-84.64866,38.13091],[-84.64878,38.13098],[-84.64891,38.13105],[-84.64904,38.13111],[-84.6522,38.13225],[-84.65296,38.13251],[-84.65512,38.13324],[-84.65532,38.13331],[-84.65551,38.13338],[-84.65719,38.13396],[-84.65738,38.13402],[-84.65776,38.13416],[-84.6581,38.13428],[-84.65871,38.13449],[-84.65922,38.13467],[-84.66144,38.13545],[-84.66203,38.13565],[-84.66239,38.13578],[-84.66277,38.13592],[-84.66316,38.13606],[-84.6645,38.13654],[-84.66613,38.13735],[-84.66629,38.13743],[-84.66677,38.13768],[-84.66693,38.13775],[-84.66768,38.13807],[-84.66847,38.13815],[-84.66863,38.13816],[-84.66993,38.13823],[-84.67008,38.13824],[-84.67058,38.13827],[-84.67146,38.13832],[-84.67259,38.1385],[-84.67412,38.14017],[-84.67425,38.14026],[-84.67463,38.14056],[-84.67582,38.14173],[-84.67608,38.14193],[-84.67637,38.14211],[-84.67653,38.1422],[-84.67667,38.14228],[-84.67696,38.14246],[-84.67701,38.1425],[-84.67733,38.14274],[-84.67803,38.14331],[-84.67817,38.14341],[-84.67828,38.14351],[-84.67932,38.14436],[-84.67943,38.14445],[-84.67952,38.14453],[-84.67972,38.14469],[-84.6798,38.14474],[-84.6804,38.14519],[-84.68123,38.14555],[-84.68141,38.14562],[-84.68186,38.14578],[-84.68234,38.14595],[-84.68275,38.14609],[-84.6831,38.14622],[-84.6838,38.14647],[-84.68417,38.1466],[-84.68443,38.1467],[-84.68457,38.14675],[-84.68515,38.14695],[-84.6855,38.14708],[-84.68603,38.14728],[-84.6861,38.14731],[-84.68686,38.14757],[-84.6876,38.14784],[-84.68832,38.14809],[-84.68864,38.1482],[-84.68931,38.14844],[-84.68992,38.14866],[-84.6904,38.14883],[-84.69118,38.14912],[-84.69191,38.14939],[-84.69256,38.14957],[-84.69299,38.14952],[-84.69324,38.14946],[-84.69386,38.14926],[-84.69434,38.1491],[-84.69567,38.14875],[-84.69596,38.14864],[-84.69633,38.14849],[-84.69662,38.14837],[-84.69771,38.14792],[-84.69797,38.14782],[-84.69839,38.14768],[-84.69857,38.14772],[-84.69866,38.14777],[-84.69878,38.14782],[-84.69903,38.14795],[-84.69952,38.14818],[-84.69989,38.14835],[-84.70008,38.14844],[-84.70103,38.1489],[-84.70122,38.14899],[-84.70231,38.14951],[-84.70264,38.14967],[-84.70333,38.15001],[-84.70367,38.15017],[-84.70382,38.15025],[-84.70397,38.15032],[-84.70411,38.15039],[-84.70424,38.15045],[-84.70483,38.15062],[-84.7049,38.15058],[-84.70501,38.15041],[-84.70506,38.15031],[-84.70512,38.15018],[-84.70616,38.14818],[-84.70623,38.14802],[-84.70659,38.14735],[-84.70673,38.14708],[-84.70688,38.1468],[-84.70715,38.14627],[-84.70739,38.1458],[-84.70749,38.14562],[-84.70776,38.14547],[-84.70841,38.14566],[-84.70859,38.14572],[-84.70897,38.14584],[-84.70937,38.14597],[-84.7102,38.14624],[-84.71085,38.14645],[-84.71106,38.14652],[-84.71168,38.14673],[-84.71336,38.14727],[-84.71358,38.14734],[-84.714,38.14748],[-84.71483,38.14775],[-84.71504,38.14782],[-84.71545,38.14795],[-84.71604,38.14815],[-84.71663,38.14833],[-84.71857,38.14893],[-84.71879,38.149],[-84.72099,38.14967],[-84.72118,38.14971],[-84.72292,38.15026],[-84.72352,38.15045],[-84.72453,38.15078],[-84.72474,38.15085],[-84.72538,38.15106],[-84.72621,38.15134],[-84.72723,38.15168],[-84.72743,38.15175],[-84.72906,38.15228],[-84.72922,38.15234],[-84.73027,38.15265],[-84.73102,38.15289],[-84.73197,38.15319],[-84.73235,38.15331],[-84.73516,38.1542],[-84.73532,38.15425],[-84.73594,38.15446],[-84.73613,38.1545],[-84.73654,38.15431],[-84.73677,38.1542],[-84.73778,38.15388],[-84.73867,38.15382],[-84.73915,38.15384],[-84.74119,38.154],[-84.74298,38.15412],[-84.74347,38.15416],[-84.74361,38.15416],[-84.74381,38.15418],[-84.74399,38.1542],[-84.74403,38.15399],[-84.74401,38.15396],[-84.74394,38.15386],[-84.74387,38.1538],[-84.74382,38.15359],[-84.74386,38.15352],[-84.74514,38.15143],[-84.74528,38.15119],[-84.74561,38.15065],[-84.74576,38.1504],[-84.74619,38.14966],[-84.74841,38.14606],[-84.74863,38.1457],[-84.74904,38.14505],[-84.7495,38.14431],[-84.75054,38.14262],[-84.75076,38.14226],[-84.75084,38.14215],[-84.75111,38.14172],[-84.7515,38.14186],[-84.75365,38.14264],[-84.75491,38.14311],[-84.75521,38.14322],[-84.75727,38.14423],[-84.75785,38.14456],[-84.75905,38.14547],[-84.75957,38.14592],[-84.7598,38.14611],[-84.75994,38.14622],[-84.76013,38.14603],[-84.76024,38.14586],[-84.76118,38.14415],[-84.76141,38.14375],[-84.76297,38.14076],[-84.76324,38.14023],[-84.76363,38.13948],[-84.76381,38.13913],[-84.76528,38.13629],[-84.7661,38.13469],[-84.76676,38.13344],[-84.76747,38.13209],[-84.77152,38.12472],[-84.77197,38.12395],[-84.7726,38.12302],[-84.77436,38.12154],[-84.77516,38.12109],[-84.77557,38.12102],[-84.77576,38.12103],[-84.77638,38.12107],[-84.77646,38.12108],[-84.77665,38.12112],[-84.77778,38.12119],[-84.77808,38.12106],[-84.77839,38.11848],[-84.7786,38.11819],[-84.77903,38.11796],[-84.78017,38.11745],[-84.78168,38.11677],[-84.78232,38.11645],[-84.7828,38.11604],[-84.78474,38.1143],[-84.78697,38.11236],[-84.78708,38.11232],[-84.78719,38.1123],[-84.78738,38.11226],[-84.7874,38.11225],[-84.78744,38.11224],[-84.78779,38.1119],[-84.78786,38.11169],[-84.78966,38.10603],[-84.79218,38.10172],[-84.79265,38.1006],[-84.79318,38.0987],[-84.79315,38.09735],[-84.79319,38.09725],[-84.79333,38.09695],[-84.79334,38.09691],[-84.79338,38.09681],[-84.79231,38.09582],[-84.79029,38.09329],[-84.78998,38.09312],[-84.78989,38.09309],[-84.7896,38.09304],[-84.78944,38.09303],[-84.78837,38.09297],[-84.78737,38.09269],[-84.78619,38.0923],[-84.78603,38.09224],[-84.78577,38.09211],[-84.78553,38.09196],[-84.78457,38.09052],[-84.7841,38.08966],[-84.78388,38.08935],[-84.78329,38.08893],[-84.78315,38.08887],[-84.78268,38.08877],[-84.78208,38.08871],[-84.78145,38.08852],[-84.77948,38.08781],[-84.77932,38.08773],[-84.77893,38.08751],[-84.77862,38.08728],[-84.77736,38.08619],[-84.77621,38.08529],[-84.77486,38.08491],[-84.77471,38.08487],[-84.77425,38.08459],[-84.77371,38.08403],[-84.77316,38.08349],[-84.77207,38.08244],[-84.77151,38.08203],[-84.77112,38.0818],[-84.77095,38.08171],[-84.77072,38.08158],[-84.77043,38.08144],[-84.77028,38.08139],[-84.768,38.08102],[-84.76745,38.08079],[-84.76734,38.08073],[-84.76672,38.08023],[-84.76465,38.07811],[-84.76408,38.07753],[-84.76208,38.0755],[-84.76093,38.07462],[-84.76067,38.07442],[-84.75891,38.07309],[-84.75834,38.07264],[-84.75636,38.07113],[-84.75586,38.07074],[-84.75249,38.06819],[-84.75173,38.0676],[-84.75107,38.06711],[-84.7505,38.06667],[-84.74983,38.06615],[-84.74829,38.06486],[-84.74799,38.0646],[-84.74641,38.06365],[-84.7409,38.0609],[-84.74051,38.06072],[-84.74033,38.06062],[-84.74005,38.06049],[-84.73941,38.06019],[-84.73886,38.05992],[-84.73705,38.059],[-84.734,38.05748],[-84.73359,38.05728],[-84.73326,38.05714],[-84.73308,38.05708],[-84.73285,38.05701],[-84.7321,38.05678],[-84.73105,38.05647],[-84.73099,38.05645],[-84.73042,38.0563],[-84.73009,38.05624],[-84.72958,38.05625],[-84.72911,38.05629],[-84.72846,38.0563],[-84.72561,38.0563],[-84.72464,38.0563],[-84.72448,38.05641],[-84.72423,38.05658],[-84.72262,38.05771],[-84.72205,38.05812],[-84.72173,38.05836],[-84.72162,38.05843],[-84.72051,38.05919],[-84.72031,38.05933],[-84.72002,38.05952],[-84.71987,38.05962],[-84.71955,38.05984],[-84.71908,38.06018],[-84.71817,38.06082],[-84.71734,38.06008],[-84.71479,38.05902],[-84.71463,38.05896],[-84.71288,38.05824],[-84.71242,38.05788],[-84.71233,38.05748],[-84.71246,38.05678],[-84.71259,38.05621],[-84.71287,38.05574],[-84.71295,38.05566],[-84.7144,38.05477],[-84.71465,38.05462],[-84.71519,38.05431],[-84.71448,38.05353],[-84.71421,38.05318]]}},
{"type":"Feature","properties":{"name":"Chinoe-Old Richmond-Athens-Cleveland-Not to Winchester-Home"},"geometry":{"type":"LineString","coordinates":[[-84.48075,37.99679],[-84.4812,37.99693],[-84.48221,37.9947],[-84.48204,37.99315],[-84.48181,37.99125],[-84.48194,37.99047],[-84.48286,37.98887],[-84.48562,37.98653],[-84.48532,37.9863],[-84.4851,37.98613],[-84.48496,37.98604],[-84.4853,37.98531],[-84.48527,37.98474],[-84.48339,37.9817],[-84.48281,37.98111],[-84.48112,37.98028],[-84.48007,37.9799],[-84.47866,37.97967],[-84.47745,37.97984],[-84.47698,37.97903],[-84.47658,37.97791],[-84.4766,37.97684],[-84.47694,37.9759],[-84.47769,37.9748],[-84.47734,37.97465],[-84.4769,37.97446],[-84.47598,37.97403],[-84.47372,37.97294],[-84.47284,37.97216],[-84.4725,37.97187],[-84.47233,37.97171],[-84.47204,37.9711],[-84.47205,37.96943],[-84.47149,37.96846],[-84.46961,37.96715],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.41219,37.92652],[-84.41213,37.92662],[-84.41152,37.92773],[-84.40837,37.93335],[-84.40573,37.93862],[-84.40546,37.93916],[-84.40536,37.93932],[-84.40502,37.93908],[-84.40096,37.93652],[-84.38446,37.9318],[-84.38105,37.93],[-84.37961,37.92923],[-84.37281,37.92535],[-84.36921,37.92427],[-84.36892,37.92417],[-84.36749,37.92573],[-84.36619,37.92718],[-84.36584,37.92959],[-84.36566,37.93005],[-84.36369,37.93158],[-84.36326,37.93218],[-84.3634,37.93331],[-84.36392,37.93499],[-84.36417,37.93891],[-84.3646,37.94172],[-84.36444,37.9426],[-84.3644,37.94277],[-84.36463,37.94797],[-84.36466,37.94835],[-84.36483,37.94876],[-84.36482,37.94889],[-84.36443,37.94937],[-84.36388,37.95001],[-84.36331,37.95073],[-84.36394,37.95107],[-84.36398,37.95121],[-84.36398,37.95125],[-84.36399,37.9515],[-84.364,37.95231],[-84.36404,37.95409],[-84.36406,37.95545],[-84.36407,37.95666],[-84.36453,37.96485],[-84.36428,37.96525],[-84.36297,37.96641],[-84.3626,37.96721],[-84.36253,37.9682],[-84.36293,37.96961],[-84.36488,37.97301],[-84.365,37.97328],[-84.36513,37.97383],[-84.36477,37.97524],[-84.36472,37.9765],[-84.36482,37.98285],[-84.3635,37.98638],[-84.36743,37.98995],[-84.36855,37.99066],[-84.3736,37.99142],[-84.375,37.9921],[-84.37549,37.99206],[-84.37805,37.99137],[-84.37881,37.99128],[-84.38046,37.99166],[-84.38136,37.99221],[-84.38225,37.99285],[-84.38277,37.99315],[-84.38508,37.99397],[-84.38707,37.99455],[-84.38738,37.99463],[-84.39337,37.99536],[-84.39655,37.99598],[-84.39711,37.99609],[-84.39792,37.99625],[-84.39963,37.9966],[-84.39974,37.99662],[-84.39979,37.99657],[-84.40007,37.99571],[-84.40052,37.99504],[-84.40086,37.99476],[-84.40181,37.99386],[-84.40218,37.99396],[-84.40259,37.994],[-84.40268,37.994],[-84.40326,37.99374],[-84.40476,37.99255],[-84.40514,37.99238],[-84.40697,37.99227],[-84.40872,37.99079],[-84.40914,37.9904],[-84.41033,37.98922],[-84.41243,37.98646],[-84.41246,37.98642],[-84.41246,37.98607],[-84.41202,37.98558],[-84.41212,37.98532],[-84.41291,37.98475],[-84.41476,37.98345],[-84.41521,37.98314],[-84.41602,37.98378],[-84.41611,37.98382],[-84.41699,37.98407],[-84.41765,37.98407],[-84.41847,37.98383],[-84.41913,37.98341],[-84.41936,37.98325],[-84.41968,37.98306],[-84.41974,37.98303],[-84.42228,37.98249],[-84.42239,37.98243],[-84.42266,37.98227],[-84.42271,37.98223],[-84.42285,37.98206],[-84.42297,37.98191],[-84.42298,37.98179],[-84.42334,37.98143],[-84.4237,37.9813],[-84.42482,37.98118],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46961,37.96715],[-84.47149,37.96846],[-84.47205,37.96943],[-84.47204,37.9711],[-84.47233,37.97171],[-84.4725,37.97187],[-84.47284,37.97216],[-84.47372,37.97294],[-84.47598,37.97403],[-84.4769,37.97446],[-84.47734,37.97465],[-84.47769,37.9748],[-84.47694,37.9759],[-84.4766,37.97684],[-84.47658,37.97791],[-84.47698,37.97903],[-84.47745,37.97984],[-84.47866,37.97967],[-84.48007,37.9799],[-84.48112,37.98028],[-84.48281,37.98111],[-84.48339,37.9817],[-84.48527,37.98474],[-84.4853,37.98531],[-84.48496,37.98604],[-84.4851,37.98613],[-84.48532,37.9863],[-84.48562,37.98653],[-84.48286,37.98887],[-84.48194,37.99047],[-84.48181,37.99125],[-84.48204,37.99315],[-84.48221,37.9947],[-84.4812,37.99693],[-84.48089,37.99684]]}},
{"type":"Feature","properties":{"name":"Weisenberger/Bethel Lollipop"},"geometry":{"type":"LineString","coordinates":[[-84.68465,38.14975],[-84.68441,38.14966],[-84.68391,38.14948],[-84.68304,38.14914],[-84.68312,38.14898],[-84.68338,38.14854],[-84.68356,38.14822],[-84.68372,38.14793],[-84.68389,38.14763],[-84.68403,38.14739],[-84.68409,38.14728],[-84.68443,38.1467],[-84.68417,38.1466],[-84.6838,38.14647],[-84.6831,38.14622],[-84.68275,38.14609],[-84.68234,38.14595],[-84.68186,38.14578],[-84.68141,38.14562],[-84.68123,38.14555],[-84.6804,38.14519],[-84.6798,38.14474],[-84.67972,38.14469],[-84.67952,38.14453],[-84.67943,38.14445],[-84.67932,38.14436],[-84.67828,38.14351],[-84.67817,38.14341],[-84.67803,38.14331],[-84.67733,38.14274],[-84.67701,38.1425],[-84.67696,38.14246],[-84.67667,38.14228],[-84.67653,38.1422],[-84.67637,38.14211],[-84.67608,38.14193],[-84.67582,38.14173],[-84.67463,38.14056],[-84.67425,38.14026],[-84.67412,38.14017],[-84.67259,38.1385],[-84.67146,38.13832],[-84.67058,38.13827],[-84.67008,38.13824],[-84.66993,38.13823],[-84.66863,38.13816],[-84.66847,38.13815],[-84.66768,38.13807],[-84.66693,38.13775],[-84.66677,38.13768],[-84.66629,38.13743],[-84.66613,38.13735],[-84.6645,38.13654],[-84.66316,38.13606],[-84.66277,38.13592],[-84.66239,38.13578],[-84.66203,38.13565],[-84.66144,38.13545],[-84.65922,38.13467],[-84.65871,38.13449],[-84.6581,38.13428],[-84.65776,38.13416],[-84.65738,38.13402],[-84.65719,38.13396],[-84.65551,38.13338],[-84.65532,38.13331],[-84.65512,38.13324],[-84.65296,38.13251],[-84.6522,38.13225],[-84.64904,38.13111],[-84.64891,38.13105],[-84.64878,38.13098],[-84.64866,38.13091],[-84.64811,38.13065],[-84.64797,38.1306],[-84.64697,38.13026],[-84.64683,38.13021],[-84.64559,38.12979],[-84.64545,38.12974],[-84.64429,38.1293],[-84.64412,38.12925],[-84.64297,38.12918],[-84.64224,38.12926],[-84.64116,38.12931],[-84.64036,38.1292],[-84.64009,38.12912],[-84.63949,38.12885],[-84.63876,38.12823],[-84.63868,38.12816],[-84.63852,38.12802],[-84.63814,38.12793],[-84.63791,38.12788],[-84.63768,38.12783],[-84.63752,38.1278],[-84.63718,38.12781],[-84.63697,38.12802],[-84.63647,38.12875],[-84.63639,38.12896],[-84.6356,38.13135],[-84.63557,38.1315],[-84.63482,38.13366],[-84.63476,38.13376],[-84.63453,38.13427],[-84.63369,38.13514],[-84.63361,38.13521],[-84.63355,38.13527],[-84.63324,38.13556],[-84.63262,38.13524],[-84.63211,38.1355],[-84.62957,38.13674],[-84.62872,38.13717],[-84.62805,38.13755],[-84.62673,38.13898],[-84.62606,38.13973],[-84.62558,38.14025],[-84.62534,38.14051],[-84.6251,38.14077],[-84.62485,38.14104],[-84.62436,38.14156],[-84.62389,38.14206],[-84.62382,38.14213],[-84.62306,38.14295],[-84.6228,38.14324],[-84.62265,38.1434],[-84.62249,38.14357],[-84.62202,38.14407],[-84.62118,38.14496],[-84.62065,38.14553],[-84.61979,38.14644],[-84.61904,38.14723],[-84.61835,38.14796],[-84.61796,38.14837],[-84.61727,38.1491],[-84.61697,38.14949],[-84.61689,38.14961],[-84.61677,38.14981],[-84.61673,38.14989],[-84.61663,38.14985],[-84.61657,38.14984],[-84.61615,38.14978],[-84.61609,38.14977],[-84.61603,38.14975],[-84.61595,38.14972],[-84.61587,38.14969],[-84.6157,38.1496],[-84.61226,38.14777],[-84.61031,38.14672],[-84.60853,38.14577],[-84.60732,38.14513],[-84.60617,38.14453],[-84.60539,38.14411],[-84.60437,38.14356],[-84.60373,38.14322],[-84.60288,38.14277],[-84.60212,38.14237],[-84.60166,38.14213],[-84.60092,38.14173],[-84.59948,38.14097],[-84.599,38.14072],[-84.59856,38.1405],[-84.59672,38.1395],[-84.59554,38.13887],[-84.59513,38.13867],[-84.59416,38.13816],[-84.59168,38.13681],[-84.59144,38.13668],[-84.59076,38.1363],[-84.58982,38.13579],[-84.58904,38.13538],[-84.58722,38.1344],[-84.58569,38.1336],[-84.5851,38.13327],[-84.58466,38.13302],[-84.58441,38.13287],[-84.58447,38.13272],[-84.58451,38.13246],[-84.58452,38.13222],[-84.58462,38.13106],[-84.58466,38.13066],[-84.58498,38.12929],[-84.58518,38.12841],[-84.5857,38.12631],[-84.58491,38.12528],[-84.58408,38.12424],[-84.58363,38.12362],[-84.58177,38.12109],[-84.57905,38.11741],[-84.5787,38.11692],[-84.57823,38.1163],[-84.57805,38.11652],[-84.57776,38.11691],[-84.57726,38.11751],[-84.57624,38.11871],[-84.57529,38.11983],[-84.5748,38.1204],[-84.57394,38.12143],[-84.57329,38.12219],[-84.573,38.12311],[-84.57241,38.12494],[-84.57229,38.12534],[-84.572,38.12636],[-84.5718,38.12711],[-84.57176,38.12729],[-84.57235,38.12816],[-84.57247,38.12925],[-84.57256,38.13014],[-84.57257,38.13035],[-84.57255,38.13043],[-84.57252,38.1305],[-84.57216,38.13112],[-84.57183,38.13165],[-84.57129,38.13255],[-84.57089,38.13327],[-84.57107,38.13462],[-84.56995,38.13553],[-84.56928,38.13605],[-84.56871,38.1365],[-84.56884,38.1366],[-84.56898,38.13673],[-84.56905,38.13685],[-84.56909,38.13691],[-84.56921,38.13734],[-84.56923,38.13752],[-84.56938,38.13827],[-84.56977,38.13874],[-84.57099,38.13965],[-84.57186,38.14031],[-84.5736,38.14162],[-84.57404,38.14183],[-84.57475,38.1418],[-84.57541,38.14123],[-84.5773,38.13899],[-84.57889,38.13711],[-84.57959,38.13627],[-84.57996,38.13585],[-84.58108,38.13448],[-84.58176,38.13368],[-84.58238,38.13295],[-84.58276,38.1325],[-84.58296,38.13231],[-84.58322,38.13228],[-84.58328,38.1323],[-84.58348,38.13238],[-84.58373,38.13251],[-84.58441,38.13287],[-84.58466,38.13302],[-84.5851,38.13327],[-84.58569,38.1336],[-84.58722,38.1344],[-84.58904,38.13538],[-84.58982,38.13579],[-84.59076,38.1363],[-84.59144,38.13668],[-84.59168,38.13681],[-84.59416,38.13816],[-84.59513,38.13867],[-84.59554,38.13887],[-84.59672,38.1395],[-84.59856,38.1405],[-84.599,38.14072],[-84.59948,38.14097],[-84.60092,38.14173],[-84.60166,38.14213],[-84.60212,38.14237],[-84.60288,38.14277],[-84.60373,38.14322],[-84.60437,38.14356],[-84.60539,38.14411],[-84.60617,38.14453],[-84.60732,38.14513],[-84.60853,38.14577],[-84.61031,38.14672],[-84.61226,38.14777],[-84.6157,38.1496],[-84.61587,38.14969],[-84.61595,38.14972],[-84.61603,38.14975],[-84.61609,38.14977],[-84.61615,38.14978],[-84.61657,38.14984],[-84.61663,38.14985],[-84.61673,38.14989],[-84.61677,38.14981],[-84.61689,38.14961],[-84.61697,38.14949],[-84.61727,38.1491],[-84.61796,38.14837],[-84.61835,38.14796],[-84.61904,38.14723],[-84.61979,38.14644],[-84.62065,38.14553],[-84.62118,38.14496],[-84.62202,38.14407],[-84.62249,38.14357],[-84.62265,38.1434],[-84.6228,38.14324],[-84.62306,38.14295],[-84.62382,38.14213],[-84.62389,38.14206],[-84.62436,38.14156],[-84.62485,38.14104],[-84.6251,38.14077],[-84.62534,38.14051],[-84.62558,38.14025],[-84.62606,38.13973],[-84.62673,38.13898],[-84.62805,38.13755],[-84.62872,38.13717],[-84.62957,38.13674],[-84.63211,38.1355],[-84.63262,38.13524],[-84.63324,38.13556],[-84.63355,38.13527],[-84.63361,38.13521],[-84.63369,38.13514],[-84.63453,38.13427],[-84.63476,38.13376],[-84.63482,38.13366],[-84.63557,38.1315],[-84.6356,38.13135],[-84.63639,38.12896],[-84.63647,38.12875],[-84.63697,38.12802],[-84.63718,38.12781],[-84.63752,38.1278],[-84.63768,38.12783],[-84.63791,38.12788],[-84.63814,38.12793],[-84.63852,38.12802],[-84.63868,38.12816],[-84.63876,38.12823],[-84.63949,38.12885],[-84.64009,38.12912],[-84.64036,38.1292],[-84.64116,38.12931],[-84.64224,38.12926],[-84.64297,38.12918],[-84.64412,38.12925],[-84.64429,38.1293],[-84.64545,38.12974],[-84.64559,38.12979],[-84.64683,38.13021],[-84.64697,38.13026],[-84.64797,38.1306],[-84.64811,38.13065],[-84.64866,38.13091],[-84.64878,38.13098],[-84.64891,38.13105],[-84.64904,38.13111],[-84.6522,38.13225],[-84.65296,38.13251],[-84.65512,38.13324],[-84.65532,38.13331],[-84.65551,38.13338],[-84.65719,38.13396],[-84.65738,38.13402],[-84.65776,38.13416],[-84.6581,38.13428],[-84.65871,38.13449],[-84.65922,38.13467],[-84.66144,38.13545],[-84.66203,38.13565],[-84.66239,38.13578],[-84.66277,38.13592],[-84.66316,38.13606],[-84.6645,38.13654],[-84.66613,38.13735],[-84.66629,38.13743],[-84.66677,38.13768],[-84.66693,38.13775],[-84.66768,38.13807],[-84.66847,38.13815],[-84.66863,38.13816],[-84.66993,38.13823],[-84.67008,38.13824],[-84.67058,38.13827],[-84.67146,38.13832],[-84.67259,38.1385],[-84.67412,38.14017],[-84.67425,38.14026],[-84.67463,38.14056],[-84.67582,38.14173],[-84.67608,38.14193],[-84.67637,38.14211],[-84.67653,38.1422],[-84.67667,38.14228],[-84.67696,38.14246],[-84.67701,38.1425],[-84.67733,38.14274],[-84.67803,38.14331],[-84.67817,38.14341],[-84.67828,38.14351],[-84.67932,38.14436],[-84.67943,38.14445],[-84.67952,38.14453],[-84.67972,38.14469],[-84.6798,38.14474],[-84.6804,38.14519],[-84.68123,38.14555],[-84.68141,38.14562],[-84.68186,38.14578],[-84.68234,38.14595],[-84.68275,38.14609],[-84.6831,38.14622],[-84.6838,38.14647],[-84.68417,38.1466],[-84.68443,38.1467],[-84.68409,38.14728],[-84.68403,38.14739],[-84.68389,38.14763],[-84.68372,38.14793],[-84.68356,38.14822],[-84.68338,38.14854],[-84.68312,38.14898],[-84.68304,38.14914],[-84.68391,38.14948],[-84.68441,38.14966],[-84.68448,38.14969]]}},
{"type":"Feature","properties":{"name":"Test RRR Starting in Stanton 96 Mile"},"geometry":{"type":"LineString","coordinates":[[-83.87223,37.84878],[-83.87217,37.84874],[-83.87203,37.84861],[-83.87109,37.84855],[-83.87131,37.84643],[-83.87108,37.84653],[-83.87076,37.84664],[-83.87055,37.84669],[-83.86907,37.84675],[-83.86165,37.84576],[-83.85847,37.8456],[-83.85349,37.84529],[-83.85168,37.84506],[-83.84488,37.84359],[-83.84358,37.8434],[-83.83706,37.84421],[-83.83178,37.8457],[-83.8295,37.84623],[-83.82881,37.84629],[-83.82794,37.84614],[-83.8234,37.84452],[-83.82164,37.84417],[-83.82042,37.8442],[-83.81856,37.84476],[-83.81731,37.84469],[-83.81667,37.84444],[-83.81349,37.84226],[-83.81281,37.84149],[-83.81195,37.84009],[-83.81187,37.83928],[-83.81204,37.83807],[-83.81317,37.83619],[-83.81337,37.83542],[-83.81341,37.83349],[-83.81311,37.83294],[-83.81279,37.83267],[-83.81022,37.83143],[-83.80949,37.8312],[-83.80454,37.83092],[-83.79492,37.82723],[-83.79386,37.82699],[-83.78911,37.82745],[-83.78835,37.82776],[-83.78713,37.82851],[-83.78669,37.82908],[-83.78509,37.83206],[-83.78495,37.83273],[-83.78504,37.83402],[-83.7848,37.83451],[-83.78233,37.83625],[-83.78088,37.83855],[-83.77715,37.84112],[-83.77593,37.84169],[-83.77438,37.8419],[-83.77383,37.84187],[-83.77301,37.84164],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71803,37.81531],[-83.71653,37.81549],[-83.71641,37.81554],[-83.71483,37.81646],[-83.71354,37.81663],[-83.71192,37.81634],[-83.71041,37.81565],[-83.70919,37.81576],[-83.70832,37.8157],[-83.7067,37.81488],[-83.70526,37.8144],[-83.7038,37.81413],[-83.70195,37.81432],[-83.70127,37.81415],[-83.70063,37.81391],[-83.69962,37.81368],[-83.69846,37.81381],[-83.69774,37.81366],[-83.69672,37.81367],[-83.69539,37.81422],[-83.69452,37.81496],[-83.69391,37.81527],[-83.69149,37.81559],[-83.68871,37.81651],[-83.68676,37.81681],[-83.68447,37.81659],[-83.68374,37.81661],[-83.68325,37.81667],[-83.68201,37.81715],[-83.6793,37.81743],[-83.67853,37.81729],[-83.67763,37.81748],[-83.67724,37.81733],[-83.67719,37.81666],[-83.67669,37.81605],[-83.67637,37.81585],[-83.67611,37.81586],[-83.67541,37.81619],[-83.67465,37.81627],[-83.67428,37.81696],[-83.67382,37.81664],[-83.67345,37.81662],[-83.67136,37.81727],[-83.66967,37.81847],[-83.66787,37.81911],[-83.66644,37.8205],[-83.66463,37.82173],[-83.6644,37.82193],[-83.66238,37.82388],[-83.66129,37.82614],[-83.66144,37.82725],[-83.66242,37.82934],[-83.66237,37.82984],[-83.6618,37.83101],[-83.66172,37.83229],[-83.6615,37.83269],[-83.66044,37.83293],[-83.65977,37.83374],[-83.65957,37.8338],[-83.65746,37.83327],[-83.65594,37.83342],[-83.65528,37.83372],[-83.65371,37.83483],[-83.65226,37.83546],[-83.6517,37.83559],[-83.64793,37.83478],[-83.64717,37.83442],[-83.64619,37.83232],[-83.64568,37.83142],[-83.64497,37.83015],[-83.64441,37.82868],[-83.64367,37.8273],[-83.64336,37.82702],[-83.64231,37.82676],[-83.64063,37.82666],[-83.63589,37.82688],[-83.63439,37.82708],[-83.6323,37.82679],[-83.63155,37.82674],[-83.63101,37.82675],[-83.6305,37.8269],[-83.62995,37.82754],[-83.62969,37.82761],[-83.62938,37.82753],[-83.62922,37.82717],[-83.62927,37.82584],[-83.62893,37.82526],[-83.62778,37.82402],[-83.62743,37.82384],[-83.62673,37.82401],[-83.62588,37.82479],[-83.62546,37.82662],[-83.62543,37.82717],[-83.62495,37.82876],[-83.62457,37.8294],[-83.62403,37.82977],[-83.62361,37.83027],[-83.62284,37.83076],[-83.62251,37.8313],[-83.62238,37.83158],[-83.62193,37.83265],[-83.62185,37.83298],[-83.6218,37.83421],[-83.62143,37.83471],[-83.62095,37.83501],[-83.61853,37.8358],[-83.61778,37.83593],[-83.61448,37.83609],[-83.61341,37.83587],[-83.61236,37.8353],[-83.61162,37.83528],[-83.61087,37.83561],[-83.60967,37.83669],[-83.60822,37.83594],[-83.60821,37.83572],[-83.60721,37.83458],[-83.60715,37.83442],[-83.60724,37.83322],[-83.60697,37.83306],[-83.60498,37.83257],[-83.60462,37.83179],[-83.60477,37.83114],[-83.6057,37.83],[-83.6057,37.82983],[-83.60532,37.82982],[-83.60363,37.83037],[-83.60032,37.8308],[-83.59967,37.8304],[-83.59901,37.82957],[-83.59848,37.82817],[-83.59843,37.82769],[-83.59728,37.82605],[-83.59744,37.82439],[-83.59774,37.82327],[-83.59728,37.82202],[-83.59593,37.8208],[-83.5952,37.82059],[-83.59342,37.81977],[-83.59161,37.81958],[-83.59032,37.81898],[-83.58994,37.81901],[-83.58788,37.8199],[-83.58759,37.82018],[-83.58731,37.82087],[-83.58703,37.82335],[-83.5865,37.82536],[-83.58599,37.82564],[-83.5853,37.82572],[-83.5838,37.82543],[-83.58313,37.82523],[-83.58166,37.82489],[-83.58124,37.82431],[-83.58134,37.82266],[-83.58248,37.8214],[-83.58242,37.82113],[-83.58198,37.82079],[-83.58129,37.82066],[-83.58072,37.82079],[-83.57892,37.82083],[-83.57612,37.8211],[-83.57545,37.82097],[-83.57494,37.82046],[-83.57444,37.81935],[-83.57452,37.81899],[-83.57637,37.81806],[-83.57757,37.81772],[-83.57856,37.81712],[-83.57813,37.81617],[-83.57813,37.81597],[-83.57841,37.81568],[-83.57857,37.81558],[-83.58003,37.81505],[-83.58144,37.81514],[-83.58181,37.815],[-83.58273,37.81381],[-83.58315,37.81227],[-83.58342,37.81199],[-83.5846,37.81194],[-83.58525,37.81146],[-83.58618,37.81153],[-83.58779,37.81129],[-83.58802,37.81119],[-83.58847,37.81065],[-83.58904,37.81042],[-83.58958,37.80951],[-83.58988,37.80951],[-83.59017,37.80998],[-83.58995,37.81099],[-83.5902,37.81155],[-83.59021,37.81204],[-83.58994,37.81254],[-83.58946,37.81278],[-83.58683,37.81319],[-83.58653,37.81338],[-83.58616,37.81406],[-83.58581,37.81428],[-83.58475,37.81464],[-83.58446,37.81487],[-83.58421,37.81561],[-83.58451,37.81627],[-83.58421,37.81561],[-83.58446,37.81487],[-83.58475,37.81464],[-83.58581,37.81428],[-83.58616,37.81406],[-83.58653,37.81338],[-83.58683,37.81319],[-83.58946,37.81278],[-83.58994,37.81254],[-83.59021,37.81204],[-83.5902,37.81155],[-83.58995,37.81099],[-83.59017,37.80998],[-83.59026,37.80968],[-83.58998,37.80811],[-83.59028,37.80681],[-83.59008,37.80664],[-83.58872,37.80645],[-83.58846,37.80626],[-83.58852,37.80596],[-83.58937,37.80511],[-83.59016,37.80438],[-83.59042,37.80392],[-83.59084,37.80247],[-83.59003,37.80097],[-83.59002,37.80072],[-83.59094,37.80001],[-83.59095,37.79922],[-83.59136,37.79775],[-83.59211,37.79718],[-83.593,37.79583],[-83.59323,37.79521],[-83.59295,37.79459],[-83.59129,37.79384],[-83.59079,37.79333],[-83.59078,37.79303],[-83.59123,37.79231],[-83.59128,37.79195],[-83.59079,37.79104],[-83.5908,37.79053],[-83.59131,37.79014],[-83.59169,37.79001],[-83.59363,37.79032],[-83.59447,37.79023],[-83.59485,37.79047],[-83.59528,37.79144],[-83.59562,37.79158],[-83.596,37.79145],[-83.59663,37.79088],[-83.59774,37.79073],[-83.59823,37.79047],[-83.59844,37.79025],[-83.59865,37.78996],[-83.59867,37.78921],[-83.59951,37.78835],[-83.5999,37.78754],[-83.60064,37.78749],[-83.60189,37.78776],[-83.60231,37.78768],[-83.60261,37.78743],[-83.60302,37.78675],[-83.60377,37.78643],[-83.60484,37.78574],[-83.60493,37.78545],[-83.60466,37.78513],[-83.60351,37.78506],[-83.60299,37.78481],[-83.60211,37.78473],[-83.60185,37.78448],[-83.6019,37.78411],[-83.60331,37.78269],[-83.60401,37.78243],[-83.60463,37.78195],[-83.6045,37.781],[-83.60493,37.78034],[-83.60505,37.77968],[-83.60524,37.77938],[-83.60554,37.7792],[-83.60649,37.77907],[-83.60696,37.77907],[-83.60751,37.77923],[-83.6079,37.77916],[-83.60854,37.77875],[-83.60875,37.77795],[-83.60879,37.77774],[-83.60883,37.77688],[-83.60774,37.77552],[-83.60771,37.77475],[-83.60887,37.7738],[-83.61032,37.77332],[-83.611,37.77288],[-83.6113,37.77248],[-83.61148,37.7719],[-83.60987,37.77011],[-83.60995,37.76875],[-83.60902,37.76778],[-83.60896,37.76737],[-83.60959,37.76606],[-83.61062,37.7645],[-83.61128,37.764],[-83.61231,37.76375],[-83.6129,37.76363],[-83.61306,37.76359],[-83.61286,37.76334],[-83.61215,37.76263],[-83.61034,37.76164],[-83.61003,37.76133],[-83.60996,37.76093],[-83.6106,37.75886],[-83.61045,37.7581],[-83.61048,37.7569],[-83.6097,37.75463],[-83.60877,37.75297],[-83.60977,37.75259],[-83.61131,37.75232],[-83.61477,37.75249],[-83.61914,37.75167],[-83.61969,37.75128],[-83.62235,37.7487],[-83.62363,37.74731],[-83.62401,37.74722],[-83.62517,37.7475],[-83.62659,37.74725],[-83.62805,37.74654],[-83.62909,37.74512],[-83.6295,37.74478],[-83.6303,37.7446],[-83.63172,37.74479],[-83.63304,37.74423],[-83.63404,37.74382],[-83.63567,37.74404],[-83.64006,37.74381],[-83.64136,37.7437],[-83.64192,37.74352],[-83.64341,37.74253],[-83.64394,37.74195],[-83.64585,37.73589],[-83.64593,37.73529],[-83.64567,37.7327],[-83.64572,37.73162],[-83.64593,37.73089],[-83.64655,37.72972],[-83.64661,37.72847],[-83.64647,37.72748],[-83.64682,37.72682],[-83.64668,37.72547],[-83.64621,37.72515],[-83.64573,37.72506],[-83.64462,37.72549],[-83.64403,37.72502],[-83.64321,37.72472],[-83.64198,37.72399],[-83.64162,37.72346],[-83.64161,37.72127],[-83.64089,37.71997],[-83.64024,37.71934],[-83.63889,37.71891],[-83.63784,37.71794],[-83.63796,37.71683],[-83.63744,37.71602],[-83.63797,37.71544],[-83.63868,37.71506],[-83.63915,37.71421],[-83.63953,37.71384],[-83.63961,37.71168],[-83.63907,37.71088],[-83.6386,37.71055],[-83.63828,37.71046],[-83.63733,37.71054],[-83.63682,37.71028],[-83.6368,37.70994],[-83.6372,37.70888],[-83.63793,37.70787],[-83.6372,37.70712],[-83.63664,37.706],[-83.63689,37.70562],[-83.63745,37.70527],[-83.6378,37.70516],[-83.63856,37.7052],[-83.63887,37.70507],[-83.63906,37.70487],[-83.63913,37.70447],[-83.63831,37.70334],[-83.63789,37.70167],[-83.6376,37.70111],[-83.63791,37.69991],[-83.63775,37.69941],[-83.63716,37.6991],[-83.63546,37.69888],[-83.63508,37.69872],[-83.63419,37.69777],[-83.63319,37.69732],[-83.63237,37.69642],[-83.63231,37.69601],[-83.63248,37.69528],[-83.63383,37.6941],[-83.63468,37.69267],[-83.63461,37.69239],[-83.63412,37.69202],[-83.634,37.69174],[-83.63396,37.68915],[-83.63441,37.68693],[-83.63327,37.68575],[-83.63185,37.68522],[-83.63107,37.68431],[-83.63,37.68354],[-83.62997,37.68321],[-83.63066,37.6818],[-83.63053,37.68138],[-83.62961,37.68102],[-83.62817,37.68085],[-83.62778,37.68066],[-83.62756,37.67954],[-83.62849,37.679],[-83.6289,37.67851],[-83.629,37.67812],[-83.62824,37.67687],[-83.62837,37.67614],[-83.62826,37.67576],[-83.62676,37.67421],[-83.62455,37.67314],[-83.62432,37.67286],[-83.62439,37.67255],[-83.62542,37.67195],[-83.62589,37.67114],[-83.62585,37.67085],[-83.6253,37.67044],[-83.62519,37.67015],[-83.62656,37.66846],[-83.62825,37.66735],[-83.62964,37.66562],[-83.63216,37.66204],[-83.63261,37.6618],[-83.63567,37.66123],[-83.63655,37.66095],[-83.63658,37.66075],[-83.63613,37.66039],[-83.63605,37.66005],[-83.63635,37.65922],[-83.63652,37.6578],[-83.63735,37.65661],[-83.63723,37.65645],[-83.63679,37.65633],[-83.63573,37.6563],[-83.63485,37.65576],[-83.63475,37.65419],[-83.63384,37.65323],[-83.63431,37.65251],[-83.63426,37.65088],[-83.63459,37.64994],[-83.63455,37.64913],[-83.63472,37.64895],[-83.63584,37.64847],[-83.63669,37.6472],[-83.6364,37.64572],[-83.63594,37.64448],[-83.63607,37.64388],[-83.63602,37.64311],[-83.63636,37.64257],[-83.6368,37.64135],[-83.63705,37.63951],[-83.63691,37.63893],[-83.63642,37.63851],[-83.63593,37.63841],[-83.63515,37.63851],[-83.63476,37.63835],[-83.63446,37.63782],[-83.6344,37.63721],[-83.63481,37.63586],[-83.63557,37.63524],[-83.63642,37.63387],[-83.63757,37.6329],[-83.6383,37.63068],[-83.63805,37.62995],[-83.63637,37.62931],[-83.63528,37.6287],[-83.63511,37.62847],[-83.63518,37.62829],[-83.63604,37.62784],[-83.63727,37.62734],[-83.63775,37.62519],[-83.63757,37.6245],[-83.6367,37.62386],[-83.63613,37.62313],[-83.63587,37.62123],[-83.63667,37.61988],[-83.63669,37.61887],[-83.63738,37.61743],[-83.6385,37.61643],[-83.63949,37.61376],[-83.63935,37.61268],[-83.63961,37.61133],[-83.63906,37.60992],[-83.63852,37.60927],[-83.63825,37.6087],[-83.63845,37.60658],[-83.63696,37.60543],[-83.63676,37.60484],[-83.63687,37.60403],[-83.63736,37.60289],[-83.6382,37.60229],[-83.63921,37.60237],[-83.6406,37.60283],[-83.64276,37.60242],[-83.64342,37.60218],[-83.64387,37.60159],[-83.64422,37.59999],[-83.64526,37.59915],[-83.64529,37.59877],[-83.64492,37.5982],[-83.64475,37.5975],[-83.64418,37.5968],[-83.64385,37.59575],[-83.6428,37.59518],[-83.64177,37.59386],[-83.6417,37.59354],[-83.64306,37.58919],[-83.64317,37.58785],[-83.64377,37.58735],[-83.64519,37.58701],[-83.64603,37.5866],[-83.64956,37.58088],[-83.6501,37.58083],[-83.65078,37.58058],[-83.65309,37.57907],[-83.65365,37.57888],[-83.65424,37.57887],[-83.65865,37.57993],[-83.65956,37.5799],[-83.66042,37.57963],[-83.66126,37.57895],[-83.66317,37.57519],[-83.66358,37.57469],[-83.66454,37.57411],[-83.66585,37.5739],[-83.66705,37.57412],[-83.66779,37.57441],[-83.66942,37.57565],[-83.67135,37.57645],[-83.67246,37.57709],[-83.67614,37.5799],[-83.67866,37.58106],[-83.68711,37.58367],[-83.689,37.5839],[-83.69107,37.58371],[-83.6923,37.58319],[-83.69315,37.58239],[-83.69611,37.57577],[-83.69678,37.57456],[-83.69854,37.57224],[-83.69978,37.57121],[-83.70188,37.56997],[-83.70656,37.56856],[-83.70653,37.57021],[-83.70788,37.57052],[-83.70779,37.57159],[-83.7073,37.57238],[-83.70704,37.57311],[-83.7079,37.57345],[-83.7097,37.57454],[-83.71031,37.57511],[-83.71027,37.57581],[-83.7109,37.5765],[-83.71111,37.57725],[-83.71084,37.57817],[-83.71043,37.57879],[-83.71046,37.57953],[-83.70978,37.58044],[-83.70963,37.58087],[-83.70979,37.58164],[-83.71035,37.58246],[-83.71,37.58301],[-83.71018,37.58395],[-83.71,37.5871],[-83.70832,37.59032],[-83.70817,37.59083],[-83.70829,37.5925],[-83.70889,37.59458],[-83.70935,37.59533],[-83.71064,37.59675],[-83.71077,37.59712],[-83.71025,37.59853],[-83.70973,37.60126],[-83.70931,37.60222],[-83.70902,37.60292],[-83.70891,37.60365],[-83.70932,37.60522],[-83.70974,37.60941],[-83.71076,37.61097],[-83.71148,37.61296],[-83.71182,37.61337],[-83.7124,37.61368],[-83.71463,37.6141],[-83.71544,37.6149],[-83.71583,37.61558],[-83.71584,37.61631],[-83.716,37.61671],[-83.71639,37.61711],[-83.71732,37.61764],[-83.71773,37.61826],[-83.71787,37.61905],[-83.71753,37.62027],[-83.71767,37.62079],[-83.71842,37.62185],[-83.71983,37.62256],[-83.72035,37.62305],[-83.72071,37.62409],[-83.72134,37.62517],[-83.72116,37.62633],[-83.7214,37.6269],[-83.72206,37.62754],[-83.72289,37.62791],[-83.72324,37.62823],[-83.72372,37.62988],[-83.72343,37.63031],[-83.7221,37.63106],[-83.72194,37.63129],[-83.72216,37.63346],[-83.72156,37.63373],[-83.72134,37.63418],[-83.72155,37.6346],[-83.72223,37.63506],[-83.72227,37.6354],[-83.72203,37.63561],[-83.72106,37.63594],[-83.72015,37.63704],[-83.71959,37.63732],[-83.71867,37.63725],[-83.71766,37.63655],[-83.71667,37.63665],[-83.71633,37.63658],[-83.71607,37.63621],[-83.7162,37.63548],[-83.71565,37.63519],[-83.71304,37.63493],[-83.71133,37.63493],[-83.70874,37.63512],[-83.7072,37.63506],[-83.70404,37.63544],[-83.70249,37.63494],[-83.70195,37.63513],[-83.70135,37.63631],[-83.70037,37.63719],[-83.69708,37.63879],[-83.69917,37.64125],[-83.70228,37.64526],[-83.70296,37.6467],[-83.70311,37.64796],[-83.70302,37.64914],[-83.70215,37.65558],[-83.70179,37.65674],[-83.70127,37.65746],[-83.70031,37.6582],[-83.67963,37.6714],[-83.67868,37.67233],[-83.6783,37.67322],[-83.67831,37.67432],[-83.67858,37.67502],[-83.6796,37.67604],[-83.68371,37.67955],[-83.68473,37.68069],[-83.685,37.68153],[-83.68502,37.68253],[-83.68436,37.68633],[-83.6843,37.68888],[-83.68453,37.69054],[-83.68548,37.69385],[-83.68553,37.69459],[-83.68527,37.69572],[-83.6829,37.70214],[-83.68215,37.70431],[-83.68156,37.70515],[-83.68084,37.70574],[-83.67977,37.70617],[-83.67863,37.70631],[-83.67627,37.70627],[-83.67528,37.70653],[-83.67356,37.70764],[-83.67039,37.70924],[-83.66832,37.71119],[-83.66737,37.71295],[-83.66654,37.71373],[-83.66566,37.71437],[-83.66485,37.71486],[-83.66379,37.71524],[-83.66326,37.71567],[-83.66254,37.71729],[-83.65925,37.72248],[-83.65893,37.72383],[-83.65879,37.72731],[-83.65787,37.72997],[-83.658,37.73048],[-83.65873,37.73168],[-83.65889,37.73276],[-83.65863,37.73358],[-83.65755,37.73505],[-83.65754,37.73511],[-83.6575,37.73697],[-83.65655,37.73862],[-83.65643,37.73923],[-83.65655,37.73981],[-83.65687,37.74035],[-83.65725,37.74069],[-83.65908,37.74159],[-83.65963,37.74217],[-83.66064,37.74414],[-83.66138,37.74651],[-83.66209,37.7477],[-83.66236,37.74934],[-83.66277,37.7501],[-83.66331,37.75055],[-83.6654,37.75167],[-83.66594,37.75223],[-83.6661,37.7527],[-83.66607,37.75323],[-83.66529,37.75461],[-83.66522,37.75545],[-83.66525,37.75554],[-83.66565,37.75616],[-83.6674,37.7576],[-83.66822,37.75815],[-83.66964,37.75885],[-83.67021,37.75944],[-83.67037,37.76027],[-83.66959,37.7623],[-83.66969,37.763],[-83.6701,37.76368],[-83.67058,37.76407],[-83.67122,37.76437],[-83.67404,37.76501],[-83.67463,37.76541],[-83.67456,37.76596],[-83.67386,37.76693],[-83.67385,37.76749],[-83.67419,37.76798],[-83.67585,37.76907],[-83.67624,37.76955],[-83.67625,37.77154],[-83.67689,37.77281],[-83.67669,37.77348],[-83.67664,37.77354],[-83.67567,37.77421],[-83.6754,37.77468],[-83.67557,37.77514],[-83.6769,37.7761],[-83.67714,37.77652],[-83.67697,37.77699],[-83.67598,37.77794],[-83.67581,37.77963],[-83.6761,37.78],[-83.67649,37.78017],[-83.67884,37.78032],[-83.67916,37.78038],[-83.6792,37.78039],[-83.68041,37.78053],[-83.68103,37.78064],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.7542,37.82417],[-83.7546,37.82445],[-83.7576,37.82647],[-83.76063,37.82738],[-83.7628,37.82848],[-83.76378,37.82868],[-83.76447,37.82869],[-83.76502,37.82858],[-83.76633,37.82801],[-83.76684,37.82799],[-83.76735,37.82822],[-83.77079,37.83226],[-83.77085,37.83294],[-83.77036,37.8342],[-83.77016,37.83718],[-83.77032,37.83794],[-83.77154,37.84066],[-83.7716,37.84075],[-83.77171,37.84086],[-83.77183,37.84097],[-83.77136,37.84158],[-83.7711,37.84201],[-83.76917,37.84523],[-83.76853,37.84736],[-83.76836,37.84805],[-83.76821,37.84863],[-83.76814,37.84881],[-83.76883,37.84889],[-83.76913,37.84889],[-83.77112,37.84852],[-83.77271,37.84774],[-83.77629,37.84754],[-83.77741,37.84798],[-83.77835,37.84898],[-83.77862,37.8496],[-83.77862,37.85031],[-83.77878,37.85053],[-83.78107,37.85155],[-83.78218,37.85162],[-83.78259,37.85064],[-83.7838,37.84976],[-83.7847,37.84939],[-83.78584,37.84934],[-83.78646,37.8494],[-83.78694,37.84933],[-83.78792,37.84881],[-83.78862,37.848],[-83.78932,37.84688],[-83.78937,37.84642],[-83.78872,37.84409],[-83.78881,37.84372],[-83.7894,37.84317],[-83.79236,37.84139],[-83.79279,37.84128],[-83.79434,37.84157],[-83.7956,37.84232],[-83.797,37.84269],[-83.7996,37.8427],[-83.8012,37.84338],[-83.80255,37.84437],[-83.80541,37.8449],[-83.80715,37.84606],[-83.80733,37.84662],[-83.80728,37.85119],[-83.80745,37.85266],[-83.80862,37.85609],[-83.80889,37.85655],[-83.8095,37.85701],[-83.8154,37.85896],[-83.81762,37.85952],[-83.8181,37.85971],[-83.81901,37.86037],[-83.82098,37.86086],[-83.82182,37.86089],[-83.82251,37.86074],[-83.82533,37.85956],[-83.82982,37.86042],[-83.83114,37.86104],[-83.8322,37.8617],[-83.83452,37.8645],[-83.83543,37.86504],[-83.83623,37.86524],[-83.83827,37.86527],[-83.83954,37.86482],[-83.84091,37.86497],[-83.8458,37.86515],[-83.84936,37.86486],[-83.84987,37.86504],[-83.85154,37.8662],[-83.85198,37.86633],[-83.85312,37.86601],[-83.8541,37.86517],[-83.85467,37.86484],[-83.8549,37.86476],[-83.85522,37.86467],[-83.85603,37.86439],[-83.85469,37.86224],[-83.8544,37.86125],[-83.85475,37.8562],[-83.85493,37.85546],[-83.85546,37.8545],[-83.85579,37.85398],[-83.85622,37.8532],[-83.86097,37.85461],[-83.86484,37.85446],[-83.86509,37.85452],[-83.86601,37.85476],[-83.86748,37.85499],[-83.86808,37.85498],[-83.86822,37.85499],[-83.86858,37.85506],[-83.87084,37.85616],[-83.87518,37.85823],[-83.87543,37.85918],[-83.87566,37.85949],[-83.87794,37.86047],[-83.88379,37.86484],[-83.8843,37.86504],[-83.88571,37.86524],[-83.88744,37.86567],[-83.88955,37.86343],[-83.89016,37.86316],[-83.8906,37.8628],[-83.89225,37.86256],[-83.89344,37.86313],[-83.89446,37.86315],[-83.89589,37.86232],[-83.89779,37.86177],[-83.89909,37.86107],[-83.90016,37.86095],[-83.90067,37.86068],[-83.90105,37.86068],[-83.90187,37.86127],[-83.90258,37.86235],[-83.9034,37.86258],[-83.90451,37.86269],[-83.90484,37.86288],[-83.90518,37.86341],[-83.90587,37.86379],[-83.90664,37.86412],[-83.90801,37.86444],[-83.90995,37.86412],[-83.91051,37.86328],[-83.9111,37.86272],[-83.91146,37.86268],[-83.91195,37.8629],[-83.91206,37.86295],[-83.91287,37.8633],[-83.91336,37.86369],[-83.9136,37.86364],[-83.91804,37.8601],[-83.91886,37.85931],[-83.91538,37.85717],[-83.91478,37.85661],[-83.91443,37.85605],[-83.91367,37.85239],[-83.91323,37.85165],[-83.91268,37.85115],[-83.90485,37.84648],[-83.90185,37.84356],[-83.89897,37.84174],[-83.8983,37.84141],[-83.89545,37.84052],[-83.89361,37.83959],[-83.89083,37.83852],[-83.88753,37.83684],[-83.88599,37.83629],[-83.88386,37.83597],[-83.88237,37.8362],[-83.88155,37.83657],[-83.87829,37.83875],[-83.87769,37.83928],[-83.87618,37.8414],[-83.8741,37.84304],[-83.8729,37.84508],[-83.87211,37.84592],[-83.87155,37.84632],[-83.87131,37.84643],[-83.87109,37.84855],[-83.87203,37.84861],[-83.87217,37.84874]]}},
{"type":"Feature","properties":{"name":"Test RRR Starting in Stanton Century"},"geometry":{"type":"LineString","coordinates":[[-83.87223,37.84878],[-83.87217,37.84874],[-83.87203,37.84861],[-83.87109,37.84855],[-83.87131,37.84643],[-83.87108,37.84653],[-83.87076,37.84664],[-83.87055,37.84669],[-83.86907,37.84675],[-83.86165,37.84576],[-83.85847,37.8456],[-83.85349,37.84529],[-83.85168,37.84506],[-83.84488,37.84359],[-83.84358,37.8434],[-83.83706,37.84421],[-83.83178,37.8457],[-83.8295,37.84623],[-83.82881,37.84629],[-83.82794,37.84614],[-83.8234,37.84452],[-83.82164,37.84417],[-83.82042,37.8442],[-83.81856,37.84476],[-83.81731,37.84469],[-83.81667,37.84444],[-83.81349,37.84226],[-83.81281,37.84149],[-83.81195,37.84009],[-83.81187,37.83928],[-83.81204,37.83807],[-83.81317,37.83619],[-83.81337,37.83542],[-83.81341,37.83349],[-83.81311,37.83294],[-83.81279,37.83267],[-83.81022,37.83143],[-83.80949,37.8312],[-83.80454,37.83092],[-83.79492,37.82723],[-83.79386,37.82699],[-83.78911,37.82745],[-83.78835,37.82776],[-83.78713,37.82851],[-83.78669,37.82908],[-83.78509,37.83206],[-83.78495,37.83273],[-83.78504,37.83402],[-83.7848,37.83451],[-83.78233,37.83625],[-83.78088,37.83855],[-83.77715,37.84112],[-83.77593,37.84169],[-83.77438,37.8419],[-83.77383,37.84187],[-83.77301,37.84164],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71803,37.81531],[-83.71653,37.81549],[-83.71641,37.81554],[-83.71483,37.81646],[-83.71354,37.81663],[-83.71192,37.81634],[-83.71041,37.81565],[-83.70919,37.81576],[-83.70832,37.8157],[-83.7067,37.81488],[-83.70526,37.8144],[-83.7038,37.81413],[-83.70195,37.81432],[-83.70127,37.81415],[-83.70063,37.81391],[-83.69962,37.81368],[-83.69846,37.81381],[-83.69774,37.81366],[-83.69672,37.81367],[-83.69539,37.81422],[-83.69452,37.81496],[-83.69391,37.81527],[-83.69149,37.81559],[-83.68871,37.81651],[-83.68676,37.81681],[-83.68447,37.81659],[-83.68374,37.81661],[-83.68325,37.81667],[-83.68201,37.81715],[-83.6793,37.81743],[-83.67853,37.81729],[-83.67763,37.81748],[-83.67724,37.81733],[-83.67719,37.81666],[-83.67669,37.81605],[-83.67637,37.81585],[-83.67611,37.81586],[-83.67541,37.81619],[-83.67465,37.81627],[-83.67428,37.81696],[-83.67382,37.81664],[-83.67345,37.81662],[-83.67136,37.81727],[-83.66967,37.81847],[-83.66787,37.81911],[-83.66644,37.8205],[-83.66463,37.82173],[-83.6644,37.82193],[-83.66238,37.82388],[-83.66129,37.82614],[-83.66144,37.82725],[-83.66242,37.82934],[-83.66237,37.82984],[-83.6618,37.83101],[-83.66172,37.83229],[-83.6615,37.83269],[-83.66044,37.83293],[-83.65977,37.83374],[-83.65957,37.8338],[-83.65746,37.83327],[-83.65594,37.83342],[-83.65528,37.83372],[-83.65371,37.83483],[-83.65226,37.83546],[-83.6517,37.83559],[-83.64793,37.83478],[-83.64717,37.83442],[-83.64619,37.83232],[-83.64568,37.83142],[-83.64497,37.83015],[-83.64441,37.82868],[-83.64367,37.8273],[-83.64336,37.82702],[-83.64231,37.82676],[-83.64063,37.82666],[-83.63589,37.82688],[-83.63439,37.82708],[-83.6323,37.82679],[-83.63155,37.82674],[-83.63101,37.82675],[-83.6305,37.8269],[-83.62995,37.82754],[-83.62969,37.82761],[-83.62938,37.82753],[-83.62922,37.82717],[-83.62927,37.82584],[-83.62893,37.82526],[-83.62778,37.82402],[-83.62743,37.82384],[-83.62673,37.82401],[-83.62588,37.82479],[-83.62546,37.82662],[-83.62543,37.82717],[-83.62495,37.82876],[-83.62457,37.8294],[-83.62403,37.82977],[-83.62361,37.83027],[-83.62284,37.83076],[-83.62251,37.8313],[-83.62238,37.83158],[-83.62193,37.83265],[-83.62185,37.83298],[-83.6218,37.83421],[-83.62143,37.83471],[-83.62095,37.83501],[-83.61853,37.8358],[-83.61778,37.83593],[-83.61448,37.83609],[-83.61341,37.83587],[-83.61236,37.8353],[-83.61162,37.83528],[-83.61087,37.83561],[-83.60967,37.83669],[-83.60822,37.83594],[-83.60821,37.83572],[-83.60721,37.83458],[-83.60715,37.83442],[-83.60724,37.83322],[-83.60697,37.83306],[-83.60498,37.83257],[-83.60462,37.83179],[-83.60477,37.83114],[-83.6057,37.83],[-83.6057,37.82983],[-83.60532,37.82982],[-83.60363,37.83037],[-83.60032,37.8308],[-83.59967,37.8304],[-83.59901,37.82957],[-83.59848,37.82817],[-83.59843,37.82769],[-83.59728,37.82605],[-83.59744,37.82439],[-83.59774,37.82327],[-83.59728,37.82202],[-83.59593,37.8208],[-83.5952,37.82059],[-83.59342,37.81977],[-83.59161,37.81958],[-83.59032,37.81898],[-83.58994,37.81901],[-83.58788,37.8199],[-83.58759,37.82018],[-83.58731,37.82087],[-83.58703,37.82335],[-83.5865,37.82536],[-83.58599,37.82564],[-83.5853,37.82572],[-83.5838,37.82543],[-83.58313,37.82523],[-83.58166,37.82489],[-83.58124,37.82431],[-83.58134,37.82266],[-83.58248,37.8214],[-83.58242,37.82113],[-83.58198,37.82079],[-83.58129,37.82066],[-83.58072,37.82079],[-83.57892,37.82083],[-83.57612,37.8211],[-83.57545,37.82097],[-83.57494,37.82046],[-83.57444,37.81935],[-83.57452,37.81899],[-83.57637,37.81806],[-83.57757,37.81772],[-83.57856,37.81712],[-83.57813,37.81617],[-83.57813,37.81597],[-83.57841,37.81568],[-83.57857,37.81558],[-83.58003,37.81505],[-83.58144,37.81514],[-83.58181,37.815],[-83.58273,37.81381],[-83.58315,37.81227],[-83.58342,37.81199],[-83.5846,37.81194],[-83.58525,37.81146],[-83.58618,37.81153],[-83.58779,37.81129],[-83.58802,37.81119],[-83.58847,37.81065],[-83.58904,37.81042],[-83.58958,37.80951],[-83.58988,37.80951],[-83.59017,37.80998],[-83.58995,37.81099],[-83.5902,37.81155],[-83.59021,37.81204],[-83.58994,37.81254],[-83.58946,37.81278],[-83.58683,37.81319],[-83.58653,37.81338],[-83.58616,37.81406],[-83.58581,37.81428],[-83.58475,37.81464],[-83.58446,37.81487],[-83.58421,37.81561],[-83.58451,37.81627],[-83.58421,37.81561],[-83.58446,37.81487],[-83.58475,37.81464],[-83.58581,37.81428],[-83.58616,37.81406],[-83.58653,37.81338],[-83.58683,37.81319],[-83.58946,37.81278],[-83.58994,37.81254],[-83.59021,37.81204],[-83.5902,37.81155],[-83.58995,37.81099],[-83.59017,37.80998],[-83.59026,37.80968],[-83.58998,37.80811],[-83.59028,37.80681],[-83.59008,37.80664],[-83.58872,37.80645],[-83.58846,37.80626],[-83.58852,37.80596],[-83.58937,37.80511],[-83.59016,37.80438],[-83.59042,37.80392],[-83.59084,37.80247],[-83.59003,37.80097],[-83.59002,37.80072],[-83.59094,37.80001],[-83.59095,37.79922],[-83.59136,37.79775],[-83.59211,37.79718],[-83.593,37.79583],[-83.59323,37.79521],[-83.59295,37.79459],[-83.59129,37.79384],[-83.59079,37.79333],[-83.59078,37.79303],[-83.59123,37.79231],[-83.59128,37.79195],[-83.59079,37.79104],[-83.5908,37.79053],[-83.59131,37.79014],[-83.59169,37.79001],[-83.59363,37.79032],[-83.59447,37.79023],[-83.59485,37.79047],[-83.59528,37.79144],[-83.59562,37.79158],[-83.596,37.79145],[-83.59663,37.79088],[-83.59774,37.79073],[-83.59823,37.79047],[-83.59844,37.79025],[-83.59865,37.78996],[-83.59867,37.78921],[-83.59951,37.78835],[-83.5999,37.78754],[-83.60064,37.78749],[-83.60189,37.78776],[-83.60231,37.78768],[-83.60261,37.78743],[-83.60302,37.78675],[-83.60377,37.78643],[-83.60484,37.78574],[-83.60493,37.78545],[-83.60466,37.78513],[-83.60351,37.78506],[-83.60299,37.78481],[-83.60211,37.78473],[-83.60185,37.78448],[-83.6019,37.78411],[-83.60331,37.78269],[-83.60401,37.78243],[-83.60463,37.78195],[-83.6045,37.781],[-83.60493,37.78034],[-83.60505,37.77968],[-83.60524,37.77938],[-83.60554,37.7792],[-83.60649,37.77907],[-83.60696,37.77907],[-83.60751,37.77923],[-83.6079,37.77916],[-83.60854,37.77875],[-83.60875,37.77795],[-83.60879,37.77774],[-83.60883,37.77688],[-83.60774,37.77552],[-83.60771,37.77475],[-83.60887,37.7738],[-83.61032,37.77332],[-83.611,37.77288],[-83.6113,37.77248],[-83.61148,37.7719],[-83.60987,37.77011],[-83.60995,37.76875],[-83.60902,37.76778],[-83.60896,37.76737],[-83.60959,37.76606],[-83.61062,37.7645],[-83.61128,37.764],[-83.61231,37.76375],[-83.6129,37.76363],[-83.61306,37.76359],[-83.61286,37.76334],[-83.61215,37.76263],[-83.61034,37.76164],[-83.61003,37.76133],[-83.60996,37.76093],[-83.6106,37.75886],[-83.61045,37.7581],[-83.61048,37.7569],[-83.6097,37.75463],[-83.60877,37.75297],[-83.60977,37.75259],[-83.61131,37.75232],[-83.61477,37.75249],[-83.61914,37.75167],[-83.61969,37.75128],[-83.62235,37.7487],[-83.62363,37.74731],[-83.62401,37.74722],[-83.62517,37.7475],[-83.62659,37.74725],[-83.62805,37.74654],[-83.62909,37.74512],[-83.6295,37.74478],[-83.6303,37.7446],[-83.63172,37.74479],[-83.63304,37.74423],[-83.63404,37.74382],[-83.63567,37.74404],[-83.64006,37.74381],[-83.64136,37.7437],[-83.64192,37.74352],[-83.64341,37.74253],[-83.64394,37.74195],[-83.64585,37.73589],[-83.64593,37.73529],[-83.64567,37.7327],[-83.64572,37.73162],[-83.64593,37.73089],[-83.64655,37.72972],[-83.64661,37.72847],[-83.64647,37.72748],[-83.64682,37.72682],[-83.64668,37.72547],[-83.64621,37.72515],[-83.64573,37.72506],[-83.64462,37.72549],[-83.64403,37.72502],[-83.64321,37.72472],[-83.64198,37.72399],[-83.64162,37.72346],[-83.64161,37.72127],[-83.64089,37.71997],[-83.64024,37.71934],[-83.63889,37.71891],[-83.63784,37.71794],[-83.63796,37.71683],[-83.63744,37.71602],[-83.63797,37.71544],[-83.63868,37.71506],[-83.63915,37.71421],[-83.63953,37.71384],[-83.63961,37.71168],[-83.63907,37.71088],[-83.6386,37.71055],[-83.63828,37.71046],[-83.63733,37.71054],[-83.63682,37.71028],[-83.6368,37.70994],[-83.6372,37.70888],[-83.63793,37.70787],[-83.6372,37.70712],[-83.63664,37.706],[-83.63689,37.70562],[-83.63745,37.70527],[-83.6378,37.70516],[-83.63856,37.7052],[-83.63887,37.70507],[-83.63906,37.70487],[-83.63913,37.70447],[-83.63831,37.70334],[-83.63789,37.70167],[-83.6376,37.70111],[-83.63791,37.69991],[-83.63775,37.69941],[-83.63716,37.6991],[-83.63546,37.69888],[-83.63508,37.69872],[-83.63419,37.69777],[-83.63319,37.69732],[-83.63237,37.69642],[-83.63231,37.69601],[-83.63248,37.69528],[-83.63383,37.6941],[-83.63468,37.69267],[-83.63461,37.69239],[-83.63412,37.69202],[-83.634,37.69174],[-83.63396,37.68915],[-83.63441,37.68693],[-83.63327,37.68575],[-83.63185,37.68522],[-83.63107,37.68431],[-83.63,37.68354],[-83.62997,37.68321],[-83.63066,37.6818],[-83.63053,37.68138],[-83.62961,37.68102],[-83.62817,37.68085],[-83.62778,37.68066],[-83.62756,37.67954],[-83.62849,37.679],[-83.6289,37.67851],[-83.629,37.67812],[-83.62824,37.67687],[-83.62837,37.67614],[-83.62826,37.67576],[-83.62676,37.67421],[-83.62455,37.67314],[-83.62432,37.67286],[-83.62439,37.67255],[-83.62542,37.67195],[-83.62589,37.67114],[-83.62585,37.67085],[-83.6253,37.67044],[-83.62519,37.67015],[-83.62656,37.66846],[-83.62825,37.66735],[-83.62964,37.66562],[-83.63216,37.66204],[-83.63261,37.6618],[-83.63567,37.66123],[-83.63655,37.66095],[-83.63658,37.66075],[-83.63613,37.66039],[-83.63605,37.66005],[-83.63635,37.65922],[-83.63652,37.6578],[-83.63735,37.65661],[-83.63723,37.65645],[-83.63679,37.65633],[-83.63573,37.6563],[-83.63485,37.65576],[-83.63475,37.65419],[-83.63384,37.65323],[-83.63431,37.65251],[-83.63426,37.65088],[-83.63459,37.64994],[-83.63455,37.64913],[-83.63472,37.64895],[-83.63584,37.64847],[-83.63669,37.6472],[-83.6364,37.64572],[-83.63594,37.64448],[-83.63607,37.64388],[-83.63602,37.64311],[-83.63636,37.64257],[-83.6368,37.64135],[-83.63705,37.63951],[-83.63691,37.63893],[-83.63642,37.63851],[-83.63593,37.63841],[-83.63515,37.63851],[-83.63476,37.63835],[-83.63446,37.63782],[-83.6344,37.63721],[-83.63481,37.63586],[-83.63557,37.63524],[-83.63642,37.63387],[-83.63757,37.6329],[-83.6383,37.63068],[-83.63805,37.62995],[-83.63637,37.62931],[-83.63528,37.6287],[-83.63511,37.62847],[-83.63518,37.62829],[-83.63604,37.62784],[-83.63727,37.62734],[-83.63775,37.62519],[-83.63757,37.6245],[-83.6367,37.62386],[-83.63613,37.62313],[-83.63587,37.62123],[-83.63667,37.61988],[-83.63669,37.61887],[-83.63738,37.61743],[-83.6385,37.61643],[-83.63949,37.61376],[-83.63935,37.61268],[-83.63961,37.61133],[-83.63906,37.60992],[-83.63852,37.60927],[-83.63825,37.6087],[-83.63845,37.60658],[-83.63696,37.60543],[-83.63676,37.60484],[-83.63687,37.60403],[-83.63736,37.60289],[-83.6382,37.60229],[-83.63921,37.60237],[-83.6406,37.60283],[-83.64276,37.60242],[-83.64342,37.60218],[-83.64387,37.60159],[-83.64422,37.59999],[-83.64526,37.59915],[-83.64529,37.59877],[-83.64492,37.5982],[-83.64475,37.5975],[-83.64418,37.5968],[-83.64385,37.59575],[-83.6428,37.59518],[-83.64177,37.59386],[-83.6417,37.59354],[-83.64306,37.58919],[-83.64317,37.58785],[-83.64377,37.58735],[-83.64519,37.58701],[-83.64603,37.5866],[-83.64956,37.58088],[-83.6501,37.58083],[-83.65078,37.58058],[-83.65309,37.57907],[-83.65365,37.57888],[-83.65424,37.57887],[-83.65865,37.57993],[-83.65956,37.5799],[-83.66042,37.57963],[-83.66126,37.57895],[-83.66317,37.57519],[-83.66358,37.57469],[-83.66454,37.57411],[-83.66585,37.5739],[-83.66705,37.57412],[-83.66779,37.57441],[-83.66942,37.57565],[-83.67135,37.57645],[-83.67246,37.57709],[-83.67614,37.5799],[-83.67866,37.58106],[-83.68711,37.58367],[-83.689,37.5839],[-83.69107,37.58371],[-83.6923,37.58319],[-83.69315,37.58239],[-83.69611,37.57577],[-83.69678,37.57456],[-83.69854,37.57224],[-83.69978,37.57121],[-83.70188,37.56997],[-83.70656,37.56856],[-83.70653,37.57021],[-83.70651,37.57151],[-83.70779,37.57159],[-83.7073,37.57238],[-83.70704,37.57311],[-83.7079,37.57345],[-83.7097,37.57454],[-83.71031,37.57511],[-83.71027,37.57581],[-83.7109,37.5765],[-83.71111,37.57725],[-83.71084,37.57817],[-83.71043,37.57879],[-83.71046,37.57953],[-83.70978,37.58044],[-83.70963,37.58087],[-83.70979,37.58164],[-83.71035,37.58246],[-83.71,37.58301],[-83.71018,37.58395],[-83.71,37.5871],[-83.70832,37.59032],[-83.70817,37.59083],[-83.70829,37.5925],[-83.70889,37.59458],[-83.70935,37.59533],[-83.71064,37.59675],[-83.71077,37.59712],[-83.71025,37.59853],[-83.70973,37.60126],[-83.70931,37.60222],[-83.70902,37.60292],[-83.70891,37.60365],[-83.70932,37.60522],[-83.70974,37.60941],[-83.71076,37.61097],[-83.71148,37.61296],[-83.71182,37.61337],[-83.7124,37.61368],[-83.71463,37.6141],[-83.71544,37.6149],[-83.71583,37.61558],[-83.71584,37.61631],[-83.716,37.61671],[-83.71639,37.61711],[-83.71732,37.61764],[-83.71773,37.61826],[-83.71787,37.61905],[-83.71753,37.62027],[-83.71767,37.62079],[-83.71842,37.62185],[-83.71983,37.62256],[-83.72035,37.62305],[-83.72071,37.62409],[-83.72134,37.62517],[-83.72116,37.62633],[-83.7214,37.6269],[-83.72206,37.62754],[-83.72289,37.62791],[-83.72324,37.62823],[-83.72372,37.62988],[-83.72343,37.63031],[-83.7221,37.63106],[-83.72194,37.63129],[-83.72216,37.63346],[-83.72156,37.63373],[-83.72134,37.63418],[-83.72155,37.6346],[-83.72223,37.63506],[-83.72227,37.6354],[-83.72203,37.63561],[-83.72106,37.63594],[-83.72015,37.63704],[-83.71959,37.63732],[-83.71867,37.63725],[-83.71766,37.63655],[-83.71667,37.63665],[-83.71633,37.63658],[-83.71607,37.63621],[-83.7162,37.63548],[-83.71565,37.63519],[-83.71304,37.63493],[-83.71133,37.63493],[-83.70874,37.63512],[-83.7072,37.63506],[-83.70404,37.63544],[-83.70249,37.63494],[-83.70195,37.63513],[-83.70135,37.63631],[-83.70037,37.63719],[-83.69708,37.63879],[-83.69917,37.64125],[-83.70228,37.64526],[-83.70296,37.6467],[-83.70311,37.64796],[-83.70302,37.64914],[-83.70215,37.65558],[-83.70179,37.65674],[-83.70127,37.65746],[-83.70031,37.6582],[-83.67963,37.6714],[-83.67868,37.67233],[-83.6783,37.67322],[-83.67831,37.67432],[-83.67858,37.67502],[-83.6796,37.67604],[-83.68371,37.67955],[-83.68473,37.68069],[-83.685,37.68153],[-83.68502,37.68253],[-83.68436,37.68633],[-83.6843,37.68888],[-83.68453,37.69054],[-83.68548,37.69385],[-83.68553,37.69459],[-83.68527,37.69572],[-83.6829,37.70214],[-83.68313,37.70232],[-83.68297,37.7035],[-83.68339,37.70396],[-83.68348,37.70461],[-83.68304,37.70506],[-83.68274,37.70518],[-83.68203,37.70525],[-83.68156,37.70515],[-83.68084,37.70574],[-83.67977,37.70617],[-83.67863,37.70631],[-83.67627,37.70627],[-83.67586,37.70606],[-83.67541,37.70613],[-83.67333,37.70739],[-83.66974,37.70885],[-83.66932,37.70882],[-83.66798,37.70839],[-83.6651,37.70833],[-83.66461,37.70843],[-83.66414,37.70874],[-83.66328,37.7099],[-83.66321,37.71036],[-83.66341,37.71127],[-83.663,37.71198],[-83.66192,37.71266],[-83.66072,37.71317],[-83.65778,37.7136],[-83.65739,37.71368],[-83.65624,37.71404],[-83.65507,37.71462],[-83.65418,37.71522],[-83.65367,37.71584],[-83.65329,37.71689],[-83.65379,37.71806],[-83.6538,37.71869],[-83.6504,37.72582],[-83.64978,37.7266],[-83.64851,37.72712],[-83.64782,37.72768],[-83.64655,37.72972],[-83.64593,37.73089],[-83.64572,37.73162],[-83.64567,37.7327],[-83.64593,37.73529],[-83.64585,37.73589],[-83.64394,37.74195],[-83.64341,37.74253],[-83.64192,37.74352],[-83.64136,37.7437],[-83.64006,37.74381],[-83.63567,37.74404],[-83.63404,37.74382],[-83.63304,37.74423],[-83.63172,37.74479],[-83.6303,37.7446],[-83.6295,37.74478],[-83.62909,37.74512],[-83.62805,37.74654],[-83.62659,37.74725],[-83.62517,37.7475],[-83.62401,37.74722],[-83.62363,37.74731],[-83.62235,37.7487],[-83.61969,37.75128],[-83.61914,37.75167],[-83.61477,37.75249],[-83.61131,37.75232],[-83.60977,37.75259],[-83.60877,37.75297],[-83.6097,37.75463],[-83.61048,37.7569],[-83.61045,37.7581],[-83.6106,37.75886],[-83.60996,37.76093],[-83.61003,37.76133],[-83.61034,37.76164],[-83.61215,37.76263],[-83.61286,37.76334],[-83.61306,37.76359],[-83.61412,37.76473],[-83.6145,37.76539],[-83.61445,37.76605],[-83.61382,37.76746],[-83.61392,37.76813],[-83.61449,37.76868],[-83.61825,37.77134],[-83.61951,37.77196],[-83.62152,37.77256],[-83.62335,37.77278],[-83.62841,37.77297],[-83.6293,37.77325],[-83.63051,37.77391],[-83.63105,37.77473],[-83.63102,37.77554],[-83.63082,37.77592],[-83.62929,37.77763],[-83.62916,37.77812],[-83.6295,37.77932],[-83.63068,37.78021],[-83.63157,37.78052],[-83.63396,37.78064],[-83.64001,37.78134],[-83.64095,37.78122],[-83.64254,37.78057],[-83.64356,37.78052],[-83.64456,37.78078],[-83.64645,37.78189],[-83.64736,37.78285],[-83.6479,37.78423],[-83.64804,37.78593],[-83.6476,37.78796],[-83.64767,37.78841],[-83.64796,37.7888],[-83.64971,37.79005],[-83.65,37.79201],[-83.65032,37.79263],[-83.65325,37.79626],[-83.65496,37.79771],[-83.65553,37.79781],[-83.65611,37.79766],[-83.65646,37.79736],[-83.65683,37.79674],[-83.65768,37.79598],[-83.6586,37.7956],[-83.65974,37.79544],[-83.66075,37.79563],[-83.66278,37.79714],[-83.6645,37.79737],[-83.66464,37.79723],[-83.66461,37.79695],[-83.66399,37.79627],[-83.66398,37.79603],[-83.66488,37.79558],[-83.66521,37.79514],[-83.66554,37.79501],[-83.66592,37.79543],[-83.6659,37.79626],[-83.66612,37.7966],[-83.6666,37.79709],[-83.66722,37.79735],[-83.66755,37.79733],[-83.66843,37.79696],[-83.66937,37.79711],[-83.67147,37.79697],[-83.67306,37.79678],[-83.67449,37.79647],[-83.67599,37.79636],[-83.67687,37.79595],[-83.67998,37.79365],[-83.68111,37.79321],[-83.6828,37.79301],[-83.68411,37.79313],[-83.68805,37.79397],[-83.69029,37.79473],[-83.69234,37.79474],[-83.69296,37.79485],[-83.69362,37.79524],[-83.69466,37.79682],[-83.6953,37.79716],[-83.70017,37.79749],[-83.70187,37.79773],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.7542,37.82417],[-83.7546,37.82445],[-83.7576,37.82647],[-83.76063,37.82738],[-83.7628,37.82848],[-83.76378,37.82868],[-83.76447,37.82869],[-83.76502,37.82858],[-83.76633,37.82801],[-83.76684,37.82799],[-83.76735,37.82822],[-83.77079,37.83226],[-83.77085,37.83294],[-83.77036,37.8342],[-83.77016,37.83718],[-83.77032,37.83794],[-83.77154,37.84066],[-83.7716,37.84075],[-83.77171,37.84086],[-83.77183,37.84097],[-83.77136,37.84158],[-83.7711,37.84201],[-83.76917,37.84523],[-83.76853,37.84736],[-83.76836,37.84805],[-83.76821,37.84863],[-83.76814,37.84881],[-83.76883,37.84889],[-83.76913,37.84889],[-83.77112,37.84852],[-83.77271,37.84774],[-83.77629,37.84754],[-83.77741,37.84798],[-83.77835,37.84898],[-83.77862,37.8496],[-83.77862,37.85031],[-83.77878,37.85053],[-83.78107,37.85155],[-83.78218,37.85162],[-83.78259,37.85064],[-83.7838,37.84976],[-83.7847,37.84939],[-83.78584,37.84934],[-83.78646,37.8494],[-83.78694,37.84933],[-83.78792,37.84881],[-83.78862,37.848],[-83.78932,37.84688],[-83.78937,37.84642],[-83.78872,37.84409],[-83.78881,37.84372],[-83.7894,37.84317],[-83.79236,37.84139],[-83.79279,37.84128],[-83.79434,37.84157],[-83.7956,37.84232],[-83.797,37.84269],[-83.7996,37.8427],[-83.8012,37.84338],[-83.80255,37.84437],[-83.80541,37.8449],[-83.80715,37.84606],[-83.80733,37.84662],[-83.80728,37.85119],[-83.80745,37.85266],[-83.80862,37.85609],[-83.80889,37.85655],[-83.8095,37.85701],[-83.8154,37.85896],[-83.81762,37.85952],[-83.8181,37.85971],[-83.81901,37.86037],[-83.82098,37.86086],[-83.82182,37.86089],[-83.82251,37.86074],[-83.82533,37.85956],[-83.82982,37.86042],[-83.83114,37.86104],[-83.8322,37.8617],[-83.83452,37.8645],[-83.83543,37.86504],[-83.83623,37.86524],[-83.83827,37.86527],[-83.83954,37.86482],[-83.84091,37.86497],[-83.8458,37.86515],[-83.84936,37.86486],[-83.84987,37.86504],[-83.85154,37.8662],[-83.85198,37.86633],[-83.85312,37.86601],[-83.8541,37.86517],[-83.85467,37.86484],[-83.8549,37.86476],[-83.85522,37.86467],[-83.85603,37.86439],[-83.85469,37.86224],[-83.8544,37.86125],[-83.85475,37.8562],[-83.85493,37.85546],[-83.85546,37.8545],[-83.85579,37.85398],[-83.85622,37.8532],[-83.86097,37.85461],[-83.86484,37.85446],[-83.86509,37.85452],[-83.86601,37.85476],[-83.86748,37.85499],[-83.86808,37.85498],[-83.86822,37.85499],[-83.86858,37.85506],[-83.87084,37.85616],[-83.87518,37.85823],[-83.87543,37.85918],[-83.87566,37.85949],[-83.87794,37.86047],[-83.88379,37.86484],[-83.8843,37.86504],[-83.88571,37.86524],[-83.88744,37.86567],[-83.88955,37.86343],[-83.89016,37.86316],[-83.8906,37.8628],[-83.89225,37.86256],[-83.89344,37.86313],[-83.89446,37.86315],[-83.89589,37.86232],[-83.89779,37.86177],[-83.89909,37.86107],[-83.90016,37.86095],[-83.90067,37.86068],[-83.90105,37.86068],[-83.90187,37.86127],[-83.90258,37.86235],[-83.9034,37.86258],[-83.90451,37.86269],[-83.90484,37.86288],[-83.90518,37.86341],[-83.90587,37.86379],[-83.90664,37.86412],[-83.90801,37.86444],[-83.90995,37.86412],[-83.91051,37.86328],[-83.9111,37.86272],[-83.91146,37.86268],[-83.91195,37.8629],[-83.91206,37.86295],[-83.91287,37.8633],[-83.91336,37.86369],[-83.9136,37.86364],[-83.91804,37.8601],[-83.91886,37.85931],[-83.91538,37.85717],[-83.91478,37.85661],[-83.91443,37.85605],[-83.91367,37.85239],[-83.91323,37.85165],[-83.91268,37.85115],[-83.90485,37.84648],[-83.90185,37.84356],[-83.89897,37.84174],[-83.8983,37.84141],[-83.89545,37.84052],[-83.89361,37.83959],[-83.89083,37.83852],[-83.88753,37.83684],[-83.88599,37.83629],[-83.88386,37.83597],[-83.88237,37.8362],[-83.88155,37.83657],[-83.87829,37.83875],[-83.87769,37.83928],[-83.87618,37.8414],[-83.8741,37.84304],[-83.8729,37.84508],[-83.87211,37.84592],[-83.87155,37.84632],[-83.87131,37.84643],[-83.87109,37.84855],[-83.87203,37.84861],[-83.87217,37.84874]]}},
{"type":"Feature","properties":{"name":"Test RRR Starting in Stanton 89 Mile"},"geometry":{"type":"LineString","coordinates":[[-83.87223,37.84878],[-83.87217,37.84874],[-83.87203,37.84861],[-83.87109,37.84855],[-83.87131,37.84643],[-83.87108,37.84653],[-83.87076,37.84664],[-83.87055,37.84669],[-83.86907,37.84675],[-83.86165,37.84576],[-83.85847,37.8456],[-83.85349,37.84529],[-83.85168,37.84506],[-83.84488,37.84359],[-83.84358,37.8434],[-83.83706,37.84421],[-83.83178,37.8457],[-83.8295,37.84623],[-83.82881,37.84629],[-83.82794,37.84614],[-83.8234,37.84452],[-83.82164,37.84417],[-83.82042,37.8442],[-83.81856,37.84476],[-83.81731,37.84469],[-83.81667,37.84444],[-83.81349,37.84226],[-83.81281,37.84149],[-83.81195,37.84009],[-83.81187,37.83928],[-83.81204,37.83807],[-83.81317,37.83619],[-83.81337,37.83542],[-83.81341,37.83349],[-83.81311,37.83294],[-83.81279,37.83267],[-83.81022,37.83143],[-83.80949,37.8312],[-83.80454,37.83092],[-83.79492,37.82723],[-83.79386,37.82699],[-83.78911,37.82745],[-83.78835,37.82776],[-83.78713,37.82851],[-83.78669,37.82908],[-83.78509,37.83206],[-83.78495,37.83273],[-83.78504,37.83402],[-83.7848,37.83451],[-83.78233,37.83625],[-83.78088,37.83855],[-83.77715,37.84112],[-83.77593,37.84169],[-83.77438,37.8419],[-83.77383,37.84187],[-83.77301,37.84164],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71803,37.81531],[-83.71653,37.81549],[-83.71641,37.81554],[-83.71483,37.81646],[-83.71354,37.81663],[-83.71192,37.81634],[-83.71041,37.81565],[-83.70919,37.81576],[-83.70832,37.8157],[-83.7067,37.81488],[-83.70526,37.8144],[-83.7038,37.81413],[-83.70195,37.81432],[-83.70127,37.81415],[-83.70063,37.81391],[-83.69962,37.81368],[-83.69846,37.81381],[-83.69774,37.81366],[-83.69672,37.81367],[-83.69539,37.81422],[-83.69452,37.81496],[-83.69391,37.81527],[-83.69149,37.81559],[-83.68871,37.81651],[-83.68676,37.81681],[-83.68447,37.81659],[-83.68374,37.81661],[-83.68325,37.81667],[-83.68201,37.81715],[-83.6793,37.81743],[-83.67853,37.81729],[-83.67763,37.81748],[-83.67724,37.81733],[-83.67719,37.81666],[-83.67669,37.81605],[-83.67637,37.81585],[-83.67611,37.81586],[-83.67541,37.81619],[-83.67465,37.81627],[-83.67428,37.81696],[-83.67382,37.81664],[-83.67345,37.81662],[-83.67136,37.81727],[-83.66967,37.81847],[-83.66787,37.81911],[-83.66644,37.8205],[-83.66463,37.82173],[-83.6644,37.82193],[-83.66238,37.82388],[-83.66129,37.82614],[-83.66144,37.82725],[-83.66242,37.82934],[-83.66237,37.82984],[-83.6618,37.83101],[-83.66172,37.83229],[-83.6615,37.83269],[-83.66044,37.83293],[-83.65977,37.83374],[-83.65957,37.8338],[-83.65746,37.83327],[-83.65594,37.83342],[-83.65528,37.83372],[-83.65371,37.83483],[-83.65226,37.83546],[-83.6517,37.83559],[-83.64793,37.83478],[-83.64717,37.83442],[-83.64619,37.83232],[-83.64568,37.83142],[-83.64497,37.83015],[-83.64441,37.82868],[-83.64367,37.8273],[-83.64336,37.82702],[-83.64231,37.82676],[-83.64063,37.82666],[-83.63589,37.82688],[-83.63439,37.82708],[-83.6323,37.82679],[-83.63155,37.82674],[-83.63101,37.82675],[-83.6305,37.8269],[-83.62995,37.82754],[-83.62969,37.82761],[-83.62938,37.82753],[-83.62922,37.82717],[-83.62927,37.82584],[-83.62893,37.82526],[-83.62778,37.82402],[-83.62743,37.82384],[-83.62673,37.82401],[-83.62588,37.82479],[-83.62546,37.82662],[-83.62543,37.82717],[-83.62495,37.82876],[-83.62457,37.8294],[-83.62403,37.82977],[-83.62361,37.83027],[-83.62284,37.83076],[-83.62251,37.8313],[-83.62238,37.83158],[-83.62193,37.83265],[-83.62185,37.83298],[-83.6218,37.83421],[-83.62143,37.83471],[-83.62095,37.83501],[-83.61853,37.8358],[-83.61778,37.83593],[-83.61448,37.83609],[-83.61341,37.83587],[-83.61236,37.8353],[-83.61162,37.83528],[-83.61087,37.83561],[-83.60967,37.83669],[-83.60822,37.83594],[-83.60821,37.83572],[-83.60721,37.83458],[-83.60715,37.83442],[-83.60724,37.83322],[-83.60697,37.83306],[-83.60498,37.83257],[-83.60462,37.83179],[-83.60477,37.83114],[-83.6057,37.83],[-83.6057,37.82983],[-83.60532,37.82982],[-83.60363,37.83037],[-83.60032,37.8308],[-83.59967,37.8304],[-83.59901,37.82957],[-83.59848,37.82817],[-83.59843,37.82769],[-83.59728,37.82605],[-83.59744,37.82439],[-83.59774,37.82327],[-83.59728,37.82202],[-83.59593,37.8208],[-83.5952,37.82059],[-83.59342,37.81977],[-83.59161,37.81958],[-83.59032,37.81898],[-83.58994,37.81901],[-83.58788,37.8199],[-83.58759,37.82018],[-83.58731,37.82087],[-83.58703,37.82335],[-83.5865,37.82536],[-83.58599,37.82564],[-83.5853,37.82572],[-83.5838,37.82543],[-83.58313,37.82523],[-83.58166,37.82489],[-83.58124,37.82431],[-83.58134,37.82266],[-83.58248,37.8214],[-83.58242,37.82113],[-83.58198,37.82079],[-83.58129,37.82066],[-83.58072,37.82079],[-83.57892,37.82083],[-83.57612,37.8211],[-83.57545,37.82097],[-83.57494,37.82046],[-83.57444,37.81935],[-83.57452,37.81899],[-83.57637,37.81806],[-83.57757,37.81772],[-83.57856,37.81712],[-83.57813,37.81617],[-83.57813,37.81597],[-83.57841,37.81568],[-83.57857,37.81558],[-83.58003,37.81505],[-83.58144,37.81514],[-83.58181,37.815],[-83.58273,37.81381],[-83.58315,37.81227],[-83.58342,37.81199],[-83.5846,37.81194],[-83.58525,37.81146],[-83.58618,37.81153],[-83.58779,37.81129],[-83.58802,37.81119],[-83.58847,37.81065],[-83.58904,37.81042],[-83.58958,37.80951],[-83.58988,37.80951],[-83.59017,37.80998],[-83.58995,37.81099],[-83.5902,37.81155],[-83.59021,37.81204],[-83.58994,37.81254],[-83.58946,37.81278],[-83.58683,37.81319],[-83.58653,37.81338],[-83.58616,37.81406],[-83.58581,37.81428],[-83.58475,37.81464],[-83.58446,37.81487],[-83.58421,37.81561],[-83.58451,37.81627],[-83.58421,37.81561],[-83.58446,37.81487],[-83.58475,37.81464],[-83.58581,37.81428],[-83.58616,37.81406],[-83.58653,37.81338],[-83.58683,37.81319],[-83.58946,37.81278],[-83.58994,37.81254],[-83.59021,37.81204],[-83.5902,37.81155],[-83.58995,37.81099],[-83.59017,37.80998],[-83.59026,37.80968],[-83.58998,37.80811],[-83.59028,37.80681],[-83.59008,37.80664],[-83.58872,37.80645],[-83.58846,37.80626],[-83.58852,37.80596],[-83.58937,37.80511],[-83.59016,37.80438],[-83.59042,37.80392],[-83.59084,37.80247],[-83.59003,37.80097],[-83.59002,37.80072],[-83.59094,37.80001],[-83.59095,37.79922],[-83.59136,37.79775],[-83.59211,37.79718],[-83.593,37.79583],[-83.59323,37.79521],[-83.59295,37.79459],[-83.59129,37.79384],[-83.59079,37.79333],[-83.59078,37.79303],[-83.59123,37.79231],[-83.59128,37.79195],[-83.59079,37.79104],[-83.5908,37.79053],[-83.59131,37.79014],[-83.59169,37.79001],[-83.59363,37.79032],[-83.59447,37.79023],[-83.59485,37.79047],[-83.59528,37.79144],[-83.59562,37.79158],[-83.596,37.79145],[-83.59663,37.79088],[-83.59774,37.79073],[-83.59823,37.79047],[-83.59844,37.79025],[-83.59865,37.78996],[-83.59867,37.78921],[-83.59951,37.78835],[-83.5999,37.78754],[-83.60064,37.78749],[-83.60189,37.78776],[-83.60231,37.78768],[-83.60261,37.78743],[-83.60302,37.78675],[-83.60377,37.78643],[-83.60484,37.78574],[-83.60493,37.78545],[-83.60466,37.78513],[-83.60351,37.78506],[-83.60299,37.78481],[-83.60211,37.78473],[-83.60185,37.78448],[-83.6019,37.78411],[-83.60331,37.78269],[-83.60401,37.78243],[-83.60463,37.78195],[-83.6045,37.781],[-83.60493,37.78034],[-83.60505,37.77968],[-83.60524,37.77938],[-83.60554,37.7792],[-83.60649,37.77907],[-83.60696,37.77907],[-83.60751,37.77923],[-83.6079,37.77916],[-83.60854,37.77875],[-83.60875,37.77795],[-83.60879,37.77774],[-83.60883,37.77688],[-83.60774,37.77552],[-83.60771,37.77475],[-83.60887,37.7738],[-83.61032,37.77332],[-83.611,37.77288],[-83.6113,37.77248],[-83.61148,37.7719],[-83.60987,37.77011],[-83.60995,37.76875],[-83.60902,37.76778],[-83.60896,37.76737],[-83.60959,37.76606],[-83.61062,37.7645],[-83.61128,37.764],[-83.61231,37.76375],[-83.6129,37.76363],[-83.61306,37.76359],[-83.61286,37.76334],[-83.61215,37.76263],[-83.61034,37.76164],[-83.61003,37.76133],[-83.60996,37.76093],[-83.6106,37.75886],[-83.61045,37.7581],[-83.61048,37.7569],[-83.6097,37.75463],[-83.60877,37.75297],[-83.60977,37.75259],[-83.61131,37.75232],[-83.61477,37.75249],[-83.61914,37.75167],[-83.61969,37.75128],[-83.62235,37.7487],[-83.62363,37.74731],[-83.62401,37.74722],[-83.62517,37.7475],[-83.62659,37.74725],[-83.62805,37.74654],[-83.62909,37.74512],[-83.6295,37.74478],[-83.6303,37.7446],[-83.63172,37.74479],[-83.63304,37.74423],[-83.63404,37.74382],[-83.63567,37.74404],[-83.64006,37.74381],[-83.64136,37.7437],[-83.64192,37.74352],[-83.64341,37.74253],[-83.64394,37.74195],[-83.64585,37.73589],[-83.64593,37.73529],[-83.64567,37.7327],[-83.64572,37.73162],[-83.64593,37.73089],[-83.64655,37.72972],[-83.64661,37.72847],[-83.64647,37.72748],[-83.64682,37.72682],[-83.64668,37.72547],[-83.64621,37.72515],[-83.64573,37.72506],[-83.64462,37.72549],[-83.64403,37.72502],[-83.64321,37.72472],[-83.64198,37.72399],[-83.64162,37.72346],[-83.64161,37.72127],[-83.64089,37.71997],[-83.64024,37.71934],[-83.63889,37.71891],[-83.63784,37.71794],[-83.63796,37.71683],[-83.63744,37.71602],[-83.63797,37.71544],[-83.63868,37.71506],[-83.63915,37.71421],[-83.63953,37.71384],[-83.63961,37.71168],[-83.63907,37.71088],[-83.6386,37.71055],[-83.63828,37.71046],[-83.63733,37.71054],[-83.63682,37.71028],[-83.6368,37.70994],[-83.6372,37.70888],[-83.63793,37.70787],[-83.6372,37.70712],[-83.63664,37.706],[-83.63689,37.70562],[-83.63745,37.70527],[-83.6378,37.70516],[-83.63856,37.7052],[-83.63887,37.70507],[-83.63906,37.70487],[-83.63913,37.70447],[-83.63831,37.70334],[-83.63789,37.70167],[-83.6376,37.70111],[-83.63791,37.69991],[-83.63775,37.69941],[-83.63716,37.6991],[-83.63546,37.69888],[-83.63508,37.69872],[-83.63419,37.69777],[-83.63319,37.69732],[-83.63237,37.69642],[-83.63231,37.69601],[-83.63248,37.69528],[-83.63383,37.6941],[-83.63468,37.69267],[-83.63461,37.69239],[-83.63412,37.69202],[-83.634,37.69174],[-83.63396,37.68915],[-83.63441,37.68693],[-83.63327,37.68575],[-83.63185,37.68522],[-83.63107,37.68431],[-83.63,37.68354],[-83.62997,37.68321],[-83.63066,37.6818],[-83.63053,37.68138],[-83.62961,37.68102],[-83.62817,37.68085],[-83.62778,37.68066],[-83.62756,37.67954],[-83.62849,37.679],[-83.6289,37.67851],[-83.629,37.67812],[-83.62824,37.67687],[-83.62837,37.67614],[-83.62826,37.67576],[-83.62676,37.67421],[-83.62455,37.67314],[-83.62432,37.67286],[-83.62439,37.67255],[-83.62542,37.67195],[-83.62589,37.67114],[-83.62585,37.67085],[-83.6253,37.67044],[-83.62519,37.67015],[-83.62656,37.66846],[-83.62825,37.66735],[-83.62964,37.66562],[-83.63216,37.66204],[-83.63261,37.6618],[-83.63567,37.66123],[-83.63655,37.66095],[-83.63658,37.66075],[-83.63613,37.66039],[-83.63605,37.66005],[-83.63635,37.65922],[-83.63652,37.6578],[-83.63735,37.65661],[-83.63723,37.65645],[-83.63679,37.65633],[-83.63573,37.6563],[-83.63485,37.65576],[-83.63475,37.65419],[-83.63384,37.65323],[-83.63431,37.65251],[-83.63426,37.65088],[-83.63459,37.64994],[-83.63455,37.64913],[-83.63472,37.64895],[-83.63584,37.64847],[-83.63669,37.6472],[-83.6364,37.64572],[-83.63594,37.64448],[-83.63607,37.64388],[-83.63602,37.64311],[-83.63636,37.64257],[-83.6368,37.64135],[-83.63705,37.63951],[-83.63691,37.63893],[-83.63642,37.63851],[-83.63593,37.63841],[-83.63515,37.63851],[-83.63476,37.63835],[-83.63446,37.63782],[-83.6344,37.63721],[-83.63481,37.63586],[-83.63557,37.63524],[-83.63642,37.63387],[-83.63757,37.6329],[-83.6383,37.63068],[-83.63805,37.62995],[-83.63637,37.62931],[-83.63528,37.6287],[-83.63511,37.62847],[-83.63518,37.62829],[-83.63604,37.62784],[-83.63727,37.62734],[-83.63775,37.62519],[-83.63757,37.6245],[-83.6367,37.62386],[-83.63613,37.62313],[-83.63587,37.62123],[-83.63667,37.61988],[-83.63669,37.61887],[-83.63738,37.61743],[-83.6385,37.61643],[-83.63949,37.61376],[-83.63935,37.61268],[-83.63961,37.61133],[-83.63906,37.60992],[-83.63852,37.60927],[-83.63825,37.6087],[-83.63845,37.60658],[-83.63696,37.60543],[-83.63676,37.60484],[-83.63687,37.60403],[-83.63736,37.60289],[-83.6382,37.60229],[-83.63921,37.60237],[-83.6406,37.60283],[-83.64276,37.60242],[-83.64342,37.60218],[-83.64387,37.60159],[-83.64422,37.59999],[-83.64526,37.59915],[-83.64529,37.59877],[-83.64492,37.5982],[-83.64475,37.5975],[-83.64418,37.5968],[-83.64385,37.59575],[-83.6428,37.59518],[-83.64177,37.59386],[-83.6417,37.59354],[-83.64306,37.58919],[-83.64317,37.58785],[-83.64377,37.58735],[-83.64519,37.58701],[-83.64603,37.5866],[-83.64956,37.58088],[-83.6501,37.58083],[-83.65078,37.58058],[-83.65309,37.57907],[-83.65365,37.57888],[-83.65424,37.57887],[-83.65865,37.57993],[-83.65956,37.5799],[-83.66042,37.57963],[-83.66126,37.57895],[-83.66317,37.57519],[-83.66358,37.57469],[-83.66454,37.57411],[-83.66585,37.5739],[-83.66705,37.57412],[-83.66779,37.57441],[-83.66942,37.57565],[-83.67135,37.57645],[-83.67246,37.57709],[-83.67614,37.5799],[-83.67866,37.58106],[-83.68711,37.58367],[-83.689,37.5839],[-83.69107,37.58371],[-83.6923,37.58319],[-83.69315,37.58239],[-83.69611,37.57577],[-83.69678,37.57456],[-83.69854,37.57224],[-83.69978,37.57121],[-83.70188,37.56997],[-83.70656,37.56856],[-83.70653,37.57021],[-83.70788,37.57052],[-83.70779,37.57159],[-83.7073,37.57238],[-83.70704,37.57311],[-83.7079,37.57345],[-83.7097,37.57454],[-83.71031,37.57511],[-83.71027,37.57581],[-83.7109,37.5765],[-83.71111,37.57725],[-83.71084,37.57817],[-83.71043,37.57879],[-83.71046,37.57953],[-83.70978,37.58044],[-83.70963,37.58087],[-83.70979,37.58164],[-83.71035,37.58246],[-83.71,37.58301],[-83.71018,37.58395],[-83.71,37.5871],[-83.70832,37.59032],[-83.70817,37.59083],[-83.70829,37.5925],[-83.70889,37.59458],[-83.70935,37.59533],[-83.71064,37.59675],[-83.71077,37.59712],[-83.71025,37.59853],[-83.70973,37.60126],[-83.70931,37.60222],[-83.70902,37.60292],[-83.70891,37.60365],[-83.70932,37.60522],[-83.70974,37.60941],[-83.71076,37.61097],[-83.71148,37.61296],[-83.71182,37.61337],[-83.7124,37.61368],[-83.71463,37.6141],[-83.71544,37.6149],[-83.71583,37.61558],[-83.71584,37.61631],[-83.716,37.61671],[-83.71639,37.61711],[-83.71732,37.61764],[-83.71773,37.61826],[-83.71787,37.61905],[-83.71753,37.62027],[-83.71767,37.62079],[-83.71842,37.62185],[-83.71983,37.62256],[-83.72035,37.62305],[-83.72071,37.62409],[-83.72134,37.62517],[-83.72116,37.62633],[-83.7214,37.6269],[-83.72206,37.62754],[-83.72289,37.62791],[-83.72324,37.62823],[-83.72372,37.62988],[-83.72343,37.63031],[-83.7221,37.63106],[-83.72194,37.63129],[-83.72216,37.63346],[-83.72156,37.63373],[-83.72134,37.63418],[-83.72155,37.6346],[-83.72223,37.63506],[-83.72227,37.6354],[-83.72203,37.63561],[-83.72106,37.63594],[-83.72015,37.63704],[-83.71959,37.63732],[-83.71867,37.63725],[-83.71766,37.63655],[-83.71667,37.63665],[-83.71633,37.63658],[-83.71607,37.63621],[-83.7162,37.63548],[-83.71565,37.63519],[-83.71304,37.63493],[-83.71133,37.63493],[-83.70874,37.63512],[-83.7072,37.63506],[-83.70404,37.63544],[-83.70249,37.63494],[-83.70195,37.63513],[-83.70135,37.63631],[-83.70037,37.63719],[-83.69708,37.63879],[-83.69917,37.64125],[-83.70228,37.64526],[-83.70296,37.6467],[-83.70311,37.64796],[-83.70302,37.64914],[-83.70215,37.65558],[-83.70179,37.65674],[-83.70127,37.65746],[-83.70031,37.6582],[-83.67963,37.6714],[-83.67868,37.67233],[-83.6783,37.67322],[-83.67831,37.67432],[-83.67858,37.67502],[-83.6796,37.67604],[-83.68371,37.67955],[-83.68473,37.68069],[-83.685,37.68153],[-83.68502,37.68253],[-83.68436,37.68633],[-83.6843,37.68888],[-83.68453,37.69054],[-83.68548,37.69385],[-83.68553,37.69459],[-83.68527,37.69572],[-83.6829,37.70214],[-83.68215,37.70431],[-83.68156,37.70515],[-83.68084,37.70574],[-83.67977,37.70617],[-83.67863,37.70631],[-83.67627,37.70627],[-83.67528,37.70653],[-83.67356,37.70764],[-83.67039,37.70924],[-83.66832,37.71119],[-83.66737,37.71295],[-83.66654,37.71373],[-83.66566,37.71437],[-83.66485,37.71486],[-83.66379,37.71524],[-83.66326,37.71567],[-83.66254,37.71729],[-83.65925,37.72248],[-83.65893,37.72383],[-83.65879,37.72731],[-83.65787,37.72997],[-83.658,37.73048],[-83.65873,37.73168],[-83.65889,37.73276],[-83.65863,37.73358],[-83.65755,37.73505],[-83.65754,37.73511],[-83.6575,37.73697],[-83.65655,37.73862],[-83.65643,37.73923],[-83.65655,37.73981],[-83.65687,37.74035],[-83.65725,37.74069],[-83.65908,37.74159],[-83.65963,37.74217],[-83.66064,37.74414],[-83.66138,37.74651],[-83.66209,37.7477],[-83.66236,37.74934],[-83.66277,37.7501],[-83.66331,37.75055],[-83.6654,37.75167],[-83.66594,37.75223],[-83.6661,37.7527],[-83.66607,37.75323],[-83.66529,37.75461],[-83.66522,37.75545],[-83.66525,37.75554],[-83.66565,37.75616],[-83.6674,37.7576],[-83.66822,37.75815],[-83.66964,37.75885],[-83.67021,37.75944],[-83.67037,37.76027],[-83.66959,37.7623],[-83.66969,37.763],[-83.6701,37.76368],[-83.67058,37.76407],[-83.67122,37.76437],[-83.67404,37.76501],[-83.67463,37.76541],[-83.67456,37.76596],[-83.67386,37.76693],[-83.67385,37.76749],[-83.67419,37.76798],[-83.67585,37.76907],[-83.67624,37.76955],[-83.67625,37.77154],[-83.67689,37.77281],[-83.67669,37.77348],[-83.67664,37.77354],[-83.67567,37.77421],[-83.6754,37.77468],[-83.67557,37.77514],[-83.6769,37.7761],[-83.67714,37.77652],[-83.67697,37.77699],[-83.67598,37.77794],[-83.67581,37.77963],[-83.6761,37.78],[-83.67649,37.78017],[-83.67884,37.78032],[-83.67916,37.78038],[-83.6792,37.78039],[-83.68041,37.78053],[-83.68103,37.78064],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.7542,37.82417],[-83.7546,37.82445],[-83.7576,37.82647],[-83.76063,37.82738],[-83.7628,37.82848],[-83.76378,37.82868],[-83.76447,37.82869],[-83.76502,37.82858],[-83.76633,37.82801],[-83.76684,37.82799],[-83.76735,37.82822],[-83.77079,37.83226],[-83.77085,37.83294],[-83.77036,37.8342],[-83.77016,37.83718],[-83.77032,37.83794],[-83.77154,37.84066],[-83.7716,37.84075],[-83.77171,37.84086],[-83.77183,37.84097],[-83.77136,37.84158],[-83.7711,37.84201],[-83.76917,37.84523],[-83.76853,37.84736],[-83.76836,37.84805],[-83.76821,37.84863],[-83.76814,37.84881],[-83.76883,37.84889],[-83.76913,37.84889],[-83.77112,37.84852],[-83.77271,37.84774],[-83.77629,37.84754],[-83.77741,37.84798],[-83.77835,37.84898],[-83.77862,37.8496],[-83.77862,37.85031],[-83.77878,37.85053],[-83.78107,37.85155],[-83.78218,37.85162],[-83.78259,37.85064],[-83.7838,37.84976],[-83.7847,37.84939],[-83.78584,37.84934],[-83.78646,37.8494],[-83.78694,37.84933],[-83.78792,37.84881],[-83.78862,37.848],[-83.78932,37.84688],[-83.78937,37.84642],[-83.78872,37.84409],[-83.78881,37.84372],[-83.7894,37.84317],[-83.79236,37.84139],[-83.79279,37.84128],[-83.79434,37.84157],[-83.7956,37.84232],[-83.797,37.84269],[-83.7996,37.8427],[-83.8012,37.84338],[-83.80255,37.84437],[-83.80541,37.8449],[-83.80715,37.84606],[-83.80733,37.84662],[-83.80728,37.85119],[-83.80745,37.85266],[-83.80862,37.85609],[-83.80889,37.85655],[-83.8095,37.85701],[-83.8154,37.85896],[-83.81762,37.85952],[-83.8181,37.85971],[-83.81901,37.86037],[-83.82098,37.86086],[-83.82182,37.86089],[-83.82251,37.86074],[-83.82533,37.85956],[-83.82982,37.86042],[-83.83114,37.86104],[-83.8322,37.8617],[-83.83452,37.8645],[-83.83543,37.86504],[-83.83623,37.86524],[-83.83827,37.86527],[-83.83954,37.86482],[-83.84091,37.86497],[-83.8458,37.86515],[-83.84936,37.86486],[-83.84987,37.86504],[-83.85154,37.8662],[-83.85198,37.86633],[-83.85312,37.86601],[-83.8541,37.86517],[-83.85467,37.86484],[-83.8549,37.86476],[-83.85522,37.86467],[-83.85603,37.86439],[-83.85469,37.86224],[-83.8544,37.86125],[-83.85475,37.8562],[-83.85493,37.85546],[-83.85546,37.8545],[-83.85579,37.85398],[-83.85622,37.8532],[-83.86097,37.85461],[-83.86484,37.85446],[-83.86509,37.85452],[-83.86601,37.85476],[-83.86748,37.85499],[-83.86808,37.85498],[-83.86822,37.85499],[-83.87067,37.85105],[-83.87109,37.84855],[-83.87203,37.84861],[-83.87217,37.84874]]}},
{"type":"Feature","properties":{"name":"Test RRR Starting in Stanton 89 Mile"},"geometry":{"type":"LineString","coordinates":[[-83.87223,37.84878],[-83.87217,37.84874],[-83.87203,37.84861],[-83.87109,37.84855],[-83.87131,37.84643],[-83.87108,37.84653],[-83.87076,37.84664],[-83.87055,37.84669],[-83.86907,37.84675],[-83.86165,37.84576],[-83.85847,37.8456],[-83.85349,37.84529],[-83.85168,37.84506],[-83.84488,37.84359],[-83.84358,37.8434],[-83.83706,37.84421],[-83.83178,37.8457],[-83.8295,37.84623],[-83.82881,37.84629],[-83.82794,37.84614],[-83.8234,37.84452],[-83.82164,37.84417],[-83.82042,37.8442],[-83.81856,37.84476],[-83.81731,37.84469],[-83.81667,37.84444],[-83.81349,37.84226],[-83.81281,37.84149],[-83.81195,37.84009],[-83.81187,37.83928],[-83.81204,37.83807],[-83.81317,37.83619],[-83.81337,37.83542],[-83.81341,37.83349],[-83.81311,37.83294],[-83.81279,37.83267],[-83.81022,37.83143],[-83.80949,37.8312],[-83.80454,37.83092],[-83.79492,37.82723],[-83.79386,37.82699],[-83.78911,37.82745],[-83.78835,37.82776],[-83.78713,37.82851],[-83.78669,37.82908],[-83.78509,37.83206],[-83.78495,37.83273],[-83.78504,37.83402],[-83.7848,37.83451],[-83.78233,37.83625],[-83.78088,37.83855],[-83.77715,37.84112],[-83.77593,37.84169],[-83.77438,37.8419],[-83.77383,37.84187],[-83.77301,37.84164],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71803,37.81531],[-83.71653,37.81549],[-83.71641,37.81554],[-83.71483,37.81646],[-83.71354,37.81663],[-83.71192,37.81634],[-83.71041,37.81565],[-83.70919,37.81576],[-83.70832,37.8157],[-83.7067,37.81488],[-83.70526,37.8144],[-83.7038,37.81413],[-83.70195,37.81432],[-83.70127,37.81415],[-83.70063,37.81391],[-83.69962,37.81368],[-83.69846,37.81381],[-83.69774,37.81366],[-83.69672,37.81367],[-83.69539,37.81422],[-83.69452,37.81496],[-83.69391,37.81527],[-83.69149,37.81559],[-83.68871,37.81651],[-83.68676,37.81681],[-83.68447,37.81659],[-83.68374,37.81661],[-83.68325,37.81667],[-83.68201,37.81715],[-83.6793,37.81743],[-83.67853,37.81729],[-83.67763,37.81748],[-83.67724,37.81733],[-83.67719,37.81666],[-83.67669,37.81605],[-83.67637,37.81585],[-83.67611,37.81586],[-83.67541,37.81619],[-83.67465,37.81627],[-83.67428,37.81696],[-83.67382,37.81664],[-83.67345,37.81662],[-83.67136,37.81727],[-83.66967,37.81847],[-83.66787,37.81911],[-83.66644,37.8205],[-83.66463,37.82173],[-83.6644,37.82193],[-83.66238,37.82388],[-83.66129,37.82614],[-83.66144,37.82725],[-83.66242,37.82934],[-83.66237,37.82984],[-83.6618,37.83101],[-83.66172,37.83229],[-83.6615,37.83269],[-83.66044,37.83293],[-83.65977,37.83374],[-83.65957,37.8338],[-83.65746,37.83327],[-83.65594,37.83342],[-83.65528,37.83372],[-83.65371,37.83483],[-83.65226,37.83546],[-83.6517,37.83559],[-83.64793,37.83478],[-83.64717,37.83442],[-83.64619,37.83232],[-83.64568,37.83142],[-83.64497,37.83015],[-83.64441,37.82868],[-83.64367,37.8273],[-83.64336,37.82702],[-83.64231,37.82676],[-83.64063,37.82666],[-83.63589,37.82688],[-83.63439,37.82708],[-83.6323,37.82679],[-83.63155,37.82674],[-83.63101,37.82675],[-83.6305,37.8269],[-83.62995,37.82754],[-83.62969,37.82761],[-83.62938,37.82753],[-83.62922,37.82717],[-83.62927,37.82584],[-83.62893,37.82526],[-83.62778,37.82402],[-83.62743,37.82384],[-83.62673,37.82401],[-83.62588,37.82479],[-83.62546,37.82662],[-83.62543,37.82717],[-83.62495,37.82876],[-83.62457,37.8294],[-83.62403,37.82977],[-83.62361,37.83027],[-83.62284,37.83076],[-83.62251,37.8313],[-83.62238,37.83158],[-83.62193,37.83265],[-83.62185,37.83298],[-83.6218,37.83421],[-83.62143,37.83471],[-83.62095,37.83501],[-83.61853,37.8358],[-83.61778,37.83593],[-83.61448,37.83609],[-83.61341,37.83587],[-83.61236,37.8353],[-83.61162,37.83528],[-83.61087,37.83561],[-83.60967,37.83669],[-83.60822,37.83594],[-83.60821,37.83572],[-83.60721,37.83458],[-83.60715,37.83442],[-83.60724,37.83322],[-83.60697,37.83306],[-83.60498,37.83257],[-83.60462,37.83179],[-83.60477,37.83114],[-83.6057,37.83],[-83.6057,37.82983],[-83.60532,37.82982],[-83.60363,37.83037],[-83.60032,37.8308],[-83.59967,37.8304],[-83.59901,37.82957],[-83.59848,37.82817],[-83.59843,37.82769],[-83.59728,37.82605],[-83.59744,37.82439],[-83.59774,37.82327],[-83.59728,37.82202],[-83.59593,37.8208],[-83.5952,37.82059],[-83.59342,37.81977],[-83.59161,37.81958],[-83.59032,37.81898],[-83.58994,37.81901],[-83.58788,37.8199],[-83.58759,37.82018],[-83.58731,37.82087],[-83.58703,37.82335],[-83.5865,37.82536],[-83.58599,37.82564],[-83.5853,37.82572],[-83.5838,37.82543],[-83.58313,37.82523],[-83.58166,37.82489],[-83.58124,37.82431],[-83.58134,37.82266],[-83.58248,37.8214],[-83.58242,37.82113],[-83.58198,37.82079],[-83.58129,37.82066],[-83.58072,37.82079],[-83.57892,37.82083],[-83.57612,37.8211],[-83.57545,37.82097],[-83.57494,37.82046],[-83.57444,37.81935],[-83.57452,37.81899],[-83.57637,37.81806],[-83.57757,37.81772],[-83.57856,37.81712],[-83.57813,37.81617],[-83.57813,37.81597],[-83.57841,37.81568],[-83.57857,37.81558],[-83.58003,37.81505],[-83.58144,37.81514],[-83.58181,37.815],[-83.58273,37.81381],[-83.58315,37.81227],[-83.58342,37.81199],[-83.5846,37.81194],[-83.58525,37.81146],[-83.58618,37.81153],[-83.58779,37.81129],[-83.58802,37.81119],[-83.58847,37.81065],[-83.58904,37.81042],[-83.58958,37.80951],[-83.58988,37.80951],[-83.59017,37.80998],[-83.58995,37.81099],[-83.5902,37.81155],[-83.59021,37.81204],[-83.58994,37.81254],[-83.58946,37.81278],[-83.58683,37.81319],[-83.58653,37.81338],[-83.58616,37.81406],[-83.58581,37.81428],[-83.58475,37.81464],[-83.58446,37.81487],[-83.58421,37.81561],[-83.58451,37.81627],[-83.58421,37.81561],[-83.58446,37.81487],[-83.58475,37.81464],[-83.58581,37.81428],[-83.58616,37.81406],[-83.58653,37.81338],[-83.58683,37.81319],[-83.58946,37.81278],[-83.58994,37.81254],[-83.59021,37.81204],[-83.5902,37.81155],[-83.58995,37.81099],[-83.59017,37.80998],[-83.59026,37.80968],[-83.58998,37.80811],[-83.59028,37.80681],[-83.59008,37.80664],[-83.58872,37.80645],[-83.58846,37.80626],[-83.58852,37.80596],[-83.58937,37.80511],[-83.59016,37.80438],[-83.59042,37.80392],[-83.59084,37.80247],[-83.59003,37.80097],[-83.59002,37.80072],[-83.59094,37.80001],[-83.59095,37.79922],[-83.59136,37.79775],[-83.59211,37.79718],[-83.593,37.79583],[-83.59323,37.79521],[-83.59295,37.79459],[-83.59129,37.79384],[-83.59079,37.79333],[-83.59078,37.79303],[-83.59123,37.79231],[-83.59128,37.79195],[-83.59079,37.79104],[-83.5908,37.79053],[-83.59131,37.79014],[-83.59169,37.79001],[-83.59363,37.79032],[-83.59447,37.79023],[-83.59485,37.79047],[-83.59528,37.79144],[-83.59562,37.79158],[-83.596,37.79145],[-83.59663,37.79088],[-83.59774,37.79073],[-83.59823,37.79047],[-83.59844,37.79025],[-83.59865,37.78996],[-83.59867,37.78921],[-83.59951,37.78835],[-83.5999,37.78754],[-83.60064,37.78749],[-83.60189,37.78776],[-83.60231,37.78768],[-83.60261,37.78743],[-83.60302,37.78675],[-83.60377,37.78643],[-83.60484,37.78574],[-83.60493,37.78545],[-83.60466,37.78513],[-83.60351,37.78506],[-83.60299,37.78481],[-83.60211,37.78473],[-83.60185,37.78448],[-83.6019,37.78411],[-83.60331,37.78269],[-83.60401,37.78243],[-83.60463,37.78195],[-83.6045,37.781],[-83.60493,37.78034],[-83.60505,37.77968],[-83.60524,37.77938],[-83.60554,37.7792],[-83.60649,37.77907],[-83.60696,37.77907],[-83.60751,37.77923],[-83.6079,37.77916],[-83.60854,37.77875],[-83.60875,37.77795],[-83.60879,37.77774],[-83.60883,37.77688],[-83.60774,37.77552],[-83.60771,37.77475],[-83.60887,37.7738],[-83.61032,37.77332],[-83.611,37.77288],[-83.6113,37.77248],[-83.61148,37.7719],[-83.60987,37.77011],[-83.60995,37.76875],[-83.60902,37.76778],[-83.60896,37.76737],[-83.60959,37.76606],[-83.61062,37.7645],[-83.61128,37.764],[-83.61231,37.76375],[-83.6129,37.76363],[-83.61306,37.76359],[-83.61286,37.76334],[-83.61215,37.76263],[-83.61034,37.76164],[-83.61003,37.76133],[-83.60996,37.76093],[-83.6106,37.75886],[-83.61045,37.7581],[-83.61048,37.7569],[-83.6097,37.75463],[-83.60877,37.75297],[-83.60977,37.75259],[-83.61131,37.75232],[-83.61477,37.75249],[-83.61914,37.75167],[-83.61969,37.75128],[-83.62235,37.7487],[-83.62363,37.74731],[-83.62401,37.74722],[-83.62517,37.7475],[-83.62659,37.74725],[-83.62805,37.74654],[-83.62909,37.74512],[-83.6295,37.74478],[-83.6303,37.7446],[-83.63172,37.74479],[-83.63304,37.74423],[-83.63404,37.74382],[-83.63567,37.74404],[-83.64006,37.74381],[-83.64136,37.7437],[-83.64192,37.74352],[-83.64341,37.74253],[-83.64394,37.74195],[-83.64585,37.73589],[-83.64593,37.73529],[-83.64567,37.7327],[-83.64572,37.73162],[-83.64593,37.73089],[-83.64655,37.72972],[-83.64661,37.72847],[-83.64647,37.72748],[-83.64682,37.72682],[-83.64668,37.72547],[-83.64621,37.72515],[-83.64573,37.72506],[-83.64462,37.72549],[-83.64403,37.72502],[-83.64321,37.72472],[-83.64198,37.72399],[-83.64162,37.72346],[-83.64161,37.72127],[-83.64089,37.71997],[-83.64024,37.71934],[-83.63889,37.71891],[-83.63784,37.71794],[-83.63796,37.71683],[-83.63744,37.71602],[-83.63797,37.71544],[-83.63868,37.71506],[-83.63915,37.71421],[-83.63953,37.71384],[-83.63961,37.71168],[-83.63907,37.71088],[-83.6386,37.71055],[-83.63828,37.71046],[-83.63733,37.71054],[-83.63682,37.71028],[-83.6368,37.70994],[-83.6372,37.70888],[-83.63793,37.70787],[-83.6372,37.70712],[-83.63664,37.706],[-83.63689,37.70562],[-83.63745,37.70527],[-83.6378,37.70516],[-83.63856,37.7052],[-83.63887,37.70507],[-83.63906,37.70487],[-83.63913,37.70447],[-83.63831,37.70334],[-83.63789,37.70167],[-83.6376,37.70111],[-83.63791,37.69991],[-83.63775,37.69941],[-83.63716,37.6991],[-83.63546,37.69888],[-83.63508,37.69872],[-83.63419,37.69777],[-83.63319,37.69732],[-83.63237,37.69642],[-83.63231,37.69601],[-83.63248,37.69528],[-83.63383,37.6941],[-83.63468,37.69267],[-83.63461,37.69239],[-83.63412,37.69202],[-83.634,37.69174],[-83.63396,37.68915],[-83.63441,37.68693],[-83.63327,37.68575],[-83.63185,37.68522],[-83.63107,37.68431],[-83.63,37.68354],[-83.62997,37.68321],[-83.63066,37.6818],[-83.63053,37.68138],[-83.62961,37.68102],[-83.62817,37.68085],[-83.62778,37.68066],[-83.62756,37.67954],[-83.62849,37.679],[-83.6289,37.67851],[-83.629,37.67812],[-83.62824,37.67687],[-83.62837,37.67614],[-83.62826,37.67576],[-83.62676,37.67421],[-83.62455,37.67314],[-83.62432,37.67286],[-83.62439,37.67255],[-83.62542,37.67195],[-83.62589,37.67114],[-83.62585,37.67085],[-83.6253,37.67044],[-83.62519,37.67015],[-83.62656,37.66846],[-83.62825,37.66735],[-83.62964,37.66562],[-83.63216,37.66204],[-83.63261,37.6618],[-83.63567,37.66123],[-83.63655,37.66095],[-83.63658,37.66075],[-83.63613,37.66039],[-83.63605,37.66005],[-83.63635,37.65922],[-83.63652,37.6578],[-83.63735,37.65661],[-83.63723,37.65645],[-83.63679,37.65633],[-83.63573,37.6563],[-83.63485,37.65576],[-83.63475,37.65419],[-83.63384,37.65323],[-83.63431,37.65251],[-83.63426,37.65088],[-83.63459,37.64994],[-83.63455,37.64913],[-83.63472,37.64895],[-83.63584,37.64847],[-83.63669,37.6472],[-83.6364,37.64572],[-83.63594,37.64448],[-83.63607,37.64388],[-83.63602,37.64311],[-83.63636,37.64257],[-83.6368,37.64135],[-83.63705,37.63951],[-83.63691,37.63893],[-83.63642,37.63851],[-83.63593,37.63841],[-83.63515,37.63851],[-83.63476,37.63835],[-83.63446,37.63782],[-83.6344,37.63721],[-83.63481,37.63586],[-83.63557,37.63524],[-83.63642,37.63387],[-83.63757,37.6329],[-83.6383,37.63068],[-83.63805,37.62995],[-83.63637,37.62931],[-83.63528,37.6287],[-83.63511,37.62847],[-83.63518,37.62829],[-83.63604,37.62784],[-83.63727,37.62734],[-83.63775,37.62519],[-83.63757,37.6245],[-83.6367,37.62386],[-83.63613,37.62313],[-83.63587,37.62123],[-83.63667,37.61988],[-83.63669,37.61887],[-83.63738,37.61743],[-83.6385,37.61643],[-83.63949,37.61376],[-83.63935,37.61268],[-83.63961,37.61133],[-83.63906,37.60992],[-83.63852,37.60927],[-83.63825,37.6087],[-83.63845,37.60658],[-83.63696,37.60543],[-83.63676,37.60484],[-83.63687,37.60403],[-83.63736,37.60289],[-83.6382,37.60229],[-83.63921,37.60237],[-83.6406,37.60283],[-83.64276,37.60242],[-83.64342,37.60218],[-83.64387,37.60159],[-83.64422,37.59999],[-83.64526,37.59915],[-83.64529,37.59877],[-83.64492,37.5982],[-83.64475,37.5975],[-83.64418,37.5968],[-83.64385,37.59575],[-83.6428,37.59518],[-83.64177,37.59386],[-83.6417,37.59354],[-83.64306,37.58919],[-83.64317,37.58785],[-83.64377,37.58735],[-83.64519,37.58701],[-83.64603,37.5866],[-83.64956,37.58088],[-83.6501,37.58083],[-83.65078,37.58058],[-83.65309,37.57907],[-83.65365,37.57888],[-83.65424,37.57887],[-83.65865,37.57993],[-83.65956,37.5799],[-83.66042,37.57963],[-83.66126,37.57895],[-83.66317,37.57519],[-83.66358,37.57469],[-83.66454,37.57411],[-83.66585,37.5739],[-83.66705,37.57412],[-83.66779,37.57441],[-83.66942,37.57565],[-83.67135,37.57645],[-83.67246,37.57709],[-83.67614,37.5799],[-83.67866,37.58106],[-83.68711,37.58367],[-83.689,37.5839],[-83.69107,37.58371],[-83.6923,37.58319],[-83.69315,37.58239],[-83.69611,37.57577],[-83.69678,37.57456],[-83.69854,37.57224],[-83.69978,37.57121],[-83.70188,37.56997],[-83.70656,37.56856],[-83.70653,37.57021],[-83.70788,37.57052],[-83.70779,37.57159],[-83.7073,37.57238],[-83.70704,37.57311],[-83.7079,37.57345],[-83.7097,37.57454],[-83.71031,37.57511],[-83.71027,37.57581],[-83.7109,37.5765],[-83.71111,37.57725],[-83.71084,37.57817],[-83.71043,37.57879],[-83.71046,37.57953],[-83.70978,37.58044],[-83.70963,37.58087],[-83.70979,37.58164],[-83.71035,37.58246],[-83.71,37.58301],[-83.71018,37.58395],[-83.71,37.5871],[-83.70832,37.59032],[-83.70817,37.59083],[-83.70829,37.5925],[-83.70889,37.59458],[-83.70935,37.59533],[-83.71064,37.59675],[-83.71077,37.59712],[-83.71025,37.59853],[-83.70973,37.60126],[-83.70931,37.60222],[-83.70902,37.60292],[-83.70891,37.60365],[-83.70932,37.60522],[-83.70974,37.60941],[-83.71076,37.61097],[-83.71148,37.61296],[-83.71182,37.61337],[-83.7124,37.61368],[-83.71463,37.6141],[-83.71544,37.6149],[-83.71583,37.61558],[-83.71584,37.61631],[-83.716,37.61671],[-83.71639,37.61711],[-83.71732,37.61764],[-83.71773,37.61826],[-83.71787,37.61905],[-83.71753,37.62027],[-83.71767,37.62079],[-83.71842,37.62185],[-83.71983,37.62256],[-83.72035,37.62305],[-83.72071,37.62409],[-83.72134,37.62517],[-83.72116,37.62633],[-83.7214,37.6269],[-83.72206,37.62754],[-83.72289,37.62791],[-83.72324,37.62823],[-83.72372,37.62988],[-83.72343,37.63031],[-83.7221,37.63106],[-83.72194,37.63129],[-83.72216,37.63346],[-83.72156,37.63373],[-83.72134,37.63418],[-83.72155,37.6346],[-83.72223,37.63506],[-83.72227,37.6354],[-83.72203,37.63561],[-83.72106,37.63594],[-83.72015,37.63704],[-83.71959,37.63732],[-83.71867,37.63725],[-83.71766,37.63655],[-83.71667,37.63665],[-83.71633,37.63658],[-83.71607,37.63621],[-83.7162,37.63548],[-83.71565,37.63519],[-83.71304,37.63493],[-83.71133,37.63493],[-83.70874,37.63512],[-83.7072,37.63506],[-83.70404,37.63544],[-83.70249,37.63494],[-83.70195,37.63513],[-83.70135,37.63631],[-83.70037,37.63719],[-83.69708,37.63879],[-83.69917,37.64125],[-83.70228,37.64526],[-83.70296,37.6467],[-83.70311,37.64796],[-83.70302,37.64914],[-83.70215,37.65558],[-83.70179,37.65674],[-83.70127,37.65746],[-83.70031,37.6582],[-83.67963,37.6714],[-83.67868,37.67233],[-83.6783,37.67322],[-83.67831,37.67432],[-83.67858,37.67502],[-83.6796,37.67604],[-83.68371,37.67955],[-83.68473,37.68069],[-83.685,37.68153],[-83.68502,37.68253],[-83.68436,37.68633],[-83.6843,37.68888],[-83.68453,37.69054],[-83.68548,37.69385],[-83.68553,37.69459],[-83.68527,37.69572],[-83.6829,37.70214],[-83.68215,37.70431],[-83.68156,37.70515],[-83.68084,37.70574],[-83.67977,37.70617],[-83.67863,37.70631],[-83.67627,37.70627],[-83.67528,37.70653],[-83.67356,37.70764],[-83.67039,37.70924],[-83.66832,37.71119],[-83.66737,37.71295],[-83.66654,37.71373],[-83.66566,37.71437],[-83.66485,37.71486],[-83.66379,37.71524],[-83.66326,37.71567],[-83.66254,37.71729],[-83.65925,37.72248],[-83.65893,37.72383],[-83.65879,37.72731],[-83.65787,37.72997],[-83.658,37.73048],[-83.65873,37.73168],[-83.65889,37.73276],[-83.65863,37.73358],[-83.65755,37.73505],[-83.65754,37.73511],[-83.6575,37.73697],[-83.65655,37.73862],[-83.65643,37.73923],[-83.65655,37.73981],[-83.65687,37.74035],[-83.65725,37.74069],[-83.65908,37.74159],[-83.65963,37.74217],[-83.66064,37.74414],[-83.66138,37.74651],[-83.66209,37.7477],[-83.66236,37.74934],[-83.66277,37.7501],[-83.66331,37.75055],[-83.6654,37.75167],[-83.66594,37.75223],[-83.6661,37.7527],[-83.66607,37.75323],[-83.66529,37.75461],[-83.66522,37.75545],[-83.66525,37.75554],[-83.66565,37.75616],[-83.6674,37.7576],[-83.66822,37.75815],[-83.66964,37.75885],[-83.67021,37.75944],[-83.67037,37.76027],[-83.66959,37.7623],[-83.66969,37.763],[-83.6701,37.76368],[-83.67058,37.76407],[-83.67122,37.76437],[-83.67404,37.76501],[-83.67463,37.76541],[-83.67456,37.76596],[-83.67386,37.76693],[-83.67385,37.76749],[-83.67419,37.76798],[-83.67585,37.76907],[-83.67624,37.76955],[-83.67625,37.77154],[-83.67689,37.77281],[-83.67669,37.77348],[-83.67664,37.77354],[-83.67567,37.77421],[-83.6754,37.77468],[-83.67557,37.77514],[-83.6769,37.7761],[-83.67714,37.77652],[-83.67697,37.77699],[-83.67598,37.77794],[-83.67581,37.77963],[-83.6761,37.78],[-83.67649,37.78017],[-83.67884,37.78032],[-83.67916,37.78038],[-83.6792,37.78039],[-83.68041,37.78053],[-83.68103,37.78064],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.7542,37.82417],[-83.7546,37.82445],[-83.7576,37.82647],[-83.76063,37.82738],[-83.7628,37.82848],[-83.76378,37.82868],[-83.76447,37.82869],[-83.76502,37.82858],[-83.76633,37.82801],[-83.76684,37.82799],[-83.76735,37.82822],[-83.77079,37.83226],[-83.77085,37.83294],[-83.77036,37.8342],[-83.77016,37.83718],[-83.77032,37.83794],[-83.77154,37.84066],[-83.7716,37.84075],[-83.77171,37.84086],[-83.77183,37.84097],[-83.77136,37.84158],[-83.7711,37.84201],[-83.76917,37.84523],[-83.76853,37.84736],[-83.76836,37.84805],[-83.76821,37.84863],[-83.76814,37.84881],[-83.76883,37.84889],[-83.76913,37.84889],[-83.77112,37.84852],[-83.77271,37.84774],[-83.77629,37.84754],[-83.77741,37.84798],[-83.77835,37.84898],[-83.77862,37.8496],[-83.77862,37.85031],[-83.77878,37.85053],[-83.78107,37.85155],[-83.78218,37.85162],[-83.78259,37.85064],[-83.7838,37.84976],[-83.7847,37.84939],[-83.78584,37.84934],[-83.78646,37.8494],[-83.78694,37.84933],[-83.78792,37.84881],[-83.78862,37.848],[-83.78932,37.84688],[-83.78937,37.84642],[-83.78872,37.84409],[-83.78881,37.84372],[-83.7894,37.84317],[-83.79236,37.84139],[-83.79279,37.84128],[-83.79434,37.84157],[-83.7956,37.84232],[-83.797,37.84269],[-83.7996,37.8427],[-83.8012,37.84338],[-83.80255,37.84437],[-83.80541,37.8449],[-83.80715,37.84606],[-83.80733,37.84662],[-83.80728,37.85119],[-83.80745,37.85266],[-83.80862,37.85609],[-83.80889,37.85655],[-83.8095,37.85701],[-83.8154,37.85896],[-83.81762,37.85952],[-83.8181,37.85971],[-83.81901,37.86037],[-83.82098,37.86086],[-83.82182,37.86089],[-83.82251,37.86074],[-83.82533,37.85956],[-83.82982,37.86042],[-83.83114,37.86104],[-83.8322,37.8617],[-83.83452,37.8645],[-83.83543,37.86504],[-83.83623,37.86524],[-83.83827,37.86527],[-83.83954,37.86482],[-83.84091,37.86497],[-83.8458,37.86515],[-83.84936,37.86486],[-83.84987,37.86504],[-83.85154,37.8662],[-83.85198,37.86633],[-83.85312,37.86601],[-83.8541,37.86517],[-83.85467,37.86484],[-83.8549,37.86476],[-83.85522,37.86467],[-83.85603,37.86439],[-83.85469,37.86224],[-83.8544,37.86125],[-83.85475,37.8562],[-83.85493,37.85546],[-83.85546,37.8545],[-83.85579,37.85398],[-83.85622,37.8532],[-83.86097,37.85461],[-83.86484,37.85446],[-83.86509,37.85452],[-83.86601,37.85476],[-83.86748,37.85499],[-83.86808,37.85498],[-83.86822,37.85499],[-83.87067,37.85105],[-83.87109,37.84855],[-83.87203,37.84861],[-83.87217,37.84874]]}},
{"type":"Feature","properties":{"name":"Test RRR Starting in Stanton 53 Mile"},"geometry":{"type":"LineString","coordinates":[[-83.87223,37.84878],[-83.87217,37.84874],[-83.87203,37.84861],[-83.87109,37.84855],[-83.87131,37.84643],[-83.87108,37.84653],[-83.87076,37.84664],[-83.87055,37.84669],[-83.86907,37.84675],[-83.86165,37.84576],[-83.85847,37.8456],[-83.85349,37.84529],[-83.85168,37.84506],[-83.84488,37.84359],[-83.84358,37.8434],[-83.83706,37.84421],[-83.83178,37.8457],[-83.8295,37.84623],[-83.82881,37.84629],[-83.82794,37.84614],[-83.8234,37.84452],[-83.82164,37.84417],[-83.82042,37.8442],[-83.81856,37.84476],[-83.81731,37.84469],[-83.81667,37.84444],[-83.81349,37.84226],[-83.81281,37.84149],[-83.81195,37.84009],[-83.81187,37.83928],[-83.81204,37.83807],[-83.81317,37.83619],[-83.81337,37.83542],[-83.81341,37.83349],[-83.81311,37.83294],[-83.81279,37.83267],[-83.81022,37.83143],[-83.80949,37.8312],[-83.80454,37.83092],[-83.79492,37.82723],[-83.79386,37.82699],[-83.78911,37.82745],[-83.78835,37.82776],[-83.78713,37.82851],[-83.78669,37.82908],[-83.78509,37.83206],[-83.78495,37.83273],[-83.78504,37.83402],[-83.7848,37.83451],[-83.78233,37.83625],[-83.78088,37.83855],[-83.77715,37.84112],[-83.77593,37.84169],[-83.77438,37.8419],[-83.77383,37.84187],[-83.77301,37.84164],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71803,37.81531],[-83.71653,37.81549],[-83.71641,37.81554],[-83.71483,37.81646],[-83.71354,37.81663],[-83.71192,37.81634],[-83.71041,37.81565],[-83.70919,37.81576],[-83.70832,37.8157],[-83.7067,37.81488],[-83.70526,37.8144],[-83.7038,37.81413],[-83.70195,37.81432],[-83.70127,37.81415],[-83.70063,37.81391],[-83.69962,37.81368],[-83.69846,37.81381],[-83.69774,37.81366],[-83.69672,37.81367],[-83.69539,37.81422],[-83.69452,37.81496],[-83.69391,37.81527],[-83.69149,37.81559],[-83.68871,37.81651],[-83.68676,37.81681],[-83.68447,37.81659],[-83.68374,37.81661],[-83.68325,37.81667],[-83.68201,37.81715],[-83.6793,37.81743],[-83.67853,37.81729],[-83.67763,37.81748],[-83.67724,37.81733],[-83.67719,37.81666],[-83.67669,37.81605],[-83.67637,37.81585],[-83.67611,37.81586],[-83.67541,37.81619],[-83.67465,37.81627],[-83.67428,37.81696],[-83.67382,37.81664],[-83.67345,37.81662],[-83.67136,37.81727],[-83.66967,37.81847],[-83.66787,37.81911],[-83.66644,37.8205],[-83.66463,37.82173],[-83.6644,37.82193],[-83.66238,37.82388],[-83.66129,37.82614],[-83.66144,37.82725],[-83.66242,37.82934],[-83.66237,37.82984],[-83.6618,37.83101],[-83.66172,37.83229],[-83.6615,37.83269],[-83.66044,37.83293],[-83.65977,37.83374],[-83.65957,37.8338],[-83.65746,37.83327],[-83.65594,37.83342],[-83.65528,37.83372],[-83.65371,37.83483],[-83.65226,37.83546],[-83.6517,37.83559],[-83.64793,37.83478],[-83.64717,37.83442],[-83.64619,37.83232],[-83.64568,37.83142],[-83.64497,37.83015],[-83.64441,37.82868],[-83.64367,37.8273],[-83.64336,37.82702],[-83.64231,37.82676],[-83.64063,37.82666],[-83.63589,37.82688],[-83.63439,37.82708],[-83.6323,37.82679],[-83.63155,37.82674],[-83.63101,37.82675],[-83.6305,37.8269],[-83.62995,37.82754],[-83.62969,37.82761],[-83.62938,37.82753],[-83.62922,37.82717],[-83.62927,37.82584],[-83.62893,37.82526],[-83.62778,37.82402],[-83.62743,37.82384],[-83.62673,37.82401],[-83.62588,37.82479],[-83.62546,37.82662],[-83.62543,37.82717],[-83.62495,37.82876],[-83.62457,37.8294],[-83.62403,37.82977],[-83.62361,37.83027],[-83.62284,37.83076],[-83.62251,37.8313],[-83.62238,37.83158],[-83.62193,37.83265],[-83.62185,37.83298],[-83.6218,37.83421],[-83.62143,37.83471],[-83.62095,37.83501],[-83.61853,37.8358],[-83.61778,37.83593],[-83.61448,37.83609],[-83.61341,37.83587],[-83.61236,37.8353],[-83.61162,37.83528],[-83.61087,37.83561],[-83.60967,37.83669],[-83.60822,37.83594],[-83.60821,37.83572],[-83.60721,37.83458],[-83.60715,37.83442],[-83.60724,37.83322],[-83.60697,37.83306],[-83.60498,37.83257],[-83.60462,37.83179],[-83.60477,37.83114],[-83.6057,37.83],[-83.6057,37.82983],[-83.60532,37.82982],[-83.60363,37.83037],[-83.60032,37.8308],[-83.59967,37.8304],[-83.59901,37.82957],[-83.59848,37.82817],[-83.59843,37.82769],[-83.59728,37.82605],[-83.59744,37.82439],[-83.59774,37.82327],[-83.59728,37.82202],[-83.59593,37.8208],[-83.5952,37.82059],[-83.59342,37.81977],[-83.59161,37.81958],[-83.59032,37.81898],[-83.58994,37.81901],[-83.58788,37.8199],[-83.58759,37.82018],[-83.58731,37.82087],[-83.58703,37.82335],[-83.5865,37.82536],[-83.58599,37.82564],[-83.5853,37.82572],[-83.5838,37.82543],[-83.58313,37.82523],[-83.58166,37.82489],[-83.58124,37.82431],[-83.58134,37.82266],[-83.58248,37.8214],[-83.58242,37.82113],[-83.58198,37.82079],[-83.58129,37.82066],[-83.58072,37.82079],[-83.57892,37.82083],[-83.57612,37.8211],[-83.57545,37.82097],[-83.57494,37.82046],[-83.57444,37.81935],[-83.57452,37.81899],[-83.57637,37.81806],[-83.57757,37.81772],[-83.57856,37.81712],[-83.57813,37.81617],[-83.57813,37.81597],[-83.57841,37.81568],[-83.57857,37.81558],[-83.58003,37.81505],[-83.58144,37.81514],[-83.58181,37.815],[-83.58273,37.81381],[-83.58315,37.81227],[-83.58342,37.81199],[-83.5846,37.81194],[-83.58525,37.81146],[-83.58618,37.81153],[-83.58779,37.81129],[-83.58802,37.81119],[-83.58847,37.81065],[-83.58904,37.81042],[-83.58958,37.80951],[-83.58988,37.80951],[-83.59017,37.80998],[-83.58995,37.81099],[-83.5902,37.81155],[-83.59021,37.81204],[-83.58994,37.81254],[-83.58946,37.81278],[-83.58683,37.81319],[-83.58653,37.81338],[-83.58616,37.81406],[-83.58581,37.81428],[-83.58475,37.81464],[-83.58446,37.81487],[-83.58421,37.81561],[-83.58451,37.81627],[-83.58421,37.81561],[-83.58446,37.81487],[-83.58475,37.81464],[-83.58581,37.81428],[-83.58616,37.81406],[-83.58653,37.81338],[-83.58683,37.81319],[-83.58946,37.81278],[-83.58994,37.81254],[-83.59021,37.81204],[-83.5902,37.81155],[-83.58995,37.81099],[-83.59017,37.80998],[-83.59026,37.80968],[-83.58998,37.80811],[-83.59028,37.80681],[-83.59008,37.80664],[-83.58872,37.80645],[-83.58846,37.80626],[-83.58852,37.80596],[-83.58937,37.80511],[-83.59016,37.80438],[-83.59042,37.80392],[-83.59084,37.80247],[-83.59003,37.80097],[-83.59002,37.80072],[-83.59094,37.80001],[-83.59095,37.79922],[-83.59136,37.79775],[-83.59211,37.79718],[-83.593,37.79583],[-83.59323,37.79521],[-83.59295,37.79459],[-83.59129,37.79384],[-83.59079,37.79333],[-83.59078,37.79303],[-83.59123,37.79231],[-83.59128,37.79195],[-83.59079,37.79104],[-83.5908,37.79053],[-83.59131,37.79014],[-83.59169,37.79001],[-83.59363,37.79032],[-83.59447,37.79023],[-83.59485,37.79047],[-83.59528,37.79144],[-83.59562,37.79158],[-83.596,37.79145],[-83.59663,37.79088],[-83.59774,37.79073],[-83.59823,37.79047],[-83.59844,37.79025],[-83.59865,37.78996],[-83.59867,37.78921],[-83.59951,37.78835],[-83.5999,37.78754],[-83.60064,37.78749],[-83.60189,37.78776],[-83.60231,37.78768],[-83.60261,37.78743],[-83.60302,37.78675],[-83.60377,37.78643],[-83.60484,37.78574],[-83.60493,37.78545],[-83.60466,37.78513],[-83.60351,37.78506],[-83.60299,37.78481],[-83.60211,37.78473],[-83.60185,37.78448],[-83.6019,37.78411],[-83.60331,37.78269],[-83.60401,37.78243],[-83.60463,37.78195],[-83.6045,37.781],[-83.60493,37.78034],[-83.60505,37.77968],[-83.60524,37.77938],[-83.60554,37.7792],[-83.60649,37.77907],[-83.60696,37.77907],[-83.60751,37.77923],[-83.6079,37.77916],[-83.60854,37.77875],[-83.60875,37.77795],[-83.60879,37.77774],[-83.60883,37.77688],[-83.60774,37.77552],[-83.60771,37.77475],[-83.60887,37.7738],[-83.61032,37.77332],[-83.611,37.77288],[-83.6113,37.77248],[-83.61148,37.7719],[-83.60987,37.77011],[-83.60995,37.76875],[-83.60902,37.76778],[-83.60896,37.76737],[-83.60959,37.76606],[-83.61062,37.7645],[-83.61128,37.764],[-83.61231,37.76375],[-83.6129,37.76363],[-83.61306,37.76359],[-83.61412,37.76473],[-83.6145,37.76539],[-83.61445,37.76605],[-83.61382,37.76746],[-83.61392,37.76813],[-83.61449,37.76868],[-83.61825,37.77134],[-83.61951,37.77196],[-83.62152,37.77256],[-83.62335,37.77278],[-83.62841,37.77297],[-83.6293,37.77325],[-83.63051,37.77391],[-83.63105,37.77473],[-83.63102,37.77554],[-83.63082,37.77592],[-83.62929,37.77763],[-83.62916,37.77812],[-83.6295,37.77932],[-83.63068,37.78021],[-83.63157,37.78052],[-83.63396,37.78064],[-83.64001,37.78134],[-83.64095,37.78122],[-83.64254,37.78057],[-83.64356,37.78052],[-83.64456,37.78078],[-83.64645,37.78189],[-83.64736,37.78285],[-83.6479,37.78423],[-83.64804,37.78593],[-83.6476,37.78796],[-83.64767,37.78841],[-83.64796,37.7888],[-83.64971,37.79005],[-83.65,37.79201],[-83.65032,37.79263],[-83.65325,37.79626],[-83.65496,37.79771],[-83.65553,37.79781],[-83.65611,37.79766],[-83.65646,37.79736],[-83.65683,37.79674],[-83.65768,37.79598],[-83.6586,37.7956],[-83.65974,37.79544],[-83.66075,37.79563],[-83.66278,37.79714],[-83.6645,37.79737],[-83.66464,37.79723],[-83.66461,37.79695],[-83.66399,37.79627],[-83.66398,37.79603],[-83.66488,37.79558],[-83.66521,37.79514],[-83.66554,37.79501],[-83.66592,37.79543],[-83.6659,37.79626],[-83.66612,37.7966],[-83.6666,37.79709],[-83.66722,37.79735],[-83.66755,37.79733],[-83.66843,37.79696],[-83.66937,37.79711],[-83.67147,37.79697],[-83.67306,37.79678],[-83.67449,37.79647],[-83.67599,37.79636],[-83.67687,37.79595],[-83.67998,37.79365],[-83.68111,37.79321],[-83.6828,37.79301],[-83.68411,37.79313],[-83.68805,37.79397],[-83.69029,37.79473],[-83.69234,37.79474],[-83.69296,37.79485],[-83.69362,37.79524],[-83.69466,37.79682],[-83.6953,37.79716],[-83.70017,37.79749],[-83.70187,37.79773],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.7542,37.82417],[-83.7546,37.82445],[-83.7576,37.82647],[-83.76063,37.82738],[-83.7628,37.82848],[-83.76378,37.82868],[-83.76447,37.82869],[-83.76502,37.82858],[-83.76633,37.82801],[-83.76684,37.82799],[-83.76735,37.82822],[-83.77079,37.83226],[-83.77085,37.83294],[-83.77036,37.8342],[-83.77016,37.83718],[-83.77032,37.83794],[-83.77154,37.84066],[-83.7716,37.84075],[-83.77171,37.84086],[-83.77183,37.84097],[-83.77136,37.84158],[-83.7711,37.84201],[-83.76917,37.84523],[-83.76853,37.84736],[-83.76836,37.84805],[-83.76821,37.84863],[-83.76814,37.84881],[-83.76883,37.84889],[-83.76913,37.84889],[-83.77112,37.84852],[-83.77271,37.84774],[-83.77629,37.84754],[-83.77741,37.84798],[-83.77835,37.84898],[-83.77862,37.8496],[-83.77862,37.85031],[-83.77878,37.85053],[-83.78107,37.85155],[-83.78218,37.85162],[-83.78259,37.85064],[-83.7838,37.84976],[-83.7847,37.84939],[-83.78584,37.84934],[-83.78646,37.8494],[-83.78694,37.84933],[-83.78792,37.84881],[-83.78862,37.848],[-83.78932,37.84688],[-83.78937,37.84642],[-83.78872,37.84409],[-83.78881,37.84372],[-83.7894,37.84317],[-83.79236,37.84139],[-83.79279,37.84128],[-83.79434,37.84157],[-83.7956,37.84232],[-83.797,37.84269],[-83.7996,37.8427],[-83.8012,37.84338],[-83.80255,37.84437],[-83.80541,37.8449],[-83.80715,37.84606],[-83.80733,37.84662],[-83.80728,37.85119],[-83.80745,37.85266],[-83.80862,37.85609],[-83.80889,37.85655],[-83.8095,37.85701],[-83.8154,37.85896],[-83.81762,37.85952],[-83.8181,37.85971],[-83.81901,37.86037],[-83.82098,37.86086],[-83.82182,37.86089],[-83.82251,37.86074],[-83.82533,37.85956],[-83.82982,37.86042],[-83.83114,37.86104],[-83.8322,37.8617],[-83.83452,37.8645],[-83.83543,37.86504],[-83.83623,37.86524],[-83.83827,37.86527],[-83.83954,37.86482],[-83.84091,37.86497],[-83.8458,37.86515],[-83.84936,37.86486],[-83.84987,37.86504],[-83.85154,37.8662],[-83.85198,37.86633],[-83.85312,37.86601],[-83.8541,37.86517],[-83.85467,37.86484],[-83.8549,37.86476],[-83.85522,37.86467],[-83.85603,37.86439],[-83.85469,37.86224],[-83.8544,37.86125],[-83.85475,37.8562],[-83.85493,37.85546],[-83.85546,37.8545],[-83.85579,37.85398],[-83.85622,37.8532],[-83.86097,37.85461],[-83.86484,37.85446],[-83.86509,37.85452],[-83.86601,37.85476],[-83.86748,37.85499],[-83.86808,37.85498],[-83.86822,37.85499],[-83.87067,37.85105],[-83.87109,37.84855],[-83.87203,37.84861],[-83.87217,37.84874]]}},
{"type":"Feature","properties":{"name":"RRR 65 Mile - Beattyville"},"geometry":{"type":"LineString","coordinates":[[-83.68735,37.78287],[-83.68699,37.78294],[-83.68516,37.78302],[-83.68395,37.7827],[-83.68305,37.7821],[-83.68179,37.7804],[-83.68127,37.78015],[-83.68047,37.78003],[-83.68041,37.78053],[-83.68041,37.78059],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70358,37.79821],[-83.70715,37.79933],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70954,37.80411],[-83.71077,37.80495],[-83.71166,37.80571],[-83.71285,37.80748],[-83.71312,37.80832],[-83.71299,37.80975],[-83.71345,37.81059],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.71803,37.81531],[-83.71653,37.81549],[-83.71641,37.81554],[-83.71483,37.81646],[-83.71354,37.81663],[-83.71192,37.81634],[-83.71041,37.81565],[-83.70919,37.81576],[-83.70832,37.8157],[-83.7067,37.81488],[-83.70526,37.8144],[-83.7038,37.81413],[-83.70195,37.81432],[-83.70127,37.81415],[-83.70063,37.81391],[-83.69962,37.81368],[-83.69846,37.81381],[-83.69774,37.81366],[-83.69672,37.81367],[-83.69539,37.81422],[-83.69452,37.81496],[-83.69391,37.81527],[-83.69149,37.81559],[-83.68871,37.81651],[-83.68676,37.81681],[-83.68447,37.81659],[-83.68374,37.81661],[-83.68325,37.81667],[-83.68201,37.81715],[-83.6793,37.81743],[-83.67853,37.81729],[-83.67763,37.81748],[-83.67724,37.81733],[-83.67719,37.81666],[-83.67669,37.81605],[-83.67637,37.81585],[-83.67611,37.81586],[-83.67541,37.81619],[-83.67465,37.81627],[-83.67428,37.81696],[-83.67382,37.81664],[-83.67345,37.81662],[-83.67136,37.81727],[-83.66967,37.81847],[-83.66787,37.81911],[-83.66644,37.8205],[-83.66463,37.82173],[-83.6644,37.82193],[-83.66238,37.82388],[-83.66129,37.82614],[-83.66144,37.82725],[-83.66242,37.82934],[-83.66237,37.82984],[-83.6618,37.83101],[-83.66172,37.83229],[-83.6615,37.83269],[-83.66044,37.83293],[-83.65977,37.83374],[-83.65957,37.8338],[-83.65746,37.83327],[-83.65594,37.83342],[-83.65528,37.83372],[-83.65371,37.83483],[-83.65226,37.83546],[-83.6517,37.83559],[-83.64793,37.83478],[-83.64717,37.83442],[-83.64619,37.83232],[-83.64568,37.83142],[-83.64497,37.83015],[-83.64441,37.82868],[-83.64367,37.8273],[-83.64336,37.82702],[-83.64231,37.82676],[-83.64063,37.82666],[-83.63589,37.82688],[-83.63439,37.82708],[-83.6323,37.82679],[-83.63155,37.82674],[-83.63101,37.82675],[-83.6305,37.8269],[-83.62995,37.82754],[-83.62969,37.82761],[-83.62938,37.82753],[-83.62922,37.82717],[-83.62927,37.82584],[-83.62893,37.82526],[-83.62778,37.82402],[-83.62743,37.82384],[-83.62673,37.82401],[-83.62588,37.82479],[-83.62546,37.82662],[-83.62543,37.82717],[-83.62495,37.82876],[-83.62457,37.8294],[-83.62403,37.82977],[-83.62361,37.83027],[-83.62284,37.83076],[-83.62251,37.8313],[-83.62238,37.83158],[-83.62193,37.83265],[-83.62185,37.83298],[-83.6218,37.83421],[-83.62143,37.83471],[-83.62095,37.83501],[-83.61853,37.8358],[-83.61778,37.83593],[-83.61448,37.83609],[-83.61341,37.83587],[-83.61236,37.8353],[-83.61162,37.83528],[-83.61087,37.83561],[-83.60967,37.83669],[-83.60822,37.83594],[-83.60821,37.83572],[-83.60721,37.83458],[-83.60715,37.83442],[-83.60724,37.83322],[-83.60697,37.83306],[-83.60498,37.83257],[-83.60462,37.83179],[-83.60477,37.83114],[-83.6057,37.83],[-83.6057,37.82983],[-83.60532,37.82982],[-83.60363,37.83037],[-83.60032,37.8308],[-83.59967,37.8304],[-83.59901,37.82957],[-83.59848,37.82817],[-83.59843,37.82769],[-83.59728,37.82605],[-83.59744,37.82439],[-83.59774,37.82327],[-83.59728,37.82202],[-83.59593,37.8208],[-83.5952,37.82059],[-83.59342,37.81977],[-83.59161,37.81958],[-83.59032,37.81898],[-83.58994,37.81901],[-83.58788,37.8199],[-83.58759,37.82018],[-83.58731,37.82087],[-83.58703,37.82335],[-83.5865,37.82536],[-83.58599,37.82564],[-83.5853,37.82572],[-83.5838,37.82543],[-83.58313,37.82523],[-83.58166,37.82489],[-83.58124,37.82431],[-83.58134,37.82266],[-83.58248,37.8214],[-83.58242,37.82113],[-83.58198,37.82079],[-83.58129,37.82066],[-83.58072,37.82079],[-83.57892,37.82083],[-83.57612,37.8211],[-83.57545,37.82097],[-83.57494,37.82046],[-83.57444,37.81935],[-83.57452,37.81899],[-83.57637,37.81806],[-83.57757,37.81772],[-83.57856,37.81712],[-83.57813,37.81617],[-83.57813,37.81597],[-83.57841,37.81568],[-83.57852,37.81561],[-83.57857,37.81558],[-83.58003,37.81505],[-83.58144,37.81514],[-83.58181,37.815],[-83.58273,37.81381],[-83.58315,37.81227],[-83.58342,37.81199],[-83.5846,37.81194],[-83.58525,37.81146],[-83.58618,37.81153],[-83.58779,37.81129],[-83.58802,37.81119],[-83.58847,37.81065],[-83.58904,37.81042],[-83.58958,37.80951],[-83.58988,37.80951],[-83.59017,37.80998],[-83.58995,37.81099],[-83.5902,37.81155],[-83.59021,37.81204],[-83.58994,37.81254],[-83.58946,37.81278],[-83.58683,37.81319],[-83.58653,37.81338],[-83.58616,37.81406],[-83.58581,37.81428],[-83.58616,37.81406],[-83.58653,37.81338],[-83.58683,37.81319],[-83.58946,37.81278],[-83.58994,37.81254],[-83.59021,37.81204],[-83.5902,37.81155],[-83.58995,37.81099],[-83.59017,37.80998],[-83.59026,37.80968],[-83.58998,37.80811],[-83.59028,37.80681],[-83.59008,37.80664],[-83.58872,37.80645],[-83.58846,37.80626],[-83.58852,37.80596],[-83.58937,37.80511],[-83.58941,37.80508],[-83.59016,37.80438],[-83.59042,37.80392],[-83.59084,37.80247],[-83.59003,37.80097],[-83.59002,37.80072],[-83.59094,37.80001],[-83.59095,37.79922],[-83.59136,37.79775],[-83.59211,37.79718],[-83.593,37.79583],[-83.59323,37.79521],[-83.59295,37.79459],[-83.59129,37.79384],[-83.59079,37.79333],[-83.59078,37.79303],[-83.59123,37.79231],[-83.59128,37.79195],[-83.59079,37.79104],[-83.5908,37.79053],[-83.59131,37.79014],[-83.59169,37.79001],[-83.59363,37.79032],[-83.59447,37.79023],[-83.59485,37.79047],[-83.59528,37.79144],[-83.59562,37.79158],[-83.596,37.79145],[-83.59663,37.79088],[-83.59774,37.79073],[-83.59823,37.79047],[-83.59844,37.79025],[-83.59865,37.78996],[-83.59867,37.78921],[-83.59951,37.78835],[-83.5999,37.78754],[-83.60064,37.78749],[-83.60189,37.78776],[-83.60231,37.78768],[-83.60261,37.78743],[-83.60302,37.78675],[-83.60377,37.78643],[-83.60484,37.78574],[-83.60493,37.78545],[-83.60466,37.78513],[-83.60351,37.78506],[-83.60299,37.78481],[-83.60211,37.78473],[-83.60185,37.78448],[-83.6019,37.78411],[-83.60331,37.78269],[-83.60401,37.78243],[-83.60463,37.78195],[-83.6045,37.781],[-83.60493,37.78034],[-83.60505,37.77968],[-83.60524,37.77938],[-83.60554,37.7792],[-83.60649,37.77907],[-83.60696,37.77907],[-83.60751,37.77923],[-83.6079,37.77916],[-83.60854,37.77875],[-83.60875,37.77795],[-83.60879,37.77774],[-83.60883,37.77688],[-83.60774,37.77552],[-83.60771,37.77475],[-83.60887,37.7738],[-83.61032,37.77332],[-83.611,37.77288],[-83.6113,37.77248],[-83.61148,37.7719],[-83.60987,37.77011],[-83.60995,37.76875],[-83.60902,37.76778],[-83.60896,37.76737],[-83.60959,37.76606],[-83.61062,37.7645],[-83.61128,37.764],[-83.61231,37.76375],[-83.6129,37.76363],[-83.61306,37.76359],[-83.61286,37.76334],[-83.61206,37.76263],[-83.61035,37.7617],[-83.61001,37.76129],[-83.61001,37.7608],[-83.6106,37.75886],[-83.61041,37.7567],[-83.6097,37.75463],[-83.60876,37.75298],[-83.6095,37.75263],[-83.61131,37.75229],[-83.61479,37.75246],[-83.61891,37.75172],[-83.61965,37.75128],[-83.62363,37.74733],[-83.62402,37.74725],[-83.62525,37.74752],[-83.62678,37.74722],[-83.62815,37.74646],[-83.62908,37.74512],[-83.62944,37.7448],[-83.63028,37.74459],[-83.6318,37.74477],[-83.63262,37.74445],[-83.63304,37.74423],[-83.63404,37.74382],[-83.63567,37.74404],[-83.64006,37.74381],[-83.64136,37.7437],[-83.64192,37.74352],[-83.64341,37.74253],[-83.64394,37.74195],[-83.64585,37.73589],[-83.64593,37.73529],[-83.64567,37.7327],[-83.64572,37.73162],[-83.64593,37.73089],[-83.64655,37.72972],[-83.64661,37.72847],[-83.64647,37.72748],[-83.64682,37.72682],[-83.64668,37.72547],[-83.64621,37.72515],[-83.64573,37.72506],[-83.64462,37.72549],[-83.64403,37.72502],[-83.64321,37.72472],[-83.64198,37.72399],[-83.64162,37.72346],[-83.64161,37.72127],[-83.64089,37.71997],[-83.64024,37.71934],[-83.63889,37.71891],[-83.63784,37.71794],[-83.63796,37.71683],[-83.63744,37.71602],[-83.63797,37.71544],[-83.63868,37.71506],[-83.63915,37.71421],[-83.63953,37.71384],[-83.63961,37.71168],[-83.63907,37.71088],[-83.6386,37.71055],[-83.63828,37.71046],[-83.63733,37.71054],[-83.63682,37.71028],[-83.6368,37.70994],[-83.6372,37.70888],[-83.63793,37.70787],[-83.6372,37.70712],[-83.63664,37.706],[-83.63689,37.70562],[-83.63745,37.70527],[-83.6378,37.70516],[-83.63856,37.7052],[-83.63887,37.70507],[-83.63906,37.70487],[-83.63913,37.70447],[-83.63831,37.70334],[-83.63789,37.70167],[-83.6376,37.70111],[-83.63791,37.69991],[-83.63775,37.69941],[-83.63716,37.6991],[-83.63546,37.69888],[-83.63508,37.69872],[-83.63419,37.69777],[-83.63319,37.69732],[-83.63237,37.69642],[-83.63231,37.69601],[-83.63248,37.69528],[-83.63383,37.6941],[-83.63468,37.69267],[-83.63461,37.69239],[-83.63412,37.69202],[-83.634,37.69174],[-83.63396,37.68915],[-83.63441,37.68693],[-83.63327,37.68575],[-83.63185,37.68522],[-83.63107,37.68431],[-83.63,37.68354],[-83.62997,37.68321],[-83.63066,37.6818],[-83.63053,37.68138],[-83.62961,37.68102],[-83.62817,37.68085],[-83.62778,37.68066],[-83.62756,37.67954],[-83.62849,37.679],[-83.6289,37.67851],[-83.629,37.67812],[-83.62824,37.67687],[-83.62837,37.67614],[-83.62826,37.67576],[-83.62676,37.67421],[-83.62455,37.67314],[-83.62432,37.67286],[-83.62439,37.67255],[-83.62542,37.67195],[-83.62589,37.67114],[-83.62585,37.67085],[-83.6253,37.67044],[-83.62519,37.67015],[-83.62656,37.66846],[-83.62825,37.66735],[-83.62964,37.66562],[-83.63216,37.66204],[-83.63261,37.6618],[-83.63567,37.66123],[-83.63655,37.66095],[-83.63658,37.66075],[-83.63613,37.66039],[-83.63605,37.66005],[-83.63635,37.65922],[-83.63652,37.6578],[-83.63735,37.65661],[-83.63723,37.65645],[-83.63679,37.65633],[-83.63573,37.6563],[-83.63485,37.65576],[-83.63475,37.65419],[-83.63384,37.65323],[-83.63431,37.65251],[-83.63426,37.65088],[-83.63459,37.64994],[-83.63455,37.64913],[-83.63472,37.64895],[-83.63584,37.64847],[-83.63669,37.6472],[-83.6364,37.64572],[-83.63594,37.64448],[-83.63607,37.64388],[-83.63602,37.64311],[-83.63636,37.64257],[-83.6368,37.64135],[-83.63705,37.63951],[-83.63691,37.63893],[-83.63642,37.63851],[-83.63593,37.63841],[-83.63515,37.63851],[-83.63476,37.63835],[-83.63446,37.63782],[-83.6344,37.63721],[-83.63481,37.63586],[-83.63557,37.63524],[-83.63642,37.63387],[-83.63757,37.6329],[-83.6383,37.63068],[-83.63805,37.62995],[-83.63637,37.62931],[-83.63528,37.6287],[-83.63511,37.62847],[-83.63518,37.62829],[-83.63604,37.62784],[-83.63727,37.62734],[-83.63775,37.62519],[-83.63757,37.6245],[-83.6367,37.62386],[-83.63613,37.62313],[-83.63587,37.62123],[-83.63667,37.61988],[-83.63669,37.61887],[-83.63738,37.61743],[-83.6385,37.61643],[-83.63949,37.61376],[-83.63935,37.61268],[-83.63961,37.61133],[-83.63906,37.60992],[-83.63852,37.60927],[-83.63825,37.6087],[-83.63845,37.60658],[-83.63696,37.60543],[-83.63676,37.60484],[-83.63687,37.60403],[-83.63736,37.60289],[-83.6382,37.60229],[-83.63921,37.60237],[-83.6406,37.60283],[-83.64276,37.60242],[-83.64342,37.60218],[-83.64387,37.60159],[-83.64422,37.59999],[-83.64526,37.59915],[-83.64529,37.59877],[-83.64492,37.5982],[-83.64475,37.5975],[-83.64418,37.5968],[-83.64385,37.59575],[-83.6428,37.59518],[-83.64177,37.59386],[-83.6417,37.59354],[-83.64306,37.58919],[-83.64317,37.58785],[-83.64377,37.58735],[-83.64519,37.58701],[-83.64603,37.5866],[-83.64956,37.58088],[-83.6501,37.58083],[-83.65078,37.58058],[-83.65309,37.57907],[-83.65365,37.57888],[-83.65424,37.57887],[-83.65865,37.57993],[-83.65956,37.5799],[-83.66042,37.57963],[-83.66126,37.57895],[-83.66317,37.57519],[-83.66358,37.57469],[-83.66454,37.57411],[-83.66585,37.5739],[-83.66705,37.57412],[-83.66779,37.57441],[-83.66942,37.57565],[-83.67135,37.57645],[-83.67246,37.57709],[-83.67614,37.5799],[-83.67866,37.58106],[-83.68711,37.58367],[-83.689,37.5839],[-83.69107,37.58371],[-83.6923,37.58319],[-83.69315,37.58239],[-83.69611,37.57577],[-83.69678,37.57456],[-83.69854,37.57224],[-83.69978,37.57121],[-83.70188,37.56997],[-83.70656,37.56856],[-83.70653,37.57021],[-83.70788,37.57052],[-83.70779,37.57159],[-83.7073,37.57238],[-83.70704,37.57311],[-83.7079,37.57345],[-83.7097,37.57454],[-83.71031,37.57511],[-83.71027,37.57581],[-83.7109,37.5765],[-83.71111,37.57725],[-83.71084,37.57817],[-83.71043,37.57879],[-83.71046,37.57953],[-83.70978,37.58044],[-83.70963,37.58087],[-83.70979,37.58164],[-83.71035,37.58246],[-83.71,37.58301],[-83.71018,37.58395],[-83.71,37.5871],[-83.70832,37.59032],[-83.70817,37.59083],[-83.70829,37.5925],[-83.70889,37.59458],[-83.70935,37.59533],[-83.71064,37.59675],[-83.71077,37.59712],[-83.71025,37.59853],[-83.70973,37.60126],[-83.70931,37.60222],[-83.70902,37.60292],[-83.70891,37.60365],[-83.70932,37.60522],[-83.70974,37.60941],[-83.71076,37.61097],[-83.71148,37.61296],[-83.71182,37.61337],[-83.7124,37.61368],[-83.71463,37.6141],[-83.71544,37.6149],[-83.71583,37.61558],[-83.71584,37.61631],[-83.716,37.61671],[-83.71639,37.61711],[-83.71732,37.61764],[-83.71773,37.61826],[-83.71787,37.61905],[-83.71753,37.62027],[-83.71767,37.62079],[-83.71842,37.62185],[-83.71983,37.62256],[-83.72035,37.62305],[-83.72071,37.62409],[-83.72134,37.62517],[-83.72116,37.62633],[-83.7214,37.6269],[-83.72206,37.62754],[-83.72289,37.62791],[-83.72324,37.62823],[-83.72372,37.62988],[-83.72343,37.63031],[-83.7221,37.63106],[-83.72194,37.63129],[-83.72216,37.63346],[-83.72156,37.63373],[-83.72134,37.63418],[-83.72155,37.6346],[-83.72223,37.63506],[-83.72227,37.6354],[-83.72203,37.63561],[-83.72106,37.63594],[-83.72015,37.63704],[-83.71959,37.63732],[-83.71867,37.63725],[-83.71766,37.63655],[-83.71667,37.63665],[-83.71633,37.63658],[-83.71607,37.63621],[-83.7162,37.63548],[-83.71565,37.63519],[-83.71304,37.63493],[-83.71133,37.63493],[-83.70874,37.63512],[-83.7072,37.63506],[-83.70404,37.63544],[-83.70249,37.63494],[-83.70195,37.63513],[-83.70135,37.63631],[-83.70037,37.63719],[-83.69708,37.63879],[-83.69917,37.64125],[-83.70228,37.64526],[-83.70296,37.6467],[-83.70311,37.64796],[-83.70302,37.64914],[-83.70215,37.65558],[-83.70179,37.65674],[-83.70127,37.65746],[-83.70031,37.6582],[-83.67963,37.6714],[-83.67868,37.67233],[-83.6783,37.67322],[-83.67831,37.67432],[-83.67858,37.67502],[-83.6796,37.67604],[-83.68371,37.67955],[-83.68473,37.68069],[-83.685,37.68153],[-83.68502,37.68253],[-83.68436,37.68633],[-83.6843,37.68888],[-83.68453,37.69054],[-83.68548,37.69385],[-83.68553,37.69459],[-83.68527,37.69572],[-83.6829,37.70214],[-83.68215,37.70431],[-83.68156,37.70515],[-83.68084,37.70574],[-83.67977,37.70617],[-83.67863,37.70631],[-83.67627,37.70627],[-83.67528,37.70653],[-83.67356,37.70764],[-83.67039,37.70924],[-83.66832,37.71119],[-83.66737,37.71295],[-83.66654,37.71373],[-83.66566,37.71437],[-83.66485,37.71486],[-83.66379,37.71524],[-83.66326,37.71567],[-83.66254,37.71729],[-83.65925,37.72248],[-83.65893,37.72383],[-83.65879,37.72731],[-83.65787,37.72997],[-83.658,37.73048],[-83.65873,37.73168],[-83.65889,37.73276],[-83.65863,37.73358],[-83.65755,37.73505],[-83.65754,37.73511],[-83.6575,37.73697],[-83.65655,37.73862],[-83.65643,37.73923],[-83.65655,37.73981],[-83.65687,37.74035],[-83.65725,37.74069],[-83.65908,37.74159],[-83.65963,37.74217],[-83.66064,37.74414],[-83.66138,37.74651],[-83.66209,37.7477],[-83.66236,37.74934],[-83.66277,37.7501],[-83.66331,37.75055],[-83.6654,37.75167],[-83.66594,37.75223],[-83.6661,37.7527],[-83.66607,37.75323],[-83.66529,37.75461],[-83.66522,37.75545],[-83.66525,37.75554],[-83.66565,37.75616],[-83.6674,37.7576],[-83.66822,37.75815],[-83.66964,37.75885],[-83.67021,37.75944],[-83.67037,37.76027],[-83.66959,37.7623],[-83.66969,37.763],[-83.6701,37.76368],[-83.67058,37.76407],[-83.67122,37.76437],[-83.67404,37.76501],[-83.67463,37.76541],[-83.67456,37.76596],[-83.67386,37.76693],[-83.67385,37.76749],[-83.67419,37.76798],[-83.67585,37.76907],[-83.67624,37.76955],[-83.67625,37.77154],[-83.67689,37.77281],[-83.67669,37.77348],[-83.67664,37.77354],[-83.67567,37.77421],[-83.6754,37.77468],[-83.67557,37.77514],[-83.6769,37.7761],[-83.67714,37.77652],[-83.67697,37.77699],[-83.67598,37.77794],[-83.67581,37.77963],[-83.6761,37.78],[-83.67649,37.78017],[-83.67884,37.78032],[-83.67916,37.78038],[-83.6792,37.78039],[-83.68041,37.78053],[-83.68047,37.78003],[-83.68127,37.78015],[-83.68179,37.7804],[-83.68305,37.7821],[-83.68395,37.7827],[-83.68516,37.78302],[-83.68699,37.78294],[-83.68735,37.78287]]}},
{"type":"Feature","properties":{"name":"RRR 34 Mile Blue and 42 Mile Green"},"geometry":{"type":"LineString","coordinates":[[-83.69095,37.78225],[-83.6908,37.78217],[-83.69067,37.78215],[-83.69006,37.78207],[-83.68946,37.78216],[-83.68816,37.78267],[-83.68699,37.78294],[-83.68516,37.78302],[-83.68395,37.7827],[-83.68305,37.7821],[-83.68179,37.7804],[-83.68127,37.78015],[-83.68047,37.78003],[-83.68041,37.78053],[-83.68103,37.78064],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.7542,37.82417],[-83.7546,37.82445],[-83.7576,37.82647],[-83.76063,37.82738],[-83.7628,37.82848],[-83.76378,37.82868],[-83.76447,37.82869],[-83.76502,37.82858],[-83.76633,37.82801],[-83.76684,37.82799],[-83.76735,37.82822],[-83.77079,37.83226],[-83.77085,37.83294],[-83.77036,37.8342],[-83.77016,37.83718],[-83.77032,37.83794],[-83.77154,37.84066],[-83.7716,37.84075],[-83.77171,37.84086],[-83.77183,37.84097],[-83.77301,37.84164],[-83.77383,37.84187],[-83.77438,37.8419],[-83.77593,37.84169],[-83.77715,37.84112],[-83.78088,37.83855],[-83.78233,37.83625],[-83.7848,37.83451],[-83.78504,37.83402],[-83.78495,37.83273],[-83.78509,37.83206],[-83.78669,37.82908],[-83.78713,37.82851],[-83.78835,37.82776],[-83.78911,37.82745],[-83.79386,37.82699],[-83.79492,37.82723],[-83.80454,37.83092],[-83.80949,37.8312],[-83.81022,37.83143],[-83.81279,37.83267],[-83.81311,37.83294],[-83.81341,37.83349],[-83.81337,37.83542],[-83.81317,37.83619],[-83.81204,37.83807],[-83.81187,37.83928],[-83.81195,37.84009],[-83.81281,37.84149],[-83.81349,37.84226],[-83.81667,37.84444],[-83.81731,37.84469],[-83.81856,37.84476],[-83.82042,37.8442],[-83.82164,37.84417],[-83.8234,37.84452],[-83.82794,37.84614],[-83.82881,37.84629],[-83.8295,37.84623],[-83.83178,37.8457],[-83.83706,37.84421],[-83.84358,37.8434],[-83.84488,37.84359],[-83.85168,37.84506],[-83.85349,37.84529],[-83.85847,37.8456],[-83.85847,37.84534],[-83.85847,37.8456],[-83.86165,37.84576],[-83.86907,37.84675],[-83.87055,37.84669],[-83.87122,37.84645],[-83.87131,37.84666],[-83.8711,37.84862],[-83.87131,37.84666],[-83.87122,37.84645],[-83.87155,37.84632],[-83.87211,37.84592],[-83.8729,37.84508],[-83.8741,37.84304],[-83.87618,37.8414],[-83.87769,37.83928],[-83.87829,37.83875],[-83.88155,37.83657],[-83.88237,37.8362],[-83.88386,37.83597],[-83.88599,37.83629],[-83.88753,37.83684],[-83.89083,37.83852],[-83.89361,37.83959],[-83.89545,37.84052],[-83.8983,37.84141],[-83.89897,37.84174],[-83.90185,37.84356],[-83.90485,37.84648],[-83.91268,37.85115],[-83.91323,37.85165],[-83.91367,37.85239],[-83.91443,37.85605],[-83.91478,37.85661],[-83.91538,37.85717],[-83.91886,37.85931],[-83.91804,37.8601],[-83.9136,37.86364],[-83.91336,37.86369],[-83.91287,37.8633],[-83.91206,37.86295],[-83.91195,37.8629],[-83.91146,37.86268],[-83.9111,37.86272],[-83.91051,37.86328],[-83.90995,37.86412],[-83.90801,37.86444],[-83.90664,37.86412],[-83.90587,37.86379],[-83.90518,37.86341],[-83.90484,37.86288],[-83.90451,37.86269],[-83.9034,37.86258],[-83.90258,37.86235],[-83.90187,37.86127],[-83.90105,37.86068],[-83.90067,37.86068],[-83.90016,37.86095],[-83.89909,37.86107],[-83.89779,37.86177],[-83.89589,37.86232],[-83.89446,37.86315],[-83.89344,37.86313],[-83.89225,37.86256],[-83.8906,37.8628],[-83.89016,37.86316],[-83.88955,37.86343],[-83.88744,37.86567],[-83.88571,37.86524],[-83.8843,37.86504],[-83.88379,37.86484],[-83.87794,37.86047],[-83.87566,37.85949],[-83.87543,37.85918],[-83.87518,37.85823],[-83.87084,37.85616],[-83.86858,37.85506],[-83.86821,37.85494],[-83.87072,37.85081],[-83.86821,37.85494],[-83.86791,37.85498],[-83.86748,37.85499],[-83.86601,37.85476],[-83.86509,37.85452],[-83.86484,37.85446],[-83.86097,37.85461],[-83.85622,37.8532],[-83.85579,37.85398],[-83.85546,37.8545],[-83.85493,37.85546],[-83.85475,37.8562],[-83.8544,37.86125],[-83.85469,37.86224],[-83.85603,37.86439],[-83.85522,37.86467],[-83.8549,37.86476],[-83.85467,37.86484],[-83.8541,37.86517],[-83.85312,37.86601],[-83.85198,37.86633],[-83.85154,37.8662],[-83.84987,37.86504],[-83.84936,37.86486],[-83.8458,37.86515],[-83.84091,37.86497],[-83.83954,37.86482],[-83.83827,37.86527],[-83.83623,37.86524],[-83.83543,37.86504],[-83.83452,37.8645],[-83.8322,37.8617],[-83.83114,37.86104],[-83.82982,37.86042],[-83.82533,37.85956],[-83.82251,37.86074],[-83.82182,37.86089],[-83.82098,37.86086],[-83.81901,37.86037],[-83.8181,37.85971],[-83.81762,37.85952],[-83.8154,37.85896],[-83.8095,37.85701],[-83.80889,37.85655],[-83.80862,37.85609],[-83.80745,37.85266],[-83.80728,37.85119],[-83.80733,37.84662],[-83.80715,37.84606],[-83.80541,37.8449],[-83.80255,37.84437],[-83.8012,37.84338],[-83.7996,37.8427],[-83.797,37.84269],[-83.7956,37.84232],[-83.79434,37.84157],[-83.79279,37.84128],[-83.79236,37.84139],[-83.7894,37.84317],[-83.78881,37.84372],[-83.78872,37.84409],[-83.78937,37.84642],[-83.78932,37.84688],[-83.78862,37.848],[-83.78792,37.84881],[-83.78694,37.84933],[-83.78646,37.8494],[-83.78584,37.84934],[-83.7847,37.84939],[-83.7838,37.84976],[-83.78259,37.85064],[-83.78218,37.85162],[-83.78107,37.85155],[-83.77878,37.85053],[-83.77862,37.85031],[-83.77862,37.8496],[-83.77835,37.84898],[-83.77741,37.84798],[-83.77629,37.84754],[-83.77271,37.84774],[-83.77112,37.84852],[-83.76913,37.84889],[-83.76883,37.84889],[-83.76814,37.84881],[-83.76821,37.84863],[-83.76836,37.84805],[-83.76853,37.84736],[-83.76917,37.84523],[-83.7711,37.84201],[-83.77136,37.84158],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71756,37.81374],[-83.71566,37.81185],[-83.71473,37.81129],[-83.71391,37.81093],[-83.71345,37.81059],[-83.71302,37.80984],[-83.71313,37.80814],[-83.71285,37.80748],[-83.71171,37.80575],[-83.71077,37.80495],[-83.70968,37.80424],[-83.70885,37.80337],[-83.70872,37.8032],[-83.7072,37.79949],[-83.70675,37.79917],[-83.70522,37.7987],[-83.70455,37.7985],[-83.70383,37.7983],[-83.70357,37.79822],[-83.70364,37.7979],[-83.70365,37.79784],[-83.70411,37.79508],[-83.70406,37.79464],[-83.70381,37.79421],[-83.70376,37.79416],[-83.7032,37.79377],[-83.69859,37.79141],[-83.69701,37.79001],[-83.69278,37.7881],[-83.69196,37.78759],[-83.69141,37.78695],[-83.69115,37.78627],[-83.69112,37.78504],[-83.69149,37.78369],[-83.69127,37.78308],[-83.69122,37.78303],[-83.69077,37.78275],[-83.69014,37.78266],[-83.68873,37.78321],[-83.68813,37.78333],[-83.68475,37.78341],[-83.68386,37.78333],[-83.6833,37.78311],[-83.68276,37.7827],[-83.68204,37.78135],[-83.68162,37.78094],[-83.68103,37.78064],[-83.68041,37.78053],[-83.68047,37.78003],[-83.68127,37.78015],[-83.68179,37.7804],[-83.68305,37.7821],[-83.68395,37.7827],[-83.68516,37.78302],[-83.68699,37.78294],[-83.68816,37.78267],[-83.68946,37.78216],[-83.69006,37.78207],[-83.69067,37.78215],[-83.69073,37.78216]]}},
{"type":"Feature","properties":{"name":"RRR 34 Miles"},"geometry":{"type":"LineString","coordinates":[[-83.69095,37.78225],[-83.6908,37.78217],[-83.69067,37.78215],[-83.69006,37.78207],[-83.68946,37.78216],[-83.68816,37.78267],[-83.68699,37.78294],[-83.68516,37.78302],[-83.68395,37.7827],[-83.68305,37.7821],[-83.68179,37.7804],[-83.68127,37.78015],[-83.68047,37.78003],[-83.68041,37.78053],[-83.68103,37.78064],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.7542,37.82417],[-83.7546,37.82445],[-83.7576,37.82647],[-83.76063,37.82738],[-83.7628,37.82848],[-83.76378,37.82868],[-83.76447,37.82869],[-83.76502,37.82858],[-83.76633,37.82801],[-83.76684,37.82799],[-83.76735,37.82822],[-83.77079,37.83226],[-83.77085,37.83294],[-83.77036,37.8342],[-83.77016,37.83718],[-83.77032,37.83794],[-83.77154,37.84066],[-83.7716,37.84075],[-83.77171,37.84086],[-83.77183,37.84097],[-83.77301,37.84164],[-83.77383,37.84187],[-83.77438,37.8419],[-83.77593,37.84169],[-83.77715,37.84112],[-83.78088,37.83855],[-83.78233,37.83625],[-83.7848,37.83451],[-83.78504,37.83402],[-83.78495,37.83273],[-83.78509,37.83206],[-83.78669,37.82908],[-83.78713,37.82851],[-83.78835,37.82776],[-83.78911,37.82745],[-83.79386,37.82699],[-83.79492,37.82723],[-83.80454,37.83092],[-83.80949,37.8312],[-83.81022,37.83143],[-83.81279,37.83267],[-83.81311,37.83294],[-83.81341,37.83349],[-83.81337,37.83542],[-83.81317,37.83619],[-83.81204,37.83807],[-83.81187,37.83928],[-83.81195,37.84009],[-83.81281,37.84149],[-83.81349,37.84226],[-83.81667,37.84444],[-83.81731,37.84469],[-83.81856,37.84476],[-83.82042,37.8442],[-83.82164,37.84417],[-83.8234,37.84452],[-83.82794,37.84614],[-83.82881,37.84629],[-83.8295,37.84623],[-83.83178,37.8457],[-83.83706,37.84421],[-83.84358,37.8434],[-83.84488,37.84359],[-83.85168,37.84506],[-83.85349,37.84529],[-83.85847,37.8456],[-83.85847,37.84534],[-83.85847,37.8456],[-83.86165,37.84576],[-83.86907,37.84675],[-83.87055,37.84669],[-83.87076,37.84664],[-83.87108,37.84653],[-83.87131,37.84643],[-83.87109,37.84855],[-83.87203,37.84861],[-83.87217,37.84874],[-83.87294,37.8489],[-83.87293,37.84905],[-83.87219,37.84897],[-83.87217,37.84874],[-83.87203,37.84861],[-83.87109,37.84855],[-83.87067,37.85105],[-83.86822,37.85499],[-83.86808,37.85498],[-83.86791,37.85498],[-83.86748,37.85499],[-83.86601,37.85476],[-83.86509,37.85452],[-83.86484,37.85446],[-83.86097,37.85461],[-83.85622,37.8532],[-83.85579,37.85398],[-83.85546,37.8545],[-83.85493,37.85546],[-83.85475,37.8562],[-83.8544,37.86125],[-83.85469,37.86224],[-83.85603,37.86439],[-83.85522,37.86467],[-83.8549,37.86476],[-83.85467,37.86484],[-83.8541,37.86517],[-83.85312,37.86601],[-83.85198,37.86633],[-83.85154,37.8662],[-83.84987,37.86504],[-83.84936,37.86486],[-83.8458,37.86515],[-83.84091,37.86497],[-83.83954,37.86482],[-83.83827,37.86527],[-83.83623,37.86524],[-83.83543,37.86504],[-83.83452,37.8645],[-83.8322,37.8617],[-83.83114,37.86104],[-83.82982,37.86042],[-83.82533,37.85956],[-83.82251,37.86074],[-83.82182,37.86089],[-83.82098,37.86086],[-83.81901,37.86037],[-83.8181,37.85971],[-83.81762,37.85952],[-83.8154,37.85896],[-83.8095,37.85701],[-83.80889,37.85655],[-83.80862,37.85609],[-83.80745,37.85266],[-83.80728,37.85119],[-83.80733,37.84662],[-83.80715,37.84606],[-83.80541,37.8449],[-83.80255,37.84437],[-83.8012,37.84338],[-83.7996,37.8427],[-83.797,37.84269],[-83.7956,37.84232],[-83.79434,37.84157],[-83.79279,37.84128],[-83.79236,37.84139],[-83.7894,37.84317],[-83.78881,37.84372],[-83.78872,37.84409],[-83.78937,37.84642],[-83.78932,37.84688],[-83.78862,37.848],[-83.78792,37.84881],[-83.78694,37.84933],[-83.78646,37.8494],[-83.78584,37.84934],[-83.7847,37.84939],[-83.7838,37.84976],[-83.78259,37.85064],[-83.78218,37.85162],[-83.78107,37.85155],[-83.77878,37.85053],[-83.77862,37.85031],[-83.77862,37.8496],[-83.77835,37.84898],[-83.77741,37.84798],[-83.77629,37.84754],[-83.77271,37.84774],[-83.77112,37.84852],[-83.76913,37.84889],[-83.76883,37.84889],[-83.76814,37.84881],[-83.76821,37.84863],[-83.76836,37.84805],[-83.76853,37.84736],[-83.76917,37.84523],[-83.7711,37.84201],[-83.77136,37.84158],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71756,37.81374],[-83.71566,37.81185],[-83.71473,37.81129],[-83.71391,37.81093],[-83.71345,37.81059],[-83.71302,37.80984],[-83.71313,37.80814],[-83.71285,37.80748],[-83.71171,37.80575],[-83.71077,37.80495],[-83.70968,37.80424],[-83.70885,37.80337],[-83.70872,37.8032],[-83.7072,37.79949],[-83.70675,37.79917],[-83.70522,37.7987],[-83.70455,37.7985],[-83.70383,37.7983],[-83.70357,37.79822],[-83.70364,37.7979],[-83.70365,37.79784],[-83.70411,37.79508],[-83.70406,37.79464],[-83.70381,37.79421],[-83.70376,37.79416],[-83.7032,37.79377],[-83.69859,37.79141],[-83.69701,37.79001],[-83.69278,37.7881],[-83.69196,37.78759],[-83.69141,37.78695],[-83.69115,37.78627],[-83.69112,37.78504],[-83.69149,37.78369],[-83.69127,37.78308],[-83.69122,37.78303],[-83.69077,37.78275],[-83.69014,37.78266],[-83.68873,37.78321],[-83.68813,37.78333],[-83.68475,37.78341],[-83.68386,37.78333],[-83.6833,37.78311],[-83.68276,37.7827],[-83.68204,37.78135],[-83.68162,37.78094],[-83.68103,37.78064],[-83.68041,37.78053],[-83.68047,37.78003],[-83.68127,37.78015],[-83.68179,37.7804],[-83.68305,37.7821],[-83.68395,37.7827],[-83.68516,37.78302],[-83.68699,37.78294],[-83.68816,37.78267],[-83.68946,37.78216],[-83.69006,37.78207],[-83.69067,37.78215],[-83.69073,37.78216]]}},
{"type":"Feature","properties":{"name":"RRR 43 Mile White & 50 Mile Orange"},"geometry":{"type":"LineString","coordinates":[[-83.69095,37.78225],[-83.6908,37.78217],[-83.69067,37.78215],[-83.69006,37.78207],[-83.68946,37.78216],[-83.68816,37.78267],[-83.68699,37.78294],[-83.68516,37.78302],[-83.68395,37.7827],[-83.68305,37.7821],[-83.68179,37.7804],[-83.68127,37.78015],[-83.68047,37.78003],[-83.68041,37.78053],[-83.68103,37.78064],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.75285,37.82234],[-83.75284,37.82219],[-83.75292,37.82006],[-83.75223,37.81925],[-83.75165,37.81902],[-83.74949,37.81889],[-83.74817,37.81867],[-83.74694,37.81802],[-83.7461,37.81709],[-83.74603,37.81629],[-83.74667,37.81385],[-83.74654,37.81349],[-83.74579,37.81287],[-83.74541,37.81195],[-83.74483,37.80975],[-83.745,37.80843],[-83.74457,37.80817],[-83.74334,37.80808],[-83.74214,37.80771],[-83.7415,37.8072],[-83.74079,37.80595],[-83.7411,37.80492],[-83.74191,37.80416],[-83.74232,37.80337],[-83.74232,37.80267],[-83.74211,37.80178],[-83.74223,37.80054],[-83.74258,37.80038],[-83.7439,37.7991],[-83.74517,37.79649],[-83.74556,37.79601],[-83.74821,37.79435],[-83.75071,37.79247],[-83.75337,37.79104],[-83.75408,37.79032],[-83.75452,37.7891],[-83.75491,37.78868],[-83.75664,37.78775],[-83.75856,37.78633],[-83.76065,37.78554],[-83.76122,37.78543],[-83.76238,37.78544],[-83.7642,37.78574],[-83.76518,37.78604],[-83.76713,37.78721],[-83.7692,37.78803],[-83.77027,37.78899],[-83.77051,37.78977],[-83.77081,37.78998],[-83.77109,37.78997],[-83.77174,37.78947],[-83.77265,37.78981],[-83.77357,37.78938],[-83.77385,37.78936],[-83.77448,37.7895],[-83.77564,37.79026],[-83.77609,37.79026],[-83.77633,37.78995],[-83.77629,37.7888],[-83.77674,37.78779],[-83.77651,37.7872],[-83.77541,37.7866],[-83.77528,37.78628],[-83.77621,37.78526],[-83.77801,37.78407],[-83.77862,37.78314],[-83.77983,37.78251],[-83.78033,37.78201],[-83.78063,37.77994],[-83.78042,37.77904],[-83.77993,37.77843],[-83.77991,37.77821],[-83.78023,37.77792],[-83.78095,37.77764],[-83.78187,37.77799],[-83.7824,37.77778],[-83.7825,37.77746],[-83.7823,37.77565],[-83.78272,37.77516],[-83.78331,37.77509],[-83.78399,37.77578],[-83.78478,37.77615],[-83.78651,37.77631],[-83.78792,37.77627],[-83.78859,37.77614],[-83.7891,37.77585],[-83.7897,37.77514],[-83.79046,37.77454],[-83.79132,37.77411],[-83.79343,37.77336],[-83.79455,37.77198],[-83.79497,37.77173],[-83.79603,37.77151],[-83.79784,37.77141],[-83.80245,37.76985],[-83.80392,37.76976],[-83.80429,37.76954],[-83.80493,37.76875],[-83.80526,37.76862],[-83.80739,37.76879],[-83.80852,37.76831],[-83.80948,37.76845],[-83.80983,37.7684],[-83.81144,37.76717],[-83.81228,37.76743],[-83.81305,37.76746],[-83.81418,37.76716],[-83.81496,37.76713],[-83.81528,37.76648],[-83.81595,37.7657],[-83.81805,37.76455],[-83.8182,37.76413],[-83.81801,37.76355],[-83.81839,37.7632],[-83.82045,37.76274],[-83.82249,37.76288],[-83.82404,37.76282],[-83.82596,37.7625],[-83.82727,37.76243],[-83.82843,37.76207],[-83.83137,37.7622],[-83.83155,37.76222],[-83.83168,37.76224],[-83.83142,37.76289],[-83.83147,37.76356],[-83.83123,37.76413],[-83.83127,37.76446],[-83.83165,37.76506],[-83.83161,37.76528],[-83.83085,37.76589],[-83.83052,37.76643],[-83.82939,37.7668],[-83.8287,37.76723],[-83.82814,37.76777],[-83.8278,37.76836],[-83.82771,37.76945],[-83.82788,37.76976],[-83.82834,37.77013],[-83.82838,37.77085],[-83.82792,37.77175],[-83.82673,37.7721],[-83.82643,37.77247],[-83.82642,37.77277],[-83.82693,37.77386],[-83.82693,37.77421],[-83.82668,37.77485],[-83.82595,37.77593],[-83.82646,37.77662],[-83.82661,37.77724],[-83.8265,37.77752],[-83.82586,37.77808],[-83.82567,37.779],[-83.82587,37.77937],[-83.82659,37.78],[-83.82689,37.78077],[-83.82789,37.78114],[-83.82797,37.78208],[-83.82855,37.78301],[-83.82824,37.78424],[-83.82895,37.78524],[-83.82928,37.78528],[-83.82984,37.78508],[-83.83178,37.78347],[-83.83299,37.78311],[-83.83345,37.78339],[-83.83413,37.78419],[-83.83493,37.78434],[-83.8356,37.78468],[-83.8367,37.78485],[-83.83701,37.78501],[-83.83721,37.78539],[-83.83711,37.78602],[-83.8374,37.78683],[-83.83702,37.78764],[-83.83729,37.78795],[-83.83856,37.78873],[-83.83854,37.78976],[-83.83897,37.79086],[-83.83976,37.79148],[-83.83997,37.79184],[-83.83999,37.79237],[-83.83953,37.79398],[-83.84002,37.79505],[-83.8396,37.79586],[-83.83968,37.79688],[-83.83945,37.79941],[-83.83956,37.80052],[-83.84021,37.80101],[-83.84031,37.80125],[-83.84014,37.80214],[-83.84025,37.8028],[-83.84009,37.80382],[-83.84058,37.80479],[-83.84105,37.80535],[-83.84183,37.80596],[-83.84145,37.807],[-83.84187,37.80864],[-83.84192,37.80941],[-83.84264,37.811],[-83.84289,37.81198],[-83.84397,37.81312],[-83.84416,37.81429],[-83.84396,37.8146],[-83.84195,37.8158],[-83.84114,37.81676],[-83.84123,37.81723],[-83.84184,37.81799],[-83.84156,37.8189],[-83.84159,37.81928],[-83.84274,37.8213],[-83.84208,37.82342],[-83.84142,37.82415],[-83.84124,37.82462],[-83.84128,37.82568],[-83.84093,37.8266],[-83.84093,37.82764],[-83.8408,37.8281],[-83.83974,37.82926],[-83.83914,37.82971],[-83.83904,37.82995],[-83.84011,37.83122],[-83.84086,37.83155],[-83.84292,37.83126],[-83.84523,37.8307],[-83.84553,37.83056],[-83.84626,37.82987],[-83.84696,37.82961],[-83.84748,37.82972],[-83.85091,37.83137],[-83.85236,37.83372],[-83.85468,37.83477],[-83.85525,37.83521],[-83.85571,37.83579],[-83.8585,37.84175],[-83.85847,37.84534],[-83.85847,37.8456],[-83.86165,37.84576],[-83.86907,37.84675],[-83.87055,37.84669],[-83.87076,37.84664],[-83.87122,37.84645],[-83.87131,37.84666],[-83.8711,37.84862],[-83.87131,37.84666],[-83.87122,37.84645],[-83.87155,37.84632],[-83.87211,37.84592],[-83.8729,37.84508],[-83.8741,37.84304],[-83.87618,37.8414],[-83.87769,37.83928],[-83.87829,37.83875],[-83.88155,37.83657],[-83.88237,37.8362],[-83.88386,37.83597],[-83.88599,37.83629],[-83.88753,37.83684],[-83.89083,37.83852],[-83.89361,37.83959],[-83.89545,37.84052],[-83.8983,37.84141],[-83.89897,37.84174],[-83.90185,37.84356],[-83.90485,37.84648],[-83.91268,37.85115],[-83.91323,37.85165],[-83.91367,37.85239],[-83.91443,37.85605],[-83.91478,37.85661],[-83.91538,37.85717],[-83.91886,37.85931],[-83.91804,37.8601],[-83.9136,37.86364],[-83.91336,37.86369],[-83.91287,37.8633],[-83.91206,37.86295],[-83.91195,37.8629],[-83.91146,37.86268],[-83.9111,37.86272],[-83.91051,37.86328],[-83.90995,37.86412],[-83.90801,37.86444],[-83.90664,37.86412],[-83.90587,37.86379],[-83.90518,37.86341],[-83.90484,37.86288],[-83.90451,37.86269],[-83.9034,37.86258],[-83.90258,37.86235],[-83.90187,37.86127],[-83.90105,37.86068],[-83.90067,37.86068],[-83.90016,37.86095],[-83.89909,37.86107],[-83.89779,37.86177],[-83.89589,37.86232],[-83.89446,37.86315],[-83.89344,37.86313],[-83.89225,37.86256],[-83.8906,37.8628],[-83.89016,37.86316],[-83.88955,37.86343],[-83.88744,37.86567],[-83.88571,37.86524],[-83.8843,37.86504],[-83.88379,37.86484],[-83.87794,37.86047],[-83.87566,37.85949],[-83.87543,37.85918],[-83.87518,37.85823],[-83.87084,37.85616],[-83.86821,37.85494],[-83.87072,37.85081],[-83.86821,37.85494],[-83.86694,37.85494],[-83.86601,37.85476],[-83.86509,37.85452],[-83.86484,37.85446],[-83.86097,37.85461],[-83.85622,37.8532],[-83.85579,37.85398],[-83.85546,37.8545],[-83.85493,37.85546],[-83.85475,37.8562],[-83.8544,37.86125],[-83.85469,37.86224],[-83.85603,37.86439],[-83.85522,37.86467],[-83.8549,37.86476],[-83.85467,37.86484],[-83.8541,37.86517],[-83.85312,37.86601],[-83.85198,37.86633],[-83.85154,37.8662],[-83.84987,37.86504],[-83.84936,37.86486],[-83.8458,37.86515],[-83.84091,37.86497],[-83.83954,37.86482],[-83.83827,37.86527],[-83.83623,37.86524],[-83.83543,37.86504],[-83.83452,37.8645],[-83.8322,37.8617],[-83.83114,37.86104],[-83.82982,37.86042],[-83.82533,37.85956],[-83.82251,37.86074],[-83.82182,37.86089],[-83.82098,37.86086],[-83.81901,37.86037],[-83.8181,37.85971],[-83.81762,37.85952],[-83.8154,37.85896],[-83.8095,37.85701],[-83.80889,37.85655],[-83.80862,37.85609],[-83.80745,37.85266],[-83.80728,37.85119],[-83.80733,37.84662],[-83.80715,37.84606],[-83.80541,37.8449],[-83.80255,37.84437],[-83.8012,37.84338],[-83.7996,37.8427],[-83.797,37.84269],[-83.7956,37.84232],[-83.79434,37.84157],[-83.79279,37.84128],[-83.79236,37.84139],[-83.7894,37.84317],[-83.78881,37.84372],[-83.78872,37.84409],[-83.78937,37.84642],[-83.78932,37.84688],[-83.78862,37.848],[-83.78792,37.84881],[-83.78694,37.84933],[-83.78646,37.8494],[-83.78584,37.84934],[-83.7847,37.84939],[-83.7838,37.84976],[-83.78259,37.85064],[-83.78218,37.85162],[-83.78107,37.85155],[-83.77878,37.85053],[-83.77862,37.85031],[-83.77862,37.8496],[-83.77835,37.84898],[-83.77741,37.84798],[-83.77629,37.84754],[-83.77271,37.84774],[-83.77112,37.84852],[-83.76913,37.84889],[-83.76883,37.84889],[-83.76814,37.84881],[-83.76821,37.84863],[-83.76836,37.84805],[-83.76853,37.84736],[-83.76917,37.84523],[-83.7711,37.84201],[-83.77136,37.84158],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71756,37.81374],[-83.71566,37.81185],[-83.71473,37.81129],[-83.71391,37.81093],[-83.71345,37.81059],[-83.71302,37.80984],[-83.71313,37.80814],[-83.71285,37.80748],[-83.71171,37.80575],[-83.71077,37.80495],[-83.70968,37.80424],[-83.70885,37.80337],[-83.70872,37.8032],[-83.7072,37.79949],[-83.70675,37.79917],[-83.70522,37.7987],[-83.70455,37.7985],[-83.70383,37.7983],[-83.70357,37.79822],[-83.70364,37.7979],[-83.70365,37.79784],[-83.70411,37.79508],[-83.70406,37.79464],[-83.70381,37.79421],[-83.70376,37.79416],[-83.7032,37.79377],[-83.69859,37.79141],[-83.69701,37.79001],[-83.69278,37.7881],[-83.69196,37.78759],[-83.69141,37.78695],[-83.69115,37.78627],[-83.69112,37.78504],[-83.69149,37.78369],[-83.69127,37.78308],[-83.69122,37.78303],[-83.69077,37.78275],[-83.69014,37.78266],[-83.68873,37.78321],[-83.68813,37.78333],[-83.68475,37.78341],[-83.68386,37.78333],[-83.6833,37.78311],[-83.68276,37.7827],[-83.68204,37.78135],[-83.68162,37.78094],[-83.68103,37.78064],[-83.68041,37.78053],[-83.68047,37.78003],[-83.68127,37.78015],[-83.68179,37.7804],[-83.68305,37.7821],[-83.68395,37.7827],[-83.68516,37.78302],[-83.68699,37.78294],[-83.68816,37.78267],[-83.68946,37.78216],[-83.69006,37.78207],[-83.69067,37.78215],[-83.69073,37.78216]]}},
{"type":"Feature","properties":{"name":"2013 RRR A & EF 43 Miles Test"},"geometry":{"type":"LineString","coordinates":[[-83.69095,37.78225],[-83.6908,37.78217],[-83.69067,37.78215],[-83.69006,37.78207],[-83.68946,37.78216],[-83.68816,37.78267],[-83.68699,37.78294],[-83.68516,37.78302],[-83.68395,37.7827],[-83.68305,37.7821],[-83.68179,37.7804],[-83.68127,37.78015],[-83.68047,37.78003],[-83.68041,37.78053],[-83.68103,37.78064],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70357,37.79822],[-83.70383,37.7983],[-83.70455,37.7985],[-83.70522,37.7987],[-83.70675,37.79917],[-83.7072,37.79949],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70968,37.80424],[-83.71077,37.80495],[-83.71171,37.80575],[-83.71285,37.80748],[-83.71313,37.80814],[-83.71302,37.80984],[-83.71345,37.81059],[-83.71391,37.81093],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.7199,37.81548],[-83.72231,37.81676],[-83.72304,37.81736],[-83.72336,37.81801],[-83.72381,37.82058],[-83.72534,37.82287],[-83.72753,37.82485],[-83.72833,37.82541],[-83.72935,37.82596],[-83.73129,37.82667],[-83.73368,37.82705],[-83.74375,37.82786],[-83.74492,37.82744],[-83.74901,37.82521],[-83.74946,37.82479],[-83.7502,37.82372],[-83.75063,37.8234],[-83.75155,37.82325],[-83.75271,37.82336],[-83.75279,37.82338],[-83.75326,37.82354],[-83.75285,37.82234],[-83.75284,37.82219],[-83.75292,37.82006],[-83.75223,37.81925],[-83.75165,37.81902],[-83.74949,37.81889],[-83.74817,37.81867],[-83.74694,37.81802],[-83.7461,37.81709],[-83.74603,37.81629],[-83.74667,37.81385],[-83.74654,37.81349],[-83.74579,37.81287],[-83.74541,37.81195],[-83.74483,37.80975],[-83.745,37.80843],[-83.74457,37.80817],[-83.74334,37.80808],[-83.74214,37.80771],[-83.7415,37.8072],[-83.74079,37.80595],[-83.7411,37.80492],[-83.74191,37.80416],[-83.74232,37.80337],[-83.74232,37.80267],[-83.74211,37.80178],[-83.74223,37.80054],[-83.74258,37.80038],[-83.7439,37.7991],[-83.74517,37.79649],[-83.74556,37.79601],[-83.74821,37.79435],[-83.75071,37.79247],[-83.75337,37.79104],[-83.75408,37.79032],[-83.75452,37.7891],[-83.75491,37.78868],[-83.75664,37.78775],[-83.75856,37.78633],[-83.76065,37.78554],[-83.76122,37.78543],[-83.76238,37.78544],[-83.7642,37.78574],[-83.76518,37.78604],[-83.76713,37.78721],[-83.7692,37.78803],[-83.77027,37.78899],[-83.77051,37.78977],[-83.77081,37.78998],[-83.77109,37.78997],[-83.77174,37.78947],[-83.77265,37.78981],[-83.77357,37.78938],[-83.77385,37.78936],[-83.77448,37.7895],[-83.77564,37.79026],[-83.77609,37.79026],[-83.77633,37.78995],[-83.77629,37.7888],[-83.77674,37.78779],[-83.77651,37.7872],[-83.77541,37.7866],[-83.77528,37.78628],[-83.77621,37.78526],[-83.77801,37.78407],[-83.77862,37.78314],[-83.77983,37.78251],[-83.78033,37.78201],[-83.78063,37.77994],[-83.78042,37.77904],[-83.77993,37.77843],[-83.77991,37.77821],[-83.78023,37.77792],[-83.78095,37.77764],[-83.78187,37.77799],[-83.7824,37.77778],[-83.7825,37.77746],[-83.7823,37.77565],[-83.78272,37.77516],[-83.78331,37.77509],[-83.78399,37.77578],[-83.78478,37.77615],[-83.78651,37.77631],[-83.78792,37.77627],[-83.78859,37.77614],[-83.7891,37.77585],[-83.7897,37.77514],[-83.79046,37.77454],[-83.79132,37.77411],[-83.79343,37.77336],[-83.79455,37.77198],[-83.79497,37.77173],[-83.79603,37.77151],[-83.79784,37.77141],[-83.80245,37.76985],[-83.80392,37.76976],[-83.80429,37.76954],[-83.80493,37.76875],[-83.80526,37.76862],[-83.80739,37.76879],[-83.80852,37.76831],[-83.80948,37.76845],[-83.80983,37.7684],[-83.81144,37.76717],[-83.81228,37.76743],[-83.81305,37.76746],[-83.81418,37.76716],[-83.81496,37.76713],[-83.81528,37.76648],[-83.81595,37.7657],[-83.81805,37.76455],[-83.8182,37.76413],[-83.81801,37.76355],[-83.81839,37.7632],[-83.82045,37.76274],[-83.82249,37.76288],[-83.82404,37.76282],[-83.82596,37.7625],[-83.82727,37.76243],[-83.82843,37.76207],[-83.83137,37.7622],[-83.83155,37.76222],[-83.83168,37.76224],[-83.83142,37.76289],[-83.83147,37.76356],[-83.83123,37.76413],[-83.83127,37.76446],[-83.83165,37.76506],[-83.83161,37.76528],[-83.83085,37.76589],[-83.83052,37.76643],[-83.82939,37.7668],[-83.8287,37.76723],[-83.82814,37.76777],[-83.8278,37.76836],[-83.82771,37.76945],[-83.82788,37.76976],[-83.82834,37.77013],[-83.82838,37.77085],[-83.82792,37.77175],[-83.82673,37.7721],[-83.82643,37.77247],[-83.82642,37.77277],[-83.82693,37.77386],[-83.82693,37.77421],[-83.82668,37.77485],[-83.82595,37.77593],[-83.82646,37.77662],[-83.82661,37.77724],[-83.8265,37.77752],[-83.82586,37.77808],[-83.82567,37.779],[-83.82587,37.77937],[-83.82659,37.78],[-83.82689,37.78077],[-83.82789,37.78114],[-83.82797,37.78208],[-83.82855,37.78301],[-83.82824,37.78424],[-83.82895,37.78524],[-83.82928,37.78528],[-83.82984,37.78508],[-83.83178,37.78347],[-83.83299,37.78311],[-83.83345,37.78339],[-83.83413,37.78419],[-83.83493,37.78434],[-83.8356,37.78468],[-83.8367,37.78485],[-83.83701,37.78501],[-83.83721,37.78539],[-83.83711,37.78602],[-83.8374,37.78683],[-83.83702,37.78764],[-83.83729,37.78795],[-83.83856,37.78873],[-83.83854,37.78976],[-83.83897,37.79086],[-83.83976,37.79148],[-83.83997,37.79184],[-83.83999,37.79237],[-83.83953,37.79398],[-83.84002,37.79505],[-83.8396,37.79586],[-83.83968,37.79688],[-83.83945,37.79941],[-83.83956,37.80052],[-83.84021,37.80101],[-83.84031,37.80125],[-83.84014,37.80214],[-83.84025,37.8028],[-83.84009,37.80382],[-83.84058,37.80479],[-83.84105,37.80535],[-83.84183,37.80596],[-83.84145,37.807],[-83.84187,37.80864],[-83.84192,37.80941],[-83.84264,37.811],[-83.84289,37.81198],[-83.84397,37.81312],[-83.84416,37.81429],[-83.84396,37.8146],[-83.84195,37.8158],[-83.84114,37.81676],[-83.84123,37.81723],[-83.84184,37.81799],[-83.84156,37.8189],[-83.84159,37.81928],[-83.84274,37.8213],[-83.84208,37.82342],[-83.84142,37.82415],[-83.84124,37.82462],[-83.84128,37.82568],[-83.84093,37.8266],[-83.84093,37.82764],[-83.8408,37.8281],[-83.83974,37.82926],[-83.83914,37.82971],[-83.83904,37.82995],[-83.84011,37.83122],[-83.84086,37.83155],[-83.84292,37.83126],[-83.84523,37.8307],[-83.84553,37.83056],[-83.84626,37.82987],[-83.84696,37.82961],[-83.84748,37.82972],[-83.85091,37.83137],[-83.85236,37.83372],[-83.85468,37.83477],[-83.85525,37.83521],[-83.85571,37.83579],[-83.8585,37.84175],[-83.85847,37.84534],[-83.85847,37.8456],[-83.86165,37.84576],[-83.86907,37.84675],[-83.87055,37.84669],[-83.87076,37.84664],[-83.87108,37.84653],[-83.87131,37.84643],[-83.87109,37.84855],[-83.87067,37.85105],[-83.86822,37.85499],[-83.86808,37.85498],[-83.86791,37.85498],[-83.86748,37.85499],[-83.86601,37.85476],[-83.86509,37.85452],[-83.86484,37.85446],[-83.86097,37.85461],[-83.85622,37.8532],[-83.85579,37.85398],[-83.85546,37.8545],[-83.85493,37.85546],[-83.85475,37.8562],[-83.8544,37.86125],[-83.85469,37.86224],[-83.85603,37.86439],[-83.85522,37.86467],[-83.8549,37.86476],[-83.85467,37.86484],[-83.8541,37.86517],[-83.85312,37.86601],[-83.85198,37.86633],[-83.85154,37.8662],[-83.84987,37.86504],[-83.84936,37.86486],[-83.8458,37.86515],[-83.84091,37.86497],[-83.83954,37.86482],[-83.83827,37.86527],[-83.83623,37.86524],[-83.83543,37.86504],[-83.83452,37.8645],[-83.8322,37.8617],[-83.83114,37.86104],[-83.82982,37.86042],[-83.82533,37.85956],[-83.82251,37.86074],[-83.82182,37.86089],[-83.82098,37.86086],[-83.81901,37.86037],[-83.8181,37.85971],[-83.81762,37.85952],[-83.8154,37.85896],[-83.8095,37.85701],[-83.80889,37.85655],[-83.80862,37.85609],[-83.80745,37.85266],[-83.80728,37.85119],[-83.80733,37.84662],[-83.80715,37.84606],[-83.80541,37.8449],[-83.80255,37.84437],[-83.8012,37.84338],[-83.7996,37.8427],[-83.797,37.84269],[-83.7956,37.84232],[-83.79434,37.84157],[-83.79279,37.84128],[-83.79236,37.84139],[-83.7894,37.84317],[-83.78881,37.84372],[-83.78872,37.84409],[-83.78937,37.84642],[-83.78932,37.84688],[-83.78862,37.848],[-83.78792,37.84881],[-83.78694,37.84933],[-83.78646,37.8494],[-83.78584,37.84934],[-83.7847,37.84939],[-83.7838,37.84976],[-83.78259,37.85064],[-83.78218,37.85162],[-83.78107,37.85155],[-83.77878,37.85053],[-83.77862,37.85031],[-83.77862,37.8496],[-83.77835,37.84898],[-83.77741,37.84798],[-83.77629,37.84754],[-83.77271,37.84774],[-83.77112,37.84852],[-83.76913,37.84889],[-83.76883,37.84889],[-83.76814,37.84881],[-83.76821,37.84863],[-83.76836,37.84805],[-83.76853,37.84736],[-83.76917,37.84523],[-83.7711,37.84201],[-83.77136,37.84158],[-83.77183,37.84097],[-83.77171,37.84086],[-83.7716,37.84075],[-83.77154,37.84066],[-83.77032,37.83794],[-83.77016,37.83718],[-83.77036,37.8342],[-83.77085,37.83294],[-83.77079,37.83226],[-83.76735,37.82822],[-83.76684,37.82799],[-83.76633,37.82801],[-83.76502,37.82858],[-83.76447,37.82869],[-83.76378,37.82868],[-83.7628,37.82848],[-83.76063,37.82738],[-83.7576,37.82647],[-83.7546,37.82445],[-83.7542,37.82417],[-83.75326,37.82354],[-83.75279,37.82338],[-83.75271,37.82336],[-83.75155,37.82325],[-83.75063,37.8234],[-83.7502,37.82372],[-83.74946,37.82479],[-83.74901,37.82521],[-83.74492,37.82744],[-83.74375,37.82786],[-83.73368,37.82705],[-83.73129,37.82667],[-83.72935,37.82596],[-83.72833,37.82541],[-83.72753,37.82485],[-83.72534,37.82287],[-83.72381,37.82058],[-83.72336,37.81801],[-83.72304,37.81736],[-83.72231,37.81676],[-83.7199,37.81548],[-83.71883,37.81477],[-83.71756,37.81374],[-83.71566,37.81185],[-83.71473,37.81129],[-83.71391,37.81093],[-83.71345,37.81059],[-83.71302,37.80984],[-83.71313,37.80814],[-83.71285,37.80748],[-83.71171,37.80575],[-83.71077,37.80495],[-83.70968,37.80424],[-83.70885,37.80337],[-83.70872,37.8032],[-83.7072,37.79949],[-83.70675,37.79917],[-83.70522,37.7987],[-83.70455,37.7985],[-83.70383,37.7983],[-83.70357,37.79822],[-83.70364,37.7979],[-83.70365,37.79784],[-83.70411,37.79508],[-83.70406,37.79464],[-83.70381,37.79421],[-83.70376,37.79416],[-83.7032,37.79377],[-83.69859,37.79141],[-83.69701,37.79001],[-83.69278,37.7881],[-83.69196,37.78759],[-83.69141,37.78695],[-83.69115,37.78627],[-83.69112,37.78504],[-83.69149,37.78369],[-83.69127,37.78308],[-83.69122,37.78303],[-83.69077,37.78275],[-83.69014,37.78266],[-83.68873,37.78321],[-83.68813,37.78333],[-83.68475,37.78341],[-83.68386,37.78333],[-83.6833,37.78311],[-83.68276,37.7827],[-83.68204,37.78135],[-83.68162,37.78094],[-83.68103,37.78064],[-83.68041,37.78053],[-83.68047,37.78003],[-83.68127,37.78015],[-83.68179,37.7804],[-83.68305,37.7821],[-83.68395,37.7827],[-83.68516,37.78302],[-83.68699,37.78294],[-83.68816,37.78267],[-83.68946,37.78216],[-83.69006,37.78207],[-83.69067,37.78215],[-83.69073,37.78216]]}},
{"type":"Feature","properties":{"name":"Paul's Mill variation"},"geometry":{"type":"LineString","coordinates":[[-84.59062,37.98365],[-84.59063,37.98448],[-84.59088,37.98525],[-84.59093,37.98541],[-84.59093,37.98573],[-84.59164,37.98598],[-84.59211,37.98603],[-84.59215,37.98622],[-84.59236,37.98621],[-84.59282,37.98625],[-84.5929,37.98626],[-84.5945,37.98636],[-84.59466,37.98638],[-84.5957,37.98681],[-84.59863,37.98725],[-84.60215,37.98808],[-84.60282,37.98809],[-84.60346,37.98769],[-84.6043,37.98622],[-84.60494,37.98609],[-84.60539,37.98624],[-84.60563,37.98635],[-84.60607,37.98652],[-84.60634,37.98598],[-84.60673,37.98521],[-84.60722,37.98427],[-84.6086,37.98155],[-84.60898,37.98075],[-84.61016,37.97828],[-84.61088,37.9769],[-84.6114,37.97588],[-84.61164,37.97542],[-84.61202,37.97467],[-84.61243,37.97407],[-84.61369,37.97318],[-84.61375,37.97314],[-84.61408,37.97296],[-84.61422,37.97288],[-84.61569,37.97219],[-84.61584,37.97219],[-84.61592,37.9722],[-84.61595,37.9722],[-84.6168,37.97246],[-84.61711,37.97256],[-84.61728,37.97262],[-84.61752,37.9727],[-84.61782,37.97279],[-84.62003,37.97348],[-84.62024,37.97354],[-84.62077,37.97371],[-84.62529,37.97515],[-84.62893,37.97627],[-84.63198,37.97719],[-84.63244,37.97714],[-84.63335,37.97679],[-84.63403,37.97658],[-84.63429,37.97648],[-84.63455,37.97637],[-84.63531,37.9761],[-84.63611,37.97598],[-84.63828,37.97671],[-84.63857,37.97681],[-84.63986,37.97727],[-84.64013,37.97737],[-84.64028,37.97742],[-84.64049,37.9775],[-84.6409,37.97764],[-84.64109,37.97771],[-84.64139,37.97748],[-84.64184,37.97713],[-84.64217,37.97687],[-84.64229,37.97677],[-84.64392,37.97549],[-84.64414,37.97533],[-84.64535,37.9745],[-84.64547,37.97441],[-84.64821,37.97213],[-84.64811,37.97127],[-84.64728,37.97029],[-84.64706,37.96984],[-84.64785,37.96818],[-84.64797,37.96794],[-84.64915,37.96551],[-84.6493,37.9652],[-84.64983,37.96411],[-84.65106,37.9626],[-84.6512,37.96239],[-84.6528,37.95967],[-84.65286,37.95956],[-84.65351,37.95778],[-84.65355,37.95762],[-84.65373,37.957],[-84.65453,37.9556],[-84.65478,37.95514],[-84.65567,37.95353],[-84.6558,37.95327],[-84.65606,37.95332],[-84.65823,37.95378],[-84.65933,37.95402],[-84.66058,37.95429],[-84.66079,37.95434],[-84.66179,37.95462],[-84.662,37.95469],[-84.66235,37.95482],[-84.66256,37.95491],[-84.66276,37.955],[-84.66333,37.95411],[-84.66388,37.95323],[-84.66451,37.95222],[-84.66438,37.95164],[-84.66445,37.95104],[-84.66453,37.95038],[-84.66468,37.94898],[-84.66476,37.94826],[-84.66488,37.94747],[-84.66659,37.94444],[-84.6665,37.94423],[-84.66574,37.94402],[-84.66505,37.94364],[-84.66367,37.94346],[-84.66316,37.94315],[-84.66407,37.94048],[-84.66397,37.94008],[-84.66373,37.93977],[-84.66276,37.93834],[-84.66181,37.93657],[-84.66176,37.9365],[-84.66092,37.93552],[-84.66077,37.93534],[-84.66069,37.9352],[-84.66066,37.93509],[-84.66064,37.93496],[-84.66028,37.93238],[-84.65999,37.93028],[-84.65977,37.92864],[-84.65974,37.92833],[-84.65967,37.92701],[-84.65964,37.92641],[-84.65956,37.92429],[-84.66075,37.92149],[-84.66015,37.9202],[-84.65944,37.91968],[-84.6593,37.91942],[-84.65796,37.91577],[-84.6573,37.91268],[-84.65727,37.91252],[-84.65662,37.90845],[-84.6563,37.90796],[-84.65459,37.90652],[-84.65474,37.90641],[-84.6548,37.90636],[-84.65565,37.90566],[-84.65578,37.90555],[-84.65749,37.90419],[-84.66208,37.90116],[-84.66232,37.90113],[-84.66272,37.90151],[-84.66293,37.90154],[-84.66454,37.90046],[-84.66486,37.90024],[-84.66636,37.89929],[-84.66638,37.8993],[-84.66671,37.89964],[-84.66857,37.90163],[-84.66862,37.90162],[-84.66889,37.90154],[-84.66942,37.90137],[-84.67,37.90118],[-84.67449,37.89971],[-84.67491,37.89957],[-84.67505,37.89953],[-84.67759,37.89939],[-84.68207,37.89845],[-84.68442,37.89778],[-84.68569,37.89753],[-84.68644,37.89751],[-84.68724,37.89781],[-84.68975,37.8993],[-84.69026,37.89947],[-84.69034,37.90002],[-84.69137,37.9017],[-84.69429,37.90477],[-84.69453,37.90499],[-84.69508,37.90552],[-84.69592,37.90632],[-84.69613,37.90617],[-84.69622,37.90611],[-84.69685,37.90566],[-84.69833,37.90461],[-84.70306,37.90123],[-84.70371,37.90069],[-84.7038,37.90061],[-84.70407,37.90071],[-84.70447,37.90082],[-84.70463,37.90087],[-84.70748,37.90146],[-84.70899,37.90123],[-84.70993,37.9014],[-84.7105,37.90239],[-84.71032,37.90446],[-84.71054,37.90585],[-84.71057,37.90601],[-84.71071,37.90799],[-84.71105,37.90899],[-84.71128,37.9093],[-84.71155,37.90962],[-84.71214,37.9102],[-84.71261,37.91176],[-84.71251,37.91175],[-84.71215,37.91172],[-84.71197,37.9117],[-84.71162,37.91167],[-84.71044,37.9118],[-84.70789,37.91268],[-84.70654,37.91403],[-84.70393,37.91551],[-84.69979,37.91871],[-84.69562,37.91208],[-84.69437,37.90992],[-84.69406,37.91012],[-84.69355,37.9105],[-84.69337,37.91064],[-84.69284,37.91102],[-84.69243,37.91132],[-84.69056,37.91275],[-84.69023,37.91402],[-84.68988,37.91542],[-84.68751,37.9172],[-84.68694,37.91762],[-84.68548,37.91863],[-84.68434,37.91934],[-84.68361,37.91977],[-84.68332,37.91993],[-84.68228,37.92054],[-84.68096,37.92139],[-84.6796,37.92228],[-84.67845,37.92322],[-84.67601,37.92562],[-84.67377,37.92755],[-84.67331,37.92792],[-84.67258,37.92852],[-84.6711,37.92974],[-84.6704,37.9303],[-84.66887,37.93151],[-84.66775,37.93227],[-84.66573,37.93359],[-84.66427,37.93422],[-84.66399,37.93434],[-84.6613,37.93506],[-84.66069,37.9352],[-84.66077,37.93534],[-84.66092,37.93552],[-84.66176,37.9365],[-84.66181,37.93657],[-84.66276,37.93834],[-84.66373,37.93977],[-84.66397,37.94008],[-84.66407,37.94048],[-84.66316,37.94315],[-84.66367,37.94346],[-84.66505,37.94364],[-84.66574,37.94402],[-84.6665,37.94423],[-84.66659,37.94444],[-84.66488,37.94747],[-84.66476,37.94826],[-84.66468,37.94898],[-84.66453,37.95038],[-84.66445,37.95104],[-84.66438,37.95164],[-84.66451,37.95222],[-84.66388,37.95323],[-84.66333,37.95411],[-84.66276,37.955],[-84.66256,37.95491],[-84.66235,37.95482],[-84.662,37.95469],[-84.66179,37.95462],[-84.66079,37.95434],[-84.66058,37.95429],[-84.65933,37.95402],[-84.65823,37.95378],[-84.65606,37.95332],[-84.6558,37.95327],[-84.65567,37.95353],[-84.65478,37.95514],[-84.65453,37.9556],[-84.65373,37.957],[-84.65355,37.95762],[-84.65351,37.95778],[-84.65286,37.95956],[-84.6528,37.95967],[-84.6512,37.96239],[-84.65106,37.9626],[-84.64983,37.96411],[-84.6493,37.9652],[-84.64915,37.96551],[-84.64797,37.96794],[-84.64785,37.96818],[-84.64706,37.96984],[-84.64728,37.97029],[-84.64811,37.97127],[-84.64821,37.97213],[-84.64547,37.97441],[-84.64535,37.9745],[-84.64414,37.97533],[-84.64392,37.97549],[-84.64229,37.97677],[-84.64217,37.97687],[-84.64184,37.97713],[-84.64139,37.97748],[-84.64109,37.97771],[-84.6409,37.97764],[-84.64049,37.9775],[-84.64028,37.97742],[-84.64013,37.97737],[-84.63986,37.97727],[-84.63857,37.97681],[-84.63828,37.97671],[-84.63611,37.97598],[-84.63531,37.9761],[-84.63455,37.97637],[-84.63429,37.97648],[-84.63403,37.97658],[-84.63335,37.97679],[-84.63244,37.97714],[-84.63198,37.97719],[-84.62893,37.97627],[-84.62529,37.97515],[-84.62077,37.97371],[-84.62024,37.97354],[-84.62003,37.97348],[-84.61782,37.97279],[-84.61752,37.9727],[-84.61728,37.97262],[-84.61711,37.97256],[-84.6168,37.97246],[-84.61595,37.9722],[-84.61592,37.9722],[-84.61584,37.97219],[-84.61569,37.97219],[-84.61422,37.97288],[-84.61408,37.97296],[-84.61375,37.97314],[-84.61369,37.97318],[-84.61243,37.97407],[-84.61202,37.97467],[-84.61164,37.97542],[-84.6114,37.97588],[-84.61088,37.9769],[-84.61016,37.97828],[-84.60788,37.97762],[-84.59635,37.97476],[-84.59539,37.97441],[-84.59414,37.97358],[-84.59315,37.97328],[-84.59294,37.97323],[-84.59201,37.97293],[-84.59003,37.9723],[-84.58989,37.97255],[-84.58979,37.97271],[-84.5875,37.97614],[-84.58682,37.9793],[-84.58561,37.97907],[-84.5804,37.97807],[-84.58002,37.97877],[-84.57921,37.97965],[-84.57889,37.98025],[-84.57914,37.98034],[-84.5793,37.98041],[-84.58,37.98082],[-84.5821,37.98146],[-84.58307,37.98206],[-84.58553,37.98314],[-84.58712,37.98417],[-84.59093,37.98573],[-84.59093,37.98541],[-84.59088,37.98525],[-84.59063,37.98448],[-84.59062,37.98365]]}},
{"type":"Feature","properties":{"name":"Georgetown- Caney Creek Loop"},"geometry":{"type":"LineString","coordinates":[[-84.55965,38.2116],[-84.55961,38.21297],[-84.55964,38.21309],[-84.56004,38.2148],[-84.5609,38.21592],[-84.56125,38.21632],[-84.56202,38.21721],[-84.5628,38.21812],[-84.56375,38.21935],[-84.56414,38.21992],[-84.56664,38.22348],[-84.5674,38.22464],[-84.56872,38.22694],[-84.56875,38.22707],[-84.5688,38.22753],[-84.5683,38.23113],[-84.56828,38.23134],[-84.56826,38.2315],[-84.56875,38.23154],[-84.56994,38.23164],[-84.5706,38.23177],[-84.57267,38.2345],[-84.57294,38.23487],[-84.57399,38.2363],[-84.57435,38.23684],[-84.57529,38.23838],[-84.57533,38.23855],[-84.57526,38.23906],[-84.57862,38.241],[-84.57918,38.24127],[-84.58215,38.24247],[-84.58344,38.24346],[-84.58414,38.24404],[-84.58526,38.24497],[-84.58671,38.24618],[-84.58714,38.24693],[-84.58735,38.24733],[-84.58899,38.25053],[-84.58941,38.2514],[-84.59048,38.25365],[-84.59104,38.25483],[-84.59209,38.25688],[-84.59265,38.25801],[-84.59299,38.25842],[-84.59562,38.26044],[-84.59661,38.2612],[-84.59917,38.26313],[-84.5996,38.26346],[-84.60176,38.2651],[-84.60315,38.26561],[-84.60383,38.26608],[-84.60417,38.26639],[-84.60759,38.2695],[-84.60811,38.26997],[-84.61018,38.27219],[-84.61864,38.27986],[-84.61906,38.28023],[-84.62075,38.28117],[-84.62276,38.28288],[-84.62121,38.28357],[-84.6193,38.28504],[-84.6192,38.28511],[-84.6172,38.28662],[-84.61714,38.28691],[-84.6173,38.28711],[-84.62013,38.28971],[-84.62043,38.29022],[-84.62064,38.29099],[-84.62212,38.29231],[-84.62314,38.29301],[-84.62323,38.29308],[-84.62499,38.29443],[-84.62714,38.29632],[-84.6285,38.29891],[-84.62798,38.29959],[-84.62798,38.30029],[-84.628,38.30038],[-84.62862,38.30341],[-84.62846,38.30378],[-84.62758,38.30446],[-84.62739,38.30459],[-84.62575,38.30572],[-84.62556,38.30599],[-84.62562,38.30652],[-84.62647,38.30821],[-84.62627,38.30903],[-84.62597,38.30957],[-84.62225,38.31201],[-84.61877,38.31541],[-84.61867,38.31549],[-84.61657,38.31752],[-84.61595,38.31835],[-84.61539,38.31935],[-84.61531,38.32003],[-84.61499,38.32069],[-84.61509,38.32103],[-84.61566,38.32181],[-84.61596,38.32259],[-84.61635,38.32296],[-84.61708,38.32337],[-84.61726,38.32384],[-84.61793,38.32477],[-84.62266,38.32659],[-84.62635,38.32999],[-84.62617,38.33047],[-84.62524,38.3315],[-84.62239,38.33313],[-84.62108,38.33466],[-84.62032,38.3352],[-84.61958,38.33533],[-84.61841,38.33531],[-84.61637,38.33497],[-84.61386,38.33579],[-84.61185,38.33591],[-84.61187,38.33724],[-84.61117,38.33975],[-84.61026,38.34191],[-84.60818,38.34561],[-84.6079,38.34685],[-84.60813,38.34822],[-84.60798,38.3489],[-84.60755,38.3497],[-84.60657,38.3503],[-84.60544,38.35154],[-84.60348,38.35218],[-84.60074,38.35488],[-84.59745,38.35691],[-84.59625,38.35831],[-84.59577,38.35939],[-84.59432,38.36098],[-84.59457,38.36113],[-84.59525,38.36249],[-84.59649,38.36403],[-84.5961,38.36617],[-84.59645,38.36715],[-84.59685,38.36735],[-84.5988,38.36756],[-84.60018,38.36844],[-84.60135,38.36974],[-84.60075,38.37067],[-84.60098,38.37081],[-84.6017,38.37092],[-84.60192,38.37112],[-84.60102,38.37244],[-84.60107,38.37286],[-84.60478,38.37525],[-84.60518,38.3757],[-84.60581,38.37723],[-84.60526,38.37823],[-84.60452,38.37914],[-84.60445,38.37962],[-84.60459,38.38004],[-84.60491,38.38009],[-84.60561,38.38054],[-84.60553,38.38214],[-84.60583,38.38348],[-84.60565,38.38408],[-84.60571,38.38443],[-84.60628,38.38508],[-84.60716,38.38541],[-84.60866,38.38635],[-84.60879,38.38699],[-84.60834,38.38758],[-84.60837,38.38789],[-84.60889,38.38835],[-84.61004,38.38881],[-84.61075,38.38949],[-84.61087,38.39067],[-84.61018,38.39138],[-84.60946,38.39185],[-84.60942,38.39219],[-84.61038,38.39263],[-84.61092,38.39307],[-84.6111,38.39365],[-84.61094,38.3946],[-84.61181,38.39516],[-84.61221,38.39614],[-84.61354,38.39649],[-84.61385,38.39707],[-84.61444,38.39769],[-84.61497,38.39895],[-84.6158,38.39939],[-84.61629,38.40018],[-84.61719,38.40072],[-84.61739,38.40102],[-84.61761,38.4011],[-84.6182,38.40173],[-84.61858,38.40181],[-84.61945,38.40122],[-84.62188,38.40079],[-84.62254,38.40104],[-84.62336,38.40188],[-84.62385,38.40197],[-84.62492,38.40181],[-84.62583,38.40202],[-84.62636,38.4026],[-84.62711,38.40283],[-84.62799,38.4033],[-84.62845,38.40392],[-84.62921,38.40413],[-84.62984,38.40502],[-84.63093,38.40594],[-84.63329,38.40698],[-84.63413,38.40772],[-84.63563,38.40847],[-84.63805,38.40894],[-84.6385,38.40914],[-84.64075,38.41093],[-84.64239,38.41309],[-84.64381,38.41248],[-84.6444,38.41238],[-84.64506,38.41317],[-84.64554,38.41347],[-84.6458,38.41402],[-84.64651,38.41453],[-84.64721,38.41473],[-84.64772,38.41472],[-84.64836,38.41454],[-84.64907,38.41459],[-84.65199,38.41432],[-84.65231,38.41436],[-84.65307,38.41477],[-84.65469,38.41362],[-84.65513,38.41368],[-84.65567,38.41418],[-84.65612,38.41434],[-84.65862,38.41374],[-84.65911,38.41344],[-84.65949,38.41288],[-84.66166,38.41189],[-84.66299,38.40987],[-84.66412,38.40991],[-84.66621,38.40912],[-84.66597,38.40881],[-84.66602,38.40839],[-84.66729,38.40624],[-84.66717,38.40599],[-84.66616,38.40515],[-84.66702,38.40514],[-84.66838,38.40488],[-84.67021,38.40504],[-84.67285,38.40496],[-84.67426,38.4051],[-84.67578,38.40553],[-84.6779,38.40643],[-84.67912,38.40662],[-84.68063,38.40758],[-84.68175,38.40778],[-84.6834,38.40867],[-84.68487,38.40914],[-84.68574,38.40961],[-84.68614,38.40947],[-84.68742,38.40934],[-84.68831,38.40834],[-84.68857,38.40786],[-84.68848,38.40736],[-84.68824,38.40703],[-84.68691,38.40602],[-84.68601,38.40506],[-84.68698,38.40307],[-84.6869,38.4013],[-84.68634,38.4006],[-84.68674,38.40023],[-84.68687,38.39993],[-84.68678,38.39854],[-84.68635,38.39792],[-84.68526,38.39737],[-84.6844,38.39663],[-84.68433,38.39637],[-84.68487,38.39444],[-84.68482,38.39379],[-84.68422,38.39305],[-84.68354,38.39251],[-84.68318,38.39176],[-84.68233,38.39133],[-84.6813,38.38972],[-84.68107,38.38923],[-84.68135,38.38812],[-84.68061,38.38723],[-84.68062,38.38671],[-84.68084,38.38623],[-84.68178,38.38533],[-84.68198,38.38449],[-84.6827,38.38349],[-84.68319,38.38328],[-84.68489,38.38299],[-84.68638,38.38202],[-84.68736,38.38178],[-84.68775,38.38151],[-84.68804,38.38042],[-84.68871,38.37955],[-84.689,38.37796],[-84.69031,38.37707],[-84.69087,38.37642],[-84.69086,38.37606],[-84.69048,38.37544],[-84.69055,38.37501],[-84.69089,38.37462],[-84.69265,38.37341],[-84.69326,38.37106],[-84.69394,38.37016],[-84.69231,38.36989],[-84.6919,38.36954],[-84.69035,38.36867],[-84.69003,38.36801],[-84.68967,38.36778],[-84.68842,38.36802],[-84.68759,38.36804],[-84.68631,38.36764],[-84.68522,38.36701],[-84.68376,38.3667],[-84.6829,38.36682],[-84.68149,38.36793],[-84.68034,38.36824],[-84.67931,38.36878],[-84.67899,38.36876],[-84.67862,38.36739],[-84.6786,38.36623],[-84.67833,38.36578],[-84.6771,38.36494],[-84.67408,38.3633],[-84.67184,38.3617],[-84.67017,38.36194],[-84.66953,38.36222],[-84.66937,38.36243],[-84.66956,38.36339],[-84.66946,38.36351],[-84.66822,38.36359],[-84.66706,38.36339],[-84.66576,38.36306],[-84.66514,38.36271],[-84.66439,38.36113],[-84.66418,38.36019],[-84.66381,38.35982],[-84.66223,38.35935],[-84.65966,38.35826],[-84.65709,38.3578],[-84.65693,38.35767],[-84.65707,38.35715],[-84.65624,38.35626],[-84.65608,38.35585],[-84.65635,38.35532],[-84.65748,38.35451],[-84.65762,38.35429],[-84.65764,38.35045],[-84.65747,38.34793],[-84.65793,38.34686],[-84.6585,38.34598],[-84.65889,38.34465],[-84.6588,38.34428],[-84.65827,38.34346],[-84.65822,38.3425],[-84.66008,38.34208],[-84.66062,38.34182],[-84.66179,38.34007],[-84.66287,38.3389],[-84.66263,38.33746],[-84.66292,38.33531],[-84.66296,38.33518],[-84.66349,38.33338],[-84.66362,38.33238],[-84.66407,38.33123],[-84.66395,38.33],[-84.66447,38.32834],[-84.66466,38.32606],[-84.66589,38.32395],[-84.66726,38.32367],[-84.66772,38.32334],[-84.66793,38.32198],[-84.66814,38.32153],[-84.66819,38.32145],[-84.66995,38.31939],[-84.67105,38.31646],[-84.67235,38.3145],[-84.67343,38.31258],[-84.67355,38.31206],[-84.67495,38.30971],[-84.67623,38.3082],[-84.67631,38.30807],[-84.67672,38.30718],[-84.67701,38.30584],[-84.67701,38.30522],[-84.6775,38.30396],[-84.68102,38.29666],[-84.68146,38.29538],[-84.68153,38.29396],[-84.68274,38.29196],[-84.68321,38.28983],[-84.68484,38.28784],[-84.68569,38.28644],[-84.68609,38.28414],[-84.68599,38.28272],[-84.68609,38.28217],[-84.68611,38.28203],[-84.68639,38.27944],[-84.68608,38.2765],[-84.68626,38.27469],[-84.68645,38.27428],[-84.68811,38.27241],[-84.6877,38.27226],[-84.68737,38.27211],[-84.68547,38.27103],[-84.68324,38.26961],[-84.68302,38.26946],[-84.68092,38.26759],[-84.68064,38.26733],[-84.68054,38.26724],[-84.68026,38.26698],[-84.68015,38.26689],[-84.67979,38.26657],[-84.67895,38.26583],[-84.67865,38.26556],[-84.67631,38.26347],[-84.67454,38.26219],[-84.67416,38.26182],[-84.67355,38.26122],[-84.6751,38.26025],[-84.67564,38.2593],[-84.67656,38.25919],[-84.67724,38.25877],[-84.67785,38.25774],[-84.67834,38.25636],[-84.67942,38.25552],[-84.67951,38.25543],[-84.68039,38.25244],[-84.68114,38.25125],[-84.68126,38.25114],[-84.68167,38.25085],[-84.68182,38.25076],[-84.68344,38.25],[-84.68414,38.24951],[-84.68505,38.24831],[-84.68572,38.24712],[-84.68578,38.24698],[-84.68601,38.24628],[-84.686,38.2455],[-84.68598,38.24533],[-84.6858,38.24408],[-84.68605,38.24348],[-84.68647,38.24328],[-84.68795,38.24308],[-84.68897,38.24254],[-84.68949,38.24177],[-84.69037,38.24051],[-84.69112,38.24023],[-84.69262,38.24004],[-84.69458,38.24034],[-84.6953,38.24035],[-84.69546,38.24033],[-84.69597,38.24],[-84.69677,38.2387],[-84.69831,38.23759],[-84.69853,38.23687],[-84.69853,38.23672],[-84.69852,38.23657],[-84.69851,38.23642],[-84.69844,38.23612],[-84.69839,38.23598],[-84.69835,38.23583],[-84.69831,38.2351],[-84.69878,38.23427],[-84.69884,38.23384],[-84.69862,38.23176],[-84.69868,38.23073],[-84.6987,38.23058],[-84.69883,38.22925],[-84.69847,38.22659],[-84.69848,38.22541],[-84.69854,38.22511],[-84.69863,38.22451],[-84.69865,38.22436],[-84.69859,38.22379],[-84.69786,38.22274],[-84.69751,38.22159],[-84.69674,38.22068],[-84.69607,38.21981],[-84.69477,38.21803],[-84.6961,38.21556],[-84.69757,38.21281],[-84.69796,38.21222],[-84.69871,38.21105],[-84.70099,38.20721],[-84.70231,38.20727],[-84.7035,38.20731],[-84.70347,38.20719],[-84.70342,38.20704],[-84.70333,38.20685],[-84.70215,38.20483],[-84.70049,38.20374],[-84.69997,38.20344],[-84.69854,38.2027],[-84.69832,38.20259],[-84.69761,38.20225],[-84.68203,38.19689],[-84.68128,38.19663],[-84.6788,38.19583],[-84.67684,38.19528],[-84.67641,38.19515],[-84.66653,38.19181],[-84.66646,38.19179],[-84.66135,38.19032],[-84.6591,38.18967],[-84.65056,38.18722],[-84.64913,38.18682],[-84.64774,38.18643],[-84.64538,38.18575],[-84.64374,38.18529],[-84.64026,38.1843],[-84.63871,38.18386],[-84.63628,38.18317],[-84.63447,38.18264],[-84.62996,38.18135],[-84.62931,38.18116],[-84.62913,38.18111],[-84.62752,38.18064],[-84.6264,38.18034],[-84.62546,38.18008],[-84.62471,38.17986],[-84.60089,38.17174],[-84.60042,38.17157],[-84.60023,38.17148],[-84.599,38.1736],[-84.59793,38.17543],[-84.59753,38.17605],[-84.59444,38.18043],[-84.59366,38.18173],[-84.59351,38.18201],[-84.59004,38.18847],[-84.58873,38.18979],[-84.58803,38.19078],[-84.58794,38.19097],[-84.58713,38.19346],[-84.58677,38.19451],[-84.58662,38.19494],[-84.58648,38.19527],[-84.58526,38.19771],[-84.58522,38.19789],[-84.58494,38.19838],[-84.58464,38.19889],[-84.5833,38.20111],[-84.58269,38.2009],[-84.58218,38.20141],[-84.57866,38.20012],[-84.57748,38.20209],[-84.57647,38.20298],[-84.57596,38.20372],[-84.57579,38.20389],[-84.57473,38.20445],[-84.57462,38.20449],[-84.57361,38.20452],[-84.57285,38.20429],[-84.57096,38.20373],[-84.57035,38.20367],[-84.56857,38.20406],[-84.56729,38.20461],[-84.56492,38.20473],[-84.56473,38.20472],[-84.56426,38.20465],[-84.56364,38.20458],[-84.56031,38.20441],[-84.56018,38.20584],[-84.56001,38.20759],[-84.55995,38.2083],[-84.55988,38.20903],[-84.55972,38.21078],[-84.55969,38.21115],[-84.55965,38.2116]]}},
{"type":"Feature","properties":{"name":"Pazzo's to Paris"},"geometry":{"type":"LineString","coordinates":[[-84.50188,38.04293],[-84.50128,38.0434],[-84.50055,38.04391],[-84.49986,38.0444],[-84.49888,38.04509],[-84.49877,38.04515],[-84.498,38.04571],[-84.49553,38.0474],[-84.49478,38.04795],[-84.4935,38.04886],[-84.49336,38.04897],[-84.49302,38.04921],[-84.48847,38.05242],[-84.48487,38.05494],[-84.48425,38.05537],[-84.48356,38.05588],[-84.48291,38.05635],[-84.48215,38.05687],[-84.48052,38.05647],[-84.47938,38.05623],[-84.47801,38.05595],[-84.47764,38.05603],[-84.4775,38.05608],[-84.47669,38.05633],[-84.47349,38.05734],[-84.47248,38.05766],[-84.47129,38.05804],[-84.46898,38.05877],[-84.46879,38.05858],[-84.46898,38.05877],[-84.46763,38.05919],[-84.46626,38.05964],[-84.4648,38.0601],[-84.45722,38.06248],[-84.45441,38.06341],[-84.45375,38.06364],[-84.45156,38.06442],[-84.45001,38.06496],[-84.44783,38.06569],[-84.44546,38.06643],[-84.44281,38.06728],[-84.44194,38.06755],[-84.44043,38.06804],[-84.43762,38.06897],[-84.43293,38.07074],[-84.43128,38.07139],[-84.42848,38.07245],[-84.42367,38.07406],[-84.42161,38.0747],[-84.42034,38.075],[-84.41923,38.07519],[-84.41628,38.07566],[-84.41572,38.07574],[-84.41478,38.07596],[-84.4137,38.07647],[-84.41364,38.0765],[-84.41334,38.0767],[-84.41319,38.07679],[-84.41033,38.07895],[-84.40498,38.08253],[-84.40034,38.08573],[-84.39533,38.0894],[-84.39436,38.09023],[-84.39382,38.09074],[-84.38848,38.09559],[-84.38275,38.10131],[-84.37865,38.10292],[-84.37803,38.10316],[-84.37679,38.10366],[-84.37551,38.10426],[-84.37414,38.10556],[-84.37249,38.10722],[-84.37156,38.10809],[-84.36805,38.10975],[-84.36763,38.11006],[-84.36689,38.11067],[-84.36647,38.11109],[-84.36577,38.11188],[-84.36411,38.1132],[-84.36344,38.11374],[-84.3625,38.11449],[-84.35725,38.1178],[-84.35598,38.1194],[-84.35573,38.11959],[-84.35413,38.12074],[-84.35396,38.12086],[-84.35207,38.12219],[-84.35194,38.12229],[-84.35145,38.12264],[-84.34931,38.12414],[-84.34918,38.12423],[-84.34569,38.12668],[-84.34554,38.12677],[-84.34381,38.1275],[-84.33906,38.12891],[-84.33868,38.12902],[-84.33658,38.12964],[-84.33587,38.13015],[-84.33559,38.13038],[-84.33462,38.13385],[-84.33465,38.13704],[-84.33464,38.1371],[-84.33462,38.13729],[-84.33602,38.13731],[-84.3364,38.13731],[-84.33738,38.13737],[-84.33821,38.13765],[-84.33879,38.13787],[-84.34378,38.13961],[-84.34968,38.14239],[-84.35012,38.14259],[-84.35226,38.14371],[-84.35246,38.14383],[-84.3526,38.14394],[-84.35494,38.1424],[-84.35536,38.14211],[-84.35672,38.14108],[-84.35706,38.14135],[-84.3576,38.1418],[-84.35806,38.14219],[-84.35878,38.14279],[-84.35906,38.14303],[-84.35986,38.14374],[-84.36121,38.14418],[-84.36154,38.14427],[-84.3665,38.14584],[-84.36665,38.14589],[-84.37296,38.14797],[-84.37545,38.14425],[-84.37628,38.14297],[-84.37653,38.14274],[-84.37791,38.14316],[-84.38131,38.14431],[-84.3841,38.14524],[-84.38644,38.14596],[-84.39038,38.1472],[-84.39374,38.14824],[-84.3962,38.14902],[-84.39659,38.14915],[-84.40335,38.15128],[-84.40046,38.15424],[-84.4001,38.15461],[-84.39972,38.15499],[-84.39741,38.15746],[-84.39718,38.15767],[-84.39537,38.15925],[-84.39058,38.1628],[-84.38886,38.16498],[-84.38844,38.16557],[-84.38808,38.16608],[-84.38746,38.16696],[-84.38452,38.17129],[-84.38367,38.17235],[-84.38344,38.17266],[-84.38293,38.1734],[-84.3814,38.17664],[-84.38105,38.17743],[-84.38026,38.17918],[-84.37865,38.18169],[-84.37712,38.18402],[-84.37526,38.18699],[-84.37449,38.18831],[-84.37017,38.19396],[-84.37014,38.19399],[-84.36879,38.19601],[-84.36863,38.19623],[-84.36621,38.19603],[-84.36477,38.19591],[-84.36084,38.19558],[-84.35905,38.19544],[-84.35592,38.1952],[-84.34826,38.19492],[-84.34749,38.1949],[-84.3463,38.19485],[-84.33104,38.19421],[-84.32837,38.19427],[-84.31957,38.19474],[-84.31891,38.195],[-84.31722,38.19611],[-84.31699,38.19627],[-84.31558,38.19718],[-84.31485,38.19739],[-84.31469,38.1974],[-84.31453,38.1974],[-84.3142,38.19738],[-84.31386,38.19735],[-84.31351,38.19732],[-84.27987,38.19468],[-84.27979,38.19467],[-84.27924,38.19463],[-84.27915,38.19463],[-84.27596,38.1944],[-84.27559,38.19437],[-84.27538,38.19422],[-84.27532,38.19412],[-84.27298,38.19563],[-84.27283,38.19571],[-84.27114,38.19677],[-84.26959,38.19768],[-84.26899,38.19804],[-84.26856,38.1983],[-84.26817,38.19712],[-84.2672,38.19215],[-84.26754,38.18886],[-84.26674,38.18575],[-84.26575,38.18397],[-84.25621,38.17107],[-84.25463,38.16643],[-84.25534,38.16057],[-84.25493,38.15754],[-84.25517,38.15618],[-84.25594,38.15367],[-84.25641,38.14567],[-84.25755,38.13316],[-84.26146,38.1239],[-84.26173,38.12008],[-84.26127,38.11474],[-84.26134,38.11245],[-84.26138,38.11158],[-84.2614,38.11112],[-84.26141,38.11097],[-84.26167,38.10999],[-84.26494,38.10366],[-84.26559,38.10238],[-84.26575,38.10207],[-84.2673,38.09901],[-84.26771,38.0954],[-84.26782,38.09416],[-84.26783,38.09399],[-84.26784,38.09381],[-84.26865,38.08514],[-84.26866,38.08506],[-84.26865,38.08514],[-84.26923,38.08515],[-84.26928,38.08516],[-84.26938,38.08516],[-84.26999,38.08516],[-84.273,38.08514],[-84.27632,38.08454],[-84.27745,38.08431],[-84.28124,38.08362],[-84.28239,38.08357],[-84.28869,38.08326],[-84.29001,38.08319],[-84.29659,38.08288],[-84.29794,38.08272],[-84.29912,38.0822],[-84.30122,38.08042],[-84.30172,38.07999],[-84.30387,38.07818],[-84.30593,38.07653],[-84.30671,38.07592],[-84.30702,38.07582],[-84.31239,38.07557],[-84.31275,38.07546],[-84.31296,38.07535],[-84.31705,38.07307],[-84.31785,38.07255],[-84.3199,38.07128],[-84.32025,38.0711],[-84.32146,38.07069],[-84.32337,38.0704],[-84.32485,38.07018],[-84.32657,38.07001],[-84.32767,38.06985],[-84.32999,38.06952],[-84.33103,38.06937],[-84.33178,38.06927],[-84.33348,38.06903],[-84.33411,38.06894],[-84.33616,38.06865],[-84.33963,38.06817],[-84.34027,38.06808],[-84.34526,38.06738],[-84.34629,38.06724],[-84.34873,38.0669],[-84.34887,38.06688],[-84.34898,38.06684],[-84.34908,38.06681],[-84.34918,38.06676],[-84.34945,38.06663],[-84.34978,38.06658],[-84.35062,38.06669],[-84.35118,38.06676],[-84.3515,38.0668],[-84.35181,38.06682],[-84.35272,38.06689],[-84.35365,38.06695],[-84.35697,38.06718],[-84.36161,38.06675],[-84.36315,38.06659],[-84.3675,38.06615],[-84.37113,38.06658],[-84.37181,38.06666],[-84.37229,38.06673],[-84.37933,38.06941],[-84.38194,38.06989],[-84.38332,38.06953],[-84.38569,38.06872],[-84.38712,38.0682],[-84.38895,38.06759],[-84.39011,38.06779],[-84.39161,38.06817],[-84.39602,38.0693],[-84.39612,38.06931],[-84.3964,38.06925],[-84.39728,38.06931],[-84.39757,38.06937],[-84.40001,38.06997],[-84.40206,38.07065],[-84.40617,38.07255],[-84.40703,38.0729],[-84.40761,38.07313],[-84.40918,38.07384],[-84.41101,38.07528],[-84.41175,38.07565],[-84.41226,38.07606],[-84.41319,38.07679],[-84.41334,38.0767],[-84.41364,38.0765],[-84.4137,38.07647],[-84.41478,38.07596],[-84.41572,38.07574],[-84.41628,38.07566],[-84.41923,38.07519],[-84.42034,38.075],[-84.42161,38.0747],[-84.42367,38.07406],[-84.42848,38.07245],[-84.43128,38.07139],[-84.43293,38.07074],[-84.43762,38.06897],[-84.44043,38.06804],[-84.44194,38.06755],[-84.44281,38.06728],[-84.44546,38.06643],[-84.44783,38.06569],[-84.45001,38.06496],[-84.45156,38.06442],[-84.45375,38.06364],[-84.45441,38.06341],[-84.45722,38.06248],[-84.4648,38.0601],[-84.46626,38.05964],[-84.46763,38.05919],[-84.46898,38.05877],[-84.47129,38.05804],[-84.47248,38.05766],[-84.47349,38.05734],[-84.47669,38.05633],[-84.4775,38.05608],[-84.47764,38.05603],[-84.47774,38.05558],[-84.48084,38.05341],[-84.48356,38.05588],[-84.48425,38.05537],[-84.48468,38.05576],[-84.48889,38.05281],[-84.48847,38.05242],[-84.4868,38.05093],[-84.49134,38.0477],[-84.49237,38.04698],[-84.49468,38.04535],[-84.49553,38.04505],[-84.49669,38.04427],[-84.4973,38.04385],[-84.50089,38.04144],[-84.5012,38.04101],[-84.50271,38.04234],[-84.50229,38.04265],[-84.50188,38.04293]]}},
{"type":"Feature","properties":{"name":"High Bridge from Coffee Pub"},"geometry":{"type":"LineString","coordinates":[[-84.58567,37.9962],[-84.58565,37.9962],[-84.58549,37.99613],[-84.58588,37.99607],[-84.5864,37.99574],[-84.58714,37.99576],[-84.5873,37.99576],[-84.58774,37.99553],[-84.58822,37.99587],[-84.58871,37.99619],[-84.58938,37.99642],[-84.59063,37.99654],[-84.59108,37.9965],[-84.59179,37.9964],[-84.59197,37.99635],[-84.59264,37.99619],[-84.59571,37.99553],[-84.59911,37.99481],[-84.60264,37.99354],[-84.60289,37.99332],[-84.60468,37.9895],[-84.60496,37.98884],[-84.60542,37.98791],[-84.60607,37.98652],[-84.60634,37.98598],[-84.60673,37.98521],[-84.60722,37.98427],[-84.6086,37.98155],[-84.60898,37.98075],[-84.61016,37.97828],[-84.61088,37.9769],[-84.6114,37.97588],[-84.61164,37.97542],[-84.61202,37.97467],[-84.61243,37.97407],[-84.61369,37.97318],[-84.61375,37.97314],[-84.61408,37.97296],[-84.61422,37.97288],[-84.61569,37.97219],[-84.61584,37.97219],[-84.61592,37.9722],[-84.61595,37.9722],[-84.6168,37.97246],[-84.617,37.97214],[-84.6171,37.97197],[-84.61861,37.9692],[-84.61901,37.96846],[-84.62214,37.96274],[-84.62343,37.96112],[-84.62458,37.95922],[-84.62465,37.9591],[-84.62368,37.9588],[-84.62238,37.95832],[-84.62012,37.95788],[-84.6167,37.9569],[-84.61615,37.9554],[-84.61546,37.955],[-84.61464,37.955],[-84.61415,37.95521],[-84.61374,37.9557],[-84.61313,37.95661],[-84.61258,37.95789],[-84.6122,37.95807],[-84.61181,37.95806],[-84.6098,37.95757],[-84.60739,37.95657],[-84.6051,37.95611],[-84.60281,37.95492],[-84.60182,37.95471],[-84.60008,37.95466],[-84.59812,37.954],[-84.59809,37.95396],[-84.59798,37.95362],[-84.59819,37.95346],[-84.59828,37.95337],[-84.59946,37.95035],[-84.60112,37.94671],[-84.604,37.9417],[-84.60502,37.93788],[-84.60573,37.93382],[-84.60623,37.93285],[-84.60642,37.93253],[-84.60714,37.93149],[-84.61034,37.92939],[-84.61297,37.92748],[-84.61398,37.92657],[-84.615,37.92541],[-84.61514,37.92524],[-84.61609,37.92383],[-84.61626,37.92353],[-84.61642,37.9232],[-84.61639,37.92277],[-84.61648,37.92255],[-84.61627,37.92249],[-84.61518,37.92222],[-84.61482,37.92212],[-84.61461,37.92207],[-84.6147,37.92188],[-84.61479,37.92168],[-84.61491,37.9214],[-84.61736,37.91625],[-84.61767,37.91074],[-84.61768,37.91063],[-84.61852,37.90773],[-84.61886,37.90711],[-84.62102,37.90525],[-84.62182,37.9041],[-84.62323,37.90263],[-84.62796,37.89865],[-84.62874,37.89797],[-84.63036,37.89655],[-84.63143,37.89567],[-84.63172,37.89552],[-84.63181,37.8955],[-84.63191,37.89547],[-84.63199,37.89542],[-84.63204,37.89549],[-84.63218,37.89563],[-84.63569,37.89286],[-84.63668,37.89212],[-84.63696,37.8919],[-84.6383,37.8907],[-84.63996,37.88863],[-84.64011,37.88838],[-84.6405,37.88785],[-84.64244,37.88513],[-84.64301,37.88434],[-84.6448,37.88171],[-84.64587,37.88081],[-84.64603,37.8807],[-84.64676,37.8802],[-84.64734,37.87966],[-84.6496,37.87673],[-84.65968,37.86484],[-84.66143,37.86225],[-84.66669,37.8561],[-84.67027,37.85199],[-84.67092,37.85113],[-84.67141,37.85014],[-84.67404,37.84749],[-84.6748,37.84618],[-84.67576,37.84515],[-84.67661,37.84318],[-84.67667,37.84119],[-84.67718,37.83951],[-84.67779,37.83881],[-84.6788,37.83817],[-84.67921,37.83776],[-84.67969,37.83707],[-84.68018,37.83575],[-84.68047,37.83524],[-84.68095,37.83478],[-84.68275,37.83384],[-84.68562,37.83373],[-84.68802,37.83415],[-84.68815,37.83418],[-84.68907,37.83435],[-84.68976,37.83425],[-84.69171,37.83285],[-84.69878,37.82874],[-84.70123,37.82807],[-84.71067,37.8263],[-84.71175,37.82583],[-84.71424,37.82528],[-84.71793,37.82418],[-84.7181,37.82411],[-84.71829,37.82402],[-84.71884,37.82366],[-84.71898,37.82356],[-84.72016,37.82266],[-84.72046,37.82218],[-84.72016,37.8207],[-84.71955,37.81905],[-84.71917,37.81862],[-84.7187,37.81864],[-84.71701,37.81808],[-84.71665,37.81806],[-84.71701,37.81808],[-84.7187,37.81864],[-84.71917,37.81862],[-84.71955,37.81905],[-84.72016,37.8207],[-84.72046,37.82218],[-84.72016,37.82266],[-84.71898,37.82356],[-84.71884,37.82366],[-84.71829,37.82402],[-84.7181,37.82411],[-84.71793,37.82418],[-84.71424,37.82528],[-84.71175,37.82583],[-84.71067,37.8263],[-84.70123,37.82807],[-84.69878,37.82874],[-84.69171,37.83285],[-84.68976,37.83425],[-84.68907,37.83435],[-84.68815,37.83418],[-84.68802,37.83415],[-84.68562,37.83373],[-84.68275,37.83384],[-84.68095,37.83478],[-84.68047,37.83524],[-84.68018,37.83575],[-84.67983,37.83567],[-84.67957,37.83561],[-84.67922,37.83545],[-84.67794,37.83417],[-84.67715,37.83361],[-84.67682,37.83334],[-84.67333,37.83209],[-84.66725,37.83034],[-84.66703,37.83023],[-84.66702,37.83041],[-84.66645,37.83074],[-84.66633,37.83075],[-84.659,37.83042],[-84.65875,37.83076],[-84.65831,37.83241],[-84.65726,37.83352],[-84.65588,37.83534],[-84.6549,37.83608],[-84.65303,37.83704],[-84.65293,37.8371],[-84.65181,37.83844],[-84.65157,37.83905],[-84.65158,37.83979],[-84.65099,37.84116],[-84.65047,37.84112],[-84.65008,37.84083],[-84.64968,37.84072],[-84.64832,37.84091],[-84.64663,37.84034],[-84.64629,37.84041],[-84.64583,37.84073],[-84.64562,37.84079],[-84.6453,37.84116],[-84.6451,37.84242],[-84.64648,37.84333],[-84.64654,37.84342],[-84.64666,37.84412],[-84.64619,37.84493],[-84.64253,37.84717],[-84.64064,37.84793],[-84.6402,37.84809],[-84.63864,37.84827],[-84.63585,37.85097],[-84.63562,37.85138],[-84.63556,37.85161],[-84.63551,37.85183],[-84.6354,37.85202],[-84.63499,37.85232],[-84.63463,37.85256],[-84.6337,37.85291],[-84.63232,37.85314],[-84.63133,37.85345],[-84.63068,37.85347],[-84.6301,37.85413],[-84.62985,37.85444],[-84.62895,37.8556],[-84.62867,37.85616],[-84.62868,37.85647],[-84.62935,37.85828],[-84.63089,37.85941],[-84.63125,37.86049],[-84.63147,37.86085],[-84.63165,37.8613],[-84.63133,37.86261],[-84.62912,37.86423],[-84.62964,37.86425],[-84.63333,37.86444],[-84.6335,37.86444],[-84.63521,37.86452],[-84.63521,37.86463],[-84.63519,37.86492],[-84.63512,37.86609],[-84.63511,37.86635],[-84.63488,37.87123],[-84.63535,37.87122],[-84.63594,37.87117],[-84.63652,37.87115],[-84.63663,37.87131],[-84.63626,37.87471],[-84.63719,37.87473],[-84.63748,37.87484],[-84.63958,37.87699],[-84.64022,37.87781],[-84.64063,37.87948],[-84.64524,37.87988],[-84.64586,37.88002],[-84.64596,37.88005],[-84.64676,37.8802],[-84.64603,37.8807],[-84.64587,37.88081],[-84.6448,37.88171],[-84.64301,37.88434],[-84.64244,37.88513],[-84.6405,37.88785],[-84.64011,37.88838],[-84.63996,37.88863],[-84.6383,37.8907],[-84.63696,37.8919],[-84.63668,37.89212],[-84.63569,37.89286],[-84.63204,37.89549],[-84.63199,37.89542],[-84.63191,37.89547],[-84.63181,37.8955],[-84.63172,37.89552],[-84.63143,37.89567],[-84.63036,37.89655],[-84.62874,37.89797],[-84.62796,37.89865],[-84.62323,37.90263],[-84.62182,37.9041],[-84.62102,37.90525],[-84.61886,37.90711],[-84.61852,37.90773],[-84.61768,37.91063],[-84.61767,37.91074],[-84.61736,37.91625],[-84.61491,37.9214],[-84.61479,37.92168],[-84.6147,37.92188],[-84.61461,37.92207],[-84.61482,37.92212],[-84.61518,37.92222],[-84.61627,37.92249],[-84.61648,37.92255],[-84.61639,37.92277],[-84.61642,37.9232],[-84.61626,37.92353],[-84.61609,37.92383],[-84.61514,37.92524],[-84.615,37.92541],[-84.61398,37.92657],[-84.61297,37.92748],[-84.61034,37.92939],[-84.60714,37.93149],[-84.60642,37.93253],[-84.60623,37.93285],[-84.60573,37.93382],[-84.60502,37.93788],[-84.604,37.9417],[-84.60112,37.94671],[-84.59946,37.95035],[-84.59828,37.95337],[-84.59819,37.95346],[-84.59798,37.95362],[-84.59809,37.95396],[-84.59812,37.954],[-84.60008,37.95466],[-84.60182,37.95471],[-84.60281,37.95492],[-84.6051,37.95611],[-84.60739,37.95657],[-84.6098,37.95757],[-84.61181,37.95806],[-84.6122,37.95807],[-84.61258,37.95789],[-84.61313,37.95661],[-84.61374,37.9557],[-84.61415,37.95521],[-84.61464,37.955],[-84.61546,37.955],[-84.61615,37.9554],[-84.6167,37.9569],[-84.62012,37.95788],[-84.62238,37.95832],[-84.62368,37.9588],[-84.62458,37.95922],[-84.62343,37.96112],[-84.62214,37.96274],[-84.61901,37.96846],[-84.61861,37.9692],[-84.6171,37.97197],[-84.617,37.97214],[-84.6168,37.97246],[-84.61595,37.9722],[-84.61592,37.9722],[-84.61584,37.97219],[-84.61569,37.97219],[-84.61422,37.97288],[-84.61408,37.97296],[-84.61375,37.97314],[-84.61369,37.97318],[-84.61243,37.97407],[-84.61202,37.97467],[-84.61164,37.97542],[-84.6114,37.97588],[-84.61088,37.9769],[-84.61016,37.97828],[-84.60898,37.98075],[-84.6086,37.98155],[-84.60722,37.98427],[-84.60673,37.98521],[-84.60634,37.98598],[-84.60607,37.98652],[-84.60542,37.98791],[-84.60496,37.98884],[-84.60468,37.9895],[-84.60289,37.99332],[-84.60264,37.99354],[-84.59911,37.99481],[-84.59571,37.99553],[-84.59264,37.99619],[-84.59197,37.99635],[-84.59179,37.9964],[-84.59108,37.9965],[-84.59063,37.99654],[-84.58938,37.99642],[-84.58871,37.99619],[-84.58822,37.99587],[-84.58774,37.99553],[-84.5873,37.99576],[-84.58714,37.99576],[-84.5864,37.99574],[-84.58588,37.99607],[-84.58549,37.99613],[-84.58565,37.9962]]}},
{"type":"Feature","properties":{"name":"Old Man River"},"geometry":{"type":"LineString","coordinates":[[-83.80835,38.60121],[-83.80842,38.60148],[-83.80831,38.60216],[-83.80844,38.6024],[-83.8097,38.60327],[-83.81052,38.60356],[-83.80992,38.60616],[-83.80928,38.61107],[-83.80815,38.61995],[-83.80788,38.62113],[-83.80791,38.62137],[-83.80815,38.62163],[-83.80847,38.62178],[-83.80922,38.62197],[-83.81045,38.62201],[-83.81317,38.62236],[-83.81416,38.62262],[-83.81685,38.62378],[-83.81938,38.62535],[-83.8211,38.62598],[-83.82348,38.62647],[-83.82679,38.62738],[-83.83108,38.62788],[-83.83153,38.6279],[-83.83296,38.62765],[-83.83506,38.62645],[-83.83659,38.62527],[-83.83853,38.62457],[-83.83854,38.62533],[-83.83617,38.63011],[-83.83622,38.63064],[-83.83668,38.63109],[-83.83925,38.63212],[-83.84353,38.63284],[-83.8451,38.63359],[-83.84762,38.63454],[-83.84791,38.635],[-83.84779,38.637],[-83.84806,38.63744],[-83.85166,38.6382],[-83.85304,38.6386],[-83.85473,38.63918],[-83.85759,38.64054],[-83.85843,38.64083],[-83.86351,38.64139],[-83.86714,38.64257],[-83.87228,38.64454],[-83.87618,38.64728],[-83.87736,38.64795],[-83.87752,38.64835],[-83.8771,38.651],[-83.87492,38.6546],[-83.87486,38.65651],[-83.87721,38.65624],[-83.87879,38.6559],[-83.87963,38.65661],[-83.88097,38.65848],[-83.88238,38.6596],[-83.88238,38.65998],[-83.88198,38.66044],[-83.88104,38.66108],[-83.8806,38.66168],[-83.88042,38.66214],[-83.88002,38.66476],[-83.87869,38.66633],[-83.87765,38.66857],[-83.8757,38.67164],[-83.8746,38.67285],[-83.87266,38.67456],[-83.87077,38.67659],[-83.8701,38.67705],[-83.86887,38.6772],[-83.86817,38.67767],[-83.8675,38.67909],[-83.86722,38.67935],[-83.86733,38.67992],[-83.8677,38.68052],[-83.86999,38.68217],[-83.8708,38.6829],[-83.87167,38.68398],[-83.87181,38.6854],[-83.87087,38.6861],[-83.8706,38.68689],[-83.87098,38.68742],[-83.8724,38.68821],[-83.87242,38.68847],[-83.87182,38.68905],[-83.87114,38.68947],[-83.8704,38.68969],[-83.86685,38.69024],[-83.86295,38.69243],[-83.86366,38.69345],[-83.86389,38.69454],[-83.86375,38.69533],[-83.86315,38.69687],[-83.86267,38.6992],[-83.86264,38.7001],[-83.86305,38.70096],[-83.86501,38.70341],[-83.86532,38.70429],[-83.86536,38.70495],[-83.86518,38.7059],[-83.8639,38.70858],[-83.86337,38.71149],[-83.86188,38.71545],[-83.86228,38.71535],[-83.86477,38.71627],[-83.86506,38.7168],[-83.86416,38.71733],[-83.86408,38.71751],[-83.86592,38.7174],[-83.86635,38.71754],[-83.86963,38.72141],[-83.87079,38.72197],[-83.87161,38.72282],[-83.8711,38.72439],[-83.87095,38.72614],[-83.87119,38.72874],[-83.87229,38.73378],[-83.87136,38.73645],[-83.87166,38.73897],[-83.87158,38.73923],[-83.87194,38.7401],[-83.87617,38.74362],[-83.87715,38.74507],[-83.87848,38.74914],[-83.87812,38.75131],[-83.87775,38.75181],[-83.87812,38.75473],[-83.87837,38.75515],[-83.87962,38.7558],[-83.88398,38.75684],[-83.88551,38.75293],[-83.89283,38.7545],[-83.90031,38.75648],[-83.90295,38.75689],[-83.90779,38.75718],[-83.90886,38.75743],[-83.90988,38.75783],[-83.91259,38.75956],[-83.91932,38.76296],[-83.92487,38.76631],[-83.92954,38.76931],[-83.93612,38.77393],[-83.93896,38.77569],[-83.9456,38.77902],[-83.94657,38.77939],[-83.94782,38.77967],[-83.94923,38.77974],[-83.95037,38.77964],[-83.95789,38.77775],[-83.96789,38.77596],[-83.9735,38.7739],[-83.97618,38.77328],[-83.9929,38.77106],[-83.99406,38.77104],[-83.9971,38.77126],[-84.00064,38.77122],[-84.00456,38.77084],[-84.00752,38.77026],[-84.00746,38.77056],[-84.00707,38.77099],[-84.00684,38.77105],[-84.00768,38.77352],[-84.00278,38.77448],[-84.00311,38.77549],[-84.00334,38.77566],[-84.00843,38.77465],[-84.00899,38.77479],[-84.00931,38.77495],[-84.00943,38.77516],[-84.01055,38.78032],[-84.01047,38.78074],[-84.00294,38.78166],[-83.99356,38.78362],[-83.98273,38.78718],[-83.97788,38.78902],[-83.97613,38.78949],[-83.97258,38.79017],[-83.94671,38.78958],[-83.94463,38.78939],[-83.94244,38.789],[-83.93993,38.78828],[-83.93799,38.78751],[-83.92292,38.77966],[-83.92135,38.77864],[-83.91121,38.77122],[-83.90904,38.77019],[-83.90637,38.76929],[-83.90166,38.76859],[-83.89707,38.76772],[-83.88714,38.76664],[-83.88436,38.76659],[-83.87666,38.76455],[-83.87403,38.76363],[-83.8713,38.76303],[-83.86867,38.762],[-83.86509,38.76035],[-83.86034,38.75853],[-83.85853,38.75766],[-83.85283,38.75441],[-83.85031,38.75217],[-83.84919,38.75155],[-83.84734,38.749],[-83.84527,38.74556],[-83.84581,38.74537],[-83.84527,38.74556],[-83.83618,38.73066],[-83.83518,38.72949],[-83.83039,38.72471],[-83.82429,38.7182],[-83.82379,38.71709],[-83.82349,38.7149],[-83.82318,38.7139],[-83.82244,38.71263],[-83.82166,38.71178],[-83.8208,38.71111],[-83.81969,38.71048],[-83.8184,38.70992],[-83.81607,38.70917],[-83.81337,38.70862],[-83.80425,38.70734],[-83.80214,38.70687],[-83.79857,38.70585],[-83.79355,38.70406],[-83.78581,38.70082],[-83.7847,38.7],[-83.78369,38.69877],[-83.7755,38.68408],[-83.77452,38.68444],[-83.77408,38.68481],[-83.774,38.68532],[-83.77439,38.68582],[-83.7752,38.68597],[-83.77709,38.6858],[-83.78789,38.68317],[-83.78856,38.6831],[-83.78903,38.68321],[-83.7894,38.68353],[-83.78944,38.68398],[-83.78903,38.68442],[-83.78733,38.685],[-83.78537,38.68227],[-83.78423,38.67998],[-83.7833,38.67696],[-83.78202,38.67046],[-83.78126,38.66757],[-83.77966,38.66321],[-83.7787,38.66131],[-83.77747,38.65835],[-83.77306,38.65267],[-83.77173,38.65157],[-83.76823,38.64937],[-83.76892,38.64844],[-83.76282,38.64583],[-83.76119,38.64487],[-83.76207,38.64401],[-83.75697,38.64074],[-83.75678,38.6402],[-83.75685,38.63979],[-83.75734,38.63903],[-83.75803,38.63864],[-83.75919,38.63857],[-83.76294,38.63987],[-83.76605,38.64056],[-83.76838,38.64067],[-83.76936,38.64091],[-83.77005,38.64124],[-83.77157,38.64238],[-83.77246,38.64289],[-83.77624,38.64415],[-83.77742,38.64426],[-83.77858,38.64405],[-83.77972,38.64344],[-83.78258,38.64134],[-83.78682,38.63796],[-83.79201,38.63481],[-83.7947,38.63277],[-83.7993,38.62895],[-83.80033,38.62773],[-83.80188,38.6254],[-83.80251,38.62481],[-83.8036,38.62415],[-83.80724,38.62266],[-83.80847,38.62178],[-83.80815,38.62163],[-83.80791,38.62137],[-83.80788,38.62113],[-83.80815,38.61995],[-83.80928,38.61107],[-83.80992,38.60616],[-83.81052,38.60356],[-83.8097,38.60327],[-83.80844,38.6024],[-83.80831,38.60216],[-83.80842,38.60148],[-83.80873,38.60059],[-83.8086,38.60054],[-83.80851,38.60073],[-83.80847,38.60083],[-83.80851,38.60073],[-83.8086,38.60054]]}},
{"type":"Feature","properties":{"name":"Colville Bridge"},"geometry":{"type":"LineString","coordinates":[[-84.2728,38.19559],[-84.27283,38.19571],[-84.27114,38.19677],[-84.26959,38.19768],[-84.26899,38.19804],[-84.26856,38.1983],[-84.26626,38.19968],[-84.26582,38.19993],[-84.264,38.20101],[-84.26388,38.20108],[-84.25675,38.20534],[-84.25498,38.20644],[-84.25475,38.2067],[-84.25228,38.20952],[-84.24866,38.21371],[-84.24944,38.21413],[-84.25074,38.21568],[-84.25226,38.21762],[-84.25232,38.2177],[-84.25492,38.22103],[-84.25597,38.22251],[-84.25646,38.22357],[-84.25731,38.22682],[-84.2572,38.22779],[-84.25715,38.22793],[-84.25647,38.22906],[-84.25548,38.23],[-84.2554,38.23009],[-84.25487,38.23068],[-84.25434,38.23162],[-84.25367,38.23327],[-84.25346,38.23451],[-84.25343,38.23479],[-84.25306,38.23853],[-84.24364,38.23803],[-84.23975,38.23757],[-84.23726,38.23749],[-84.23672,38.2444],[-84.23789,38.24882],[-84.23819,38.25271],[-84.23849,38.2537],[-84.23954,38.25496],[-84.23985,38.25944],[-84.24089,38.26064],[-84.24244,38.26151],[-84.24277,38.26181],[-84.24323,38.26309],[-84.24361,38.26506],[-84.24321,38.26993],[-84.2434,38.27206],[-84.24192,38.28655],[-84.24218,38.2901],[-84.24127,38.2976],[-84.2411,38.30022],[-84.24096,38.30084],[-84.2406,38.30149],[-84.2401,38.30196],[-84.23855,38.30298],[-84.23822,38.3035],[-84.23807,38.30412],[-84.23207,38.30336],[-84.23028,38.30325],[-84.22885,38.30356],[-84.22491,38.30514],[-84.2203,38.30663],[-84.20706,38.30934],[-84.2053,38.30958],[-84.20471,38.30956],[-84.20195,38.30862],[-84.20131,38.31451],[-84.20112,38.31499],[-84.20052,38.31539],[-84.20024,38.31609],[-84.20029,38.31644],[-84.20127,38.31743],[-84.20152,38.31787],[-84.20179,38.32359],[-84.20211,38.32389],[-84.20307,38.32412],[-84.20318,38.32427],[-84.20307,38.33021],[-84.20334,38.33128],[-84.20383,38.33166],[-84.20371,38.33414],[-84.20352,38.33453],[-84.20354,38.33744],[-84.20406,38.34232],[-84.20397,38.3429],[-84.2033,38.34407],[-84.20323,38.34442],[-84.20386,38.34623],[-84.20623,38.35157],[-84.20626,38.35337],[-84.20648,38.3553],[-84.20716,38.35749],[-84.20746,38.36034],[-84.20738,38.3609],[-84.20705,38.36135],[-84.20446,38.36356],[-84.20993,38.36511],[-84.21048,38.36537],[-84.21296,38.36746],[-84.21444,38.36807],[-84.21608,38.3683],[-84.216,38.3668],[-84.21502,38.36293],[-84.21502,38.3622],[-84.21567,38.36151],[-84.21746,38.36091],[-84.21836,38.36033],[-84.21893,38.35964],[-84.22036,38.35717],[-84.22075,38.35557],[-84.22146,38.35426],[-84.22166,38.3536],[-84.2217,38.34843],[-84.22213,38.34592],[-84.2229,38.34395],[-84.22329,38.33918],[-84.2239,38.33793],[-84.22586,38.33609],[-84.22608,38.33479],[-84.22663,38.33425],[-84.22848,38.33033],[-84.23028,38.32881],[-84.23743,38.3293],[-84.23733,38.32826],[-84.23835,38.31985],[-84.23836,38.31276],[-84.23773,38.30627],[-84.23807,38.30412],[-84.2395,38.30424],[-84.24041,38.30245],[-84.24306,38.30211],[-84.24939,38.30281],[-84.24979,38.30349],[-84.25303,38.30629],[-84.25529,38.3078],[-84.25672,38.30849],[-84.25801,38.30875],[-84.25882,38.30878],[-84.26059,38.30847],[-84.26143,38.30807],[-84.26925,38.3018],[-84.27749,38.30233],[-84.27833,38.29566],[-84.27913,38.2848],[-84.27945,38.28434],[-84.28105,38.28386],[-84.28106,38.28318],[-84.2803,38.28301],[-84.27834,38.28161],[-84.2784,38.28133],[-84.27906,38.28059],[-84.27899,38.27992],[-84.27965,38.27802],[-84.27932,38.27771],[-84.27863,38.27642],[-84.27811,38.27599],[-84.27712,38.27573],[-84.27542,38.27583],[-84.27521,38.276],[-84.27509,38.27652],[-84.27284,38.27665],[-84.27135,38.27624],[-84.26797,38.27496],[-84.26728,38.27485],[-84.26656,38.27498],[-84.26512,38.27588],[-84.26452,38.27609],[-84.26095,38.27453],[-84.2594,38.27332],[-84.25866,38.272],[-84.25858,38.27066],[-84.25917,38.26877],[-84.25827,38.2659],[-84.25746,38.26387],[-84.25703,38.26369],[-84.25095,38.26235],[-84.25259,38.24275],[-84.25306,38.23853],[-84.25343,38.23479],[-84.25346,38.23451],[-84.25367,38.23327],[-84.25434,38.23162],[-84.25487,38.23068],[-84.2554,38.23009],[-84.25548,38.23],[-84.25647,38.22906],[-84.25715,38.22793],[-84.2572,38.22779],[-84.25731,38.22682],[-84.25646,38.22357],[-84.25597,38.22251],[-84.25492,38.22103],[-84.25232,38.2177],[-84.25226,38.21762],[-84.25074,38.21568],[-84.25162,38.21537],[-84.25463,38.21391],[-84.25475,38.21341],[-84.25417,38.21237],[-84.2545,38.21174],[-84.25248,38.21063],[-84.25674,38.20581],[-84.25675,38.20534],[-84.26388,38.20108],[-84.264,38.20101],[-84.26582,38.19993],[-84.26626,38.19968],[-84.26856,38.1983],[-84.26899,38.19804],[-84.26959,38.19768],[-84.27114,38.19677],[-84.27308,38.19575],[-84.27298,38.19563],[-84.2728,38.19559]]}},
{"type":"Feature","properties":{"name":"Hartland Cleveland Walnut Delong"},"geometry":{"type":"LineString","coordinates":[[-84.47987,37.96007],[-84.4796,37.96019],[-84.47939,37.9603],[-84.47901,37.96056],[-84.47809,37.96166],[-84.47735,37.96224],[-84.47719,37.96232],[-84.47675,37.96248],[-84.47655,37.96253],[-84.47565,37.9626],[-84.47495,37.96253],[-84.47382,37.96238],[-84.47276,37.9624],[-84.47172,37.96255],[-84.47083,37.96282],[-84.46796,37.96476],[-84.46738,37.96519],[-84.46732,37.96523],[-84.46731,37.96525],[-84.46728,37.96532],[-84.46701,37.96551],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44198,37.92938],[-84.4414,37.93037],[-84.44063,37.93165],[-84.44022,37.93236],[-84.43829,37.9357],[-84.43677,37.93832],[-84.43372,37.94362],[-84.43502,37.94622],[-84.43548,37.94766],[-84.43593,37.94912],[-84.43604,37.9498],[-84.43378,37.95367],[-84.43211,37.95652],[-84.43085,37.95869],[-84.42986,37.96038],[-84.42947,37.96107],[-84.42732,37.96515],[-84.42525,37.96669],[-84.42404,37.96758],[-84.42336,37.96801],[-84.42286,37.96817],[-84.4217,37.96842],[-84.42145,37.96848],[-84.42089,37.96755],[-84.41807,37.96275],[-84.41724,37.96138],[-84.41664,37.96036],[-84.41582,37.95899],[-84.41578,37.9589],[-84.41066,37.94726],[-84.40787,37.94285],[-84.40653,37.9407],[-84.40573,37.93964],[-84.40549,37.93942],[-84.40536,37.93932],[-84.40502,37.93908],[-84.40096,37.93652],[-84.38446,37.9318],[-84.38105,37.93],[-84.37961,37.92923],[-84.37281,37.92535],[-84.36921,37.92427],[-84.36892,37.92417],[-84.36749,37.92573],[-84.36619,37.92718],[-84.36584,37.92959],[-84.36566,37.93005],[-84.36369,37.93158],[-84.36326,37.93218],[-84.3634,37.93331],[-84.36392,37.93499],[-84.36417,37.93891],[-84.3646,37.94172],[-84.36444,37.9426],[-84.3644,37.94277],[-84.36463,37.94797],[-84.36466,37.94835],[-84.36483,37.94876],[-84.36482,37.94889],[-84.36443,37.94937],[-84.36554,37.94999],[-84.36673,37.95063],[-84.3671,37.95021],[-84.36718,37.95018],[-84.36895,37.95018],[-84.37362,37.95026],[-84.3772,37.95031],[-84.38041,37.95033],[-84.38148,37.95033],[-84.38262,37.95034],[-84.38658,37.95032],[-84.38995,37.9503],[-84.39109,37.95027],[-84.39213,37.95027],[-84.39626,37.95031],[-84.40425,37.95386],[-84.40737,37.95538],[-84.40882,37.95609],[-84.40941,37.95638],[-84.41507,37.95907],[-84.41514,37.95907],[-84.41534,37.95902],[-84.4156,37.95894],[-84.41578,37.9589],[-84.41582,37.95899],[-84.41664,37.96036],[-84.41724,37.96138],[-84.41807,37.96275],[-84.42089,37.96755],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46701,37.96551],[-84.46728,37.96532],[-84.46731,37.96525],[-84.46732,37.96523],[-84.46738,37.96519],[-84.46796,37.96476],[-84.47083,37.96282],[-84.47172,37.96255],[-84.47276,37.9624],[-84.47382,37.96238],[-84.47495,37.96253],[-84.47565,37.9626],[-84.47655,37.96253],[-84.47675,37.96248],[-84.47719,37.96232],[-84.47735,37.96224],[-84.47809,37.96166],[-84.47901,37.96056],[-84.47939,37.9603],[-84.4796,37.96019],[-84.47987,37.96007]]}},
{"type":"Feature","properties":{"name":"Hartland Spears Delong"},"geometry":{"type":"LineString","coordinates":[[-84.47967,37.96016],[-84.4796,37.96019],[-84.47939,37.9603],[-84.47901,37.96056],[-84.47809,37.96166],[-84.47735,37.96224],[-84.47719,37.96232],[-84.47675,37.96248],[-84.47655,37.96253],[-84.47565,37.9626],[-84.47495,37.96253],[-84.47382,37.96238],[-84.47276,37.9624],[-84.47172,37.96255],[-84.47083,37.96282],[-84.46796,37.96476],[-84.46738,37.96519],[-84.46732,37.96523],[-84.46731,37.96525],[-84.46728,37.96532],[-84.46701,37.96551],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.41219,37.92652],[-84.41285,37.92531],[-84.41574,37.92013],[-84.41629,37.91923],[-84.41705,37.91792],[-84.41947,37.91373],[-84.42003,37.91279],[-84.42215,37.90947],[-84.42237,37.90889],[-84.4238,37.90707],[-84.42395,37.90687],[-84.4241,37.90666],[-84.42434,37.90638],[-84.42579,37.90444],[-84.42742,37.90223],[-84.42858,37.9006],[-84.43148,37.89574],[-84.43541,37.8912],[-84.43574,37.89125],[-84.43906,37.89299],[-84.44129,37.89468],[-84.44546,37.89665],[-84.44578,37.89659],[-84.44821,37.89371],[-84.44817,37.89361],[-84.44788,37.89305],[-84.44644,37.89019],[-84.44398,37.88798],[-84.44328,37.88739],[-84.44273,37.88665],[-84.44227,37.88378],[-84.44266,37.8826],[-84.44355,37.88103],[-84.44336,37.87948],[-84.44307,37.87916],[-84.4418,37.87866],[-84.44131,37.87833],[-84.44019,37.87662],[-84.43846,37.87337],[-84.43837,37.87346],[-84.43832,37.87351],[-84.43774,37.87422],[-84.43268,37.88048],[-84.42798,37.88319],[-84.42691,37.88459],[-84.42621,37.88558],[-84.42299,37.89018],[-84.42265,37.8904],[-84.42198,37.89056],[-84.42181,37.89057],[-84.41998,37.89068],[-84.41997,37.89139],[-84.41996,37.89219],[-84.41986,37.89459],[-84.41854,37.8953],[-84.41841,37.89677],[-84.41829,37.89795],[-84.4193,37.90422],[-84.41964,37.90439],[-84.42017,37.90465],[-84.42087,37.90498],[-84.42103,37.90508],[-84.42127,37.90525],[-84.42377,37.90648],[-84.4241,37.90666],[-84.42395,37.90687],[-84.4238,37.90707],[-84.42237,37.90889],[-84.42215,37.90947],[-84.42003,37.91279],[-84.41947,37.91373],[-84.41705,37.91792],[-84.41629,37.91923],[-84.41574,37.92013],[-84.41285,37.92531],[-84.41219,37.92652],[-84.41213,37.92662],[-84.41152,37.92773],[-84.40837,37.93335],[-84.40573,37.93862],[-84.40546,37.93916],[-84.40536,37.93932],[-84.40549,37.93942],[-84.40573,37.93964],[-84.40653,37.9407],[-84.40787,37.94285],[-84.41066,37.94726],[-84.41578,37.9589],[-84.41582,37.95899],[-84.41664,37.96036],[-84.41724,37.96138],[-84.41807,37.96275],[-84.42089,37.96755],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46701,37.96551],[-84.46728,37.96532],[-84.46731,37.96525],[-84.46732,37.96523],[-84.46738,37.96519],[-84.46796,37.96476],[-84.47083,37.96282],[-84.47172,37.96255],[-84.47276,37.9624],[-84.47382,37.96238],[-84.47495,37.96253],[-84.47565,37.9626],[-84.47655,37.96253],[-84.47675,37.96248],[-84.47719,37.96232],[-84.47735,37.96224],[-84.47809,37.96166],[-84.47901,37.96056],[-84.47939,37.9603],[-84.4796,37.96019],[-84.47987,37.96007],[-84.48046,37.96069],[-84.48071,37.96087]]}},
{"type":"Feature","properties":{"name":"David's Fork Baptist 33 Mi."},"geometry":{"type":"LineString","coordinates":[[-84.35566,38.03617],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34945,38.06663],[-84.34918,38.06676],[-84.34908,38.06681],[-84.34898,38.06684],[-84.34887,38.06688],[-84.34873,38.0669],[-84.34629,38.06724],[-84.34526,38.06738],[-84.34027,38.06808],[-84.33963,38.06817],[-84.33616,38.06865],[-84.33411,38.06894],[-84.33348,38.06903],[-84.33178,38.06927],[-84.33103,38.06937],[-84.33116,38.07006],[-84.33125,38.0705],[-84.33198,38.0739],[-84.33251,38.07436],[-84.33384,38.07477],[-84.33402,38.0751],[-84.33395,38.07541],[-84.33369,38.07613],[-84.33306,38.07769],[-84.33291,38.07821],[-84.33277,38.0784],[-84.33268,38.0785],[-84.33226,38.0789],[-84.33159,38.07954],[-84.33051,38.08032],[-84.32765,38.08084],[-84.32656,38.08119],[-84.32333,38.08231],[-84.32098,38.08352],[-84.31672,38.08786],[-84.31649,38.08835],[-84.31625,38.08963],[-84.31646,38.09122],[-84.31648,38.09149],[-84.31623,38.09401],[-84.31618,38.09432],[-84.31587,38.0974],[-84.31587,38.09894],[-84.31587,38.09952],[-84.31593,38.10298],[-84.31593,38.10311],[-84.31593,38.10507],[-84.31566,38.10774],[-84.31558,38.10866],[-84.31553,38.1092],[-84.31486,38.10919],[-84.31359,38.10917],[-84.31316,38.10917],[-84.31223,38.10929],[-84.30651,38.11086],[-84.30254,38.11339],[-84.29739,38.11528],[-84.29729,38.11541],[-84.29736,38.11644],[-84.2968,38.12484],[-84.29679,38.12505],[-84.29595,38.13444],[-84.29592,38.13478],[-84.29599,38.13647],[-84.29635,38.14032],[-84.29625,38.14082],[-84.29593,38.14127],[-84.29509,38.14168],[-84.28867,38.14288],[-84.28631,38.14407],[-84.28466,38.14594],[-84.28455,38.14606],[-84.28411,38.14663],[-84.28393,38.14711],[-84.28282,38.15217],[-84.281,38.15626],[-84.28087,38.15653],[-84.27671,38.16588],[-84.2768,38.16688],[-84.27703,38.16774],[-84.27715,38.17032],[-84.27747,38.17279],[-84.27686,38.17762],[-84.27685,38.17772],[-84.27671,38.17915],[-84.27664,38.17974],[-84.27657,38.18051],[-84.27655,38.18072],[-84.27622,38.18419],[-84.27654,38.18623],[-84.27656,38.18651],[-84.27648,38.18692],[-84.27645,38.18699],[-84.27639,38.18708],[-84.27622,38.18729],[-84.27604,38.18755],[-84.2758,38.18804],[-84.2756,38.18969],[-84.27558,38.18981],[-84.27538,38.1926],[-84.27537,38.19312],[-84.27535,38.19359],[-84.27532,38.19412],[-84.27538,38.19422],[-84.27559,38.19437],[-84.27596,38.1944],[-84.27915,38.19463],[-84.27924,38.19463],[-84.27979,38.19467],[-84.27987,38.19468],[-84.31351,38.19732],[-84.31386,38.19735],[-84.3142,38.19738],[-84.31453,38.1974],[-84.31469,38.1974],[-84.31485,38.19739],[-84.31558,38.19718],[-84.31699,38.19627],[-84.31722,38.19611],[-84.31891,38.195],[-84.31957,38.19474],[-84.32837,38.19427],[-84.33104,38.19421],[-84.3463,38.19485],[-84.34749,38.1949],[-84.34826,38.19492],[-84.35592,38.1952],[-84.35905,38.19544],[-84.36084,38.19558],[-84.36477,38.19591],[-84.36621,38.19603],[-84.36863,38.19623],[-84.36879,38.19601],[-84.37014,38.19399],[-84.37017,38.19396],[-84.37449,38.18831],[-84.37526,38.18699],[-84.37712,38.18402],[-84.37865,38.18169],[-84.38026,38.17918],[-84.38105,38.17743],[-84.3814,38.17664],[-84.38293,38.1734],[-84.38344,38.17266],[-84.38367,38.17235],[-84.38452,38.17129],[-84.38746,38.16696],[-84.38808,38.16608],[-84.38844,38.16557],[-84.38886,38.16498],[-84.39058,38.1628],[-84.39537,38.15925],[-84.39718,38.15767],[-84.39741,38.15746],[-84.39972,38.15499],[-84.4001,38.15461],[-84.40046,38.15424],[-84.40335,38.15128],[-84.40343,38.1512],[-84.40376,38.15083],[-84.40428,38.15034],[-84.40469,38.15006],[-84.4067,38.14874],[-84.40703,38.14872],[-84.40779,38.149],[-84.40864,38.1493],[-84.41056,38.14993],[-84.41059,38.14977],[-84.41062,38.14968],[-84.41073,38.14948],[-84.41214,38.1471],[-84.4129,38.14579],[-84.41364,38.14449],[-84.41426,38.1434],[-84.41468,38.1427],[-84.41485,38.1424],[-84.40819,38.13834],[-84.40436,38.13606],[-84.4037,38.13574],[-84.39811,38.13339],[-84.39081,38.13042],[-84.39072,38.13039],[-84.39136,38.12908],[-84.39093,38.12858],[-84.38676,38.1249],[-84.38506,38.12337],[-84.38448,38.12286],[-84.38484,38.12262],[-84.38587,38.12193],[-84.38946,38.11965],[-84.38926,38.1194],[-84.3884,38.11858],[-84.38459,38.11433],[-84.38328,38.11288],[-84.38267,38.1122],[-84.37819,38.1072],[-84.37551,38.10426],[-84.37429,38.10289],[-84.37142,38.09976],[-84.36979,38.09797],[-84.36853,38.09655],[-84.36837,38.09637],[-84.36672,38.09421],[-84.36132,38.08939],[-84.36061,38.08865],[-84.35934,38.08755],[-84.35839,38.08675],[-84.35777,38.08619],[-84.35759,38.08584],[-84.35757,38.08575],[-84.35769,38.08512],[-84.35899,38.08333],[-84.35923,38.0818],[-84.35918,38.08132],[-84.35894,38.0811],[-84.35741,38.08036],[-84.35674,38.07974],[-84.35433,38.0759],[-84.35426,38.07576],[-84.35382,38.07489],[-84.35357,38.07438],[-84.35337,38.07396],[-84.35156,38.07026],[-84.35111,38.06935],[-84.35031,38.0677],[-84.34991,38.06686],[-84.34978,38.06658],[-84.34975,38.06636],[-84.34986,38.06614],[-84.3501,38.06572],[-84.35029,38.06536],[-84.35139,38.06341],[-84.35159,38.06305],[-84.35187,38.06255],[-84.35203,38.06226],[-84.35216,38.062],[-84.35239,38.06162],[-84.35256,38.06132],[-84.35294,38.06041],[-84.3531,38.05749],[-84.35312,38.05718],[-84.35324,38.05421],[-84.35328,38.05354],[-84.35334,38.05273],[-84.35335,38.05251],[-84.35338,38.05159],[-84.3534,38.05122],[-84.35366,38.0462],[-84.35397,38.04461],[-84.35419,38.04355],[-84.35545,38.03719],[-84.35566,38.0362]]}},
{"type":"Feature","properties":{"name":"Midway Loop & Falconwood Loop 23 miles"},"geometry":{"type":"LineString","coordinates":[[-84.68411,38.14917],[-84.68391,38.14948],[-84.68441,38.14966],[-84.68465,38.14975],[-84.6847,38.14977],[-84.6845,38.15012],[-84.68434,38.1504],[-84.684,38.151],[-84.68391,38.15115],[-84.68366,38.1516],[-84.6829,38.15294],[-84.68279,38.15339],[-84.68265,38.15338],[-84.6826,38.15337],[-84.68238,38.15335],[-84.68216,38.1533],[-84.68212,38.15338],[-84.68206,38.1535],[-84.68188,38.15379],[-84.68216,38.15413],[-84.68206,38.1543],[-84.68187,38.15465],[-84.68023,38.15744],[-84.67967,38.15834],[-84.67961,38.15845],[-84.67913,38.15828],[-84.67882,38.15817],[-84.67821,38.15795],[-84.67813,38.15792],[-84.67807,38.15799],[-84.67797,38.15814],[-84.67764,38.16129],[-84.6776,38.16168],[-84.67732,38.16223],[-84.67724,38.16237],[-84.67704,38.16269],[-84.67688,38.16296],[-84.6768,38.1631],[-84.67662,38.1634],[-84.67652,38.16356],[-84.67641,38.16377],[-84.67619,38.16416],[-84.67596,38.16456],[-84.67517,38.16594],[-84.67488,38.16641],[-84.67425,38.16742],[-84.67395,38.16789],[-84.67344,38.16871],[-84.67324,38.16904],[-84.67254,38.17016],[-84.67237,38.17043],[-84.6722,38.17072],[-84.67203,38.17101],[-84.67195,38.17116],[-84.67137,38.17212],[-84.67114,38.1725],[-84.66994,38.17444],[-84.66983,38.17461],[-84.66946,38.17523],[-84.66936,38.17538],[-84.66893,38.17629],[-84.66888,38.17641],[-84.66864,38.17695],[-84.66852,38.17724],[-84.66791,38.1786],[-84.66785,38.17876],[-84.66748,38.17955],[-84.66734,38.17987],[-84.6672,38.18017],[-84.66713,38.18032],[-84.66669,38.18167],[-84.66611,38.18256],[-84.66603,38.1827],[-84.66534,38.18392],[-84.66424,38.18542],[-84.66414,38.18555],[-84.66405,38.18568],[-84.66356,38.18633],[-84.66346,38.18647],[-84.66305,38.18703],[-84.66295,38.18717],[-84.66152,38.18909],[-84.66144,38.18919],[-84.66124,38.18948],[-84.66121,38.18953],[-84.66115,38.18973],[-84.66116,38.18976],[-84.66134,38.19014],[-84.66135,38.19019],[-84.66135,38.19032],[-84.6591,38.18967],[-84.65056,38.18722],[-84.64913,38.18682],[-84.64774,38.18643],[-84.64538,38.18575],[-84.64374,38.18529],[-84.64026,38.1843],[-84.63871,38.18386],[-84.63628,38.18317],[-84.63447,38.18264],[-84.62996,38.18135],[-84.62931,38.18116],[-84.62913,38.18111],[-84.62752,38.18064],[-84.6264,38.18034],[-84.62546,38.18008],[-84.62471,38.17986],[-84.625,38.17953],[-84.62561,38.17886],[-84.62571,38.17875],[-84.6269,38.17783],[-84.62746,38.17742],[-84.62935,38.17599],[-84.62956,38.17562],[-84.62977,38.17522],[-84.63049,38.17377],[-84.63075,38.17327],[-84.63083,38.17311],[-84.63106,38.17263],[-84.63128,38.17219],[-84.63136,38.17204],[-84.63271,38.16943],[-84.6336,38.1678],[-84.63435,38.16638],[-84.63545,38.16457],[-84.63707,38.16192],[-84.63725,38.16161],[-84.63826,38.15988],[-84.63838,38.15966],[-84.63852,38.15945],[-84.63883,38.15896],[-84.63889,38.15885],[-84.63853,38.15885],[-84.63838,38.15885],[-84.63804,38.15887],[-84.63669,38.15892],[-84.63644,38.15894],[-84.63434,38.159],[-84.63409,38.15901],[-84.63359,38.15902],[-84.63334,38.15902],[-84.63309,38.15903],[-84.63283,38.15904],[-84.63249,38.15905],[-84.62964,38.15906],[-84.62572,38.15538],[-84.62479,38.15449],[-84.62393,38.15381],[-84.62319,38.15329],[-84.6225,38.15283],[-84.62183,38.15238],[-84.62051,38.15163],[-84.61867,38.15062],[-84.61793,38.15019],[-84.61776,38.1501],[-84.61765,38.15004],[-84.61756,38.14999],[-84.61743,38.14995],[-84.61738,38.14994],[-84.61695,38.14987],[-84.61689,38.14985],[-84.61685,38.14984],[-84.61677,38.14981],[-84.61673,38.14989],[-84.61663,38.14985],[-84.61657,38.14984],[-84.61615,38.14978],[-84.61609,38.14977],[-84.61603,38.14975],[-84.61595,38.14972],[-84.61587,38.14969],[-84.6157,38.1496],[-84.61226,38.14777],[-84.61031,38.14672],[-84.60853,38.14577],[-84.60732,38.14513],[-84.60617,38.14453],[-84.60539,38.14411],[-84.60437,38.14356],[-84.60373,38.14322],[-84.60288,38.14277],[-84.60212,38.14237],[-84.60166,38.14213],[-84.60092,38.14173],[-84.59948,38.14097],[-84.599,38.14072],[-84.59856,38.1405],[-84.59672,38.1395],[-84.59554,38.13887],[-84.59513,38.13867],[-84.59416,38.13816],[-84.59168,38.13681],[-84.59144,38.13668],[-84.59076,38.1363],[-84.58982,38.13579],[-84.58904,38.13538],[-84.58722,38.1344],[-84.58569,38.1336],[-84.5851,38.13327],[-84.58466,38.13302],[-84.58441,38.13287],[-84.58447,38.13272],[-84.58451,38.13246],[-84.58452,38.13222],[-84.58462,38.13106],[-84.58466,38.13066],[-84.58498,38.12929],[-84.58518,38.12841],[-84.5857,38.12631],[-84.58491,38.12528],[-84.58408,38.12424],[-84.58363,38.12362],[-84.58177,38.12109],[-84.57905,38.11741],[-84.5787,38.11692],[-84.57823,38.1163],[-84.57805,38.11652],[-84.57776,38.11691],[-84.57726,38.11751],[-84.57624,38.11871],[-84.57529,38.11983],[-84.5748,38.1204],[-84.57394,38.12143],[-84.57329,38.12219],[-84.573,38.12311],[-84.57241,38.12494],[-84.57229,38.12534],[-84.572,38.12636],[-84.5718,38.12711],[-84.57176,38.12729],[-84.57235,38.12816],[-84.57247,38.12925],[-84.57256,38.13014],[-84.57257,38.13035],[-84.57255,38.13043],[-84.57252,38.1305],[-84.57216,38.13112],[-84.57183,38.13165],[-84.57129,38.13255],[-84.57089,38.13327],[-84.57107,38.13462],[-84.56995,38.13553],[-84.56928,38.13605],[-84.56871,38.1365],[-84.56884,38.1366],[-84.56898,38.13673],[-84.56905,38.13685],[-84.56909,38.13691],[-84.56921,38.13734],[-84.56923,38.13752],[-84.56938,38.13827],[-84.56977,38.13874],[-84.57099,38.13965],[-84.57186,38.14031],[-84.5736,38.14162],[-84.57404,38.14183],[-84.57475,38.1418],[-84.57541,38.14123],[-84.5773,38.13899],[-84.57889,38.13711],[-84.57959,38.13627],[-84.57996,38.13585],[-84.58108,38.13448],[-84.58176,38.13368],[-84.58238,38.13295],[-84.58276,38.1325],[-84.58296,38.13231],[-84.58322,38.13228],[-84.58328,38.1323],[-84.58348,38.13238],[-84.58373,38.13251],[-84.58441,38.13287],[-84.58466,38.13302],[-84.5851,38.13327],[-84.58569,38.1336],[-84.58722,38.1344],[-84.58904,38.13538],[-84.58982,38.13579],[-84.59076,38.1363],[-84.59144,38.13668],[-84.59168,38.13681],[-84.59416,38.13816],[-84.59513,38.13867],[-84.59554,38.13887],[-84.59672,38.1395],[-84.59856,38.1405],[-84.599,38.14072],[-84.59948,38.14097],[-84.60092,38.14173],[-84.60166,38.14213],[-84.60212,38.14237],[-84.60288,38.14277],[-84.60373,38.14322],[-84.60437,38.14356],[-84.60539,38.14411],[-84.60617,38.14453],[-84.60732,38.14513],[-84.60853,38.14577],[-84.61031,38.14672],[-84.61226,38.14777],[-84.6157,38.1496],[-84.61587,38.14969],[-84.61595,38.14972],[-84.61603,38.14975],[-84.61609,38.14977],[-84.61615,38.14978],[-84.61657,38.14984],[-84.61663,38.14985],[-84.61673,38.14989],[-84.61677,38.14981],[-84.61689,38.14961],[-84.61697,38.14949],[-84.61727,38.1491],[-84.61796,38.14837],[-84.61835,38.14796],[-84.61904,38.14723],[-84.61979,38.14644],[-84.62065,38.14553],[-84.62118,38.14496],[-84.62202,38.14407],[-84.62249,38.14357],[-84.62265,38.1434],[-84.6228,38.14324],[-84.62306,38.14295],[-84.62382,38.14213],[-84.62389,38.14206],[-84.62436,38.14156],[-84.62485,38.14104],[-84.6251,38.14077],[-84.62534,38.14051],[-84.62558,38.14025],[-84.62606,38.13973],[-84.62673,38.13898],[-84.62805,38.13755],[-84.62872,38.13717],[-84.62957,38.13674],[-84.63211,38.1355],[-84.63262,38.13524],[-84.63324,38.13556],[-84.63355,38.13527],[-84.63361,38.13521],[-84.63369,38.13514],[-84.63453,38.13427],[-84.63476,38.13376],[-84.63482,38.13366],[-84.63557,38.1315],[-84.6356,38.13135],[-84.63639,38.12896],[-84.63647,38.12875],[-84.63697,38.12802],[-84.63718,38.12781],[-84.63752,38.1278],[-84.63768,38.12783],[-84.63791,38.12788],[-84.63814,38.12793],[-84.63852,38.12802],[-84.63868,38.12816],[-84.63876,38.12823],[-84.63949,38.12885],[-84.64009,38.12912],[-84.64036,38.1292],[-84.64116,38.12931],[-84.64224,38.12926],[-84.64297,38.12918],[-84.64412,38.12925],[-84.64429,38.1293],[-84.64545,38.12974],[-84.64559,38.12979],[-84.64683,38.13021],[-84.64697,38.13026],[-84.64797,38.1306],[-84.64811,38.13065],[-84.64866,38.13091],[-84.64878,38.13098],[-84.64891,38.13105],[-84.64904,38.13111],[-84.6522,38.13225],[-84.65296,38.13251],[-84.65512,38.13324],[-84.65532,38.13331],[-84.65551,38.13338],[-84.65719,38.13396],[-84.65738,38.13402],[-84.65776,38.13416],[-84.6581,38.13428],[-84.65871,38.13449],[-84.65922,38.13467],[-84.66144,38.13545],[-84.66203,38.13565],[-84.66239,38.13578],[-84.66277,38.13592],[-84.66316,38.13606],[-84.6645,38.13654],[-84.66613,38.13735],[-84.66629,38.13743],[-84.66677,38.13768],[-84.66693,38.13775],[-84.66768,38.13807],[-84.66847,38.13815],[-84.66863,38.13816],[-84.66993,38.13823],[-84.67008,38.13824],[-84.67058,38.13827],[-84.67146,38.13832],[-84.67259,38.1385],[-84.67412,38.14017],[-84.67425,38.14026],[-84.67463,38.14056],[-84.67582,38.14173],[-84.67608,38.14193],[-84.67637,38.14211],[-84.67653,38.1422],[-84.67667,38.14228],[-84.67696,38.14246],[-84.67701,38.1425],[-84.67733,38.14274],[-84.67803,38.14331],[-84.67817,38.14341],[-84.67828,38.14351],[-84.67932,38.14436],[-84.67943,38.14445],[-84.67952,38.14453],[-84.67972,38.14469],[-84.6798,38.14474],[-84.6804,38.14519],[-84.68123,38.14555],[-84.68141,38.14562],[-84.68186,38.14578],[-84.68234,38.14595],[-84.68275,38.14609],[-84.6831,38.14622],[-84.6838,38.14647],[-84.68417,38.1466],[-84.68443,38.1467],[-84.68409,38.14728],[-84.68403,38.14739],[-84.68389,38.14763],[-84.68372,38.14793],[-84.68356,38.14822],[-84.68338,38.14854],[-84.68364,38.14864],[-84.68427,38.14886],[-84.68421,38.14896],[-84.68412,38.14914]]}},
{"type":"Feature","properties":{"name":"Midway - Clifton (hardest) 27 Mile Route"},"geometry":{"type":"LineString","coordinates":[[-84.6841,38.14919],[-84.68421,38.14896],[-84.68427,38.14886],[-84.68364,38.14864],[-84.68338,38.14854],[-84.68356,38.14822],[-84.68372,38.14793],[-84.68389,38.14763],[-84.68403,38.14739],[-84.68409,38.14728],[-84.68443,38.1467],[-84.68457,38.14675],[-84.68515,38.14695],[-84.6855,38.14708],[-84.68603,38.14728],[-84.6861,38.14731],[-84.68686,38.14757],[-84.6876,38.14784],[-84.68832,38.14809],[-84.68864,38.1482],[-84.68931,38.14844],[-84.68992,38.14866],[-84.6904,38.14883],[-84.69118,38.14912],[-84.69191,38.14939],[-84.69256,38.14957],[-84.69299,38.14952],[-84.69324,38.14946],[-84.69386,38.14926],[-84.69434,38.1491],[-84.69567,38.14875],[-84.69596,38.14864],[-84.69633,38.14849],[-84.69662,38.14837],[-84.69771,38.14792],[-84.69797,38.14782],[-84.69839,38.14768],[-84.69857,38.14772],[-84.69866,38.14777],[-84.69878,38.14782],[-84.69903,38.14795],[-84.69952,38.14818],[-84.69989,38.14835],[-84.70008,38.14844],[-84.70103,38.1489],[-84.70122,38.14899],[-84.70231,38.14951],[-84.70264,38.14967],[-84.70333,38.15001],[-84.70367,38.15017],[-84.70382,38.15025],[-84.70397,38.15032],[-84.70411,38.15039],[-84.70424,38.15045],[-84.70483,38.15062],[-84.7049,38.15058],[-84.70501,38.15041],[-84.70506,38.15031],[-84.70512,38.15018],[-84.70616,38.14818],[-84.70623,38.14802],[-84.70659,38.14735],[-84.70673,38.14708],[-84.70688,38.1468],[-84.70715,38.14627],[-84.70739,38.1458],[-84.70749,38.14562],[-84.70776,38.14547],[-84.70841,38.14566],[-84.70859,38.14572],[-84.70897,38.14584],[-84.70937,38.14597],[-84.7102,38.14624],[-84.71085,38.14645],[-84.71106,38.14652],[-84.71168,38.14673],[-84.71336,38.14727],[-84.71358,38.14734],[-84.714,38.14748],[-84.71483,38.14775],[-84.71504,38.14782],[-84.71545,38.14795],[-84.71604,38.14815],[-84.71663,38.14833],[-84.71857,38.14893],[-84.71879,38.149],[-84.72099,38.14967],[-84.72118,38.14971],[-84.72292,38.15026],[-84.72352,38.15045],[-84.72453,38.15078],[-84.72474,38.15085],[-84.72538,38.15106],[-84.72621,38.15134],[-84.72723,38.15168],[-84.72743,38.15175],[-84.72906,38.15228],[-84.72922,38.15234],[-84.73027,38.15265],[-84.73102,38.15289],[-84.73197,38.15319],[-84.73235,38.15331],[-84.73516,38.1542],[-84.73532,38.15425],[-84.73594,38.15446],[-84.73613,38.1545],[-84.73654,38.15431],[-84.73677,38.1542],[-84.73778,38.15388],[-84.73867,38.15382],[-84.73915,38.15384],[-84.74119,38.154],[-84.74298,38.15412],[-84.74347,38.15416],[-84.74361,38.15416],[-84.74381,38.15418],[-84.74399,38.1542],[-84.74403,38.15399],[-84.74401,38.15396],[-84.74394,38.15386],[-84.74387,38.1538],[-84.74382,38.15359],[-84.74386,38.15352],[-84.74514,38.15143],[-84.74528,38.15119],[-84.74561,38.15065],[-84.74576,38.1504],[-84.74619,38.14966],[-84.74841,38.14606],[-84.74863,38.1457],[-84.74904,38.14505],[-84.7495,38.14431],[-84.75054,38.14262],[-84.75076,38.14226],[-84.75084,38.14215],[-84.75111,38.14172],[-84.7515,38.14186],[-84.75365,38.14264],[-84.75491,38.14311],[-84.75521,38.14322],[-84.75727,38.14423],[-84.75785,38.14456],[-84.75905,38.14547],[-84.75957,38.14592],[-84.7598,38.14611],[-84.75994,38.14622],[-84.76013,38.14603],[-84.76024,38.14586],[-84.76118,38.14415],[-84.76141,38.14375],[-84.76297,38.14076],[-84.76324,38.14023],[-84.76363,38.13948],[-84.76381,38.13913],[-84.76528,38.13629],[-84.7661,38.13469],[-84.76676,38.13344],[-84.76747,38.13209],[-84.77152,38.12472],[-84.77197,38.12395],[-84.7726,38.12302],[-84.77436,38.12154],[-84.77516,38.12109],[-84.77557,38.12102],[-84.77576,38.12103],[-84.77638,38.12107],[-84.77646,38.12108],[-84.77665,38.12112],[-84.77778,38.12119],[-84.77808,38.12106],[-84.77839,38.11848],[-84.7786,38.11819],[-84.77903,38.11796],[-84.78017,38.11745],[-84.78168,38.11677],[-84.78232,38.11645],[-84.7828,38.11604],[-84.78474,38.1143],[-84.78697,38.11236],[-84.78708,38.11232],[-84.78719,38.1123],[-84.78738,38.11226],[-84.7874,38.11225],[-84.78744,38.11224],[-84.78779,38.1119],[-84.78786,38.11169],[-84.78966,38.10603],[-84.79218,38.10172],[-84.79265,38.1006],[-84.79318,38.0987],[-84.79315,38.09735],[-84.79319,38.09725],[-84.79333,38.09695],[-84.79334,38.09691],[-84.79338,38.09681],[-84.79345,38.09667],[-84.79371,38.09627],[-84.79378,38.09617],[-84.79403,38.09584],[-84.79411,38.09573],[-84.79403,38.09584],[-84.79378,38.09617],[-84.79371,38.09627],[-84.79378,38.09617],[-84.79403,38.09584],[-84.79411,38.09573],[-84.79558,38.09376],[-84.79585,38.0934],[-84.80045,38.08705],[-84.80072,38.08667],[-84.80553,38.07963],[-84.80566,38.07945],[-84.80787,38.07626],[-84.80802,38.07603],[-84.8085,38.07625],[-84.80873,38.07636],[-84.81122,38.07756],[-84.81226,38.07839],[-84.81299,38.07997],[-84.81369,38.08253],[-84.81405,38.08295],[-84.816,38.08338],[-84.81707,38.08375],[-84.81897,38.08382],[-84.81987,38.08422],[-84.82026,38.08425],[-84.82088,38.08385],[-84.8213,38.08376],[-84.82199,38.08392],[-84.82224,38.08385],[-84.82233,38.08363],[-84.8221,38.083],[-84.82255,38.08256],[-84.82317,38.08254],[-84.82398,38.08291],[-84.82475,38.08297],[-84.82527,38.08298],[-84.82532,38.08298],[-84.82539,38.08304],[-84.8254,38.08306],[-84.82543,38.08336],[-84.82543,38.08358],[-84.82549,38.08533],[-84.826,38.08717],[-84.82619,38.08761],[-84.82772,38.09075],[-84.82869,38.09181],[-84.83005,38.09411],[-84.83058,38.09526],[-84.83073,38.09549],[-84.83276,38.09856],[-84.83372,38.09953],[-84.83552,38.10096],[-84.83542,38.10115],[-84.83484,38.1014],[-84.83295,38.10159],[-84.83248,38.10188],[-84.83236,38.10216],[-84.83269,38.10409],[-84.83271,38.10427],[-84.83283,38.10611],[-84.83443,38.11009],[-84.8351,38.11048],[-84.83776,38.11114],[-84.83849,38.11176],[-84.83856,38.11191],[-84.84101,38.1193],[-84.84106,38.11946],[-84.84086,38.11951],[-84.84048,38.11959],[-84.83982,38.11974],[-84.83814,38.12013],[-84.83716,38.12036],[-84.83589,38.12065],[-84.8358,38.12067],[-84.83461,38.12088],[-84.83448,38.12086],[-84.83441,38.12083],[-84.83431,38.12079],[-84.83388,38.12057],[-84.83349,38.12036],[-84.83322,38.12025],[-84.83305,38.1202],[-84.83288,38.12016],[-84.83273,38.12014],[-84.8325,38.12013],[-84.83212,38.12016],[-84.83181,38.1202],[-84.83096,38.12024],[-84.83037,38.12015],[-84.82978,38.12001],[-84.82964,38.11995],[-84.82928,38.11979],[-84.82883,38.11957],[-84.82873,38.11953],[-84.82842,38.11941],[-84.82815,38.11933],[-84.82764,38.11929],[-84.8265,38.11951],[-84.82647,38.11939],[-84.82646,38.11929],[-84.82644,38.1191],[-84.82624,38.1184],[-84.82562,38.11796],[-84.82551,38.11789],[-84.82488,38.11741],[-84.82394,38.11703],[-84.82374,38.11695],[-84.8216,38.11622],[-84.81767,38.11572],[-84.81722,38.11548],[-84.81658,38.11484],[-84.81643,38.11471],[-84.81537,38.11378],[-84.81521,38.11361],[-84.81462,38.11289],[-84.81437,38.11275],[-84.81412,38.11271],[-84.81365,38.11269],[-84.81276,38.11277],[-84.81183,38.11297],[-84.81158,38.11304],[-84.8112,38.11348],[-84.8111,38.11383],[-84.81102,38.11506],[-84.81098,38.11523],[-84.81065,38.11576],[-84.80958,38.11638],[-84.80928,38.11646],[-84.80869,38.11654],[-84.80852,38.11654],[-84.80819,38.1165],[-84.80776,38.1164],[-84.8068,38.11595],[-84.80641,38.11583],[-84.80318,38.11492],[-84.80228,38.11458],[-84.80178,38.11397],[-84.80143,38.11383],[-84.80104,38.11366],[-84.79893,38.11306],[-84.79326,38.1127],[-84.79099,38.11256],[-84.7901,38.11251],[-84.7883,38.11239],[-84.7882,38.11238],[-84.78783,38.11232],[-84.78738,38.11226],[-84.78719,38.1123],[-84.78708,38.11232],[-84.78697,38.11236],[-84.78474,38.1143],[-84.7828,38.11604],[-84.78232,38.11645],[-84.78168,38.11677],[-84.78017,38.11745],[-84.77903,38.11796],[-84.7786,38.11819],[-84.77839,38.11848],[-84.77808,38.12106],[-84.77778,38.12119],[-84.77665,38.12112],[-84.77646,38.12108],[-84.77638,38.12107],[-84.77576,38.12103],[-84.77557,38.12102],[-84.77516,38.12109],[-84.77436,38.12154],[-84.7726,38.12302],[-84.77197,38.12395],[-84.77152,38.12472],[-84.76747,38.13209],[-84.76676,38.13344],[-84.7661,38.13469],[-84.76528,38.13629],[-84.76381,38.13913],[-84.76363,38.13948],[-84.76324,38.14023],[-84.76297,38.14076],[-84.76141,38.14375],[-84.76118,38.14415],[-84.76024,38.14586],[-84.76013,38.14603],[-84.75994,38.14622],[-84.7598,38.14611],[-84.75957,38.14592],[-84.75905,38.14547],[-84.75785,38.14456],[-84.75727,38.14423],[-84.75521,38.14322],[-84.75491,38.14311],[-84.75365,38.14264],[-84.7515,38.14186],[-84.75111,38.14172],[-84.75084,38.14215],[-84.75076,38.14226],[-84.75054,38.14262],[-84.7495,38.14431],[-84.74904,38.14505],[-84.74863,38.1457],[-84.74841,38.14606],[-84.74619,38.14966],[-84.74576,38.1504],[-84.74561,38.15065],[-84.74528,38.15119],[-84.74514,38.15143],[-84.74386,38.15352],[-84.74382,38.15359],[-84.74387,38.1538],[-84.74394,38.15386],[-84.74401,38.15396],[-84.74403,38.15399],[-84.74399,38.1542],[-84.74381,38.15418],[-84.74361,38.15416],[-84.74347,38.15416],[-84.74298,38.15412],[-84.74119,38.154],[-84.73915,38.15384],[-84.73867,38.15382],[-84.73778,38.15388],[-84.73677,38.1542],[-84.73654,38.15431],[-84.73613,38.1545],[-84.73594,38.15446],[-84.73532,38.15425],[-84.73516,38.1542],[-84.73235,38.15331],[-84.73197,38.15319],[-84.73102,38.15289],[-84.73027,38.15265],[-84.72922,38.15234],[-84.72906,38.15228],[-84.72743,38.15175],[-84.72723,38.15168],[-84.72621,38.15134],[-84.72538,38.15106],[-84.72474,38.15085],[-84.72453,38.15078],[-84.72352,38.15045],[-84.72292,38.15026],[-84.72118,38.14971],[-84.72099,38.14967],[-84.71879,38.149],[-84.71857,38.14893],[-84.71663,38.14833],[-84.71604,38.14815],[-84.71545,38.14795],[-84.71504,38.14782],[-84.71483,38.14775],[-84.714,38.14748],[-84.71358,38.14734],[-84.71336,38.14727],[-84.71168,38.14673],[-84.71106,38.14652],[-84.71085,38.14645],[-84.7102,38.14624],[-84.70937,38.14597],[-84.70897,38.14584],[-84.70859,38.14572],[-84.70841,38.14566],[-84.70776,38.14547],[-84.70749,38.14562],[-84.70739,38.1458],[-84.70715,38.14627],[-84.70688,38.1468],[-84.70673,38.14708],[-84.70659,38.14735],[-84.70623,38.14802],[-84.70616,38.14818],[-84.70512,38.15018],[-84.70506,38.15031],[-84.70501,38.15041],[-84.7049,38.15058],[-84.70483,38.15062],[-84.70424,38.15045],[-84.70411,38.15039],[-84.70397,38.15032],[-84.70382,38.15025],[-84.70367,38.15017],[-84.70333,38.15001],[-84.70264,38.14967],[-84.70231,38.14951],[-84.70122,38.14899],[-84.70103,38.1489],[-84.70008,38.14844],[-84.69989,38.14835],[-84.69952,38.14818],[-84.69903,38.14795],[-84.69878,38.14782],[-84.69866,38.14777],[-84.69857,38.14772],[-84.69839,38.14768],[-84.69797,38.14782],[-84.69771,38.14792],[-84.69662,38.14837],[-84.69633,38.14849],[-84.69596,38.14864],[-84.69567,38.14875],[-84.69434,38.1491],[-84.69386,38.14926],[-84.69324,38.14946],[-84.69299,38.14952],[-84.69256,38.14957],[-84.69191,38.14939],[-84.69118,38.14912],[-84.6904,38.14883],[-84.68992,38.14866],[-84.68931,38.14844],[-84.68864,38.1482],[-84.68832,38.14809],[-84.6876,38.14784],[-84.68686,38.14757],[-84.6861,38.14731],[-84.68603,38.14728],[-84.6855,38.14708],[-84.68515,38.14695],[-84.68457,38.14675],[-84.68443,38.1467],[-84.68409,38.14728],[-84.68403,38.14739],[-84.68389,38.14763],[-84.68372,38.14793],[-84.68356,38.14822],[-84.68338,38.14854],[-84.68364,38.14864],[-84.68427,38.14886],[-84.68421,38.14896],[-84.68413,38.14913]]}},
{"type":"Feature","properties":{"name":"Russell Cave 27"},"geometry":{"type":"LineString","coordinates":[[-84.44533,38.12006],[-84.44474,38.12069],[-84.44329,38.12224],[-84.44241,38.12317],[-84.44128,38.12438],[-84.44402,38.12558],[-84.44756,38.12687],[-84.45022,38.12774],[-84.4508,38.12794],[-84.45274,38.12861],[-84.45414,38.12916],[-84.45419,38.12935],[-84.45396,38.1299],[-84.45384,38.13018],[-84.45376,38.13036],[-84.45365,38.1306],[-84.45357,38.13075],[-84.4528,38.13221],[-84.44924,38.13916],[-84.44876,38.1401],[-84.44755,38.1424],[-84.44734,38.14246],[-84.44659,38.14228],[-84.44636,38.14243],[-84.44539,38.14451],[-84.44359,38.14765],[-84.44045,38.15355],[-84.43939,38.15549],[-84.43904,38.15618],[-84.43881,38.15663],[-84.43749,38.1593],[-84.43687,38.16053],[-84.43621,38.16184],[-84.44215,38.16369],[-84.44409,38.1643],[-84.44564,38.16479],[-84.45144,38.1666],[-84.45253,38.16695],[-84.45411,38.16744],[-84.45689,38.16831],[-84.45878,38.16889],[-84.46062,38.16949],[-84.46209,38.16996],[-84.46332,38.17035],[-84.46323,38.17115],[-84.46321,38.17164],[-84.46339,38.17186],[-84.46456,38.17227],[-84.46594,38.17277],[-84.4722,38.17514],[-84.47507,38.17623],[-84.47665,38.17682],[-84.481,38.17842],[-84.48144,38.17858],[-84.48174,38.1787],[-84.48181,38.17893],[-84.48096,38.17976],[-84.48072,38.18053],[-84.48104,38.18245],[-84.48186,38.18346],[-84.48326,38.18426],[-84.48428,38.1845],[-84.48502,38.18459],[-84.48662,38.1847],[-84.48758,38.18446],[-84.48786,38.18438],[-84.48967,38.18391],[-84.48939,38.18255],[-84.491,38.18253],[-84.49153,38.18262],[-84.49215,38.18292],[-84.49284,38.18356],[-84.49404,38.18414],[-84.50022,38.18517],[-84.50136,38.18536],[-84.5031,38.18562],[-84.5036,38.1858],[-84.50388,38.18591],[-84.50487,38.18627],[-84.5062,38.18676],[-84.50686,38.18701],[-84.50668,38.1873],[-84.50614,38.1882],[-84.50573,38.18891],[-84.5022,38.19507],[-84.50095,38.19728],[-84.50087,38.19743],[-84.49842,38.20202],[-84.49499,38.20405],[-84.49482,38.20414],[-84.49024,38.20683],[-84.48933,38.20726],[-84.4886,38.20744],[-84.48736,38.20767],[-84.48606,38.20781],[-84.48389,38.20677],[-84.4835,38.20631],[-84.48368,38.20556],[-84.4833,38.20545],[-84.4832,38.20602],[-84.48254,38.20721],[-84.47847,38.20742],[-84.47325,38.20559],[-84.46953,38.21173],[-84.4694,38.21169],[-84.46924,38.21165],[-84.46052,38.20882],[-84.45913,38.20835],[-84.45655,38.20751],[-84.4437,38.20471],[-84.44306,38.20457],[-84.44266,38.20449],[-84.44227,38.2044],[-84.44151,38.20425],[-84.4404,38.20403],[-84.43713,38.20342],[-84.43673,38.20335],[-84.43636,38.20328],[-84.43459,38.20295],[-84.42885,38.20273],[-84.42856,38.20288],[-84.42852,38.20294],[-84.42783,38.20401],[-84.4252,38.20315],[-84.42484,38.20303],[-84.42293,38.20239],[-84.42272,38.20233],[-84.41799,38.20057],[-84.41657,38.2],[-84.41416,38.19911],[-84.40889,38.1972],[-84.40745,38.19692],[-84.39769,38.19535],[-84.39647,38.19763],[-84.3961,38.19747],[-84.39549,38.19727],[-84.39528,38.19723],[-84.39055,38.19698],[-84.38879,38.19646],[-84.38136,38.19622],[-84.37787,38.19622],[-84.37503,38.19623],[-84.36863,38.19623],[-84.36879,38.19601],[-84.37014,38.19399],[-84.37017,38.19396],[-84.37449,38.18831],[-84.37526,38.18699],[-84.37712,38.18402],[-84.37865,38.18169],[-84.38026,38.17918],[-84.38105,38.17743],[-84.3814,38.17664],[-84.38293,38.1734],[-84.38344,38.17266],[-84.38367,38.17235],[-84.38452,38.17129],[-84.38746,38.16696],[-84.38808,38.16608],[-84.38844,38.16557],[-84.38886,38.16498],[-84.39058,38.1628],[-84.39537,38.15925],[-84.39718,38.15767],[-84.39741,38.15746],[-84.39972,38.15499],[-84.4001,38.15461],[-84.40046,38.15424],[-84.40335,38.15128],[-84.40343,38.1512],[-84.40376,38.15083],[-84.40428,38.15034],[-84.40469,38.15006],[-84.4067,38.14874],[-84.40703,38.14872],[-84.40779,38.149],[-84.40864,38.1493],[-84.41056,38.14993],[-84.41059,38.14977],[-84.41062,38.14968],[-84.41073,38.14948],[-84.41214,38.1471],[-84.4129,38.14579],[-84.41364,38.14449],[-84.41426,38.1434],[-84.41468,38.1427],[-84.41485,38.1424],[-84.40819,38.13834],[-84.41187,38.13257],[-84.41233,38.13185],[-84.41377,38.12962],[-84.41797,38.12318],[-84.41879,38.12255],[-84.42092,38.1192],[-84.42196,38.11845],[-84.42416,38.11517],[-84.42494,38.114],[-84.42649,38.1117],[-84.43044,38.11332],[-84.43167,38.11383],[-84.43354,38.11459],[-84.43558,38.11525],[-84.43661,38.11559],[-84.44662,38.1187],[-84.44601,38.11934],[-84.4456,38.11977],[-84.44533,38.12006]]}},
{"type":"Feature","properties":{"name":"Proposed B route Labor Day Ferry"},"geometry":{"type":"LineString","coordinates":[[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42449,37.97724],[-84.42433,37.97672],[-84.42415,37.97614],[-84.42377,37.97489],[-84.42293,37.97218],[-84.42222,37.96992],[-84.4218,37.96909],[-84.42145,37.96848],[-84.4217,37.96842],[-84.42286,37.96817],[-84.42336,37.96801],[-84.42404,37.96758],[-84.42525,37.96669],[-84.42732,37.96515],[-84.42947,37.96107],[-84.42986,37.96038],[-84.43085,37.95869],[-84.43211,37.95652],[-84.43378,37.95367],[-84.43604,37.9498],[-84.43593,37.94912],[-84.43548,37.94766],[-84.43502,37.94622],[-84.43372,37.94362],[-84.43677,37.93832],[-84.43829,37.9357],[-84.44022,37.93236],[-84.44063,37.93165],[-84.4414,37.93037],[-84.44198,37.92938],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.41219,37.92652],[-84.41285,37.92531],[-84.41574,37.92013],[-84.41629,37.91923],[-84.41705,37.91792],[-84.41947,37.91373],[-84.42003,37.91279],[-84.42215,37.90947],[-84.42237,37.90889],[-84.4238,37.90707],[-84.42395,37.90687],[-84.4241,37.90666],[-84.42377,37.90648],[-84.42127,37.90525],[-84.42103,37.90508],[-84.42087,37.90498],[-84.42017,37.90465],[-84.41964,37.90439],[-84.4193,37.90422],[-84.41829,37.89795],[-84.41841,37.89677],[-84.41854,37.8953],[-84.41986,37.89459],[-84.41996,37.89219],[-84.41997,37.89139],[-84.41998,37.89068],[-84.42181,37.89057],[-84.42198,37.89056],[-84.42265,37.8904],[-84.42299,37.89018],[-84.42621,37.88558],[-84.42691,37.88459],[-84.42798,37.88319],[-84.43268,37.88048],[-84.43774,37.87422],[-84.43832,37.87351],[-84.43837,37.87346],[-84.43846,37.87337],[-84.43838,37.87321],[-84.43833,37.87306],[-84.43824,37.87278],[-84.43851,37.8729],[-84.43824,37.87278],[-84.43786,37.87213],[-84.43771,37.87185],[-84.43724,37.87102],[-84.43484,37.86911],[-84.43433,37.86825],[-84.43449,37.8677],[-84.43683,37.86436],[-84.43735,37.86306],[-84.43741,37.86291],[-84.4376,37.86195],[-84.43715,37.86017],[-84.43671,37.8597],[-84.43658,37.85925],[-84.43584,37.85815],[-84.43577,37.85682],[-84.43496,37.85631],[-84.43477,37.85604],[-84.43479,37.85518],[-84.43458,37.85436],[-84.43473,37.85409],[-84.43535,37.85368],[-84.43557,37.85241],[-84.43627,37.85169],[-84.43649,37.85086],[-84.43745,37.8503],[-84.43757,37.84961],[-84.43804,37.84892],[-84.4379,37.8486],[-84.4376,37.84844],[-84.43751,37.84842],[-84.43671,37.84826],[-84.43617,37.8476],[-84.43522,37.84687],[-84.43512,37.84682],[-84.43468,37.84714],[-84.43441,37.84718],[-84.43,37.84621],[-84.42915,37.8459],[-84.42901,37.84583],[-84.4281,37.84516],[-84.42725,37.84405],[-84.42612,37.84317],[-84.42603,37.84308],[-84.42595,37.84298],[-84.42316,37.84422],[-84.42186,37.84427],[-84.42072,37.84399],[-84.42035,37.84379],[-84.4192,37.84188],[-84.41886,37.84169],[-84.41844,37.84169],[-84.41812,37.8419],[-84.41805,37.84232],[-84.41881,37.84522],[-84.4187,37.84569],[-84.41832,37.84594],[-84.41646,37.84627],[-84.41579,37.84649],[-84.41347,37.84772],[-84.41215,37.84871],[-84.4116,37.84881],[-84.41093,37.84873],[-84.41021,37.84835],[-84.40944,37.8477],[-84.40799,37.84592],[-84.40608,37.84479],[-84.40495,37.8439],[-84.39887,37.8406],[-84.39675,37.8404],[-84.39639,37.84005],[-84.39553,37.83872],[-84.39506,37.83838],[-84.39371,37.83799],[-84.39207,37.8385],[-84.38864,37.83875],[-84.3846,37.83748],[-84.38445,37.83724],[-84.38465,37.83515],[-84.38512,37.83462],[-84.38579,37.83347],[-84.38607,37.83255],[-84.38585,37.83216],[-84.38214,37.82839],[-84.38123,37.82668],[-84.38074,37.82637],[-84.37801,37.82562],[-84.37551,37.82474],[-84.37228,37.82248],[-84.37032,37.82128],[-84.36977,37.8208],[-84.36964,37.82062],[-84.35667,37.82578],[-84.34399,37.82538],[-84.33507,37.82524],[-84.32605,37.82433],[-84.32564,37.83461],[-84.32956,37.84306],[-84.33299,37.85242],[-84.33303,37.85295],[-84.33268,37.85473],[-84.33316,37.86132],[-84.33422,37.86546],[-84.33556,37.86854],[-84.33645,37.87148],[-84.33735,37.87334],[-84.33753,37.87583],[-84.3373,37.87664],[-84.33755,37.87686],[-84.33773,37.87835],[-84.33817,37.87962],[-84.33778,37.88013],[-84.33636,37.88055],[-84.33633,37.88091],[-84.33694,37.88139],[-84.33753,37.88141],[-84.33963,37.88036],[-84.34216,37.87971],[-84.34296,37.87915],[-84.34339,37.87922],[-84.34357,37.87959],[-84.3433,37.87987],[-84.34183,37.88015],[-84.34009,37.88088],[-84.33791,37.88269],[-84.33728,37.88364],[-84.33672,37.88505],[-84.33674,37.88572],[-84.33711,37.8867],[-84.33759,37.88702],[-84.33923,37.88728],[-84.33964,37.88722],[-84.34004,37.88679],[-84.34033,37.88511],[-84.34087,37.88445],[-84.34172,37.88377],[-84.34209,37.88363],[-84.34277,37.88369],[-84.34344,37.884],[-84.34384,37.8843],[-84.34581,37.88649],[-84.34976,37.88918],[-84.35036,37.88984],[-84.35062,37.89095],[-84.35023,37.89294],[-84.35032,37.89445],[-84.3506,37.89658],[-84.35254,37.90057],[-84.35592,37.90572],[-84.35924,37.90984],[-84.35928,37.90989],[-84.36367,37.91447],[-84.36476,37.91583],[-84.36517,37.91661],[-84.36732,37.92277],[-84.36803,37.92365],[-84.36892,37.92417],[-84.36749,37.92573],[-84.36619,37.92718],[-84.36584,37.92959],[-84.36566,37.93005],[-84.36369,37.93158],[-84.36326,37.93218],[-84.3634,37.93331],[-84.36392,37.93499],[-84.36417,37.93891],[-84.3646,37.94172],[-84.36444,37.9426],[-84.3644,37.94277],[-84.36463,37.94797],[-84.36466,37.94835],[-84.36483,37.94876],[-84.36482,37.94889],[-84.36443,37.94937],[-84.36554,37.94999],[-84.36673,37.95063],[-84.3671,37.95021],[-84.36718,37.95018],[-84.36895,37.95018],[-84.37362,37.95026],[-84.3772,37.95031],[-84.38041,37.95033],[-84.38148,37.95033],[-84.38262,37.95034],[-84.38658,37.95032],[-84.38995,37.9503],[-84.39109,37.95027],[-84.39213,37.95027],[-84.39626,37.95031],[-84.40425,37.95386],[-84.40737,37.95538],[-84.40882,37.95609],[-84.40941,37.95638],[-84.41507,37.95907],[-84.41514,37.95907],[-84.41534,37.95902],[-84.4156,37.95894],[-84.41578,37.9589],[-84.41582,37.95899],[-84.41664,37.96036],[-84.41724,37.96138],[-84.41807,37.96275],[-84.42089,37.96755],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42569,37.98108],[-84.42587,37.9817],[-84.42609,37.98245],[-84.42633,37.98322],[-84.42637,37.98338],[-84.4264,37.98353],[-84.42641,37.98357],[-84.42627,37.98383],[-84.42623,37.98389],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42265,37.98788]]}},
{"type":"Feature","properties":{"name":"Ramsey's at S. Elkhorn to Paris (Rock Cafe)"},"geometry":{"type":"LineString","coordinates":[[-84.58641,37.99652],[-84.58661,37.99678],[-84.58785,37.99835],[-84.58831,37.99893],[-84.58897,37.99974],[-84.58929,37.99998],[-84.59015,38.00063],[-84.59213,38.00194],[-84.59381,38.00354],[-84.59525,38.00442],[-84.59732,38.00525],[-84.60097,38.00823],[-84.60148,38.00844],[-84.60228,38.00854],[-84.6025,38.00875],[-84.59539,38.01784],[-84.59198,38.02412],[-84.59115,38.02561],[-84.59192,38.0253],[-84.59213,38.02524],[-84.59278,38.02518],[-84.59386,38.02531],[-84.59884,38.02694],[-84.60245,38.02705],[-84.60334,38.02707],[-84.60355,38.02707],[-84.60352,38.02738],[-84.60267,38.02837],[-84.60251,38.02853],[-84.60114,38.02986],[-84.59956,38.03101],[-84.59728,38.03418],[-84.59653,38.03494],[-84.59522,38.03582],[-84.59285,38.0368],[-84.59266,38.03688],[-84.59313,38.03784],[-84.59334,38.03889],[-84.59331,38.04426],[-84.59333,38.04521],[-84.59356,38.04553],[-84.59837,38.04709],[-84.6013,38.04876],[-84.60205,38.04897],[-84.60294,38.049],[-84.60357,38.04888],[-84.60428,38.04854],[-84.60489,38.04829],[-84.60965,38.05467],[-84.60988,38.05473],[-84.60922,38.05594],[-84.60811,38.05682],[-84.6071,38.0575],[-84.60679,38.05783],[-84.60562,38.06003],[-84.60518,38.06053],[-84.60392,38.06196],[-84.60468,38.06218],[-84.60543,38.0659],[-84.60554,38.06648],[-84.60619,38.06991],[-84.60632,38.07007],[-84.60991,38.06989],[-84.61486,38.07331],[-84.6141,38.07381],[-84.6134,38.07431],[-84.61219,38.07511],[-84.60943,38.07702],[-84.60905,38.07728],[-84.60839,38.07773],[-84.6081,38.07775],[-84.6073,38.07739],[-84.60675,38.07685],[-84.60646,38.07672],[-84.60513,38.07743],[-84.6032,38.07848],[-84.60129,38.0795],[-84.60095,38.07969],[-84.6002,38.08016],[-84.59872,38.0811],[-84.59443,38.08384],[-84.59346,38.08449],[-84.59044,38.08651],[-84.59016,38.0867],[-84.59556,38.08813],[-84.59724,38.08881],[-84.59898,38.08958],[-84.60015,38.09014],[-84.60139,38.09075],[-84.59972,38.09212],[-84.59934,38.09243],[-84.59877,38.0929],[-84.59816,38.0934],[-84.5971,38.09426],[-84.59482,38.09577],[-84.5929,38.09705],[-84.59152,38.09798],[-84.59103,38.09834],[-84.59085,38.09871],[-84.59037,38.10008],[-84.58991,38.10135],[-84.58702,38.10506],[-84.58493,38.10777],[-84.58206,38.11145],[-84.58153,38.11213],[-84.58026,38.11372],[-84.57948,38.1147],[-84.57873,38.11565],[-84.57823,38.1163],[-84.57805,38.11652],[-84.57776,38.11691],[-84.57726,38.11751],[-84.57624,38.11871],[-84.57529,38.11983],[-84.5748,38.1204],[-84.57394,38.12143],[-84.57329,38.12219],[-84.573,38.12311],[-84.57241,38.12494],[-84.57229,38.12534],[-84.572,38.12636],[-84.5718,38.12711],[-84.57176,38.12729],[-84.57235,38.12816],[-84.57247,38.12925],[-84.57256,38.13014],[-84.57257,38.13035],[-84.57255,38.13043],[-84.57252,38.1305],[-84.57216,38.13112],[-84.57183,38.13165],[-84.57129,38.13255],[-84.57089,38.13327],[-84.57107,38.13462],[-84.56995,38.13553],[-84.56928,38.13605],[-84.56871,38.1365],[-84.56828,38.13708],[-84.56711,38.14105],[-84.56717,38.14121],[-84.56774,38.14144],[-84.56291,38.15081],[-84.56241,38.15168],[-84.5589,38.15523],[-84.55755,38.15757],[-84.55013,38.15506],[-84.54738,38.15409],[-84.54623222,38.15541456],[-84.54624,38.15526],[-84.54561,38.15574],[-84.54511,38.15646],[-84.5259,38.19002],[-84.52554,38.19215],[-84.52603,38.1939],[-84.50871,38.18792],[-84.50686,38.18701],[-84.50668,38.1873],[-84.50614,38.1882],[-84.50573,38.18891],[-84.5022,38.19507],[-84.50095,38.19728],[-84.50087,38.19743],[-84.49842,38.20202],[-84.49499,38.20405],[-84.49482,38.20414],[-84.49024,38.20683],[-84.48933,38.20726],[-84.4886,38.20744],[-84.48736,38.20767],[-84.48606,38.20781],[-84.48389,38.20677],[-84.4835,38.20631],[-84.48368,38.20556],[-84.4833,38.20545],[-84.4832,38.20602],[-84.48254,38.20721],[-84.47847,38.20742],[-84.47325,38.20559],[-84.46953,38.21173],[-84.4694,38.21169],[-84.46924,38.21165],[-84.46052,38.20882],[-84.45913,38.20835],[-84.45655,38.20751],[-84.4437,38.20471],[-84.44306,38.20457],[-84.44266,38.20449],[-84.44227,38.2044],[-84.44151,38.20425],[-84.4404,38.20403],[-84.43713,38.20342],[-84.43673,38.20335],[-84.43636,38.20328],[-84.43459,38.20295],[-84.42885,38.20273],[-84.42856,38.20288],[-84.42852,38.20294],[-84.42783,38.20401],[-84.4252,38.20315],[-84.42484,38.20303],[-84.42293,38.20239],[-84.42272,38.20233],[-84.41799,38.20057],[-84.41657,38.2],[-84.41416,38.19911],[-84.40889,38.1972],[-84.40745,38.19692],[-84.39769,38.19535],[-84.39647,38.19763],[-84.3961,38.19747],[-84.39549,38.19727],[-84.39528,38.19723],[-84.39055,38.19698],[-84.38879,38.19646],[-84.38136,38.19622],[-84.37787,38.19622],[-84.37503,38.19623],[-84.36863,38.19623],[-84.36621,38.19603],[-84.36477,38.19591],[-84.36084,38.19558],[-84.35905,38.19544],[-84.35592,38.1952],[-84.34826,38.19492],[-84.34749,38.1949],[-84.3463,38.19485],[-84.33104,38.19421],[-84.32837,38.19427],[-84.31957,38.19474],[-84.31891,38.195],[-84.31722,38.19611],[-84.31699,38.19627],[-84.31558,38.19718],[-84.31485,38.19739],[-84.31469,38.1974],[-84.31453,38.1974],[-84.3142,38.19738],[-84.31386,38.19735],[-84.31351,38.19732],[-84.27987,38.19468],[-84.27979,38.19467],[-84.27924,38.19463],[-84.27915,38.19463],[-84.27596,38.1944],[-84.27559,38.19437],[-84.27538,38.19422],[-84.27784,38.19273],[-84.27776,38.19264],[-84.27803,38.19248]]}},
{"type":"Feature","properties":{"name":"Labor Day Alt C"},"geometry":{"type":"LineString","coordinates":[[-84.41926,37.98766],[-84.42038,37.98811],[-84.4212,37.98839],[-84.42199,37.9883],[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42482,37.98118],[-84.4237,37.9813],[-84.42334,37.98143],[-84.42298,37.98179],[-84.42285,37.98184],[-84.42271,37.98198],[-84.42209,37.98238],[-84.42143,37.98253],[-84.42118,37.98255],[-84.42031,37.98265],[-84.4197,37.98285],[-84.41961,37.98289],[-84.41816,37.98375],[-84.4172,37.98391],[-84.41624,37.98367],[-84.41466,37.98249],[-84.4136,37.98232],[-84.41258,37.98264],[-84.41136,37.98354],[-84.41076,37.98396],[-84.41004,37.98453],[-84.40943,37.98524],[-84.40915,37.9857],[-84.40888,37.98685],[-84.40836,37.98761],[-84.40751,37.9882],[-84.40663,37.98847],[-84.40636,37.98853],[-84.40401,37.98909],[-84.40359,37.98925],[-84.40291,37.98981],[-84.40263,37.99028],[-84.40241,37.99176],[-84.40205,37.99282],[-84.40129,37.99397],[-84.40019,37.99509],[-84.39989,37.99559],[-84.39965,37.99653],[-84.39826,37.99629],[-84.39811,37.99627],[-84.39792,37.99625],[-84.39711,37.99609],[-84.39655,37.99598],[-84.39657,37.9961],[-84.39658,37.99612],[-84.3966,37.99618],[-84.39663,37.99623],[-84.39683,37.99656],[-84.39707,37.99696],[-84.39768,37.99811],[-84.39756,37.99855],[-84.39744,37.99867],[-84.39674,37.99927],[-84.396,37.9999],[-84.39581,38.00004],[-84.39576,38.00008],[-84.39468,38.00094],[-84.39397,38.00151],[-84.39278,38.00256],[-84.39264,38.00269],[-84.39237,38.00297],[-84.39218,38.00316],[-84.39185,38.00351],[-84.39173,38.00363],[-84.39166,38.0037],[-84.39152,38.00385],[-84.39133,38.00404],[-84.39107,38.00431],[-84.38969,38.00557],[-84.38929,38.0059],[-84.38842,38.00668],[-84.38785,38.0072],[-84.38754,38.00749],[-84.38741,38.00766],[-84.38722,38.00819],[-84.3872,38.0083],[-84.38724,38.00862],[-84.38725,38.00866],[-84.38727,38.00869],[-84.38729,38.00873],[-84.38736,38.00881],[-84.38731,38.00885],[-84.38727,38.00888],[-84.38725,38.00893],[-84.38726,38.00899],[-84.3873,38.00908],[-84.38734,38.0092],[-84.38734,38.00927],[-84.38721,38.0093],[-84.38716,38.00932],[-84.38711,38.00935],[-84.38705,38.00941],[-84.387,38.00946],[-84.38686,38.0098],[-84.38676,38.01021],[-84.38673,38.01031],[-84.3866,38.01049],[-84.38631,38.01074],[-84.38596,38.01112],[-84.3856,38.01155],[-84.385,38.01229],[-84.38462,38.0127],[-84.38346,38.01384],[-84.38254,38.01479],[-84.38204,38.01529],[-84.3813,38.01613],[-84.38075,38.0167],[-84.38016,38.01732],[-84.37971,38.01769],[-84.37843,38.01861],[-84.37633,38.02015],[-84.37491,38.02119],[-84.37419,38.02172],[-84.37359,38.02217],[-84.37292,38.02266],[-84.37286,38.02269],[-84.37279,38.02271],[-84.37236,38.02246],[-84.37207,38.0225],[-84.37162,38.02283],[-84.37058,38.02362],[-84.36854,38.0251],[-84.36578,38.02711],[-84.3651,38.02762],[-84.36421,38.02825],[-84.36266,38.02937],[-84.36218,38.02973],[-84.36206,38.0298],[-84.36193,38.02987],[-84.36169,38.03002],[-84.36096,38.03055],[-84.36056,38.03084],[-84.36004,38.03121],[-84.35984,38.03136],[-84.3596,38.03158],[-84.35993,38.03213],[-84.36434,38.03596],[-84.36629,38.03762],[-84.36814,38.03921],[-84.36897,38.03994],[-84.37034,38.0411],[-84.3763,38.04633],[-84.3767,38.04711],[-84.37706,38.04746],[-84.37866,38.04872],[-84.37928,38.04921],[-84.38075,38.05037],[-84.3835,38.05259],[-84.38366,38.05274],[-84.38467,38.05343],[-84.38527,38.05377],[-84.38577,38.05405],[-84.38722,38.05485],[-84.38799,38.05528],[-84.38879,38.05573],[-84.38916,38.0559],[-84.39201,38.0571],[-84.39398,38.05792],[-84.39805,38.05958],[-84.39906,38.06001],[-84.40103,38.06136],[-84.40231,38.06224],[-84.40303,38.06279],[-84.40382,38.06434],[-84.40087,38.06656],[-84.3964,38.06925],[-84.39612,38.06931],[-84.39602,38.0693],[-84.39161,38.06817],[-84.39011,38.06779],[-84.38895,38.06759],[-84.38712,38.0682],[-84.38569,38.06872],[-84.38332,38.06953],[-84.38194,38.06989],[-84.37933,38.06941],[-84.37229,38.06673],[-84.37181,38.06666],[-84.37113,38.06658],[-84.3675,38.06615],[-84.36315,38.06659],[-84.36161,38.06675],[-84.35697,38.06718],[-84.35365,38.06695],[-84.35272,38.06689],[-84.35181,38.06682],[-84.3515,38.0668],[-84.35118,38.06676],[-84.35062,38.06669],[-84.34978,38.06658],[-84.34975,38.06636],[-84.34986,38.06614],[-84.3501,38.06572],[-84.35029,38.06536],[-84.35139,38.06341],[-84.35159,38.06305],[-84.35187,38.06255],[-84.35203,38.06226],[-84.35216,38.062],[-84.35239,38.06162],[-84.35256,38.06132],[-84.35294,38.06041],[-84.3531,38.05749],[-84.35312,38.05718],[-84.35324,38.05421],[-84.35328,38.05354],[-84.35334,38.05273],[-84.35335,38.05251],[-84.35338,38.05159],[-84.3534,38.05122],[-84.35366,38.0462],[-84.35397,38.04461],[-84.35419,38.04355],[-84.35545,38.03719],[-84.35568,38.03609],[-84.35605,38.03371],[-84.35621,38.03135],[-84.35625,38.03074],[-84.35628,38.03001],[-84.3563,38.02984],[-84.35632,38.02967],[-84.3564,38.02848],[-84.35639,38.027],[-84.35648,38.02629],[-84.35664,38.02568],[-84.35725,38.02336],[-84.35783,38.02015],[-84.35914,38.0149],[-84.35969,38.01135],[-84.35981,38.00898],[-84.35947,38.00676],[-84.35918,38.00484],[-84.35916,38.00365],[-84.35932,38.00246],[-84.3595,38.00123],[-84.35972,37.99973],[-84.36,37.9975],[-84.35997,37.99422],[-84.3608,37.99184],[-84.36426,37.9905],[-84.36481,37.99031],[-84.36647,37.98981],[-84.36743,37.98995],[-84.36855,37.99066],[-84.3736,37.99142],[-84.375,37.9921],[-84.37549,37.99206],[-84.37805,37.99137],[-84.37881,37.99128],[-84.38046,37.99166],[-84.38136,37.99221],[-84.38225,37.99285],[-84.38277,37.99315],[-84.38508,37.99397],[-84.38707,37.99455],[-84.38738,37.99463],[-84.39337,37.99536],[-84.39655,37.99598],[-84.39711,37.99609],[-84.39792,37.99625],[-84.39963,37.9966],[-84.39965,37.99653],[-84.39989,37.99559],[-84.39965,37.99653],[-84.39963,37.9966],[-84.39974,37.99662],[-84.39979,37.99657],[-84.40007,37.99571],[-84.40052,37.99504],[-84.40086,37.99476],[-84.40181,37.99386],[-84.40252,37.9922],[-84.40288,37.99053],[-84.40334,37.98986],[-84.40439,37.98919],[-84.40737,37.98848],[-84.40767,37.98842],[-84.40841,37.9881],[-84.40888,37.9876],[-84.40934,37.98577],[-84.40994,37.98491],[-84.41256,37.98292],[-84.41324,37.98257],[-84.41391,37.9825],[-84.41452,37.98264],[-84.41521,37.98314],[-84.41602,37.98378],[-84.41611,37.98382],[-84.41699,37.98407],[-84.41765,37.98407],[-84.41847,37.98383],[-84.41913,37.98341],[-84.41936,37.98325],[-84.41968,37.98306],[-84.41974,37.98303],[-84.42228,37.98249],[-84.42239,37.98243],[-84.42266,37.98227],[-84.42271,37.98223],[-84.42285,37.98206],[-84.42529,37.9835],[-84.42582,37.98384],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42265,37.98788],[-84.42199,37.9883],[-84.4212,37.98839],[-84.42038,37.98811],[-84.41926,37.98766]]}},
{"type":"Feature","properties":{"name":"Labor Day B Route 2013"},"geometry":{"type":"LineString","coordinates":[[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42449,37.97724],[-84.42433,37.97672],[-84.42415,37.97614],[-84.42377,37.97489],[-84.42293,37.97218],[-84.42222,37.96992],[-84.4218,37.96909],[-84.42145,37.96848],[-84.42089,37.96755],[-84.41807,37.96275],[-84.41724,37.96138],[-84.41664,37.96036],[-84.41582,37.95899],[-84.41578,37.9589],[-84.41066,37.94726],[-84.40787,37.94285],[-84.40653,37.9407],[-84.40573,37.93964],[-84.40549,37.93942],[-84.40536,37.93932],[-84.40502,37.93908],[-84.40096,37.93652],[-84.38446,37.9318],[-84.38105,37.93],[-84.37961,37.92923],[-84.37281,37.92535],[-84.36921,37.92427],[-84.36892,37.92417],[-84.36803,37.92365],[-84.36732,37.92277],[-84.36517,37.91661],[-84.36476,37.91583],[-84.36367,37.91447],[-84.35928,37.90989],[-84.35881,37.91016],[-84.35814,37.91061],[-84.35704,37.91172],[-84.35697,37.91337],[-84.35468,37.91934],[-84.3527,37.92252],[-84.34937,37.92476],[-84.34909,37.92512],[-84.34859,37.92535],[-84.34445,37.92633],[-84.34305,37.92682],[-84.34272,37.92718],[-84.34268,37.92759],[-84.34308,37.9281],[-84.34373,37.92846],[-84.34376,37.92871],[-84.34332,37.92926],[-84.34166,37.9305],[-84.34148,37.93082],[-84.34147,37.93089],[-84.34234,37.93212],[-84.34481,37.93442],[-84.34519,37.93625],[-84.34534,37.93629],[-84.34551,37.93632],[-84.34682,37.93648],[-84.34733,37.93666],[-84.34914,37.93821],[-84.35025,37.9393],[-84.35243,37.94169],[-84.35406,37.94338],[-84.35457,37.94381],[-84.35688,37.9452],[-84.36232,37.94815],[-84.36325,37.9487],[-84.36443,37.94937],[-84.36388,37.95001],[-84.36331,37.95073],[-84.36394,37.95107],[-84.36398,37.95121],[-84.36398,37.95125],[-84.36399,37.9515],[-84.364,37.95231],[-84.36404,37.95409],[-84.36406,37.95545],[-84.36407,37.95666],[-84.36453,37.96485],[-84.36428,37.96525],[-84.36297,37.96641],[-84.3626,37.96721],[-84.36253,37.9682],[-84.36293,37.96961],[-84.36488,37.97301],[-84.365,37.97328],[-84.36513,37.97383],[-84.36477,37.97524],[-84.36472,37.9765],[-84.36482,37.98285],[-84.3635,37.98638],[-84.36257,37.98829],[-84.36207,37.98927],[-84.3608,37.99184],[-84.35997,37.99422],[-84.36,37.9975],[-84.35972,37.99973],[-84.3595,38.00123],[-84.35932,38.00246],[-84.35916,38.00365],[-84.35918,38.00484],[-84.35947,38.00676],[-84.35981,38.00898],[-84.35969,38.01135],[-84.35914,38.0149],[-84.35783,38.02015],[-84.35725,38.02336],[-84.35664,38.02568],[-84.35648,38.02629],[-84.35639,38.027],[-84.3564,38.02848],[-84.35632,38.02967],[-84.3563,38.02984],[-84.35628,38.03001],[-84.35625,38.03074],[-84.35621,38.03135],[-84.35605,38.03371],[-84.35568,38.03609],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34991,38.06686],[-84.35031,38.0677],[-84.35111,38.06935],[-84.35156,38.07026],[-84.35337,38.07396],[-84.35357,38.07438],[-84.35382,38.07489],[-84.35426,38.07576],[-84.35433,38.0759],[-84.35674,38.07974],[-84.35741,38.08036],[-84.35894,38.0811],[-84.35918,38.08132],[-84.35923,38.0818],[-84.35899,38.08333],[-84.35769,38.08512],[-84.35757,38.08575],[-84.35759,38.08584],[-84.35777,38.08619],[-84.35839,38.08675],[-84.35934,38.08755],[-84.36061,38.08865],[-84.36132,38.08939],[-84.36672,38.09421],[-84.36837,38.09637],[-84.36853,38.09655],[-84.36979,38.09797],[-84.37142,38.09976],[-84.37429,38.10289],[-84.37551,38.10426],[-84.37679,38.10366],[-84.37803,38.10316],[-84.37865,38.10292],[-84.38275,38.10131],[-84.38848,38.09559],[-84.39382,38.09074],[-84.39436,38.09023],[-84.39533,38.0894],[-84.40034,38.08573],[-84.40498,38.08253],[-84.41033,38.07895],[-84.41319,38.07679],[-84.41226,38.07606],[-84.41175,38.07565],[-84.41101,38.07528],[-84.40918,38.07384],[-84.40761,38.07313],[-84.40703,38.0729],[-84.40617,38.07255],[-84.40206,38.07065],[-84.40001,38.06997],[-84.39757,38.06937],[-84.39728,38.06931],[-84.3964,38.06925],[-84.40087,38.06656],[-84.40382,38.06434],[-84.40303,38.06279],[-84.40231,38.06224],[-84.40103,38.06136],[-84.39906,38.06001],[-84.39805,38.05958],[-84.39398,38.05792],[-84.39201,38.0571],[-84.38916,38.0559],[-84.38879,38.05573],[-84.38799,38.05528],[-84.38722,38.05485],[-84.38577,38.05405],[-84.38527,38.05377],[-84.38467,38.05343],[-84.38366,38.05274],[-84.3835,38.05259],[-84.38075,38.05037],[-84.37928,38.04921],[-84.37866,38.04872],[-84.37706,38.04746],[-84.3767,38.04711],[-84.3763,38.04633],[-84.37034,38.0411],[-84.36897,38.03994],[-84.36814,38.03921],[-84.36629,38.03762],[-84.36434,38.03596],[-84.35993,38.03213],[-84.3596,38.03158],[-84.35984,38.03136],[-84.36004,38.03121],[-84.36056,38.03084],[-84.36096,38.03055],[-84.36169,38.03002],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38734,38.0092],[-84.3873,38.00908],[-84.38726,38.00899],[-84.38725,38.00893],[-84.38727,38.00888],[-84.38731,38.00885],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39581,38.00004],[-84.396,37.9999],[-84.39674,37.99927],[-84.39744,37.99867],[-84.39756,37.99855],[-84.39768,37.99811],[-84.39707,37.99696],[-84.39683,37.99656],[-84.39663,37.99623],[-84.3966,37.99618],[-84.39658,37.99612],[-84.39657,37.9961],[-84.39655,37.99598],[-84.39711,37.99609],[-84.39792,37.99625],[-84.39963,37.9966],[-84.39974,37.99662],[-84.39979,37.99657],[-84.40007,37.99571],[-84.40052,37.99504],[-84.40086,37.99476],[-84.40181,37.99386],[-84.40252,37.9922],[-84.40288,37.99053],[-84.40334,37.98986],[-84.40439,37.98919],[-84.40737,37.98848],[-84.40767,37.98842],[-84.40841,37.9881],[-84.40888,37.9876],[-84.40934,37.98577],[-84.40994,37.98491],[-84.41256,37.98292],[-84.41324,37.98257],[-84.41391,37.9825],[-84.41452,37.98264],[-84.41521,37.98314],[-84.41602,37.98378],[-84.41611,37.98382],[-84.41699,37.98407],[-84.41765,37.98407],[-84.41847,37.98383],[-84.41913,37.98341],[-84.41936,37.98325],[-84.41968,37.98306],[-84.41974,37.98303],[-84.42228,37.98249],[-84.42239,37.98243],[-84.42266,37.98227],[-84.42271,37.98223],[-84.42285,37.98206],[-84.42297,37.98191],[-84.42298,37.98179],[-84.42334,37.98143],[-84.4237,37.9813],[-84.42482,37.98118],[-84.42569,37.98108],[-84.42587,37.9817],[-84.42609,37.98245],[-84.42633,37.98322],[-84.42637,37.98338],[-84.4264,37.98353],[-84.42641,37.98357],[-84.42627,37.98383],[-84.42623,37.98389],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42281,37.9878]]}},
{"type":"Feature","properties":{"name":"Jacobson Park out DeLong and back Walnut Hill"},"geometry":{"type":"LineString","coordinates":[[-84.41722,37.98595],[-84.41722,37.98591],[-84.4171,37.98564],[-84.41696,37.98555],[-84.41677,37.98549],[-84.41665,37.98549],[-84.41614,37.98579],[-84.41513,37.98689],[-84.41506,37.98725],[-84.4151,37.98738],[-84.41532,37.98782],[-84.41552,37.98793],[-84.41564,37.98795],[-84.41686,37.98823],[-84.4172,37.98917],[-84.4183,37.98927],[-84.4193,37.99006],[-84.41955,37.99002],[-84.42052,37.98931],[-84.42073,37.98919],[-84.42141,37.98919],[-84.42162,37.98898],[-84.42167,37.98875],[-84.42199,37.9883],[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44198,37.92938],[-84.4414,37.93037],[-84.44063,37.93165],[-84.44022,37.93236],[-84.43829,37.9357],[-84.43677,37.93832],[-84.43372,37.94362],[-84.43502,37.94622],[-84.43548,37.94766],[-84.43593,37.94912],[-84.43604,37.9498],[-84.43378,37.95367],[-84.43211,37.95652],[-84.43085,37.95869],[-84.42986,37.96038],[-84.42947,37.96107],[-84.42732,37.96515],[-84.42525,37.96669],[-84.42404,37.96758],[-84.42336,37.96801],[-84.42286,37.96817],[-84.4217,37.96842],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42569,37.98108],[-84.42587,37.9817],[-84.42609,37.98245],[-84.42633,37.98322],[-84.42637,37.98338],[-84.4264,37.98353],[-84.42641,37.98357],[-84.42627,37.98383],[-84.42623,37.98389],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42572,37.98477],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42265,37.98788],[-84.42199,37.9883],[-84.42167,37.98875],[-84.42162,37.98898],[-84.42141,37.98919],[-84.42073,37.98919],[-84.42052,37.98931],[-84.41955,37.99002],[-84.4193,37.99006],[-84.4183,37.98927],[-84.4172,37.98917],[-84.41686,37.98823],[-84.41564,37.98795],[-84.41552,37.98793],[-84.41532,37.98782],[-84.4151,37.98738],[-84.41506,37.98725],[-84.41513,37.98689],[-84.41614,37.98579],[-84.41665,37.98549],[-84.41677,37.98549],[-84.41696,37.98555],[-84.4171,37.98564],[-84.41716,37.9857]]}},
{"type":"Feature","properties":{"name":"Labor Day B Revised"},"geometry":{"type":"LineString","coordinates":[[-84.41889,37.98751],[-84.41926,37.98766],[-84.42038,37.98811],[-84.4212,37.98839],[-84.42199,37.9883],[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42449,37.97724],[-84.42433,37.97672],[-84.42415,37.97614],[-84.42377,37.97489],[-84.42293,37.97218],[-84.42222,37.96992],[-84.4218,37.96909],[-84.42145,37.96848],[-84.42089,37.96755],[-84.41807,37.96275],[-84.41724,37.96138],[-84.41664,37.96036],[-84.41582,37.95899],[-84.41578,37.9589],[-84.41066,37.94726],[-84.40787,37.94285],[-84.40653,37.9407],[-84.40573,37.93964],[-84.40549,37.93942],[-84.40536,37.93932],[-84.40502,37.93908],[-84.40096,37.93652],[-84.38446,37.9318],[-84.38105,37.93],[-84.37961,37.92923],[-84.37281,37.92535],[-84.36921,37.92427],[-84.36892,37.92417],[-84.36749,37.92573],[-84.36619,37.92718],[-84.36584,37.92959],[-84.36566,37.93005],[-84.36369,37.93158],[-84.36326,37.93218],[-84.3634,37.93331],[-84.36392,37.93499],[-84.36417,37.93891],[-84.3646,37.94172],[-84.36444,37.9426],[-84.3644,37.94277],[-84.36463,37.94797],[-84.36466,37.94835],[-84.36483,37.94876],[-84.36482,37.94889],[-84.36443,37.94937],[-84.36388,37.95001],[-84.36331,37.95073],[-84.36394,37.95107],[-84.36398,37.95121],[-84.36398,37.95125],[-84.36399,37.9515],[-84.364,37.95231],[-84.36404,37.95409],[-84.36406,37.95545],[-84.36407,37.95666],[-84.36453,37.96485],[-84.36428,37.96525],[-84.36297,37.96641],[-84.3626,37.96721],[-84.36253,37.9682],[-84.36293,37.96961],[-84.36488,37.97301],[-84.365,37.97328],[-84.36513,37.97383],[-84.36477,37.97524],[-84.36472,37.9765],[-84.36482,37.98285],[-84.3635,37.98638],[-84.36257,37.98829],[-84.36207,37.98927],[-84.3608,37.99184],[-84.35997,37.99422],[-84.36,37.9975],[-84.35972,37.99973],[-84.3595,38.00123],[-84.35932,38.00246],[-84.35916,38.00365],[-84.35918,38.00484],[-84.35947,38.00676],[-84.35981,38.00898],[-84.35969,38.01135],[-84.35914,38.0149],[-84.35783,38.02015],[-84.35725,38.02336],[-84.35664,38.02568],[-84.35648,38.02629],[-84.35639,38.027],[-84.3564,38.02848],[-84.35632,38.02967],[-84.3563,38.02984],[-84.35628,38.03001],[-84.35625,38.03074],[-84.35621,38.03135],[-84.35605,38.03371],[-84.35568,38.03609],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34945,38.06663],[-84.34918,38.06676],[-84.34908,38.06681],[-84.34898,38.06684],[-84.34887,38.06688],[-84.34873,38.0669],[-84.34629,38.06724],[-84.34526,38.06738],[-84.34027,38.06808],[-84.33963,38.06817],[-84.33616,38.06865],[-84.33411,38.06894],[-84.33348,38.06903],[-84.33178,38.06927],[-84.33103,38.06937],[-84.33116,38.07006],[-84.33125,38.0705],[-84.33198,38.0739],[-84.33251,38.07436],[-84.33384,38.07477],[-84.33402,38.0751],[-84.33395,38.07541],[-84.33369,38.07613],[-84.33306,38.07769],[-84.33291,38.07821],[-84.3343,38.08457],[-84.33641,38.08868],[-84.33654,38.08893],[-84.33774,38.09147],[-84.3378,38.09159],[-84.34035,38.09692],[-84.33999,38.10057],[-84.34149,38.10313],[-84.34162,38.10336],[-84.34242,38.10494],[-84.34343,38.10705],[-84.34348,38.10716],[-84.34353,38.10725],[-84.34461,38.10672],[-84.34494,38.10657],[-84.34856,38.10485],[-84.34922,38.10455],[-84.35078,38.10384],[-84.35387,38.10329],[-84.35491,38.1031],[-84.35947,38.1023],[-84.36034,38.10186],[-84.36066,38.10163],[-84.3618,38.10085],[-84.36412,38.09929],[-84.36649,38.09765],[-84.36837,38.09637],[-84.36672,38.09421],[-84.36132,38.08939],[-84.36061,38.08865],[-84.35934,38.08755],[-84.35839,38.08675],[-84.35777,38.08619],[-84.35759,38.08584],[-84.35757,38.08575],[-84.35769,38.08512],[-84.35899,38.08333],[-84.35923,38.0818],[-84.35918,38.08132],[-84.35894,38.0811],[-84.35741,38.08036],[-84.35674,38.07974],[-84.35433,38.0759],[-84.35426,38.07576],[-84.35382,38.07489],[-84.35357,38.07438],[-84.35337,38.07396],[-84.35156,38.07026],[-84.35111,38.06935],[-84.35031,38.0677],[-84.34991,38.06686],[-84.34978,38.06658],[-84.35062,38.06669],[-84.35118,38.06676],[-84.3515,38.0668],[-84.35181,38.06682],[-84.35272,38.06689],[-84.35365,38.06695],[-84.35697,38.06718],[-84.36161,38.06675],[-84.36315,38.06659],[-84.3675,38.06615],[-84.37113,38.06658],[-84.37181,38.06666],[-84.37229,38.06673],[-84.37933,38.06941],[-84.38194,38.06989],[-84.38332,38.06953],[-84.38569,38.06872],[-84.38712,38.0682],[-84.38895,38.06759],[-84.39011,38.06779],[-84.39161,38.06817],[-84.39602,38.0693],[-84.39612,38.06931],[-84.3964,38.06925],[-84.40087,38.06656],[-84.40382,38.06434],[-84.40303,38.06279],[-84.40231,38.06224],[-84.40103,38.06136],[-84.39906,38.06001],[-84.39805,38.05958],[-84.39398,38.05792],[-84.39201,38.0571],[-84.38916,38.0559],[-84.38879,38.05573],[-84.38799,38.05528],[-84.38722,38.05485],[-84.38577,38.05405],[-84.38527,38.05377],[-84.38467,38.05343],[-84.38366,38.05274],[-84.3835,38.05259],[-84.38075,38.05037],[-84.37928,38.04921],[-84.37866,38.04872],[-84.37706,38.04746],[-84.3767,38.04711],[-84.3763,38.04633],[-84.37034,38.0411],[-84.36897,38.03994],[-84.36814,38.03921],[-84.36629,38.03762],[-84.36434,38.03596],[-84.35993,38.03213],[-84.3596,38.03158],[-84.35984,38.03136],[-84.36004,38.03121],[-84.36056,38.03084],[-84.36096,38.03055],[-84.36169,38.03002],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38734,38.0092],[-84.3873,38.00908],[-84.38726,38.00899],[-84.38725,38.00893],[-84.38727,38.00888],[-84.38731,38.00885],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39581,38.00004],[-84.396,37.9999],[-84.39674,37.99927],[-84.39744,37.99867],[-84.39756,37.99855],[-84.39768,37.99811],[-84.39707,37.99696],[-84.39683,37.99656],[-84.39663,37.99623],[-84.3966,37.99618],[-84.39658,37.99612],[-84.39657,37.9961],[-84.39655,37.99598],[-84.39711,37.99609],[-84.39792,37.99625],[-84.39963,37.9966],[-84.39974,37.99662],[-84.39979,37.99657],[-84.40007,37.99571],[-84.40052,37.99504],[-84.40086,37.99476],[-84.40181,37.99386],[-84.40252,37.9922],[-84.40288,37.99053],[-84.40334,37.98986],[-84.40439,37.98919],[-84.40737,37.98848],[-84.40767,37.98842],[-84.40841,37.9881],[-84.40888,37.9876],[-84.40934,37.98577],[-84.40994,37.98491],[-84.41256,37.98292],[-84.41324,37.98257],[-84.41391,37.9825],[-84.41452,37.98264],[-84.41521,37.98314],[-84.41602,37.98378],[-84.41611,37.98382],[-84.41699,37.98407],[-84.41765,37.98407],[-84.41847,37.98383],[-84.41913,37.98341],[-84.41936,37.98325],[-84.41968,37.98306],[-84.41974,37.98303],[-84.42228,37.98249],[-84.42239,37.98243],[-84.42266,37.98227],[-84.42271,37.98223],[-84.42285,37.98206],[-84.42529,37.9835],[-84.42582,37.98384],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42265,37.98788],[-84.42199,37.9883],[-84.4212,37.98839],[-84.42038,37.98811],[-84.41926,37.98766],[-84.41886,37.9875]]}},
{"type":"Feature","properties":{"name":"Jacobson Park out DeLong and back on Walnut Hill 13 miles"},"geometry":{"type":"LineString","coordinates":[[-84.42598,37.98412],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.41219,37.92652],[-84.41213,37.92662],[-84.41219,37.92652],[-84.41296,37.92657],[-84.41736,37.92688],[-84.42484,37.92744],[-84.42877,37.92773],[-84.43633,37.92827],[-84.43851,37.92843],[-84.44035,37.92856],[-84.44158,37.92866],[-84.44208,37.92869],[-84.44223,37.92871],[-84.44238,37.92874],[-84.44198,37.92938],[-84.4414,37.93037],[-84.44063,37.93165],[-84.44022,37.93236],[-84.43829,37.9357],[-84.43677,37.93832],[-84.43372,37.94362],[-84.43502,37.94622],[-84.43548,37.94766],[-84.43593,37.94912],[-84.43604,37.9498],[-84.43378,37.95367],[-84.43211,37.95652],[-84.43085,37.95869],[-84.42986,37.96038],[-84.42947,37.96107],[-84.42732,37.96515],[-84.42525,37.96669],[-84.42404,37.96758],[-84.42336,37.96801],[-84.42286,37.96817],[-84.4217,37.96842],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42569,37.98108],[-84.42587,37.9817],[-84.42609,37.98245],[-84.42633,37.98322],[-84.42637,37.98338],[-84.4264,37.98353],[-84.42641,37.98357],[-84.42627,37.98383],[-84.42623,37.98389],[-84.4261,37.98402],[-84.42604,37.98407]]}},
{"type":"Feature","properties":{"name":"Labor Day A Revised"},"geometry":{"type":"LineString","coordinates":[[-84.42038,37.98811],[-84.4212,37.98839],[-84.42199,37.9883],[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.41219,37.92652],[-84.41285,37.92531],[-84.41574,37.92013],[-84.41629,37.91923],[-84.41705,37.91792],[-84.41947,37.91373],[-84.42003,37.91279],[-84.42215,37.90947],[-84.42237,37.90889],[-84.4238,37.90707],[-84.42395,37.90687],[-84.4241,37.90666],[-84.42377,37.90648],[-84.42127,37.90525],[-84.42103,37.90508],[-84.42087,37.90498],[-84.42017,37.90465],[-84.41964,37.90439],[-84.4193,37.90422],[-84.41829,37.89795],[-84.41841,37.89677],[-84.41854,37.8953],[-84.41986,37.89459],[-84.41996,37.89219],[-84.41997,37.89139],[-84.41998,37.89068],[-84.42181,37.89057],[-84.42198,37.89056],[-84.42265,37.8904],[-84.42299,37.89018],[-84.42621,37.88558],[-84.42691,37.88459],[-84.42798,37.88319],[-84.43268,37.88048],[-84.43774,37.87422],[-84.43832,37.87351],[-84.43837,37.87346],[-84.43846,37.87337],[-84.43838,37.87321],[-84.43833,37.87306],[-84.43824,37.87278],[-84.43786,37.87213],[-84.43771,37.87185],[-84.43724,37.87102],[-84.43484,37.86911],[-84.43433,37.86825],[-84.43449,37.8677],[-84.43683,37.86436],[-84.43735,37.86306],[-84.43741,37.86291],[-84.4376,37.86195],[-84.43715,37.86017],[-84.43671,37.8597],[-84.43658,37.85925],[-84.43584,37.85815],[-84.43577,37.85682],[-84.43496,37.85631],[-84.43477,37.85604],[-84.43479,37.85518],[-84.43458,37.85436],[-84.43473,37.85409],[-84.43535,37.85368],[-84.43557,37.85241],[-84.43627,37.85169],[-84.43649,37.85086],[-84.43745,37.8503],[-84.43757,37.84961],[-84.43804,37.84892],[-84.4379,37.8486],[-84.4376,37.84844],[-84.43751,37.84842],[-84.43671,37.84826],[-84.43617,37.8476],[-84.43522,37.84687],[-84.43512,37.84682],[-84.43468,37.84714],[-84.43441,37.84718],[-84.43,37.84621],[-84.42915,37.8459],[-84.42901,37.84583],[-84.4281,37.84516],[-84.42725,37.84405],[-84.42612,37.84317],[-84.42603,37.84308],[-84.42595,37.84298],[-84.42517,37.84133],[-84.42371,37.83887],[-84.4214,37.83566],[-84.42064,37.83329],[-84.42059,37.83314],[-84.42006,37.83254],[-84.41858,37.832],[-84.41811,37.83156],[-84.41795,37.83103],[-84.41776,37.82805],[-84.41736,37.82693],[-84.41684,37.82443],[-84.41653,37.82366],[-84.41543,37.82199],[-84.41329,37.82008],[-84.41128,37.81855],[-84.40852,37.81728],[-84.40661,37.81544],[-84.40482,37.81229],[-84.39977,37.80975],[-84.39772,37.80811],[-84.39762,37.80775],[-84.39772,37.80701],[-84.39818,37.80431],[-84.39848,37.80331],[-84.39826,37.80153],[-84.3987,37.79993],[-84.39882,37.79882],[-84.39878,37.79619],[-84.39926,37.79294],[-84.39902,37.79239],[-84.39832,37.79177],[-84.39776,37.79151],[-84.39708,37.79144],[-84.39499,37.79213],[-84.39268,37.79241],[-84.39109,37.79194],[-84.39054,37.79148],[-84.39038,37.79093],[-84.39068,37.79034],[-84.39167,37.78963],[-84.39338,37.78895],[-84.39366,37.78865],[-84.39371,37.78825],[-84.39298,37.78649],[-84.39251,37.78577],[-84.39171,37.78514],[-84.39029,37.78434],[-84.38869,37.78313],[-84.38848,37.78277],[-84.38822,37.78128],[-84.38732,37.78008],[-84.38671,37.77974],[-84.38617,37.77963],[-84.38363,37.78001],[-84.3831,37.78],[-84.38238,37.77981],[-84.38199,37.77951],[-84.38196,37.77735],[-84.38103,37.7757],[-84.38079,37.77437],[-84.38095,37.77224],[-84.38035,37.77027],[-84.38038,37.76956],[-84.38077,37.76786],[-84.38067,37.76745],[-84.38032,37.76705],[-84.37966,37.76678],[-84.37892,37.76678],[-84.37167,37.76879],[-84.3708,37.76882],[-84.37007,37.76857],[-84.36956,37.76815],[-84.36839,37.76605],[-84.36782,37.76554],[-84.36733,37.76532],[-84.36522,37.76467],[-84.36298,37.76422],[-84.36077,37.76404],[-84.3583,37.76414],[-84.35805,37.76416],[-84.34762,37.76597],[-84.34193,37.76652],[-84.33574,37.7665],[-84.33326,37.76612],[-84.32889,37.76522],[-84.32545,37.76448],[-84.32282,37.76387],[-84.32152,37.76342],[-84.32028,37.76281],[-84.31837,37.7613],[-84.31813,37.76105],[-84.31417,37.75504],[-84.31295,37.75348],[-84.312,37.7515],[-84.31151,37.75099],[-84.31071,37.75061],[-84.30831,37.7499],[-84.30613,37.74946],[-84.30531,37.74937],[-84.30465,37.74945],[-84.30363,37.75007],[-84.30329,37.75033],[-84.30256,37.75092],[-84.29682,37.74846],[-84.29654,37.74834],[-84.29546,37.7479],[-84.29507,37.74774],[-84.29352,37.75004],[-84.29345,37.75015],[-84.29161,37.753],[-84.29151,37.75496],[-84.29147,37.7559],[-84.29146,37.75602],[-84.291,37.75746],[-84.28877,37.76118],[-84.28868,37.7613],[-84.28586,37.76593],[-84.28525,37.7675],[-84.28489,37.76917],[-84.28479,37.76977],[-84.28461,37.77061],[-84.28425,37.77141],[-84.27931,37.77926],[-84.2764,37.78221],[-84.27491,37.78319],[-84.27452,37.78341],[-84.27371,37.78403],[-84.27324,37.78472],[-84.27222,37.7886],[-84.27209,37.78908],[-84.26935,37.79911],[-84.26913,37.80231],[-84.26835,37.80505],[-84.26835,37.8058],[-84.26906,37.80796],[-84.26878,37.80991],[-84.26875,37.81008],[-84.26858,37.81116],[-84.26867,37.81193],[-84.27121,37.81988],[-84.27132,37.82025],[-84.27233,37.82366],[-84.27265,37.82846],[-84.27258,37.82959],[-84.27196,37.83049],[-84.27189,37.83085],[-84.27199,37.83114],[-84.27267,37.83173],[-84.27274,37.83193],[-84.27197,37.83281],[-84.27165,37.83312],[-84.26376,37.84133],[-84.26314,37.84263],[-84.26302,37.84429],[-84.26301,37.84443],[-84.26265,37.84534],[-84.26185,37.84613],[-84.25999,37.84717],[-84.25578,37.84923],[-84.25511,37.8498],[-84.25468,37.85063],[-84.25458,37.85089],[-84.2542,37.85196],[-84.2543,37.85297],[-84.25651,37.85598],[-84.25661,37.85609],[-84.26069,37.85886],[-84.26211,37.85949],[-84.26407,37.86071],[-84.26745,37.86155],[-84.27099,37.86175],[-84.27195,37.86207],[-84.27363,37.86286],[-84.27458,37.86368],[-84.27596,37.8662],[-84.27628,37.86703],[-84.27631,37.86714],[-84.27709,37.86966],[-84.27801,37.86977],[-84.27956,37.87144],[-84.28108,37.87453],[-84.28245,37.8763],[-84.28267,37.87782],[-84.28259,37.87832],[-84.28225,37.87898],[-84.28174,37.87951],[-84.28087,37.88003],[-84.28006,37.88029],[-84.27777,37.88036],[-84.27537,37.87976],[-84.27286,37.87947],[-84.27169,37.87973],[-84.27106,37.8801],[-84.27064,37.8807],[-84.27044,37.88149],[-84.27038,37.88312],[-84.27042,37.88351],[-84.2706,37.88506],[-84.27058,37.88627],[-84.26702,37.89102],[-84.26576,37.89298],[-84.26588,37.89374],[-84.26667,37.89544],[-84.26735,37.89671],[-84.26794,37.89731],[-84.26823,37.89753],[-84.26961,37.89868],[-84.26991,37.89908],[-84.2702,37.89986],[-84.27044,37.90003],[-84.27048,37.90003],[-84.27083,37.89998],[-84.27113,37.90101],[-84.27108,37.902],[-84.2708,37.90273],[-84.26945,37.90474],[-84.26918,37.90514],[-84.26863,37.90598],[-84.26847,37.90622],[-84.26816,37.90661],[-84.26792,37.90632],[-84.26777,37.9052],[-84.26808,37.90533],[-84.26863,37.90598],[-84.26902,37.90671],[-84.26876,37.9074],[-84.26841,37.90808],[-84.2681,37.90864],[-84.26742,37.91095],[-84.26717,37.91268],[-84.26716,37.91296],[-84.26716,37.9136],[-84.26719,37.91401],[-84.26744,37.91487],[-84.26847,37.91653],[-84.26904,37.91705],[-84.26995,37.91756],[-84.27187,37.91801],[-84.27288,37.91864],[-84.27394,37.91812],[-84.27628,37.91755],[-84.2768,37.91761],[-84.27684,37.91765],[-84.27719,37.91873],[-84.27752,37.91918],[-84.27819,37.91943],[-84.27981,37.91959],[-84.28044,37.92011],[-84.28072,37.9207],[-84.28092,37.92301],[-84.28127,37.92393],[-84.28141,37.92414],[-84.28208,37.92508],[-84.28281,37.92571],[-84.28787,37.92665],[-84.29171,37.92607],[-84.29425,37.9253],[-84.29662,37.92526],[-84.29715,37.92559],[-84.29904,37.92784],[-84.30523,37.93024],[-84.30811,37.9317],[-84.30934,37.93288],[-84.31032,37.93397],[-84.31158,37.93463],[-84.31181,37.93462],[-84.31218,37.93463],[-84.31339,37.93459],[-84.32416,37.9344],[-84.32579,37.93428],[-84.3281,37.93412],[-84.32881,37.93391],[-84.33201,37.93218],[-84.33422,37.93158],[-84.33777,37.93119],[-84.33795,37.93119],[-84.33937,37.93136],[-84.33947,37.93139],[-84.34034,37.93208],[-84.34108,37.93241],[-84.3414,37.9336],[-84.34132,37.93503],[-84.34152,37.93549],[-84.34284,37.9357],[-84.34386,37.93561],[-84.34519,37.93625],[-84.34534,37.93629],[-84.34551,37.93632],[-84.34682,37.93648],[-84.34733,37.93666],[-84.34914,37.93821],[-84.35025,37.9393],[-84.35243,37.94169],[-84.35406,37.94338],[-84.35457,37.94381],[-84.35688,37.9452],[-84.36232,37.94815],[-84.36325,37.9487],[-84.36443,37.94937],[-84.36554,37.94999],[-84.36673,37.95063],[-84.3671,37.95021],[-84.36718,37.95018],[-84.36895,37.95018],[-84.37362,37.95026],[-84.3772,37.95031],[-84.38041,37.95033],[-84.38148,37.95033],[-84.38262,37.95034],[-84.38658,37.95032],[-84.38995,37.9503],[-84.39109,37.95027],[-84.39213,37.95027],[-84.39626,37.95031],[-84.40425,37.95386],[-84.40737,37.95538],[-84.40882,37.95609],[-84.40941,37.95638],[-84.41507,37.95907],[-84.41514,37.95907],[-84.41534,37.95902],[-84.4156,37.95894],[-84.41578,37.9589],[-84.41582,37.95899],[-84.41664,37.96036],[-84.41724,37.96138],[-84.41807,37.96275],[-84.42089,37.96755],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42569,37.98108],[-84.42587,37.9817],[-84.42609,37.98245],[-84.42633,37.98322],[-84.42637,37.98338],[-84.4264,37.98353],[-84.42641,37.98357],[-84.42627,37.98383],[-84.42623,37.98389],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42572,37.98477],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42265,37.98788],[-84.42199,37.9883],[-84.4212,37.98839],[-84.42038,37.98811]]}},
{"type":"Feature","properties":{"name":"Ramsey's at S. Elkhorn to Paris"},"geometry":{"type":"LineString","coordinates":[[-84.58641,37.99652],[-84.58661,37.99678],[-84.58785,37.99835],[-84.58831,37.99893],[-84.58897,37.99974],[-84.58929,37.99998],[-84.59015,38.00063],[-84.59213,38.00194],[-84.59381,38.00354],[-84.59525,38.00442],[-84.59732,38.00525],[-84.60097,38.00823],[-84.60148,38.00844],[-84.60228,38.00854],[-84.6025,38.00875],[-84.59539,38.01784],[-84.59198,38.02412],[-84.59115,38.02561],[-84.59192,38.0253],[-84.59213,38.02524],[-84.59278,38.02518],[-84.59386,38.02531],[-84.59884,38.02694],[-84.60245,38.02705],[-84.60334,38.02707],[-84.60355,38.02707],[-84.60352,38.02738],[-84.60267,38.02837],[-84.60251,38.02853],[-84.60114,38.02986],[-84.59956,38.03101],[-84.59728,38.03418],[-84.59653,38.03494],[-84.59522,38.03582],[-84.59285,38.0368],[-84.59266,38.03688],[-84.59313,38.03784],[-84.59334,38.03889],[-84.59331,38.04426],[-84.59333,38.04521],[-84.59356,38.04553],[-84.59837,38.04709],[-84.6013,38.04876],[-84.60205,38.04897],[-84.60294,38.049],[-84.60357,38.04888],[-84.60428,38.04854],[-84.60489,38.04829],[-84.60965,38.05467],[-84.60988,38.05473],[-84.60922,38.05594],[-84.60811,38.05682],[-84.6071,38.0575],[-84.60679,38.05783],[-84.60562,38.06003],[-84.60518,38.06053],[-84.60392,38.06196],[-84.60468,38.06218],[-84.60543,38.0659],[-84.60554,38.06648],[-84.60619,38.06991],[-84.60632,38.07007],[-84.60991,38.06989],[-84.61486,38.07331],[-84.6141,38.07381],[-84.6134,38.07431],[-84.61219,38.07511],[-84.60943,38.07702],[-84.60905,38.07728],[-84.60839,38.07773],[-84.6081,38.07775],[-84.6073,38.07739],[-84.60675,38.07685],[-84.60646,38.07672],[-84.60513,38.07743],[-84.6032,38.07848],[-84.60129,38.0795],[-84.60095,38.07969],[-84.6002,38.08016],[-84.59872,38.0811],[-84.59443,38.08384],[-84.59346,38.08449],[-84.59044,38.08651],[-84.59016,38.0867],[-84.59556,38.08813],[-84.59724,38.08881],[-84.59898,38.08958],[-84.60015,38.09014],[-84.60139,38.09075],[-84.59972,38.09212],[-84.59934,38.09243],[-84.59877,38.0929],[-84.59816,38.0934],[-84.5971,38.09426],[-84.59482,38.09577],[-84.5929,38.09705],[-84.59152,38.09798],[-84.59103,38.09834],[-84.59085,38.09871],[-84.59037,38.10008],[-84.58991,38.10135],[-84.58702,38.10506],[-84.58493,38.10777],[-84.58206,38.11145],[-84.58153,38.11213],[-84.58026,38.11372],[-84.57948,38.1147],[-84.57873,38.11565],[-84.57823,38.1163],[-84.57805,38.11652],[-84.57776,38.11691],[-84.57726,38.11751],[-84.57624,38.11871],[-84.57529,38.11983],[-84.5748,38.1204],[-84.57394,38.12143],[-84.57329,38.12219],[-84.573,38.12311],[-84.57241,38.12494],[-84.57229,38.12534],[-84.572,38.12636],[-84.5718,38.12711],[-84.57176,38.12729],[-84.57235,38.12816],[-84.57247,38.12925],[-84.57256,38.13014],[-84.57257,38.13035],[-84.57255,38.13043],[-84.57252,38.1305],[-84.57216,38.13112],[-84.57183,38.13165],[-84.57129,38.13255],[-84.57089,38.13327],[-84.57107,38.13462],[-84.56995,38.13553],[-84.56928,38.13605],[-84.56871,38.1365],[-84.56828,38.13708],[-84.56711,38.14105],[-84.56717,38.14121],[-84.56774,38.14144],[-84.56291,38.15081],[-84.56241,38.15168],[-84.5589,38.15523],[-84.55755,38.15757],[-84.55013,38.15506],[-84.54738,38.15409],[-84.54623222,38.15541456],[-84.54624,38.15526],[-84.54561,38.15574],[-84.54511,38.15646],[-84.5259,38.19002],[-84.52554,38.19215],[-84.52603,38.1939],[-84.50871,38.18792],[-84.50686,38.18701],[-84.5062,38.18676],[-84.50487,38.18627],[-84.50388,38.18591],[-84.5036,38.1858],[-84.5031,38.18562],[-84.50136,38.18536],[-84.50022,38.18517],[-84.49404,38.18414],[-84.49284,38.18356],[-84.49215,38.18292],[-84.49153,38.18262],[-84.491,38.18253],[-84.48939,38.18255],[-84.48967,38.18391],[-84.48786,38.18438],[-84.48758,38.18446],[-84.48662,38.1847],[-84.48502,38.18459],[-84.48428,38.1845],[-84.48326,38.18426],[-84.48186,38.18346],[-84.48104,38.18245],[-84.48072,38.18053],[-84.48096,38.17976],[-84.48181,38.17893],[-84.48174,38.1787],[-84.48144,38.17858],[-84.481,38.17842],[-84.47665,38.17682],[-84.47507,38.17623],[-84.4722,38.17514],[-84.46594,38.17277],[-84.46456,38.17227],[-84.46339,38.17186],[-84.46321,38.17164],[-84.46323,38.17115],[-84.46332,38.17035],[-84.46209,38.16996],[-84.46062,38.16949],[-84.45878,38.16889],[-84.45689,38.16831],[-84.45411,38.16744],[-84.45253,38.16695],[-84.45144,38.1666],[-84.44564,38.16479],[-84.44409,38.1643],[-84.44215,38.16369],[-84.43621,38.16184],[-84.42849,38.15941],[-84.42785,38.1592],[-84.42438,38.15808],[-84.42301,38.15762],[-84.42052,38.15683],[-84.41818,38.15607],[-84.41389,38.15469],[-84.41369,38.15462],[-84.41344,38.15457],[-84.41289,38.16091],[-84.41133,38.17451],[-84.41086,38.17624],[-84.41042,38.17683],[-84.40407,38.18161],[-84.40357,38.18213],[-84.40079,38.18942],[-84.40047,38.19025],[-84.40028,38.19071],[-84.39899,38.19303],[-84.39769,38.19535],[-84.39647,38.19763],[-84.3961,38.19747],[-84.39549,38.19727],[-84.39528,38.19723],[-84.39055,38.19698],[-84.38879,38.19646],[-84.38136,38.19622],[-84.37787,38.19622],[-84.37503,38.19623],[-84.36863,38.19623],[-84.36621,38.19603],[-84.36477,38.19591],[-84.36084,38.19558],[-84.35905,38.19544],[-84.35592,38.1952],[-84.34826,38.19492],[-84.34749,38.1949],[-84.3463,38.19485],[-84.33104,38.19421],[-84.32837,38.19427],[-84.31957,38.19474],[-84.31891,38.195],[-84.31722,38.19611],[-84.31699,38.19627],[-84.31558,38.19718],[-84.31485,38.19739],[-84.31469,38.1974],[-84.31453,38.1974],[-84.3142,38.19738],[-84.31386,38.19735],[-84.31351,38.19732],[-84.27987,38.19468],[-84.27979,38.19467],[-84.27924,38.19463],[-84.27915,38.19463],[-84.27596,38.1944],[-84.27559,38.19437],[-84.27538,38.19422],[-84.27532,38.19412],[-84.27298,38.19563],[-84.27283,38.19571],[-84.27114,38.19677],[-84.26959,38.19768],[-84.26899,38.19804],[-84.26856,38.1983],[-84.26626,38.19968],[-84.26582,38.19993],[-84.264,38.20101],[-84.26388,38.20108],[-84.25675,38.20534],[-84.25498,38.20644],[-84.25475,38.2067],[-84.25228,38.20952],[-84.25201,38.20938]]}},
{"type":"Feature","properties":{"name":"Labor Day C Revised"},"geometry":{"type":"LineString","coordinates":[[-84.41994,37.98794],[-84.42038,37.98811],[-84.4212,37.98839],[-84.42199,37.9883],[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44393,37.97507],[-84.44349,37.97544],[-84.44126,37.97726],[-84.44077,37.97738],[-84.43967,37.97734],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45647,37.93536],[-84.45734,37.93489],[-84.45814,37.93438],[-84.45852,37.9341],[-84.46248,37.93111],[-84.46281,37.93087],[-84.46649,37.92875],[-84.46815,37.92687],[-84.46891,37.92599],[-84.46986,37.92488],[-84.47195,37.92263],[-84.47204,37.92304],[-84.47235,37.92408],[-84.47247,37.92451],[-84.47321,37.93021],[-84.47385,37.932],[-84.47391,37.93209],[-84.4743,37.93252],[-84.47527,37.93331],[-84.47827,37.9365],[-84.47922,37.9389],[-84.48181,37.93838],[-84.48214,37.93819],[-84.48458,37.93415],[-84.48532,37.93254],[-84.48539,37.93238],[-84.48668,37.92951],[-84.48701,37.92934],[-84.48708,37.92935],[-84.48922,37.9297],[-84.49034,37.93005],[-84.49052,37.92941],[-84.49054,37.92931],[-84.49154,37.92587],[-84.49156,37.92578],[-84.49185,37.92478],[-84.49249,37.9242],[-84.49296,37.92411],[-84.49366,37.92448],[-84.49398,37.92441],[-84.49486,37.92282],[-84.49507,37.92209],[-84.49548,37.92172],[-84.49642,37.92032],[-84.5012,37.91484],[-84.50138,37.91446],[-84.50138,37.91438],[-84.50118,37.91417],[-84.49993,37.9137],[-84.49921,37.91285],[-84.49806,37.91199],[-84.49775,37.91134],[-84.49799,37.91059],[-84.49866,37.90944],[-84.49902,37.90904],[-84.49996,37.90852],[-84.50007,37.90825],[-84.50004,37.9079],[-84.49938,37.90652],[-84.49916,37.90537],[-84.49941,37.90513],[-84.5009,37.90437],[-84.50298,37.90398],[-84.50345,37.90366],[-84.50359,37.90316],[-84.50357,37.90291],[-84.50346,37.90186],[-84.50307,37.90075],[-84.5035,37.89913],[-84.50324,37.89852],[-84.50296,37.89834],[-84.50307,37.89803],[-84.50362,37.89722],[-84.50395,37.89718],[-84.50505,37.89664],[-84.50601,37.89643],[-84.50643,37.89612],[-84.5095,37.89101],[-84.50963,37.89078],[-84.50997,37.89036],[-84.50965,37.89013],[-84.50928,37.88988],[-84.50815,37.88922],[-84.50321,37.88688],[-84.503,37.88678],[-84.50219,37.88658],[-84.50204,37.88658],[-84.50101,37.88681],[-84.49915,37.88787],[-84.49905,37.8877],[-84.49913,37.88742],[-84.49919,37.88731],[-84.49964,37.88648],[-84.49977,37.88624],[-84.5011,37.88404],[-84.50118,37.88391],[-84.50255,37.88155],[-84.50427,37.87937],[-84.50434,37.87843],[-84.50457,37.87792],[-84.50462,37.87782],[-84.5049,37.87742],[-84.50566,37.87724],[-84.50248,37.87649],[-84.50122,37.87601],[-84.50036,37.87547],[-84.49746,37.87319],[-84.49487,37.87195],[-84.49455,37.87181],[-84.49209,37.87073],[-84.49118,37.87005],[-84.48879,37.86661],[-84.48793,37.86567],[-84.48788,37.86562],[-84.48706,37.86493],[-84.48636,37.8655],[-84.48394,37.86738],[-84.48157,37.86786],[-84.47988,37.86847],[-84.47918,37.8695],[-84.4771,37.8735],[-84.47668,37.87432],[-84.47137,37.88473],[-84.4712,37.88505],[-84.4708,37.88585],[-84.47073,37.88598],[-84.47427,37.88681],[-84.47549,37.88753],[-84.47561,37.8876],[-84.47832,37.88885],[-84.48441,37.89113],[-84.48434,37.89125],[-84.48422,37.89142],[-84.48405,37.89166],[-84.48315,37.893],[-84.48035,37.89732],[-84.47506,37.90103],[-84.47166,37.90579],[-84.47067,37.90667],[-84.47054,37.90736],[-84.47012,37.90814],[-84.47017,37.90906],[-84.47463,37.91236],[-84.47468,37.91272],[-84.47447,37.91294],[-84.47416,37.91313],[-84.47349,37.91374],[-84.47103,37.91769],[-84.47047,37.91832],[-84.47022,37.91863],[-84.46939,37.91982],[-84.47123,37.91994],[-84.4717,37.92011],[-84.47193,37.92056],[-84.47194,37.92183],[-84.47195,37.92263],[-84.46986,37.92488],[-84.46891,37.92599],[-84.46815,37.92687],[-84.46649,37.92875],[-84.46281,37.93087],[-84.46248,37.93111],[-84.45852,37.9341],[-84.45814,37.93438],[-84.45734,37.93489],[-84.45647,37.93536],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44198,37.92938],[-84.4414,37.93037],[-84.44063,37.93165],[-84.44022,37.93236],[-84.43829,37.9357],[-84.43677,37.93832],[-84.43372,37.94362],[-84.43502,37.94622],[-84.43548,37.94766],[-84.43593,37.94912],[-84.43604,37.9498],[-84.43378,37.95367],[-84.43211,37.95652],[-84.43085,37.95869],[-84.42986,37.96038],[-84.42947,37.96107],[-84.42732,37.96515],[-84.42525,37.96669],[-84.42404,37.96758],[-84.42336,37.96801],[-84.42286,37.96817],[-84.4217,37.96842],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42569,37.98108],[-84.42587,37.9817],[-84.42609,37.98245],[-84.42633,37.98322],[-84.42637,37.98338],[-84.4264,37.98353],[-84.42641,37.98357],[-84.42627,37.98383],[-84.42623,37.98389],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42265,37.98788],[-84.42199,37.9883],[-84.4212,37.98839],[-84.42038,37.98811],[-84.4199,37.98792]]}},
{"type":"Feature","properties":{"name":"Ramsey's at S. Elkhorn to Millville via Clifton and back via Wallace Station & Keeneland"},"geometry":{"type":"LineString","coordinates":[[-84.58661,37.99678],[-84.58785,37.99835],[-84.58831,37.99893],[-84.58897,37.99974],[-84.58929,37.99998],[-84.59015,38.00063],[-84.59213,38.00194],[-84.59381,38.00354],[-84.59525,38.00442],[-84.59732,38.00525],[-84.60097,38.00823],[-84.60148,38.00844],[-84.60228,38.00854],[-84.6025,38.00875],[-84.59539,38.01784],[-84.59198,38.02412],[-84.59115,38.02561],[-84.59192,38.0253],[-84.59213,38.02524],[-84.59278,38.02518],[-84.59386,38.02531],[-84.59884,38.02694],[-84.60245,38.02705],[-84.60334,38.02707],[-84.60355,38.02707],[-84.60505,38.02696],[-84.60549,38.02692],[-84.60588,38.02687],[-84.60682,38.02675],[-84.61269,38.02657],[-84.61521,38.02565],[-84.61598,38.02556],[-84.61613,38.02558],[-84.61706,38.0259],[-84.61762,38.02595],[-84.61893,38.02562],[-84.62,38.02517],[-84.62022,38.02521],[-84.62057,38.02553],[-84.6211,38.02529],[-84.62531,38.02342],[-84.62647,38.02283],[-84.62729,38.02209],[-84.62808,38.02101],[-84.62941,38.01957],[-84.63037,38.01905],[-84.6359,38.02081],[-84.63752,38.02135],[-84.63995,38.01633],[-84.64181,38.0123],[-84.66446,38.02029],[-84.66558,38.0207],[-84.66902,38.02196],[-84.66894,38.02214],[-84.66902,38.02196],[-84.66938,38.0193],[-84.66942,38.01895],[-84.66951,38.01337],[-84.6688,38.00941],[-84.67963,38.00978],[-84.69257,38.01438],[-84.70189,38.01818],[-84.70406,38.01973],[-84.70941,38.0248],[-84.71104,38.02605],[-84.71235,38.02668],[-84.71316,38.02682],[-84.71396,38.02672],[-84.71837,38.02567],[-84.71964,38.02519],[-84.72014,38.02465],[-84.72145,38.02301],[-84.72203,38.02267],[-84.72299,38.02245],[-84.72445,38.02981],[-84.72464,38.03258],[-84.72484,38.03187],[-84.72526,38.0317],[-84.72794,38.03191],[-84.73511,38.03418],[-84.74439,38.03788],[-84.74473,38.03784],[-84.74506,38.03796],[-84.74516,38.03816],[-84.74724,38.039],[-84.75355,38.04067],[-84.75365,38.04042],[-84.7554,38.0409],[-84.75647,38.04153],[-84.75718,38.04238],[-84.75776,38.04371],[-84.7589,38.04691],[-84.7589,38.04744],[-84.75982189,38.04771932],[-84.75741863,38.0493077],[-84.75428581,38.05468091],[-84.75222588,38.05437677],[-84.75132465,38.05468091],[-84.74935055,38.05444436],[-84.7501,38.05459],[-84.75036,38.05465],[-84.75133,38.05484],[-84.75337,38.05527],[-84.75386,38.05538],[-84.75711,38.05607],[-84.75846,38.05636],[-84.76079,38.05696],[-84.76457,38.05824],[-84.76478,38.05834],[-84.77064,38.0612],[-84.77553,38.06376],[-84.77725,38.06468],[-84.7816,38.06709],[-84.78302,38.06776],[-84.78645,38.06898],[-84.78919,38.06963],[-84.79,38.06982],[-84.79872,38.07187],[-84.80219,38.07309],[-84.80242,38.07319],[-84.80802,38.07603],[-84.8085,38.07625],[-84.80873,38.07636],[-84.81122,38.07756],[-84.81226,38.07839],[-84.81299,38.07997],[-84.81369,38.08253],[-84.81405,38.08295],[-84.816,38.08338],[-84.81707,38.08375],[-84.81897,38.08382],[-84.81987,38.08422],[-84.82026,38.08425],[-84.82088,38.08385],[-84.8213,38.08376],[-84.82199,38.08392],[-84.82224,38.08385],[-84.82233,38.08363],[-84.8221,38.083],[-84.82255,38.08256],[-84.82317,38.08254],[-84.82398,38.08291],[-84.82475,38.08297],[-84.82527,38.08298],[-84.82532,38.08298],[-84.82539,38.08304],[-84.8254,38.08306],[-84.82543,38.08336],[-84.82543,38.08358],[-84.82549,38.08533],[-84.826,38.08717],[-84.82619,38.08761],[-84.82772,38.09075],[-84.82869,38.09181],[-84.83005,38.09411],[-84.83058,38.09526],[-84.83073,38.09549],[-84.83276,38.09856],[-84.83372,38.09953],[-84.83552,38.10096],[-84.83542,38.10115],[-84.83484,38.1014],[-84.83295,38.10159],[-84.83248,38.10188],[-84.83236,38.10216],[-84.83269,38.10409],[-84.83271,38.10427],[-84.83283,38.10611],[-84.83443,38.11009],[-84.8351,38.11048],[-84.83776,38.11114],[-84.83849,38.11176],[-84.83856,38.11191],[-84.84101,38.1193],[-84.84106,38.11946],[-84.84086,38.11951],[-84.84048,38.11959],[-84.83982,38.11974],[-84.83814,38.12013],[-84.83716,38.12036],[-84.83589,38.12065],[-84.8358,38.12067],[-84.83461,38.12088],[-84.83448,38.12086],[-84.83441,38.12083],[-84.83431,38.12079],[-84.83388,38.12057],[-84.83349,38.12036],[-84.83322,38.12025],[-84.83305,38.1202],[-84.83288,38.12016],[-84.83273,38.12014],[-84.8325,38.12013],[-84.83212,38.12016],[-84.83181,38.1202],[-84.83096,38.12024],[-84.83037,38.12015],[-84.82978,38.12001],[-84.82964,38.11995],[-84.82928,38.11979],[-84.82883,38.11957],[-84.82873,38.11953],[-84.82842,38.11941],[-84.82815,38.11933],[-84.82764,38.11929],[-84.8265,38.11951],[-84.82647,38.11939],[-84.8265,38.11951],[-84.8269,38.1205],[-84.82697,38.12065],[-84.82735,38.1219],[-84.82736,38.12207],[-84.82736,38.12244],[-84.82721,38.12293],[-84.82697,38.12319],[-84.82556,38.12399],[-84.82507,38.12424],[-84.82444,38.12455],[-84.82394,38.1248],[-84.82362,38.12493],[-84.82316,38.12509],[-84.82303,38.12516],[-84.82296,38.12521],[-84.82286,38.12546],[-84.82287,38.12556],[-84.82293,38.12577],[-84.82326,38.12694],[-84.82331,38.12711],[-84.82339,38.12741],[-84.8234,38.12746],[-84.82341,38.12773],[-84.82327,38.12828],[-84.82319,38.12848],[-84.82312,38.12914],[-84.82384,38.13054],[-84.82389,38.13065],[-84.82406,38.13136],[-84.82397,38.13195],[-84.82303,38.13367],[-84.82301,38.13371],[-84.82295,38.1338],[-84.82286,38.13396],[-84.82271,38.13417],[-84.82215,38.13478],[-84.82206,38.13489],[-84.82193,38.13512],[-84.82183,38.13536],[-84.8218,38.13565],[-84.82182,38.13583],[-84.82188,38.13623],[-84.82199,38.13665],[-84.82246,38.13792],[-84.8227,38.13842],[-84.82281,38.13859],[-84.82298,38.13881],[-84.82316,38.139],[-84.82384,38.13959],[-84.82403,38.13977],[-84.82419,38.1399],[-84.82439,38.14004],[-84.82455,38.14014],[-84.82477,38.14025],[-84.82501,38.14036],[-84.82747,38.14131],[-84.82875,38.14129],[-84.82919,38.14144],[-84.83113,38.14344],[-84.83209,38.14423],[-84.83228,38.14454],[-84.83238,38.14501],[-84.83218,38.14601],[-84.83235,38.14809],[-84.8327,38.14873],[-84.83325,38.14917],[-84.83409,38.14952],[-84.83494,38.14955],[-84.83563,38.14938],[-84.83575,38.14956],[-84.83676,38.151],[-84.83575,38.14956],[-84.83563,38.14938],[-84.83494,38.14955],[-84.83409,38.14952],[-84.83325,38.14917],[-84.8327,38.14873],[-84.83235,38.14809],[-84.83218,38.14601],[-84.83238,38.14501],[-84.83228,38.14454],[-84.83209,38.14423],[-84.83113,38.14344],[-84.82919,38.14144],[-84.82875,38.14129],[-84.82747,38.14131],[-84.82501,38.14036],[-84.82419,38.1412],[-84.8238,38.14221],[-84.82363,38.14312],[-84.82256,38.1444],[-84.82201,38.14491],[-84.82168,38.14526],[-84.82053,38.14632],[-84.82037,38.14648],[-84.82032,38.14654],[-84.8202,38.14671],[-84.8201,38.14694],[-84.81965,38.14793],[-84.81956,38.14813],[-84.81944,38.14856],[-84.81934,38.14878],[-84.81879,38.14941],[-84.81873,38.14948],[-84.8184,38.14987],[-84.81828,38.15007],[-84.8182,38.15032],[-84.81822,38.15068],[-84.81826,38.15094],[-84.81827,38.15101],[-84.81828,38.15122],[-84.81824,38.1516],[-84.8184,38.15305],[-84.81846,38.1535],[-84.81854,38.155],[-84.81676,38.15853],[-84.81648,38.15914],[-84.81628,38.15957],[-84.8162,38.15973],[-84.81613,38.15988],[-84.81571,38.16071],[-84.81569,38.16076],[-84.81565,38.16092],[-84.81565,38.16103],[-84.81567,38.1611],[-84.81572,38.16122],[-84.817,38.1628],[-84.81765,38.16358],[-84.81782,38.1638],[-84.81792,38.16429],[-84.81757,38.16532],[-84.81737,38.16574],[-84.81635,38.16689],[-84.81604,38.16734],[-84.81583,38.16763],[-84.81519,38.1685],[-84.81487,38.16893],[-84.81445,38.16941],[-84.81415,38.1696],[-84.814,38.16967],[-84.81289,38.16981],[-84.81264,38.16977],[-84.8113,38.16965],[-84.80999,38.16986],[-84.8079,38.16474],[-84.80776,38.16475],[-84.80696,38.16479],[-84.80666,38.1648],[-84.80437,38.16484],[-84.80255,38.16483],[-84.79734,38.1634],[-84.79563,38.16293],[-84.79534,38.16285],[-84.79483,38.16278],[-84.79466,38.16278],[-84.79449,38.16279],[-84.79422,38.16279],[-84.79413,38.16278],[-84.79361,38.16265],[-84.79306,38.16249],[-84.79094,38.16189],[-84.78834,38.16294],[-84.78802,38.16308],[-84.78524,38.1643],[-84.78437,38.16443],[-84.78406,38.16445],[-84.78386,38.16444],[-84.78379,38.16441],[-84.78377,38.1644],[-84.78371,38.16434],[-84.78345,38.16395],[-84.7833,38.16366],[-84.78327,38.16359],[-84.78292,38.16306],[-84.78221,38.16217],[-84.78204,38.16189],[-84.78181,38.16153],[-84.78141,38.16083],[-84.78097,38.16006],[-84.78058,38.1597],[-84.78019,38.15947],[-84.77916,38.15892],[-84.77849,38.15854],[-84.77655,38.15746],[-84.77535,38.15677],[-84.77436,38.15611],[-84.77389,38.15587],[-84.77377,38.15584],[-84.77367,38.15583],[-84.77294,38.15595],[-84.77245,38.15601],[-84.77231,38.15599],[-84.77188,38.15577],[-84.77165,38.15529],[-84.77171,38.15451],[-84.77164,38.15428],[-84.7715,38.15414],[-84.7702,38.15321],[-84.7696,38.1528],[-84.76916,38.15249],[-84.76879,38.15223],[-84.76814,38.15179],[-84.76511,38.14975],[-84.76376,38.14883],[-84.7615,38.1473],[-84.75994,38.14622],[-84.7598,38.14611],[-84.75957,38.14592],[-84.75785,38.14456],[-84.75727,38.14423],[-84.75521,38.14322],[-84.75255,38.14226],[-84.75213,38.1421],[-84.75149,38.14187],[-84.75111,38.14173],[-84.73942,38.13762],[-84.72893,38.1336],[-84.72737,38.13302],[-84.71458,38.12832],[-84.70518,38.12528],[-84.69676,38.12211],[-84.69583,38.12176],[-84.69507,38.12149],[-84.69366,38.12099],[-84.69058,38.11984],[-84.68952,38.11943],[-84.68931,38.11936],[-84.68737,38.11862],[-84.68651,38.11833],[-84.68344,38.11728],[-84.68832,38.10786],[-84.69224,38.10091],[-84.68707,38.09712],[-84.68676,38.09599],[-84.68472,38.09292],[-84.68713,38.09163],[-84.68777,38.09111],[-84.69543,38.08206],[-84.69944,38.07489],[-84.6995,38.0748],[-84.70002,38.07404],[-84.69873,38.07375],[-84.69822,38.07366],[-84.69529,38.07309],[-84.69496,38.07302],[-84.69195,38.07239],[-84.69161,38.07232],[-84.68939,38.07184],[-84.68902,38.07176],[-84.68861,38.07167],[-84.68845,38.07163],[-84.68287,38.07047],[-84.68264,38.07206],[-84.68243,38.07219],[-84.68218,38.07216],[-84.68146,38.07202],[-84.68005,38.07171],[-84.6797,38.07164],[-84.67658,38.07099],[-84.67639,38.07094],[-84.6762,38.0709],[-84.67418,38.07048],[-84.67389,38.06993],[-84.67188,38.06817],[-84.67025,38.06775],[-84.66995,38.06835],[-84.66981,38.0686],[-84.66967,38.06883],[-84.66955,38.06907],[-84.66916,38.06978],[-84.6691,38.06987],[-84.66902,38.06995],[-84.66224,38.0748],[-84.65794,38.07787],[-84.65756,38.07815],[-84.65722,38.07839],[-84.65581,38.07909],[-84.65412,38.0792],[-84.65272,38.0797],[-84.65177,38.08003],[-84.64901,38.08104],[-84.64829,38.08119],[-84.64801,38.08122],[-84.64772,38.08124],[-84.64695,38.08132],[-84.64628,38.0814],[-84.64463,38.08157],[-84.64255,38.08213],[-84.64206,38.08217],[-84.64018,38.08076],[-84.63938,38.08035],[-84.63851,38.0819],[-84.63773,38.08203],[-84.63653,38.08215],[-84.63606,38.08218],[-84.63493,38.0823],[-84.63419,38.08241],[-84.63141,38.08349],[-84.62924,38.08433],[-84.62565,38.0858],[-84.6251,38.0848],[-84.62467,38.08406],[-84.62443,38.08361],[-84.62247,38.08008],[-84.62169,38.07883],[-84.62121,38.07801],[-84.61993,38.0757],[-84.61961,38.07513],[-84.61844,38.07309],[-84.6179,38.07211],[-84.61952,38.07153],[-84.62056,38.07182],[-84.62151,38.07194],[-84.62235,38.07183],[-84.62331,38.07147],[-84.62684,38.06838],[-84.62754,38.0679],[-84.6277,38.06774],[-84.62885,38.06601],[-84.62919,38.06473],[-84.62955,38.06398],[-84.62997,38.06393],[-84.63065,38.06328],[-84.63167,38.06275],[-84.63196,38.06265],[-84.63239,38.06259],[-84.63097,38.06129],[-84.62908,38.06033],[-84.62712,38.05949],[-84.62646,38.05908],[-84.62559,38.05818],[-84.62484,38.05781],[-84.62407,38.05755],[-84.62178,38.05678],[-84.6183,38.05558],[-84.61663,38.05503],[-84.6108,38.05304],[-84.61064,38.05334],[-84.60614204,38.05177469],[-84.60489,38.04829],[-84.60428,38.04854],[-84.60344,38.04882],[-84.60267,38.04891],[-84.60202,38.04887],[-84.60123,38.04863],[-84.59833,38.04697],[-84.59355,38.04541],[-84.59349,38.04424],[-84.59331,38.04426],[-84.59349,38.04424],[-84.59354,38.0389],[-84.5933,38.03772],[-84.59285,38.0368],[-84.59266,38.03688],[-84.59285,38.0368],[-84.59522,38.03582],[-84.59653,38.03494],[-84.59728,38.03418],[-84.59956,38.03101],[-84.60114,38.02986],[-84.60251,38.02853],[-84.60267,38.02837],[-84.60352,38.02738],[-84.60355,38.02707],[-84.60334,38.02707],[-84.60245,38.02705],[-84.59884,38.02694],[-84.59386,38.02531],[-84.59278,38.02518],[-84.59213,38.02524],[-84.59192,38.0253],[-84.59115,38.02561],[-84.59198,38.02412],[-84.59539,38.01784],[-84.6025,38.00875],[-84.60228,38.00854],[-84.60148,38.00844],[-84.60097,38.00823],[-84.59732,38.00525],[-84.59525,38.00442],[-84.59381,38.00354],[-84.59213,38.00194],[-84.59015,38.00063],[-84.58929,37.99998],[-84.58897,37.99974],[-84.58831,37.99893],[-84.58785,37.99835],[-84.58661,37.99678]]}},
{"type":"Feature","properties":{"name":"Masterson 24"},"geometry":{"type":"LineString","coordinates":[[-84.55348,38.10637],[-84.55341,38.10637],[-84.55298,38.10638],[-84.55215,38.10637],[-84.55071,38.10638],[-84.54952,38.10639],[-84.54823,38.1064],[-84.54684,38.10641],[-84.54669,38.10657],[-84.54668,38.10671],[-84.54668,38.10716],[-84.54669,38.10778],[-84.5467,38.10803],[-84.54655,38.10851],[-84.54598,38.10888],[-84.54593,38.10891],[-84.54589,38.10893],[-84.54584,38.10897],[-84.54561,38.10925],[-84.54542,38.10954],[-84.54516,38.10995],[-84.5449,38.11032],[-84.54419,38.11061],[-84.54409,38.11065],[-84.54385,38.11078],[-84.54379,38.11082],[-84.54373,38.11087],[-84.54371,38.1109],[-84.54365,38.11122],[-84.54436,38.11108],[-84.54699,38.11055],[-84.54753,38.11045],[-84.54803,38.11045],[-84.54969,38.11096],[-84.54994,38.111],[-84.55177,38.11135],[-84.55205,38.11141],[-84.55294,38.11158],[-84.55464,38.1119],[-84.55655,38.11226],[-84.55723,38.1124],[-84.55817,38.11294],[-84.55991,38.11385],[-84.56047,38.11421],[-84.56016,38.11525],[-84.56016,38.11532],[-84.56022,38.11542],[-84.56026,38.11547],[-84.56041,38.11556],[-84.56164,38.1162],[-84.56222,38.11652],[-84.5642,38.11752],[-84.56488,38.11787],[-84.56569,38.11829],[-84.56714,38.11904],[-84.56854,38.11977],[-84.56874,38.11987],[-84.57329,38.12219],[-84.57394,38.12143],[-84.5748,38.1204],[-84.57529,38.11983],[-84.57624,38.11871],[-84.57726,38.11751],[-84.57776,38.11691],[-84.57805,38.11652],[-84.57823,38.1163],[-84.57873,38.11565],[-84.57948,38.1147],[-84.58026,38.11372],[-84.58153,38.11213],[-84.58206,38.11145],[-84.58493,38.10777],[-84.58702,38.10506],[-84.58991,38.10135],[-84.59037,38.10008],[-84.59085,38.09871],[-84.59103,38.09834],[-84.59152,38.09798],[-84.5929,38.09705],[-84.59482,38.09577],[-84.5971,38.09426],[-84.59816,38.0934],[-84.59877,38.0929],[-84.59934,38.09243],[-84.59972,38.09212],[-84.60139,38.09075],[-84.60015,38.09014],[-84.59898,38.08958],[-84.59724,38.08881],[-84.59556,38.08813],[-84.59016,38.0867],[-84.59044,38.08651],[-84.59346,38.08449],[-84.59443,38.08384],[-84.59872,38.0811],[-84.6002,38.08016],[-84.60095,38.07969],[-84.60129,38.0795],[-84.6032,38.07848],[-84.60513,38.07743],[-84.60646,38.07672],[-84.60675,38.07685],[-84.6073,38.07739],[-84.6081,38.07775],[-84.60839,38.07773],[-84.60905,38.07728],[-84.60943,38.07702],[-84.61219,38.07511],[-84.6134,38.07431],[-84.6141,38.07381],[-84.61486,38.07331],[-84.6179,38.07211],[-84.61844,38.07309],[-84.61961,38.07513],[-84.61993,38.0757],[-84.62121,38.07801],[-84.62169,38.07883],[-84.62247,38.08008],[-84.62443,38.08361],[-84.62467,38.08406],[-84.6251,38.0848],[-84.62565,38.0858],[-84.62924,38.08433],[-84.63141,38.08349],[-84.63419,38.08241],[-84.63493,38.0823],[-84.63606,38.08218],[-84.63653,38.08215],[-84.63773,38.08203],[-84.63851,38.0819],[-84.63938,38.08035],[-84.64018,38.08076],[-84.64206,38.08217],[-84.64255,38.08213],[-84.64463,38.08157],[-84.64628,38.0814],[-84.64695,38.08132],[-84.64772,38.08124],[-84.64801,38.08122],[-84.64829,38.08119],[-84.64901,38.08104],[-84.65177,38.08003],[-84.65272,38.0797],[-84.65412,38.0792],[-84.65581,38.07909],[-84.65722,38.07839],[-84.65756,38.07815],[-84.65794,38.07787],[-84.66224,38.0748],[-84.66243,38.07504],[-84.66248,38.07513],[-84.66278,38.07558],[-84.66287,38.07573],[-84.66307,38.07602],[-84.66384,38.07723],[-84.66389,38.07958],[-84.6639,38.08008],[-84.66391,38.08029],[-84.66392,38.08093],[-84.66392,38.08116],[-84.66394,38.08177],[-84.66394,38.08196],[-84.66387,38.08317],[-84.6626,38.08562],[-84.66253,38.08574],[-84.6615,38.08756],[-84.66113,38.08811],[-84.66105,38.08825],[-84.66056,38.08898],[-84.65954,38.09053],[-84.65946,38.09066],[-84.65937,38.09079],[-84.65908,38.09121],[-84.65901,38.09129],[-84.65771,38.09261],[-84.6574,38.09292],[-84.65645,38.09385],[-84.65547,38.09456],[-84.65555,38.09601],[-84.65556,38.09614],[-84.6551,38.09718],[-84.65488,38.09759],[-84.6548,38.09774],[-84.65381,38.09959],[-84.65343,38.1003],[-84.65334,38.10047],[-84.65296,38.10118],[-84.65282,38.10145],[-84.65184,38.1033],[-84.65151,38.10392],[-84.65093,38.10501],[-84.6507,38.10496],[-84.65043,38.10491],[-84.64924,38.10672],[-84.64917,38.10683],[-84.6491,38.10694],[-84.64878,38.10743],[-84.6479,38.10875],[-84.64767,38.1091],[-84.6468,38.11042],[-84.64673,38.11053],[-84.64664,38.11067],[-84.64654,38.11082],[-84.64645,38.11096],[-84.64408,38.11456],[-84.64344,38.11553],[-84.64301,38.11609],[-84.64269,38.11669],[-84.64261,38.11686],[-84.6424,38.11746],[-84.64233,38.11767],[-84.64185,38.1191],[-84.64059,38.12026],[-84.64011,38.12127],[-84.64002,38.12146],[-84.63937,38.1229],[-84.63923,38.12322],[-84.639,38.1237],[-84.63887,38.12398],[-84.63863,38.12451],[-84.63864,38.12498],[-84.63867,38.12517],[-84.63871,38.1257],[-84.63819,38.12598],[-84.63796,38.12629],[-84.63845,38.12735],[-84.6385,38.12753],[-84.63852,38.12802],[-84.63814,38.12793],[-84.63791,38.12788],[-84.63768,38.12783],[-84.63752,38.1278],[-84.63718,38.12781],[-84.63697,38.12802],[-84.63647,38.12875],[-84.63639,38.12896],[-84.6356,38.13135],[-84.63557,38.1315],[-84.63482,38.13366],[-84.63476,38.13376],[-84.63453,38.13427],[-84.63369,38.13514],[-84.63361,38.13521],[-84.63355,38.13527],[-84.63324,38.13556],[-84.63262,38.13524],[-84.63211,38.1355],[-84.62957,38.13674],[-84.62872,38.13717],[-84.62805,38.13755],[-84.62673,38.13898],[-84.62606,38.13973],[-84.62558,38.14025],[-84.62534,38.14051],[-84.6251,38.14077],[-84.62485,38.14104],[-84.62436,38.14156],[-84.62389,38.14206],[-84.62382,38.14213],[-84.62306,38.14295],[-84.6228,38.14324],[-84.62265,38.1434],[-84.62249,38.14357],[-84.62202,38.14407],[-84.62118,38.14496],[-84.62065,38.14553],[-84.61979,38.14644],[-84.61904,38.14723],[-84.61835,38.14796],[-84.61796,38.14837],[-84.61727,38.1491],[-84.61697,38.14949],[-84.61689,38.14961],[-84.61677,38.14981],[-84.61673,38.14989],[-84.61663,38.14985],[-84.61657,38.14984],[-84.61615,38.14978],[-84.61609,38.14977],[-84.61603,38.14975],[-84.61595,38.14972],[-84.61587,38.14969],[-84.6157,38.1496],[-84.61226,38.14777],[-84.61031,38.14672],[-84.60853,38.14577],[-84.60732,38.14513],[-84.60617,38.14453],[-84.60539,38.14411],[-84.60437,38.14356],[-84.60373,38.14322],[-84.60288,38.14277],[-84.60212,38.14237],[-84.60166,38.14213],[-84.60092,38.14173],[-84.59948,38.14097],[-84.599,38.14072],[-84.59856,38.1405],[-84.59672,38.1395],[-84.59554,38.13887],[-84.59513,38.13867],[-84.59416,38.13816],[-84.59168,38.13681],[-84.59144,38.13668],[-84.59076,38.1363],[-84.58982,38.13579],[-84.58904,38.13538],[-84.58722,38.1344],[-84.58569,38.1336],[-84.5851,38.13327],[-84.58466,38.13302],[-84.58441,38.13287],[-84.58447,38.13272],[-84.58451,38.13246],[-84.58452,38.13222],[-84.58462,38.13106],[-84.58466,38.13066],[-84.58498,38.12929],[-84.58518,38.12841],[-84.5857,38.12631],[-84.58491,38.12528],[-84.58408,38.12424],[-84.58363,38.12362],[-84.58177,38.12109],[-84.57905,38.11741],[-84.5787,38.11692],[-84.57823,38.1163],[-84.57805,38.11652],[-84.57776,38.11691],[-84.57726,38.11751],[-84.57624,38.11871],[-84.57529,38.11983],[-84.5748,38.1204],[-84.57394,38.12143],[-84.57329,38.12219],[-84.56874,38.11987],[-84.56854,38.11977],[-84.56714,38.11904],[-84.56569,38.11829],[-84.56488,38.11787],[-84.5642,38.11752],[-84.56222,38.11652],[-84.56164,38.1162],[-84.56041,38.11556],[-84.56026,38.11547],[-84.56022,38.11542],[-84.56016,38.11532],[-84.56016,38.11525],[-84.56047,38.11421],[-84.55991,38.11385],[-84.55817,38.11294],[-84.55723,38.1124],[-84.55655,38.11226],[-84.55464,38.1119],[-84.55294,38.11158],[-84.55205,38.11141],[-84.55177,38.11135],[-84.54994,38.111],[-84.54969,38.11096],[-84.54803,38.11045],[-84.54753,38.11045],[-84.54699,38.11055],[-84.54436,38.11108],[-84.54365,38.11122],[-84.54371,38.1109],[-84.54373,38.11087],[-84.54379,38.11082],[-84.54385,38.11078],[-84.54409,38.11065],[-84.54419,38.11061],[-84.5449,38.11032],[-84.54516,38.10995],[-84.54542,38.10954],[-84.54561,38.10925],[-84.54584,38.10897],[-84.54589,38.10893],[-84.54593,38.10891],[-84.54598,38.10888],[-84.54655,38.10851],[-84.5467,38.10803],[-84.54669,38.10778],[-84.54668,38.10716],[-84.54668,38.10671],[-84.54669,38.10657],[-84.54684,38.10641],[-84.54823,38.1064],[-84.54952,38.10639],[-84.55071,38.10638],[-84.55215,38.10637],[-84.55298,38.10638],[-84.55336,38.10637]]}},
{"type":"Feature","properties":{"name":"Masterson C 21 mile"},"geometry":{"type":"LineString","coordinates":[[-84.55375,38.10637],[-84.55341,38.10637],[-84.55298,38.10638],[-84.55215,38.10637],[-84.55071,38.10638],[-84.54952,38.10639],[-84.54823,38.1064],[-84.54684,38.10641],[-84.54669,38.10657],[-84.54668,38.10671],[-84.54668,38.10716],[-84.54669,38.10778],[-84.5467,38.10803],[-84.54655,38.10851],[-84.54598,38.10888],[-84.54593,38.10891],[-84.54589,38.10893],[-84.54584,38.10897],[-84.54561,38.10925],[-84.54542,38.10954],[-84.54516,38.10995],[-84.5449,38.11032],[-84.54419,38.11061],[-84.54409,38.11065],[-84.54385,38.11078],[-84.54379,38.11082],[-84.54373,38.11087],[-84.54371,38.1109],[-84.54365,38.11122],[-84.54436,38.11108],[-84.54699,38.11055],[-84.54753,38.11045],[-84.54803,38.11045],[-84.54969,38.11096],[-84.54994,38.111],[-84.55177,38.11135],[-84.55205,38.11141],[-84.55294,38.11158],[-84.55464,38.1119],[-84.55655,38.11226],[-84.55723,38.1124],[-84.55817,38.11294],[-84.55991,38.11385],[-84.56047,38.11421],[-84.56016,38.11525],[-84.56016,38.11532],[-84.56022,38.11542],[-84.56026,38.11547],[-84.56041,38.11556],[-84.56164,38.1162],[-84.56222,38.11652],[-84.5642,38.11752],[-84.56488,38.11787],[-84.56569,38.11829],[-84.56714,38.11904],[-84.56854,38.11977],[-84.56874,38.11987],[-84.57329,38.12219],[-84.573,38.12311],[-84.57241,38.12494],[-84.57229,38.12534],[-84.572,38.12636],[-84.5718,38.12711],[-84.57176,38.12729],[-84.57235,38.12816],[-84.57247,38.12925],[-84.57256,38.13014],[-84.57257,38.13035],[-84.57255,38.13043],[-84.57252,38.1305],[-84.57216,38.13112],[-84.57183,38.13165],[-84.57129,38.13255],[-84.57089,38.13327],[-84.57107,38.13462],[-84.56995,38.13553],[-84.56928,38.13605],[-84.56871,38.1365],[-84.56884,38.1366],[-84.56898,38.13673],[-84.56905,38.13685],[-84.56909,38.13691],[-84.56921,38.13734],[-84.56923,38.13752],[-84.56938,38.13827],[-84.56977,38.13874],[-84.57099,38.13965],[-84.57186,38.14031],[-84.5736,38.14162],[-84.57404,38.14183],[-84.57475,38.1418],[-84.57541,38.14123],[-84.5773,38.13899],[-84.57889,38.13711],[-84.57959,38.13627],[-84.57996,38.13585],[-84.58108,38.13448],[-84.58176,38.13368],[-84.58238,38.13295],[-84.58276,38.1325],[-84.58296,38.13231],[-84.58322,38.13228],[-84.58328,38.1323],[-84.58348,38.13238],[-84.58373,38.13251],[-84.58441,38.13287],[-84.58466,38.13302],[-84.5851,38.13327],[-84.58569,38.1336],[-84.58722,38.1344],[-84.58904,38.13538],[-84.58982,38.13579],[-84.59076,38.1363],[-84.59144,38.13668],[-84.59168,38.13681],[-84.59416,38.13816],[-84.59513,38.13867],[-84.59554,38.13887],[-84.59672,38.1395],[-84.59856,38.1405],[-84.599,38.14072],[-84.59948,38.14097],[-84.60092,38.14173],[-84.60166,38.14213],[-84.60212,38.14237],[-84.60288,38.14277],[-84.60373,38.14322],[-84.60437,38.14356],[-84.60539,38.14411],[-84.60617,38.14453],[-84.60732,38.14513],[-84.60853,38.14577],[-84.61031,38.14672],[-84.61226,38.14777],[-84.6157,38.1496],[-84.61587,38.14969],[-84.61595,38.14972],[-84.61603,38.14975],[-84.61609,38.14977],[-84.61615,38.14978],[-84.61657,38.14984],[-84.61663,38.14985],[-84.61673,38.14989],[-84.61677,38.14981],[-84.61685,38.14984],[-84.61689,38.14985],[-84.61695,38.14987],[-84.61738,38.14994],[-84.61743,38.14995],[-84.61756,38.14999],[-84.61765,38.15004],[-84.61776,38.1501],[-84.61793,38.15019],[-84.61867,38.15062],[-84.62051,38.15163],[-84.62183,38.15238],[-84.6225,38.15283],[-84.62319,38.15329],[-84.62393,38.15381],[-84.62479,38.15449],[-84.62572,38.15538],[-84.62964,38.15906],[-84.63249,38.15905],[-84.63283,38.15904],[-84.63309,38.15903],[-84.63334,38.15902],[-84.63359,38.15902],[-84.63409,38.15901],[-84.63434,38.159],[-84.63644,38.15894],[-84.63669,38.15892],[-84.63804,38.15887],[-84.63838,38.15885],[-84.63853,38.15885],[-84.63889,38.15885],[-84.63926,38.15897],[-84.63935,38.15902],[-84.64041,38.15955],[-84.64076,38.15973],[-84.64202,38.16032],[-84.64347,38.16068],[-84.64487,38.1594],[-84.6451,38.15929],[-84.64522,38.15923],[-84.6459,38.15905],[-84.64868,38.15882],[-84.64979,38.15892],[-84.65088,38.15918],[-84.65146,38.15918],[-84.65207,38.159],[-84.65246,38.15863],[-84.65254,38.15814],[-84.65195,38.15557],[-84.65202,38.1541],[-84.65247,38.15216],[-84.65228,38.15045],[-84.65273,38.14754],[-84.65352,38.14646],[-84.65273,38.14754],[-84.65228,38.15045],[-84.65247,38.15216],[-84.65202,38.1541],[-84.65195,38.15557],[-84.65254,38.15814],[-84.65246,38.15863],[-84.65207,38.159],[-84.65146,38.15918],[-84.65088,38.15918],[-84.64979,38.15892],[-84.64868,38.15882],[-84.6459,38.15905],[-84.64522,38.15923],[-84.6451,38.15929],[-84.64487,38.1594],[-84.64347,38.16068],[-84.64202,38.16032],[-84.64076,38.15973],[-84.64041,38.15955],[-84.63935,38.15902],[-84.63926,38.15897],[-84.63889,38.15885],[-84.63853,38.15885],[-84.63838,38.15885],[-84.63804,38.15887],[-84.63669,38.15892],[-84.63644,38.15894],[-84.63434,38.159],[-84.63409,38.15901],[-84.63359,38.15902],[-84.63334,38.15902],[-84.63309,38.15903],[-84.63283,38.15904],[-84.63249,38.15905],[-84.62964,38.15906],[-84.62572,38.15538],[-84.62479,38.15449],[-84.62393,38.15381],[-84.62319,38.15329],[-84.6225,38.15283],[-84.62183,38.15238],[-84.62051,38.15163],[-84.61867,38.15062],[-84.61793,38.15019],[-84.61776,38.1501],[-84.61765,38.15004],[-84.61756,38.14999],[-84.61743,38.14995],[-84.61738,38.14994],[-84.61695,38.14987],[-84.61689,38.14985],[-84.61685,38.14984],[-84.61677,38.14981],[-84.61673,38.14989],[-84.61663,38.14985],[-84.61657,38.14984],[-84.61615,38.14978],[-84.61609,38.14977],[-84.61603,38.14975],[-84.61595,38.14972],[-84.61587,38.14969],[-84.6157,38.1496],[-84.61226,38.14777],[-84.61031,38.14672],[-84.60853,38.14577],[-84.60732,38.14513],[-84.60617,38.14453],[-84.60539,38.14411],[-84.60437,38.14356],[-84.60373,38.14322],[-84.60288,38.14277],[-84.60212,38.14237],[-84.60166,38.14213],[-84.60092,38.14173],[-84.59948,38.14097],[-84.599,38.14072],[-84.59856,38.1405],[-84.59672,38.1395],[-84.59554,38.13887],[-84.59513,38.13867],[-84.59416,38.13816],[-84.59168,38.13681],[-84.59144,38.13668],[-84.59076,38.1363],[-84.58982,38.13579],[-84.58904,38.13538],[-84.58722,38.1344],[-84.58569,38.1336],[-84.5851,38.13327],[-84.58466,38.13302],[-84.58441,38.13287],[-84.58447,38.13272],[-84.58451,38.13246],[-84.58452,38.13222],[-84.58462,38.13106],[-84.58466,38.13066],[-84.58498,38.12929],[-84.58518,38.12841],[-84.5857,38.12631],[-84.58491,38.12528],[-84.58408,38.12424],[-84.58363,38.12362],[-84.58177,38.12109],[-84.57905,38.11741],[-84.5787,38.11692],[-84.57823,38.1163],[-84.57805,38.11652],[-84.57776,38.11691],[-84.57726,38.11751],[-84.57624,38.11871],[-84.57529,38.11983],[-84.5748,38.1204],[-84.57394,38.12143],[-84.57329,38.12219],[-84.56874,38.11987],[-84.56854,38.11977],[-84.56714,38.11904],[-84.56569,38.11829],[-84.56488,38.11787],[-84.5642,38.11752],[-84.56222,38.11652],[-84.56164,38.1162],[-84.56041,38.11556],[-84.56026,38.11547],[-84.56022,38.11542],[-84.56016,38.11532],[-84.56016,38.11525],[-84.56047,38.11421],[-84.55991,38.11385],[-84.55817,38.11294],[-84.55723,38.1124],[-84.55655,38.11226],[-84.55464,38.1119],[-84.55294,38.11158],[-84.55205,38.11141],[-84.55177,38.11135],[-84.54994,38.111],[-84.54969,38.11096],[-84.54803,38.11045],[-84.54753,38.11045],[-84.54699,38.11055],[-84.54436,38.11108],[-84.54365,38.11122],[-84.54371,38.1109],[-84.54373,38.11087],[-84.54379,38.11082],[-84.54385,38.11078],[-84.54409,38.11065],[-84.54419,38.11061],[-84.5449,38.11032],[-84.54516,38.10995],[-84.54542,38.10954],[-84.54561,38.10925],[-84.54584,38.10897],[-84.54589,38.10893],[-84.54593,38.10891],[-84.54598,38.10888],[-84.54655,38.10851],[-84.5467,38.10803],[-84.54669,38.10778],[-84.54668,38.10716],[-84.54668,38.10671],[-84.54669,38.10657],[-84.54684,38.10641],[-84.54823,38.1064],[-84.54952,38.10639],[-84.55071,38.10638],[-84.55215,38.10637],[-84.55298,38.10638],[-84.55341,38.10637],[-84.5537,38.10637]]}},
{"type":"Feature","properties":{"name":"Cori's BBQ 29 Mile"},"geometry":{"type":"LineString","coordinates":[[-84.40472,38.01805],[-84.40468,38.01801],[-84.40466,38.01799],[-84.40464,38.01797],[-84.40463,38.01795],[-84.40462,38.0179],[-84.4047,38.01724],[-84.4047,38.01721],[-84.40462,38.01678],[-84.40453,38.01645],[-84.40356,38.01665],[-84.40351,38.01653],[-84.40338,38.0163],[-84.40331,38.01621],[-84.4032,38.01608],[-84.40299,38.01587],[-84.4014,38.01492],[-84.39907,38.01403],[-84.39883,38.01392],[-84.39796,38.01334],[-84.39738,38.01265],[-84.39721,38.01237],[-84.39706,38.01193],[-84.39703,38.0118],[-84.39695,38.01091],[-84.39699,38.00968],[-84.39701,38.00949],[-84.3974,38.00758],[-84.39764,38.00684],[-84.39793,38.00589],[-84.39811,38.00526],[-84.39821,38.00457],[-84.39819,38.00426],[-84.39815,38.00396],[-84.39802,38.00346],[-84.3978,38.00295],[-84.39765,38.0027],[-84.39662,38.001],[-84.39581,38.00004],[-84.39576,38.00008],[-84.39468,38.00094],[-84.39397,38.00151],[-84.39278,38.00256],[-84.39264,38.00269],[-84.39237,38.00297],[-84.39218,38.00316],[-84.39185,38.00351],[-84.39173,38.00363],[-84.39166,38.0037],[-84.39152,38.00385],[-84.39133,38.00404],[-84.39107,38.00431],[-84.38969,38.00557],[-84.38929,38.0059],[-84.38842,38.00668],[-84.38785,38.0072],[-84.38754,38.00749],[-84.38741,38.00766],[-84.38722,38.00819],[-84.3872,38.0083],[-84.38724,38.00862],[-84.38725,38.00866],[-84.38727,38.00869],[-84.38729,38.00873],[-84.38736,38.00881],[-84.38731,38.00885],[-84.38727,38.00888],[-84.38725,38.00893],[-84.38726,38.00899],[-84.3873,38.00908],[-84.38734,38.0092],[-84.38734,38.00927],[-84.38721,38.0093],[-84.38716,38.00932],[-84.38711,38.00935],[-84.38705,38.00941],[-84.387,38.00946],[-84.38686,38.0098],[-84.38676,38.01021],[-84.38673,38.01031],[-84.3866,38.01049],[-84.38631,38.01074],[-84.38596,38.01112],[-84.3856,38.01155],[-84.385,38.01229],[-84.38462,38.0127],[-84.38346,38.01384],[-84.38254,38.01479],[-84.38204,38.01529],[-84.3813,38.01613],[-84.38075,38.0167],[-84.38016,38.01732],[-84.37971,38.01769],[-84.37843,38.01861],[-84.37633,38.02015],[-84.37491,38.02119],[-84.37419,38.02172],[-84.37359,38.02217],[-84.37292,38.02266],[-84.37286,38.02269],[-84.37279,38.02271],[-84.37236,38.02246],[-84.37207,38.0225],[-84.37162,38.02283],[-84.37058,38.02362],[-84.36854,38.0251],[-84.36578,38.02711],[-84.3651,38.02762],[-84.36421,38.02825],[-84.36266,38.02937],[-84.36218,38.02973],[-84.36206,38.0298],[-84.36193,38.02987],[-84.36162,38.0298],[-84.36152,38.02977],[-84.36001,38.02961],[-84.35983,38.02961],[-84.35714,38.02968],[-84.35695,38.02968],[-84.35632,38.02967],[-84.3563,38.02984],[-84.35628,38.03001],[-84.35625,38.03074],[-84.35621,38.03135],[-84.35605,38.03371],[-84.35568,38.03609],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34945,38.06663],[-84.34918,38.06676],[-84.34908,38.06681],[-84.34898,38.06684],[-84.34887,38.06688],[-84.34873,38.0669],[-84.34629,38.06724],[-84.34526,38.06738],[-84.34027,38.06808],[-84.33963,38.06817],[-84.33616,38.06865],[-84.33411,38.06894],[-84.33348,38.06903],[-84.33178,38.06927],[-84.33103,38.06937],[-84.33116,38.07006],[-84.33125,38.0705],[-84.33198,38.0739],[-84.33251,38.07436],[-84.33384,38.07477],[-84.33402,38.0751],[-84.33395,38.07541],[-84.33369,38.07613],[-84.33306,38.07769],[-84.33291,38.07821],[-84.33277,38.0784],[-84.33268,38.0785],[-84.33226,38.0789],[-84.33159,38.07954],[-84.33051,38.08032],[-84.32765,38.08084],[-84.32656,38.08119],[-84.32333,38.08231],[-84.32098,38.08352],[-84.31672,38.08786],[-84.31649,38.08835],[-84.31625,38.08963],[-84.31646,38.09122],[-84.31648,38.09149],[-84.31623,38.09401],[-84.31618,38.09432],[-84.31587,38.0974],[-84.31587,38.09894],[-84.31587,38.09952],[-84.31593,38.10298],[-84.31593,38.10311],[-84.31593,38.10507],[-84.31566,38.10774],[-84.31558,38.10866],[-84.31553,38.1092],[-84.31486,38.10919],[-84.31359,38.10917],[-84.31316,38.10917],[-84.31223,38.10929],[-84.30651,38.11086],[-84.30254,38.11339],[-84.29739,38.11528],[-84.29729,38.11541],[-84.29736,38.11644],[-84.29727,38.11644],[-84.29692,38.11641],[-84.29642,38.11638],[-84.29596,38.11635],[-84.2957,38.11634],[-84.2953,38.11632],[-84.29068,38.11606],[-84.28786,38.11576],[-84.28588,38.11508],[-84.28014,38.11398],[-84.27119,38.11316],[-84.26223,38.11264],[-84.26134,38.11245],[-84.26138,38.11158],[-84.2614,38.11112],[-84.26141,38.11097],[-84.26167,38.10999],[-84.26494,38.10366],[-84.26559,38.10238],[-84.26575,38.10207],[-84.2673,38.09901],[-84.26771,38.0954],[-84.26782,38.09416],[-84.26783,38.09399],[-84.26784,38.09381],[-84.26865,38.08514],[-84.26923,38.08515],[-84.26928,38.08516],[-84.26938,38.08516],[-84.26999,38.08516],[-84.273,38.08514],[-84.27632,38.08454],[-84.27745,38.08431],[-84.28124,38.08362],[-84.28239,38.08357],[-84.28869,38.08326],[-84.29001,38.08319],[-84.29659,38.08288],[-84.29794,38.08272],[-84.29912,38.0822],[-84.30122,38.08042],[-84.30172,38.07999],[-84.30387,38.07818],[-84.30593,38.07653],[-84.30671,38.07592],[-84.30702,38.07582],[-84.31239,38.07557],[-84.31275,38.07546],[-84.31296,38.07535],[-84.31705,38.07307],[-84.31785,38.07255],[-84.3199,38.07128],[-84.32025,38.0711],[-84.32146,38.07069],[-84.32337,38.0704],[-84.32485,38.07018],[-84.32657,38.07001],[-84.32767,38.06985],[-84.32999,38.06952],[-84.33103,38.06937],[-84.33178,38.06927],[-84.33348,38.06903],[-84.33411,38.06894],[-84.33616,38.06865],[-84.33963,38.06817],[-84.34027,38.06808],[-84.34526,38.06738],[-84.34629,38.06724],[-84.34873,38.0669],[-84.34887,38.06688],[-84.34898,38.06684],[-84.34908,38.06681],[-84.34918,38.06676],[-84.34945,38.06663],[-84.34978,38.06658],[-84.34975,38.06636],[-84.34986,38.06614],[-84.3501,38.06572],[-84.35029,38.06536],[-84.35139,38.06341],[-84.35159,38.06305],[-84.35187,38.06255],[-84.35203,38.06226],[-84.35216,38.062],[-84.35239,38.06162],[-84.35256,38.06132],[-84.35294,38.06041],[-84.3531,38.05749],[-84.35312,38.05718],[-84.35324,38.05421],[-84.35328,38.05354],[-84.35334,38.05273],[-84.35335,38.05251],[-84.35338,38.05159],[-84.3534,38.05122],[-84.35366,38.0462],[-84.35397,38.04461],[-84.35419,38.04355],[-84.35545,38.03719],[-84.35568,38.03609],[-84.35605,38.03371],[-84.35621,38.03135],[-84.35625,38.03074],[-84.35628,38.03001],[-84.3563,38.02984],[-84.35632,38.02967],[-84.35695,38.02968],[-84.35714,38.02968],[-84.35983,38.02961],[-84.36001,38.02961],[-84.36152,38.02977],[-84.36162,38.0298],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38734,38.0092],[-84.3873,38.00908],[-84.38726,38.00899],[-84.38725,38.00893],[-84.38727,38.00888],[-84.38731,38.00885],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39618,38.00074],[-84.3965,38.00126],[-84.39768,38.00321],[-84.39795,38.00426],[-84.39796,38.00449],[-84.39797,38.00476],[-84.39795,38.00492],[-84.39772,38.00579],[-84.39713,38.00764],[-84.39685,38.00882],[-84.39672,38.01051],[-84.39672,38.01084],[-84.39672,38.01088],[-84.39674,38.01122],[-84.39693,38.01221],[-84.39701,38.01244],[-84.39764,38.01334],[-84.39803,38.01367],[-84.39937,38.01435],[-84.39988,38.01454],[-84.40003,38.0146],[-84.40042,38.01473],[-84.40119,38.01499],[-84.40175,38.01528],[-84.40264,38.01579],[-84.40318,38.01632],[-84.40324,38.01641],[-84.40328,38.01648],[-84.40339,38.01669],[-84.40356,38.01665],[-84.40453,38.01645],[-84.40462,38.01678],[-84.4047,38.01721],[-84.4047,38.01724],[-84.40462,38.0179],[-84.40463,38.01795],[-84.40464,38.01797],[-84.40466,38.01799],[-84.40468,38.01801],[-84.40472,38.01805]]}},
{"type":"Feature","properties":{"name":"Cori's BBQ 48 Mile"},"geometry":{"type":"LineString","coordinates":[[-84.40468,38.01801],[-84.40466,38.01799],[-84.40464,38.01797],[-84.40463,38.01795],[-84.40462,38.0179],[-84.4047,38.01724],[-84.4047,38.01721],[-84.40462,38.01678],[-84.40453,38.01645],[-84.40356,38.01665],[-84.40351,38.01653],[-84.40338,38.0163],[-84.40331,38.01621],[-84.4032,38.01608],[-84.40299,38.01587],[-84.4014,38.01492],[-84.39907,38.01403],[-84.39883,38.01392],[-84.39796,38.01334],[-84.39738,38.01265],[-84.39721,38.01237],[-84.39706,38.01193],[-84.39703,38.0118],[-84.39695,38.01091],[-84.39699,38.00968],[-84.39701,38.00949],[-84.3974,38.00758],[-84.39764,38.00684],[-84.39793,38.00589],[-84.39811,38.00526],[-84.39821,38.00457],[-84.39819,38.00426],[-84.39815,38.00396],[-84.39802,38.00346],[-84.3978,38.00295],[-84.39765,38.0027],[-84.39662,38.001],[-84.39581,38.00004],[-84.39576,38.00008],[-84.39468,38.00094],[-84.39397,38.00151],[-84.39278,38.00256],[-84.39264,38.00269],[-84.39237,38.00297],[-84.39218,38.00316],[-84.39185,38.00351],[-84.39173,38.00363],[-84.39166,38.0037],[-84.39152,38.00385],[-84.39133,38.00404],[-84.39107,38.00431],[-84.38969,38.00557],[-84.38929,38.0059],[-84.38842,38.00668],[-84.38785,38.0072],[-84.38754,38.00749],[-84.38741,38.00766],[-84.38722,38.00819],[-84.3872,38.0083],[-84.38724,38.00862],[-84.38725,38.00866],[-84.38727,38.00869],[-84.38729,38.00873],[-84.38736,38.00881],[-84.38731,38.00885],[-84.38727,38.00888],[-84.38725,38.00893],[-84.38726,38.00899],[-84.3873,38.00908],[-84.38734,38.0092],[-84.38734,38.00927],[-84.38721,38.0093],[-84.38716,38.00932],[-84.38711,38.00935],[-84.38705,38.00941],[-84.387,38.00946],[-84.38686,38.0098],[-84.38676,38.01021],[-84.38673,38.01031],[-84.3866,38.01049],[-84.38631,38.01074],[-84.38596,38.01112],[-84.3856,38.01155],[-84.385,38.01229],[-84.38462,38.0127],[-84.38346,38.01384],[-84.38254,38.01479],[-84.38204,38.01529],[-84.3813,38.01613],[-84.38075,38.0167],[-84.38016,38.01732],[-84.37971,38.01769],[-84.37843,38.01861],[-84.37633,38.02015],[-84.37491,38.02119],[-84.37419,38.02172],[-84.37359,38.02217],[-84.37292,38.02266],[-84.37286,38.02269],[-84.37279,38.02271],[-84.37236,38.02246],[-84.37207,38.0225],[-84.37162,38.02283],[-84.37058,38.02362],[-84.36854,38.0251],[-84.36578,38.02711],[-84.3651,38.02762],[-84.36421,38.02825],[-84.36266,38.02937],[-84.36218,38.02973],[-84.36206,38.0298],[-84.36193,38.02987],[-84.36162,38.0298],[-84.36152,38.02977],[-84.36001,38.02961],[-84.35983,38.02961],[-84.35714,38.02968],[-84.35695,38.02968],[-84.35632,38.02967],[-84.3563,38.02984],[-84.35628,38.03001],[-84.35625,38.03074],[-84.35621,38.03135],[-84.35605,38.03371],[-84.35568,38.03609],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34945,38.06663],[-84.34918,38.06676],[-84.34908,38.06681],[-84.34898,38.06684],[-84.34887,38.06688],[-84.34873,38.0669],[-84.34629,38.06724],[-84.34526,38.06738],[-84.34027,38.06808],[-84.33963,38.06817],[-84.33616,38.06865],[-84.33411,38.06894],[-84.33348,38.06903],[-84.33178,38.06927],[-84.33103,38.06937],[-84.32999,38.06952],[-84.32767,38.06985],[-84.32657,38.07001],[-84.32485,38.07018],[-84.32337,38.0704],[-84.32146,38.07069],[-84.32025,38.0711],[-84.3199,38.07128],[-84.31785,38.07255],[-84.31705,38.07307],[-84.31296,38.07535],[-84.31275,38.07546],[-84.31239,38.07557],[-84.30702,38.07582],[-84.30671,38.07592],[-84.30593,38.07653],[-84.30387,38.07818],[-84.30172,38.07999],[-84.30122,38.08042],[-84.29912,38.0822],[-84.29794,38.08272],[-84.29659,38.08288],[-84.29001,38.08319],[-84.28869,38.08326],[-84.28239,38.08357],[-84.28124,38.08362],[-84.27745,38.08431],[-84.27632,38.08454],[-84.273,38.08514],[-84.26999,38.08516],[-84.26938,38.08516],[-84.26928,38.08516],[-84.26923,38.08515],[-84.26865,38.08514],[-84.26866,38.08506],[-84.26868,38.08485],[-84.26871,38.08447],[-84.27188,38.05386],[-84.27158,38.05384],[-84.27124,38.05382],[-84.26601,38.05353],[-84.26526,38.05333],[-84.26455,38.05351],[-84.25762,38.0533],[-84.24806,38.05265],[-84.24709,38.05221],[-84.24311,38.04982],[-84.24235,38.04966],[-84.20928,38.04833],[-84.2081,38.04827],[-84.20812,38.04787],[-84.20878,38.04113],[-84.21072,38.02612],[-84.21076,38.02526],[-84.21045,38.02261],[-84.21037,38.02175],[-84.21013,38.01943],[-84.21133,38.01622],[-84.21133,38.01548],[-84.21173,38.01508],[-84.21193,38.01458],[-84.21179,38.01395],[-84.21241,38.01386],[-84.21408,38.01354],[-84.21477,38.01358],[-84.21882,38.01488],[-84.22425,38.01694],[-84.22912,38.01915],[-84.24104,38.02523],[-84.25108,38.03014],[-84.25463,38.03162],[-84.25833,38.0328],[-84.26186,38.03362],[-84.27213,38.03511],[-84.27328,38.03534],[-84.27332,38.03522],[-84.27341,38.03494],[-84.27446,38.03172],[-84.27446,38.03104],[-84.27417,38.03022],[-84.27294,38.02873],[-84.27216,38.02624],[-84.27121,38.02595],[-84.27062,38.02577],[-84.27093,38.02508],[-84.2711,38.02473],[-84.27567,38.01659],[-84.27518,38.01373],[-84.27617,38.01106],[-84.27548,38.00774],[-84.27445,38.00631],[-84.26848,38.0041],[-84.27138,37.99846],[-84.27026,37.99809],[-84.26626,37.99684],[-84.26473,37.99597],[-84.26244,37.9956],[-84.26084,37.99509],[-84.26019,37.99468],[-84.26035,37.99452],[-84.26054,37.99426],[-84.26104,37.99354],[-84.26315,37.9905],[-84.26713,37.98304],[-84.2743,37.97072],[-84.27695,37.9659],[-84.27737,37.96605],[-84.27835,37.96637],[-84.27893,37.96655],[-84.27893,37.96625],[-84.27896,37.96556],[-84.27899,37.96514],[-84.27946,37.95862],[-84.2796,37.95865],[-84.27968,37.95867],[-84.28033,37.95888],[-84.28438,37.96013],[-84.28657,37.95937],[-84.28689,37.95624],[-84.2883,37.95352],[-84.29729,37.95173],[-84.29776,37.94537],[-84.30234,37.94539],[-84.30446,37.94312],[-84.30556,37.94239],[-84.3092,37.94244],[-84.31026,37.93549],[-84.31046,37.93524],[-84.31062,37.93515],[-84.31158,37.93463],[-84.31181,37.93462],[-84.31218,37.93463],[-84.31339,37.93459],[-84.32416,37.9344],[-84.32579,37.93428],[-84.3281,37.93412],[-84.32881,37.93391],[-84.33201,37.93218],[-84.33422,37.93158],[-84.33777,37.93119],[-84.33795,37.93119],[-84.33937,37.93136],[-84.33947,37.93139],[-84.34034,37.93208],[-84.34108,37.93241],[-84.3414,37.9336],[-84.34132,37.93503],[-84.34152,37.93549],[-84.34284,37.9357],[-84.34386,37.93561],[-84.34519,37.93625],[-84.34534,37.93629],[-84.34551,37.93632],[-84.34682,37.93648],[-84.34733,37.93666],[-84.34914,37.93821],[-84.35025,37.9393],[-84.35243,37.94169],[-84.35406,37.94338],[-84.35457,37.94381],[-84.35688,37.9452],[-84.36232,37.94815],[-84.36325,37.9487],[-84.36443,37.94937],[-84.36388,37.95001],[-84.36331,37.95073],[-84.36394,37.95107],[-84.36398,37.95121],[-84.36398,37.95125],[-84.36399,37.9515],[-84.364,37.95231],[-84.36404,37.95409],[-84.36406,37.95545],[-84.36407,37.95666],[-84.36453,37.96485],[-84.36428,37.96525],[-84.36297,37.96641],[-84.3626,37.96721],[-84.36253,37.9682],[-84.36293,37.96961],[-84.36488,37.97301],[-84.365,37.97328],[-84.36513,37.97383],[-84.36477,37.97524],[-84.36472,37.9765],[-84.36482,37.98285],[-84.3635,37.98638],[-84.36257,37.98829],[-84.36207,37.98927],[-84.3608,37.99184],[-84.35997,37.99422],[-84.36,37.9975],[-84.35972,37.99973],[-84.3595,38.00123],[-84.35932,38.00246],[-84.35916,38.00365],[-84.35918,38.00484],[-84.35947,38.00676],[-84.35981,38.00898],[-84.35969,38.01135],[-84.35914,38.0149],[-84.35783,38.02015],[-84.35725,38.02336],[-84.35664,38.02568],[-84.35648,38.02629],[-84.35639,38.027],[-84.3564,38.02848],[-84.35632,38.02967],[-84.35695,38.02968],[-84.35714,38.02968],[-84.35983,38.02961],[-84.36001,38.02961],[-84.36152,38.02977],[-84.36162,38.0298],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38734,38.0092],[-84.3873,38.00908],[-84.38726,38.00899],[-84.38725,38.00893],[-84.38727,38.00888],[-84.38731,38.00885],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39618,38.00074],[-84.3965,38.00126],[-84.39768,38.00321],[-84.39795,38.00426],[-84.39796,38.00449],[-84.39797,38.00476],[-84.39795,38.00492],[-84.39772,38.00579],[-84.39713,38.00764],[-84.39685,38.00882],[-84.39672,38.01051],[-84.39672,38.01084],[-84.39672,38.01088],[-84.39674,38.01122],[-84.39693,38.01221],[-84.39701,38.01244],[-84.39764,38.01334],[-84.39803,38.01367],[-84.39937,38.01435],[-84.39988,38.01454],[-84.40003,38.0146],[-84.40042,38.01473],[-84.40119,38.01499],[-84.40175,38.01528],[-84.40264,38.01579],[-84.40318,38.01632],[-84.40324,38.01641],[-84.40328,38.01648],[-84.40339,38.01669],[-84.40356,38.01665],[-84.40453,38.01645],[-84.40462,38.01678],[-84.4047,38.01721],[-84.4047,38.01724],[-84.40462,38.0179],[-84.40463,38.01795],[-84.40464,38.01797],[-84.40466,38.01799],[-84.40468,38.01801]]}},
{"type":"Feature","properties":{"name":"Interdiction 42 miler"},"geometry":{"type":"LineString","coordinates":[[-84.38705,38.00941],[-84.387,38.00946],[-84.38686,38.0098],[-84.38676,38.01021],[-84.38673,38.01031],[-84.3866,38.01049],[-84.38631,38.01074],[-84.38596,38.01112],[-84.3856,38.01155],[-84.385,38.01229],[-84.38462,38.0127],[-84.38346,38.01384],[-84.38254,38.01479],[-84.38204,38.01529],[-84.3813,38.01613],[-84.38075,38.0167],[-84.38016,38.01732],[-84.37971,38.01769],[-84.37843,38.01861],[-84.37633,38.02015],[-84.37491,38.02119],[-84.37419,38.02172],[-84.37359,38.02217],[-84.37292,38.02266],[-84.37286,38.02269],[-84.37279,38.02271],[-84.37236,38.02246],[-84.37207,38.0225],[-84.37162,38.02283],[-84.37058,38.02362],[-84.36854,38.0251],[-84.36578,38.02711],[-84.3651,38.02762],[-84.36421,38.02825],[-84.36266,38.02937],[-84.36218,38.02973],[-84.36206,38.0298],[-84.36193,38.02987],[-84.36162,38.0298],[-84.36152,38.02977],[-84.36001,38.02961],[-84.35983,38.02961],[-84.35714,38.02968],[-84.35695,38.02968],[-84.35632,38.02967],[-84.3563,38.02984],[-84.35628,38.03001],[-84.35625,38.03074],[-84.35621,38.03135],[-84.35605,38.03371],[-84.35568,38.03609],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34945,38.06663],[-84.34918,38.06676],[-84.34908,38.06681],[-84.34898,38.06684],[-84.34887,38.06688],[-84.34873,38.0669],[-84.34629,38.06724],[-84.34526,38.06738],[-84.34027,38.06808],[-84.33963,38.06817],[-84.33616,38.06865],[-84.33411,38.06894],[-84.33348,38.06903],[-84.33178,38.06927],[-84.33103,38.06937],[-84.32999,38.06952],[-84.32767,38.06985],[-84.32657,38.07001],[-84.32485,38.07018],[-84.32337,38.0704],[-84.32146,38.07069],[-84.32025,38.0711],[-84.3199,38.07128],[-84.31785,38.07255],[-84.31705,38.07307],[-84.31296,38.07535],[-84.31275,38.07546],[-84.31239,38.07557],[-84.30702,38.07582],[-84.30671,38.07592],[-84.30593,38.07653],[-84.30387,38.07818],[-84.30172,38.07999],[-84.30122,38.08042],[-84.29912,38.0822],[-84.29794,38.08272],[-84.29659,38.08288],[-84.29001,38.08319],[-84.28869,38.08326],[-84.28239,38.08357],[-84.28124,38.08362],[-84.27745,38.08431],[-84.27632,38.08454],[-84.273,38.08514],[-84.26999,38.08516],[-84.26938,38.08516],[-84.26928,38.08516],[-84.26923,38.08515],[-84.26865,38.08514],[-84.26866,38.08506],[-84.26868,38.08485],[-84.26871,38.08447],[-84.27188,38.05386],[-84.27158,38.05384],[-84.27124,38.05382],[-84.26601,38.05353],[-84.26526,38.05333],[-84.26455,38.05351],[-84.25762,38.0533],[-84.24806,38.05265],[-84.24709,38.05221],[-84.24311,38.04982],[-84.24235,38.04966],[-84.20928,38.04833],[-84.2081,38.04827],[-84.20812,38.04787],[-84.20878,38.04113],[-84.21072,38.02612],[-84.21076,38.02526],[-84.21045,38.02261],[-84.21037,38.02175],[-84.21013,38.01943],[-84.21133,38.01622],[-84.21133,38.01548],[-84.21173,38.01508],[-84.21193,38.01458],[-84.21179,38.01395],[-84.21241,38.01386],[-84.21408,38.01354],[-84.21477,38.01358],[-84.21882,38.01488],[-84.22425,38.01694],[-84.22912,38.01915],[-84.24104,38.02523],[-84.25108,38.03014],[-84.25463,38.03162],[-84.25833,38.0328],[-84.26186,38.03362],[-84.27213,38.03511],[-84.27328,38.03534],[-84.27332,38.03522],[-84.27341,38.03494],[-84.27446,38.03172],[-84.27446,38.03104],[-84.27417,38.03022],[-84.27294,38.02873],[-84.27216,38.02624],[-84.27121,38.02595],[-84.27062,38.02577],[-84.27093,38.02508],[-84.2711,38.02473],[-84.27567,38.01659],[-84.27518,38.01373],[-84.27617,38.01106],[-84.27548,38.00774],[-84.27445,38.00631],[-84.26848,38.0041],[-84.27138,37.99846],[-84.27026,37.99809],[-84.26626,37.99684],[-84.26473,37.99597],[-84.26244,37.9956],[-84.26084,37.99509],[-84.26019,37.99468],[-84.26035,37.99452],[-84.26054,37.99426],[-84.26104,37.99354],[-84.26315,37.9905],[-84.26713,37.98304],[-84.2743,37.97072],[-84.27695,37.9659],[-84.27737,37.96605],[-84.27835,37.96637],[-84.27893,37.96655],[-84.27893,37.96625],[-84.27896,37.96556],[-84.27899,37.96514],[-84.27946,37.95862],[-84.2796,37.95865],[-84.27968,37.95867],[-84.28033,37.95888],[-84.28438,37.96013],[-84.28657,37.95937],[-84.28689,37.95624],[-84.2883,37.95352],[-84.29729,37.95173],[-84.29776,37.94537],[-84.30234,37.94539],[-84.30446,37.94312],[-84.30556,37.94239],[-84.3092,37.94244],[-84.31026,37.93549],[-84.31046,37.93524],[-84.31062,37.93515],[-84.31158,37.93463],[-84.31181,37.93462],[-84.31218,37.93463],[-84.31339,37.93459],[-84.32416,37.9344],[-84.32579,37.93428],[-84.3281,37.93412],[-84.32881,37.93391],[-84.33201,37.93218],[-84.33422,37.93158],[-84.33777,37.93119],[-84.33795,37.93119],[-84.33937,37.93136],[-84.33947,37.93139],[-84.34034,37.93208],[-84.34108,37.93241],[-84.3414,37.9336],[-84.34132,37.93503],[-84.34152,37.93549],[-84.34284,37.9357],[-84.34386,37.93561],[-84.34519,37.93625],[-84.34534,37.93629],[-84.34551,37.93632],[-84.34682,37.93648],[-84.34733,37.93666],[-84.34914,37.93821],[-84.35025,37.9393],[-84.35243,37.94169],[-84.35406,37.94338],[-84.35457,37.94381],[-84.35688,37.9452],[-84.36232,37.94815],[-84.36325,37.9487],[-84.36443,37.94937],[-84.36388,37.95001],[-84.36331,37.95073],[-84.36394,37.95107],[-84.36398,37.95121],[-84.36398,37.95125],[-84.36399,37.9515],[-84.364,37.95231],[-84.36404,37.95409],[-84.36406,37.95545],[-84.36407,37.95666],[-84.36453,37.96485],[-84.36428,37.96525],[-84.36297,37.96641],[-84.3626,37.96721],[-84.36253,37.9682],[-84.36293,37.96961],[-84.36488,37.97301],[-84.365,37.97328],[-84.36513,37.97383],[-84.36477,37.97524],[-84.36472,37.9765],[-84.36482,37.98285],[-84.3635,37.98638],[-84.36257,37.98829],[-84.36207,37.98927],[-84.3608,37.99184],[-84.35997,37.99422],[-84.36,37.9975],[-84.35972,37.99973],[-84.3595,38.00123],[-84.35932,38.00246],[-84.35916,38.00365],[-84.35918,38.00484],[-84.35947,38.00676],[-84.35981,38.00898],[-84.35969,38.01135],[-84.35914,38.0149],[-84.35783,38.02015],[-84.35725,38.02336],[-84.35664,38.02568],[-84.35648,38.02629],[-84.35639,38.027],[-84.3564,38.02848],[-84.35632,38.02967],[-84.35695,38.02968],[-84.35714,38.02968],[-84.35983,38.02961],[-84.36001,38.02961],[-84.36152,38.02977],[-84.36162,38.0298],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38751,38.00927]]}},
{"type":"Feature","properties":{"name":"Labor Day B Route 2013"},"geometry":{"type":"LineString","coordinates":[[-84.41667,37.98549],[-84.41677,37.98549],[-84.41696,37.98555],[-84.4171,37.98564],[-84.41722,37.98591],[-84.41683,37.98644],[-84.41689,37.98666],[-84.41926,37.98766],[-84.42038,37.98811],[-84.4212,37.98839],[-84.42199,37.9883],[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42581,37.98423],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42449,37.97724],[-84.42433,37.97672],[-84.42415,37.97614],[-84.42377,37.97489],[-84.42293,37.97218],[-84.42222,37.96992],[-84.4218,37.96909],[-84.42145,37.96848],[-84.42089,37.96755],[-84.41807,37.96275],[-84.41724,37.96138],[-84.41664,37.96036],[-84.41582,37.95899],[-84.41578,37.9589],[-84.41066,37.94726],[-84.40787,37.94285],[-84.40653,37.9407],[-84.40573,37.93964],[-84.40549,37.93942],[-84.40536,37.93932],[-84.40502,37.93908],[-84.40096,37.93652],[-84.38446,37.9318],[-84.38105,37.93],[-84.37961,37.92923],[-84.37281,37.92535],[-84.36921,37.92427],[-84.36892,37.92417],[-84.36803,37.92365],[-84.36732,37.92277],[-84.36517,37.91661],[-84.36476,37.91583],[-84.36367,37.91447],[-84.35928,37.90989],[-84.35924,37.90984],[-84.35928,37.90989],[-84.35881,37.91016],[-84.35814,37.91061],[-84.35704,37.91172],[-84.35697,37.91337],[-84.35468,37.91934],[-84.3527,37.92252],[-84.34937,37.92476],[-84.34909,37.92512],[-84.34859,37.92535],[-84.34445,37.92633],[-84.34305,37.92682],[-84.34272,37.92718],[-84.34268,37.92759],[-84.34308,37.9281],[-84.34373,37.92846],[-84.34376,37.92871],[-84.34332,37.92926],[-84.34166,37.9305],[-84.34148,37.93082],[-84.34147,37.93089],[-84.34234,37.93212],[-84.34481,37.93442],[-84.34519,37.93625],[-84.34534,37.93629],[-84.34551,37.93632],[-84.34682,37.93648],[-84.34733,37.93666],[-84.34914,37.93821],[-84.35025,37.9393],[-84.35243,37.94169],[-84.35406,37.94338],[-84.35457,37.94381],[-84.35688,37.9452],[-84.36232,37.94815],[-84.36325,37.9487],[-84.36443,37.94937],[-84.36388,37.95001],[-84.36331,37.95073],[-84.36394,37.95107],[-84.36398,37.95121],[-84.36398,37.95125],[-84.36399,37.9515],[-84.364,37.95231],[-84.36404,37.95409],[-84.36406,37.95545],[-84.36407,37.95666],[-84.36453,37.96485],[-84.36428,37.96525],[-84.36297,37.96641],[-84.3626,37.96721],[-84.36253,37.9682],[-84.36293,37.96961],[-84.36488,37.97301],[-84.365,37.97328],[-84.36513,37.97383],[-84.36477,37.97524],[-84.36472,37.9765],[-84.36482,37.98285],[-84.3635,37.98638],[-84.36257,37.98829],[-84.36207,37.98927],[-84.3608,37.99184],[-84.35997,37.99422],[-84.36,37.9975],[-84.35972,37.99973],[-84.3595,38.00123],[-84.35932,38.00246],[-84.35916,38.00365],[-84.35918,38.00484],[-84.35947,38.00676],[-84.35981,38.00898],[-84.35969,38.01135],[-84.35914,38.0149],[-84.35783,38.02015],[-84.35725,38.02336],[-84.35664,38.02568],[-84.35648,38.02629],[-84.35639,38.027],[-84.3564,38.02848],[-84.35632,38.02967],[-84.3563,38.02984],[-84.35628,38.03001],[-84.35625,38.03074],[-84.35621,38.03135],[-84.35605,38.03371],[-84.35568,38.03609],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34991,38.06686],[-84.35031,38.0677],[-84.35111,38.06935],[-84.35156,38.07026],[-84.35337,38.07396],[-84.35357,38.07438],[-84.35382,38.07489],[-84.35426,38.07576],[-84.35433,38.0759],[-84.35674,38.07974],[-84.35741,38.08036],[-84.35894,38.0811],[-84.35918,38.08132],[-84.35923,38.0818],[-84.35899,38.08333],[-84.35769,38.08512],[-84.35757,38.08575],[-84.35759,38.08584],[-84.35777,38.08619],[-84.35839,38.08675],[-84.35934,38.08755],[-84.36061,38.08865],[-84.36132,38.08939],[-84.36672,38.09421],[-84.36837,38.09637],[-84.36853,38.09655],[-84.36979,38.09797],[-84.37142,38.09976],[-84.37429,38.10289],[-84.37551,38.10426],[-84.37679,38.10366],[-84.37803,38.10316],[-84.37865,38.10292],[-84.38275,38.10131],[-84.38848,38.09559],[-84.39382,38.09074],[-84.39436,38.09023],[-84.39533,38.0894],[-84.40034,38.08573],[-84.40498,38.08253],[-84.41033,38.07895],[-84.41319,38.07679],[-84.41334,38.0767],[-84.41364,38.0765],[-84.4137,38.07647],[-84.41364,38.0765],[-84.41334,38.0767],[-84.41319,38.07679],[-84.41226,38.07606],[-84.41175,38.07565],[-84.41101,38.07528],[-84.40918,38.07384],[-84.40761,38.07313],[-84.40703,38.0729],[-84.40617,38.07255],[-84.40206,38.07065],[-84.40001,38.06997],[-84.39757,38.06937],[-84.39728,38.06931],[-84.3964,38.06925],[-84.40087,38.06656],[-84.40382,38.06434],[-84.40303,38.06279],[-84.40231,38.06224],[-84.40103,38.06136],[-84.39906,38.06001],[-84.39805,38.05958],[-84.39398,38.05792],[-84.39201,38.0571],[-84.38916,38.0559],[-84.38879,38.05573],[-84.38799,38.05528],[-84.38722,38.05485],[-84.38577,38.05405],[-84.38527,38.05377],[-84.38467,38.05343],[-84.38366,38.05274],[-84.3835,38.05259],[-84.38075,38.05037],[-84.37928,38.04921],[-84.37866,38.04872],[-84.37706,38.04746],[-84.3767,38.04711],[-84.3763,38.04633],[-84.37034,38.0411],[-84.36897,38.03994],[-84.36814,38.03921],[-84.36629,38.03762],[-84.36434,38.03596],[-84.35993,38.03213],[-84.3596,38.03158],[-84.35984,38.03136],[-84.36004,38.03121],[-84.36056,38.03084],[-84.36096,38.03055],[-84.36169,38.03002],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38734,38.0092],[-84.3873,38.00908],[-84.38726,38.00899],[-84.38725,38.00893],[-84.38727,38.00888],[-84.38731,38.00885],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39581,38.00004],[-84.396,37.9999],[-84.39674,37.99927],[-84.39744,37.99867],[-84.39756,37.99855],[-84.39768,37.99811],[-84.39707,37.99696],[-84.39683,37.99656],[-84.39663,37.99623],[-84.3966,37.99618],[-84.39658,37.99612],[-84.39657,37.9961],[-84.39655,37.99598],[-84.39711,37.99609],[-84.39792,37.99625],[-84.39963,37.9966],[-84.39965,37.99653],[-84.39979,37.99657],[-84.40007,37.99571],[-84.40052,37.99504],[-84.40086,37.99476],[-84.40181,37.99386],[-84.40252,37.9922],[-84.40288,37.99053],[-84.40334,37.98986],[-84.40439,37.98919],[-84.40737,37.98848],[-84.40767,37.98842],[-84.40841,37.9881],[-84.40888,37.9876],[-84.40934,37.98577],[-84.40994,37.98491],[-84.41256,37.98292],[-84.41324,37.98257],[-84.41391,37.9825],[-84.41452,37.98264],[-84.41521,37.98314],[-84.41602,37.98378],[-84.41611,37.98382],[-84.41699,37.98407],[-84.41765,37.98407],[-84.41847,37.98383],[-84.41913,37.98341],[-84.41936,37.98325],[-84.41968,37.98306],[-84.41974,37.98303],[-84.42228,37.98249],[-84.42239,37.98243],[-84.42266,37.98227],[-84.42271,37.98223],[-84.42285,37.98206],[-84.42529,37.9835],[-84.42582,37.98384],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42265,37.98788],[-84.42199,37.9883],[-84.4212,37.98839],[-84.42038,37.98811],[-84.41926,37.98766],[-84.41689,37.98666],[-84.41683,37.98644],[-84.41722,37.98591],[-84.4171,37.98564],[-84.41696,37.98555],[-84.41677,37.98549],[-84.41671,37.98549]]}},
{"type":"Feature","properties":{"name":"Labor Day A Route 2013"},"geometry":{"type":"LineString","coordinates":[[-84.41665,37.98549],[-84.41677,37.98549],[-84.41696,37.98555],[-84.4171,37.98564],[-84.41722,37.98591],[-84.41683,37.98644],[-84.41689,37.98666],[-84.41926,37.98766],[-84.42038,37.98811],[-84.4212,37.98839],[-84.42199,37.9883],[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.41219,37.92652],[-84.41285,37.92531],[-84.41574,37.92013],[-84.41629,37.91923],[-84.41705,37.91792],[-84.41947,37.91373],[-84.42003,37.91279],[-84.42215,37.90947],[-84.42237,37.90889],[-84.4238,37.90707],[-84.42395,37.90687],[-84.4241,37.90666],[-84.42377,37.90648],[-84.42127,37.90525],[-84.42103,37.90508],[-84.42087,37.90498],[-84.42017,37.90465],[-84.41964,37.90439],[-84.4193,37.90422],[-84.41829,37.89795],[-84.41841,37.89677],[-84.41854,37.8953],[-84.41986,37.89459],[-84.41996,37.89219],[-84.41997,37.89139],[-84.41998,37.89068],[-84.42181,37.89057],[-84.42198,37.89056],[-84.42265,37.8904],[-84.42299,37.89018],[-84.42621,37.88558],[-84.42691,37.88459],[-84.42798,37.88319],[-84.43268,37.88048],[-84.43774,37.87422],[-84.43832,37.87351],[-84.43837,37.87346],[-84.43846,37.87337],[-84.43838,37.87321],[-84.43833,37.87306],[-84.43824,37.87278],[-84.43786,37.87213],[-84.43771,37.87185],[-84.43724,37.87102],[-84.43484,37.86911],[-84.43433,37.86825],[-84.43449,37.8677],[-84.43683,37.86436],[-84.43735,37.86306],[-84.43741,37.86291],[-84.4376,37.86195],[-84.43715,37.86017],[-84.43671,37.8597],[-84.43658,37.85925],[-84.43584,37.85815],[-84.43577,37.85682],[-84.43496,37.85631],[-84.43477,37.85604],[-84.43479,37.85518],[-84.43458,37.85436],[-84.43473,37.85409],[-84.43535,37.85368],[-84.43557,37.85241],[-84.43627,37.85169],[-84.43649,37.85086],[-84.43745,37.8503],[-84.43757,37.84961],[-84.43804,37.84892],[-84.4379,37.8486],[-84.4376,37.84844],[-84.43751,37.84842],[-84.43671,37.84826],[-84.43617,37.8476],[-84.43522,37.84687],[-84.43512,37.84682],[-84.43468,37.84714],[-84.43441,37.84718],[-84.43,37.84621],[-84.42915,37.8459],[-84.42901,37.84583],[-84.4281,37.84516],[-84.42725,37.84405],[-84.42612,37.84317],[-84.42603,37.84308],[-84.42595,37.84298],[-84.42517,37.84133],[-84.42371,37.83887],[-84.4214,37.83566],[-84.42064,37.83329],[-84.42059,37.83314],[-84.42006,37.83254],[-84.41858,37.832],[-84.41811,37.83156],[-84.41795,37.83103],[-84.41776,37.82805],[-84.41736,37.82693],[-84.41684,37.82443],[-84.41653,37.82366],[-84.41543,37.82199],[-84.41329,37.82008],[-84.41128,37.81855],[-84.40852,37.81728],[-84.40661,37.81544],[-84.40482,37.81229],[-84.39977,37.80975],[-84.39772,37.80811],[-84.39762,37.80775],[-84.39772,37.80701],[-84.39818,37.80431],[-84.39848,37.80331],[-84.39826,37.80153],[-84.3987,37.79993],[-84.39882,37.79882],[-84.39878,37.79619],[-84.39926,37.79294],[-84.39902,37.79239],[-84.39832,37.79177],[-84.39776,37.79151],[-84.39708,37.79144],[-84.39499,37.79213],[-84.39268,37.79241],[-84.39109,37.79194],[-84.39054,37.79148],[-84.39038,37.79093],[-84.39068,37.79034],[-84.39167,37.78963],[-84.39338,37.78895],[-84.39366,37.78865],[-84.39371,37.78825],[-84.39298,37.78649],[-84.39251,37.78577],[-84.39171,37.78514],[-84.39029,37.78434],[-84.38869,37.78313],[-84.38848,37.78277],[-84.38822,37.78128],[-84.38732,37.78008],[-84.38671,37.77974],[-84.38617,37.77963],[-84.38363,37.78001],[-84.3831,37.78],[-84.38238,37.77981],[-84.38199,37.77951],[-84.38196,37.77735],[-84.38103,37.7757],[-84.38079,37.77437],[-84.38095,37.77224],[-84.38035,37.77027],[-84.38038,37.76956],[-84.38077,37.76786],[-84.38067,37.76745],[-84.38032,37.76705],[-84.37966,37.76678],[-84.37892,37.76678],[-84.37167,37.76879],[-84.3708,37.76882],[-84.37007,37.76857],[-84.36956,37.76815],[-84.36839,37.76605],[-84.36782,37.76554],[-84.36733,37.76532],[-84.36522,37.76467],[-84.36298,37.76422],[-84.36077,37.76404],[-84.3583,37.76414],[-84.35805,37.76416],[-84.34762,37.76597],[-84.34193,37.76652],[-84.33574,37.7665],[-84.33326,37.76612],[-84.32889,37.76522],[-84.32545,37.76448],[-84.32282,37.76387],[-84.32152,37.76342],[-84.32028,37.76281],[-84.31837,37.7613],[-84.31813,37.76105],[-84.31417,37.75504],[-84.31295,37.75348],[-84.312,37.7515],[-84.31151,37.75099],[-84.31071,37.75061],[-84.30831,37.7499],[-84.30613,37.74946],[-84.30531,37.74937],[-84.30465,37.74945],[-84.30363,37.75007],[-84.30329,37.75033],[-84.30256,37.75092],[-84.29682,37.74846],[-84.29654,37.74834],[-84.29546,37.7479],[-84.29507,37.74774],[-84.29352,37.75004],[-84.29345,37.75015],[-84.29161,37.753],[-84.29151,37.75496],[-84.29147,37.7559],[-84.29146,37.75602],[-84.291,37.75746],[-84.28877,37.76118],[-84.28868,37.7613],[-84.28586,37.76593],[-84.28525,37.7675],[-84.28489,37.76917],[-84.28479,37.76977],[-84.28461,37.77061],[-84.28425,37.77141],[-84.27931,37.77926],[-84.2764,37.78221],[-84.27491,37.78319],[-84.27452,37.78341],[-84.27371,37.78403],[-84.27324,37.78472],[-84.27222,37.7886],[-84.27209,37.78908],[-84.26935,37.79911],[-84.26913,37.80231],[-84.26835,37.80505],[-84.26835,37.8058],[-84.26906,37.80796],[-84.26878,37.80991],[-84.26875,37.81008],[-84.26858,37.81116],[-84.26867,37.81193],[-84.27121,37.81988],[-84.27132,37.82025],[-84.27233,37.82366],[-84.27265,37.82846],[-84.27258,37.82959],[-84.27196,37.83049],[-84.27189,37.83085],[-84.27199,37.83114],[-84.27267,37.83173],[-84.27274,37.83193],[-84.27197,37.83281],[-84.27165,37.83312],[-84.26376,37.84133],[-84.26314,37.84263],[-84.26302,37.84429],[-84.26301,37.84443],[-84.26265,37.84534],[-84.26185,37.84613],[-84.25999,37.84717],[-84.25578,37.84923],[-84.25511,37.8498],[-84.25468,37.85063],[-84.25458,37.85089],[-84.2542,37.85196],[-84.2543,37.85297],[-84.25651,37.85598],[-84.25661,37.85609],[-84.26069,37.85886],[-84.26211,37.85949],[-84.26407,37.86071],[-84.26745,37.86155],[-84.27099,37.86175],[-84.27195,37.86207],[-84.27363,37.86286],[-84.27458,37.86368],[-84.27596,37.8662],[-84.27628,37.86703],[-84.27631,37.86714],[-84.27709,37.86966],[-84.27801,37.86977],[-84.27956,37.87144],[-84.28108,37.87453],[-84.28245,37.8763],[-84.28267,37.87782],[-84.28259,37.87832],[-84.28225,37.87898],[-84.28174,37.87951],[-84.28087,37.88003],[-84.28006,37.88029],[-84.27777,37.88036],[-84.27537,37.87976],[-84.27286,37.87947],[-84.27169,37.87973],[-84.27106,37.8801],[-84.27064,37.8807],[-84.27044,37.88149],[-84.27038,37.88312],[-84.27042,37.88351],[-84.2706,37.88506],[-84.27058,37.88627],[-84.26702,37.89102],[-84.26576,37.89298],[-84.26588,37.89374],[-84.26667,37.89544],[-84.26735,37.89671],[-84.26794,37.89731],[-84.26823,37.89753],[-84.26961,37.89868],[-84.26991,37.89908],[-84.2702,37.89986],[-84.27044,37.90003],[-84.27048,37.90003],[-84.27083,37.89998],[-84.27113,37.90101],[-84.27108,37.902],[-84.2708,37.90273],[-84.26945,37.90474],[-84.26918,37.90514],[-84.26863,37.90598],[-84.26847,37.90622],[-84.26816,37.90661],[-84.26792,37.90632],[-84.26777,37.9052],[-84.26808,37.90533],[-84.26863,37.90598],[-84.26902,37.90671],[-84.26876,37.9074],[-84.26841,37.90808],[-84.2681,37.90864],[-84.26742,37.91095],[-84.26717,37.91268],[-84.26716,37.91296],[-84.26716,37.9136],[-84.26719,37.91401],[-84.26744,37.91487],[-84.26847,37.91653],[-84.26904,37.91705],[-84.26995,37.91756],[-84.27187,37.91801],[-84.27288,37.91864],[-84.27394,37.91812],[-84.27628,37.91755],[-84.2768,37.91761],[-84.27684,37.91765],[-84.27719,37.91873],[-84.27752,37.91918],[-84.27819,37.91943],[-84.27981,37.91959],[-84.28044,37.92011],[-84.28072,37.9207],[-84.28092,37.92301],[-84.28127,37.92393],[-84.28141,37.92414],[-84.28208,37.92508],[-84.28281,37.92571],[-84.28787,37.92665],[-84.29171,37.92607],[-84.29425,37.9253],[-84.29662,37.92526],[-84.29715,37.92559],[-84.29904,37.92784],[-84.30523,37.93024],[-84.30811,37.9317],[-84.30934,37.93288],[-84.31032,37.93397],[-84.31158,37.93463],[-84.31181,37.93462],[-84.31218,37.93463],[-84.31339,37.93459],[-84.32416,37.9344],[-84.32579,37.93428],[-84.3281,37.93412],[-84.32881,37.93391],[-84.33201,37.93218],[-84.33422,37.93158],[-84.33777,37.93119],[-84.33795,37.93119],[-84.33937,37.93136],[-84.33947,37.93139],[-84.34034,37.93208],[-84.34108,37.93241],[-84.3414,37.9336],[-84.34132,37.93503],[-84.34152,37.93549],[-84.34284,37.9357],[-84.34386,37.93561],[-84.34519,37.93625],[-84.34534,37.93629],[-84.34551,37.93632],[-84.34682,37.93648],[-84.34733,37.93666],[-84.34914,37.93821],[-84.35025,37.9393],[-84.35243,37.94169],[-84.35406,37.94338],[-84.35457,37.94381],[-84.35688,37.9452],[-84.36232,37.94815],[-84.36325,37.9487],[-84.36443,37.94937],[-84.36554,37.94999],[-84.36673,37.95063],[-84.3671,37.95021],[-84.36718,37.95018],[-84.36895,37.95018],[-84.37362,37.95026],[-84.3772,37.95031],[-84.38041,37.95033],[-84.38148,37.95033],[-84.38262,37.95034],[-84.38658,37.95032],[-84.38995,37.9503],[-84.39109,37.95027],[-84.39213,37.95027],[-84.39626,37.95031],[-84.40425,37.95386],[-84.40737,37.95538],[-84.40882,37.95609],[-84.40941,37.95638],[-84.41507,37.95907],[-84.41514,37.95907],[-84.41534,37.95902],[-84.4156,37.95894],[-84.41578,37.9589],[-84.41582,37.95899],[-84.41664,37.96036],[-84.41724,37.96138],[-84.41807,37.96275],[-84.42089,37.96755],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42569,37.98108],[-84.42587,37.9817],[-84.42609,37.98245],[-84.42633,37.98322],[-84.42637,37.98338],[-84.4264,37.98353],[-84.42641,37.98357],[-84.42627,37.98383],[-84.42623,37.98389],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42265,37.98788],[-84.42199,37.9883],[-84.4212,37.98839],[-84.42038,37.98811],[-84.41926,37.98766],[-84.41689,37.98666],[-84.41683,37.98644],[-84.41722,37.98591],[-84.4171,37.98564],[-84.41696,37.98555],[-84.41677,37.98549],[-84.41665,37.98549]]}},
{"type":"Feature","properties":{"name":"Labor Day C Route 2013"},"geometry":{"type":"LineString","coordinates":[[-84.41696,37.98555],[-84.4171,37.98564],[-84.41722,37.98591],[-84.41683,37.98644],[-84.41689,37.98666],[-84.41926,37.98766],[-84.42038,37.98811],[-84.4212,37.98839],[-84.42199,37.9883],[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42581,37.98423],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45647,37.93536],[-84.45734,37.93489],[-84.45814,37.93438],[-84.45852,37.9341],[-84.46248,37.93111],[-84.46281,37.93087],[-84.46649,37.92875],[-84.46815,37.92687],[-84.46891,37.92599],[-84.46986,37.92488],[-84.47195,37.92263],[-84.47204,37.92304],[-84.47235,37.92408],[-84.47247,37.92451],[-84.47321,37.93021],[-84.47385,37.932],[-84.47391,37.93209],[-84.4743,37.93252],[-84.47527,37.93331],[-84.47827,37.9365],[-84.47922,37.9389],[-84.48181,37.93838],[-84.48214,37.93819],[-84.48458,37.93415],[-84.48532,37.93254],[-84.48539,37.93238],[-84.48668,37.92951],[-84.48701,37.92934],[-84.48708,37.92935],[-84.48922,37.9297],[-84.49034,37.93005],[-84.49052,37.92941],[-84.49054,37.92931],[-84.49154,37.92587],[-84.49156,37.92578],[-84.49185,37.92478],[-84.49249,37.9242],[-84.49296,37.92411],[-84.49366,37.92448],[-84.49398,37.92441],[-84.49486,37.92282],[-84.49507,37.92209],[-84.49548,37.92172],[-84.49642,37.92032],[-84.5012,37.91484],[-84.50138,37.91446],[-84.50138,37.91438],[-84.50118,37.91417],[-84.49993,37.9137],[-84.49921,37.91285],[-84.49806,37.91199],[-84.49775,37.91134],[-84.49799,37.91059],[-84.49866,37.90944],[-84.49902,37.90904],[-84.49996,37.90852],[-84.50007,37.90825],[-84.50004,37.9079],[-84.49938,37.90652],[-84.49916,37.90537],[-84.49941,37.90513],[-84.5009,37.90437],[-84.50298,37.90398],[-84.50345,37.90366],[-84.50359,37.90316],[-84.50357,37.90291],[-84.50346,37.90186],[-84.50307,37.90075],[-84.5035,37.89913],[-84.50324,37.89852],[-84.50296,37.89834],[-84.50307,37.89803],[-84.50362,37.89722],[-84.50395,37.89718],[-84.50505,37.89664],[-84.50601,37.89643],[-84.50643,37.89612],[-84.5095,37.89101],[-84.50963,37.89078],[-84.50997,37.89036],[-84.50965,37.89013],[-84.50928,37.88988],[-84.50815,37.88922],[-84.50321,37.88688],[-84.503,37.88678],[-84.50219,37.88658],[-84.50204,37.88658],[-84.50101,37.88681],[-84.49915,37.88787],[-84.49905,37.8877],[-84.49913,37.88742],[-84.49919,37.88731],[-84.49964,37.88648],[-84.49977,37.88624],[-84.5011,37.88404],[-84.50118,37.88391],[-84.50255,37.88155],[-84.50427,37.87937],[-84.50434,37.87843],[-84.50457,37.87792],[-84.50462,37.87782],[-84.5049,37.87742],[-84.50566,37.87724],[-84.50248,37.87649],[-84.50122,37.87601],[-84.50036,37.87547],[-84.49746,37.87319],[-84.49487,37.87195],[-84.49455,37.87181],[-84.49209,37.87073],[-84.49118,37.87005],[-84.48879,37.86661],[-84.48793,37.86567],[-84.48788,37.86562],[-84.48706,37.86493],[-84.48636,37.8655],[-84.48394,37.86738],[-84.48157,37.86786],[-84.47988,37.86847],[-84.47918,37.8695],[-84.4771,37.8735],[-84.47668,37.87432],[-84.47137,37.88473],[-84.4712,37.88505],[-84.4708,37.88585],[-84.47073,37.88598],[-84.47427,37.88681],[-84.47549,37.88753],[-84.47561,37.8876],[-84.47832,37.88885],[-84.48441,37.89113],[-84.48434,37.89125],[-84.48422,37.89142],[-84.48405,37.89166],[-84.48315,37.893],[-84.48035,37.89732],[-84.47506,37.90103],[-84.47166,37.90579],[-84.47067,37.90667],[-84.47054,37.90736],[-84.47012,37.90814],[-84.47017,37.90906],[-84.47463,37.91236],[-84.47468,37.91272],[-84.47447,37.91294],[-84.47416,37.91313],[-84.47349,37.91374],[-84.47103,37.91769],[-84.47047,37.91832],[-84.47022,37.91863],[-84.46939,37.91982],[-84.46931,37.91981],[-84.46939,37.91982],[-84.47123,37.91994],[-84.4717,37.92011],[-84.47193,37.92056],[-84.47194,37.92183],[-84.47195,37.92263],[-84.46986,37.92488],[-84.46891,37.92599],[-84.46815,37.92687],[-84.46649,37.92875],[-84.46281,37.93087],[-84.46248,37.93111],[-84.45852,37.9341],[-84.45814,37.93438],[-84.45734,37.93489],[-84.45647,37.93536],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44198,37.92938],[-84.4414,37.93037],[-84.44063,37.93165],[-84.44022,37.93236],[-84.43829,37.9357],[-84.43677,37.93832],[-84.43372,37.94362],[-84.43502,37.94622],[-84.43548,37.94766],[-84.43593,37.94912],[-84.43604,37.9498],[-84.43378,37.95367],[-84.43211,37.95652],[-84.43085,37.95869],[-84.42986,37.96038],[-84.42947,37.96107],[-84.42732,37.96515],[-84.42525,37.96669],[-84.42404,37.96758],[-84.42336,37.96801],[-84.42286,37.96817],[-84.4217,37.96842],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42569,37.98108],[-84.42587,37.9817],[-84.42609,37.98245],[-84.42633,37.98322],[-84.42637,37.98338],[-84.4264,37.98353],[-84.42641,37.98357],[-84.42627,37.98383],[-84.42623,37.98389],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42265,37.98788],[-84.42199,37.9883],[-84.4212,37.98839],[-84.42038,37.98811],[-84.41926,37.98766],[-84.41689,37.98666],[-84.41683,37.98644],[-84.41722,37.98591],[-84.4171,37.98564],[-84.41696,37.98555]]}},
{"type":"Feature","properties":{"name":"Labor Day Novice 2013"},"geometry":{"type":"LineString","coordinates":[[-84.41665,37.98549],[-84.41677,37.98549],[-84.41696,37.98555],[-84.4171,37.98564],[-84.41722,37.98591],[-84.41683,37.98644],[-84.41689,37.98666],[-84.41926,37.98766],[-84.42038,37.98811],[-84.4212,37.98839],[-84.42199,37.9883],[-84.42265,37.98788],[-84.42282,37.98775],[-84.42308,37.98705],[-84.42315,37.98657],[-84.42322,37.98541],[-84.42354,37.98494],[-84.42379,37.98478],[-84.42412,37.98459],[-84.42441,37.98451],[-84.42447,37.98451],[-84.42457,37.98451],[-84.42471,37.98453],[-84.42486,37.98456],[-84.4254,37.98468],[-84.42572,37.98477],[-84.42573,37.98463],[-84.42588,37.98426],[-84.42595,37.98415],[-84.4261,37.98402],[-84.42623,37.98389],[-84.42627,37.98383],[-84.42641,37.98357],[-84.4264,37.98353],[-84.42637,37.98338],[-84.42633,37.98322],[-84.42609,37.98245],[-84.42587,37.9817],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45248,37.95798],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.4126,37.92655],[-84.41219,37.92652],[-84.41213,37.92662],[-84.41152,37.92773],[-84.40837,37.93335],[-84.40573,37.93862],[-84.40546,37.93916],[-84.40536,37.93932],[-84.40549,37.93942],[-84.40573,37.93964],[-84.40653,37.9407],[-84.40787,37.94285],[-84.41066,37.94726],[-84.41578,37.9589],[-84.41582,37.95899],[-84.41664,37.96036],[-84.41724,37.96138],[-84.41807,37.96275],[-84.42089,37.96755],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42569,37.98108],[-84.42587,37.9817],[-84.42609,37.98245],[-84.42633,37.98322],[-84.42637,37.98338],[-84.4264,37.98353],[-84.42641,37.98357],[-84.42627,37.98383],[-84.42623,37.98389],[-84.4261,37.98402],[-84.42595,37.98415],[-84.42589,37.98417],[-84.42581,37.98423],[-84.4254,37.98468],[-84.42486,37.98456],[-84.42471,37.98453],[-84.42457,37.98451],[-84.42447,37.98451],[-84.42441,37.98451],[-84.42412,37.98459],[-84.42379,37.98478],[-84.42354,37.98494],[-84.42322,37.98541],[-84.42315,37.98657],[-84.42308,37.98705],[-84.42282,37.98775],[-84.42265,37.98788],[-84.42199,37.9883],[-84.4212,37.98839],[-84.42038,37.98811],[-84.41926,37.98766],[-84.41689,37.98666],[-84.41683,37.98644],[-84.41722,37.98591],[-84.4171,37.98564],[-84.41696,37.98555],[-84.41677,37.98549],[-84.41665,37.98549]]}},
{"type":"Feature","properties":{"name":"Cori's BBQ Novice"},"geometry":{"type":"LineString","coordinates":[[-84.40477,38.01807],[-84.40472,38.01805],[-84.40468,38.01801],[-84.40466,38.01799],[-84.40464,38.01797],[-84.40463,38.01795],[-84.40462,38.0179],[-84.4047,38.01724],[-84.4047,38.01721],[-84.40462,38.01678],[-84.40453,38.01645],[-84.40356,38.01665],[-84.40351,38.01653],[-84.40338,38.0163],[-84.40331,38.01621],[-84.4032,38.01608],[-84.40299,38.01587],[-84.4014,38.01492],[-84.39907,38.01403],[-84.39883,38.01392],[-84.39796,38.01334],[-84.39738,38.01265],[-84.39721,38.01237],[-84.39706,38.01193],[-84.39703,38.0118],[-84.39695,38.01091],[-84.39699,38.00968],[-84.39701,38.00949],[-84.3974,38.00758],[-84.39764,38.00684],[-84.39793,38.00589],[-84.39811,38.00526],[-84.39821,38.00457],[-84.39819,38.00426],[-84.39815,38.00396],[-84.39802,38.00346],[-84.3978,38.00295],[-84.39765,38.0027],[-84.39662,38.001],[-84.39581,38.00004],[-84.39576,38.00008],[-84.39468,38.00094],[-84.39397,38.00151],[-84.39278,38.00256],[-84.39264,38.00269],[-84.39237,38.00297],[-84.39218,38.00316],[-84.39185,38.00351],[-84.39173,38.00363],[-84.39166,38.0037],[-84.39152,38.00385],[-84.39133,38.00404],[-84.39107,38.00431],[-84.38969,38.00557],[-84.38929,38.0059],[-84.38842,38.00668],[-84.38785,38.0072],[-84.38754,38.00749],[-84.38741,38.00766],[-84.38722,38.00819],[-84.3872,38.0083],[-84.38724,38.00862],[-84.38725,38.00866],[-84.38727,38.00869],[-84.38729,38.00873],[-84.38736,38.00881],[-84.38731,38.00885],[-84.38727,38.00888],[-84.38725,38.00893],[-84.38726,38.00899],[-84.3873,38.00908],[-84.38734,38.0092],[-84.38734,38.00927],[-84.38721,38.0093],[-84.38716,38.00932],[-84.38711,38.00935],[-84.38705,38.00941],[-84.387,38.00946],[-84.38686,38.0098],[-84.38676,38.01021],[-84.38673,38.01031],[-84.3866,38.01049],[-84.38631,38.01074],[-84.38596,38.01112],[-84.3856,38.01155],[-84.385,38.01229],[-84.38462,38.0127],[-84.38346,38.01384],[-84.38254,38.01479],[-84.38204,38.01529],[-84.3813,38.01613],[-84.38075,38.0167],[-84.38016,38.01732],[-84.37971,38.01769],[-84.37843,38.01861],[-84.37633,38.02015],[-84.37491,38.02119],[-84.37419,38.02172],[-84.37359,38.02217],[-84.37292,38.02266],[-84.37286,38.02269],[-84.37279,38.02271],[-84.37236,38.02246],[-84.37207,38.0225],[-84.37162,38.02283],[-84.37058,38.02362],[-84.36854,38.0251],[-84.36578,38.02711],[-84.3651,38.02762],[-84.36421,38.02825],[-84.36266,38.02937],[-84.36218,38.02973],[-84.36206,38.0298],[-84.36193,38.02987],[-84.36169,38.03002],[-84.36096,38.03055],[-84.36056,38.03084],[-84.36004,38.03121],[-84.35984,38.03136],[-84.3596,38.03158],[-84.35993,38.03213],[-84.36434,38.03596],[-84.36629,38.03762],[-84.36814,38.03921],[-84.36897,38.03994],[-84.37034,38.0411],[-84.3763,38.04633],[-84.3767,38.04711],[-84.37706,38.04746],[-84.37866,38.04872],[-84.37928,38.04921],[-84.38075,38.05037],[-84.3835,38.05259],[-84.38366,38.05274],[-84.38467,38.05343],[-84.38527,38.05377],[-84.38577,38.05405],[-84.38722,38.05485],[-84.38799,38.05528],[-84.38879,38.05573],[-84.38916,38.0559],[-84.39201,38.0571],[-84.39398,38.05792],[-84.39201,38.0571],[-84.38916,38.0559],[-84.38879,38.05573],[-84.38799,38.05528],[-84.38722,38.05485],[-84.38577,38.05405],[-84.38527,38.05377],[-84.38467,38.05343],[-84.38366,38.05274],[-84.3835,38.05259],[-84.38075,38.05037],[-84.37928,38.04921],[-84.37866,38.04872],[-84.37706,38.04746],[-84.3767,38.04711],[-84.3763,38.04633],[-84.37034,38.0411],[-84.36897,38.03994],[-84.36814,38.03921],[-84.36629,38.03762],[-84.36434,38.03596],[-84.35993,38.03213],[-84.3596,38.03158],[-84.35984,38.03136],[-84.36004,38.03121],[-84.36056,38.03084],[-84.36096,38.03055],[-84.36169,38.03002],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38734,38.0092],[-84.3873,38.00908],[-84.38726,38.00899],[-84.38725,38.00893],[-84.38727,38.00888],[-84.38731,38.00885],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39618,38.00074],[-84.3965,38.00126],[-84.39768,38.00321],[-84.39795,38.00426],[-84.39796,38.00449],[-84.39797,38.00476],[-84.39795,38.00492],[-84.39772,38.00579],[-84.39713,38.00764],[-84.39685,38.00882],[-84.39672,38.01051],[-84.39672,38.01084],[-84.39672,38.01088],[-84.39674,38.01122],[-84.39693,38.01221],[-84.39701,38.01244],[-84.39764,38.01334],[-84.39803,38.01367],[-84.39937,38.01435],[-84.39988,38.01454],[-84.40003,38.0146],[-84.40042,38.01473],[-84.40119,38.01499],[-84.40175,38.01528],[-84.40264,38.01579],[-84.40318,38.01632],[-84.40324,38.01641],[-84.40328,38.01648],[-84.40339,38.01669],[-84.40356,38.01665],[-84.40453,38.01645],[-84.40462,38.01678],[-84.4047,38.01721],[-84.4047,38.01724],[-84.40462,38.0179],[-84.40463,38.01795],[-84.40464,38.01797],[-84.40466,38.01799],[-84.40468,38.01801],[-84.40472,38.01805],[-84.40474,38.01806]]}},
{"type":"Feature","properties":{"name":"Midway 16 mile route"},"geometry":{"type":"LineString","coordinates":[[-84.68229,38.15039],[-84.6825,38.15006],[-84.68391,38.15115],[-84.68404,38.15123],[-84.6842,38.15131],[-84.68538,38.15172],[-84.68546,38.15159],[-84.6856,38.15139],[-84.68578,38.15108],[-84.6859,38.15088],[-84.68597,38.15074],[-84.68621,38.1503],[-84.6876,38.14784],[-84.68832,38.14809],[-84.68864,38.1482],[-84.68931,38.14844],[-84.68992,38.14866],[-84.6904,38.14883],[-84.69118,38.14912],[-84.69191,38.14939],[-84.69256,38.14957],[-84.69299,38.14952],[-84.69324,38.14946],[-84.69386,38.14926],[-84.69434,38.1491],[-84.69567,38.14875],[-84.69596,38.14864],[-84.69633,38.14849],[-84.69662,38.14837],[-84.69771,38.14792],[-84.69797,38.14782],[-84.69839,38.14768],[-84.69857,38.14772],[-84.69866,38.14777],[-84.69878,38.14782],[-84.69903,38.14795],[-84.69952,38.14818],[-84.69989,38.14835],[-84.70008,38.14844],[-84.70103,38.1489],[-84.70122,38.14899],[-84.70231,38.14951],[-84.70264,38.14967],[-84.70333,38.15001],[-84.70367,38.15017],[-84.70382,38.15025],[-84.70397,38.15032],[-84.70411,38.15039],[-84.70424,38.15045],[-84.70483,38.15062],[-84.7049,38.15058],[-84.70501,38.15041],[-84.70506,38.15031],[-84.70512,38.15018],[-84.70616,38.14818],[-84.70623,38.14802],[-84.70659,38.14735],[-84.70673,38.14708],[-84.70688,38.1468],[-84.70715,38.14627],[-84.70739,38.1458],[-84.70749,38.14562],[-84.70776,38.14547],[-84.70841,38.14566],[-84.70859,38.14572],[-84.70897,38.14584],[-84.70937,38.14597],[-84.7102,38.14624],[-84.71085,38.14645],[-84.71106,38.14652],[-84.71168,38.14673],[-84.71336,38.14727],[-84.71358,38.14734],[-84.714,38.14748],[-84.71483,38.14775],[-84.71504,38.14782],[-84.71545,38.14795],[-84.71604,38.14815],[-84.71663,38.14833],[-84.71857,38.14893],[-84.71879,38.149],[-84.72099,38.14967],[-84.72118,38.14971],[-84.72292,38.15026],[-84.72352,38.15045],[-84.72453,38.15078],[-84.72474,38.15085],[-84.72538,38.15106],[-84.72621,38.15134],[-84.72723,38.15168],[-84.72743,38.15175],[-84.72906,38.15228],[-84.72922,38.15234],[-84.73027,38.15265],[-84.73102,38.15289],[-84.73197,38.15319],[-84.73235,38.15331],[-84.73516,38.1542],[-84.73532,38.15425],[-84.73594,38.15446],[-84.73624,38.15448],[-84.73701,38.15412],[-84.73716,38.15407],[-84.73833,38.15384],[-84.73867,38.15382],[-84.73915,38.15384],[-84.73933,38.15386],[-84.74119,38.154],[-84.74298,38.15412],[-84.74347,38.15416],[-84.74361,38.15416],[-84.74381,38.15418],[-84.74399,38.1542],[-84.74403,38.15399],[-84.74401,38.15396],[-84.74394,38.15386],[-84.74387,38.1538],[-84.74382,38.15359],[-84.74386,38.15352],[-84.74514,38.15143],[-84.74528,38.15119],[-84.74561,38.15065],[-84.74576,38.1504],[-84.74619,38.14966],[-84.74841,38.14606],[-84.74863,38.1457],[-84.74904,38.14505],[-84.7495,38.14431],[-84.75054,38.14262],[-84.75076,38.14226],[-84.75111,38.14173],[-84.75149,38.14187],[-84.75213,38.1421],[-84.75255,38.14226],[-84.75521,38.14322],[-84.75727,38.14423],[-84.75785,38.14456],[-84.75957,38.14592],[-84.7598,38.14611],[-84.75994,38.14622],[-84.76013,38.14603],[-84.76024,38.14586],[-84.76118,38.14415],[-84.76141,38.14375],[-84.76297,38.14076],[-84.76324,38.14023],[-84.76363,38.13948],[-84.76381,38.13913],[-84.76528,38.13629],[-84.7661,38.13469],[-84.76676,38.13344],[-84.76747,38.13209],[-84.77152,38.12472],[-84.77197,38.12395],[-84.7726,38.12302],[-84.77436,38.12154],[-84.77516,38.12109],[-84.77557,38.12102],[-84.77576,38.12103],[-84.77557,38.12102],[-84.77516,38.12109],[-84.77436,38.12154],[-84.7726,38.12302],[-84.77197,38.12395],[-84.77152,38.12472],[-84.76747,38.13209],[-84.76676,38.13344],[-84.7661,38.13469],[-84.76528,38.13629],[-84.76381,38.13913],[-84.76363,38.13948],[-84.76324,38.14023],[-84.76297,38.14076],[-84.76141,38.14375],[-84.76118,38.14415],[-84.76024,38.14586],[-84.76013,38.14603],[-84.75994,38.14622],[-84.7598,38.14611],[-84.75957,38.14592],[-84.75785,38.14456],[-84.75727,38.14423],[-84.75521,38.14322],[-84.75255,38.14226],[-84.75213,38.1421],[-84.75149,38.14187],[-84.75111,38.14173],[-84.75076,38.14226],[-84.75054,38.14262],[-84.7495,38.14431],[-84.74904,38.14505],[-84.74863,38.1457],[-84.74841,38.14606],[-84.74619,38.14966],[-84.74576,38.1504],[-84.74561,38.15065],[-84.74528,38.15119],[-84.74514,38.15143],[-84.74386,38.15352],[-84.74382,38.15359],[-84.74387,38.1538],[-84.74394,38.15386],[-84.74401,38.15396],[-84.74403,38.15399],[-84.74399,38.1542],[-84.74381,38.15418],[-84.74361,38.15416],[-84.74347,38.15416],[-84.74298,38.15412],[-84.74119,38.154],[-84.73933,38.15386],[-84.73915,38.15384],[-84.73867,38.15382],[-84.73833,38.15384],[-84.73716,38.15407],[-84.73701,38.15412],[-84.73624,38.15448],[-84.73594,38.15446],[-84.73532,38.15425],[-84.73516,38.1542],[-84.73235,38.15331],[-84.73197,38.15319],[-84.73102,38.15289],[-84.73027,38.15265],[-84.72922,38.15234],[-84.72906,38.15228],[-84.72743,38.15175],[-84.72723,38.15168],[-84.72621,38.15134],[-84.72538,38.15106],[-84.72474,38.15085],[-84.72453,38.15078],[-84.72352,38.15045],[-84.72292,38.15026],[-84.72118,38.14971],[-84.72099,38.14967],[-84.71879,38.149],[-84.71857,38.14893],[-84.71663,38.14833],[-84.71604,38.14815],[-84.71545,38.14795],[-84.71504,38.14782],[-84.71483,38.14775],[-84.714,38.14748],[-84.71358,38.14734],[-84.71336,38.14727],[-84.71168,38.14673],[-84.71106,38.14652],[-84.71085,38.14645],[-84.7102,38.14624],[-84.70937,38.14597],[-84.70897,38.14584],[-84.70859,38.14572],[-84.70841,38.14566],[-84.70776,38.14547],[-84.70749,38.14562],[-84.70739,38.1458],[-84.70715,38.14627],[-84.70688,38.1468],[-84.70673,38.14708],[-84.70659,38.14735],[-84.70623,38.14802],[-84.70616,38.14818],[-84.70512,38.15018],[-84.70506,38.15031],[-84.70501,38.15041],[-84.7049,38.15058],[-84.70483,38.15062],[-84.70424,38.15045],[-84.70411,38.15039],[-84.70397,38.15032],[-84.70382,38.15025],[-84.70367,38.15017],[-84.70333,38.15001],[-84.70264,38.14967],[-84.70231,38.14951],[-84.70122,38.14899],[-84.70103,38.1489],[-84.70008,38.14844],[-84.69989,38.14835],[-84.69952,38.14818],[-84.69903,38.14795],[-84.69878,38.14782],[-84.69866,38.14777],[-84.69857,38.14772],[-84.69839,38.14768],[-84.69797,38.14782],[-84.69771,38.14792],[-84.69662,38.14837],[-84.69633,38.14849],[-84.69596,38.14864],[-84.69567,38.14875],[-84.69434,38.1491],[-84.69386,38.14926],[-84.69324,38.14946],[-84.69299,38.14952],[-84.69256,38.14957],[-84.69191,38.14939],[-84.69118,38.14912],[-84.6904,38.14883],[-84.68992,38.14866],[-84.68931,38.14844],[-84.68864,38.1482],[-84.68832,38.14809],[-84.6876,38.14784],[-84.68621,38.1503],[-84.68597,38.15074],[-84.6859,38.15088],[-84.68578,38.15108],[-84.6856,38.15139],[-84.68546,38.15159],[-84.684,38.151],[-84.68264,38.14985],[-84.6825,38.15006],[-84.68229,38.15039]]}},
{"type":"Feature","properties":{"name":"Cori's BBQ 32 Mile"},"geometry":{"type":"LineString","coordinates":[[-84.40464,38.01797],[-84.40463,38.01795],[-84.40462,38.0179],[-84.4047,38.01724],[-84.4047,38.01721],[-84.40462,38.01678],[-84.40453,38.01645],[-84.40356,38.01665],[-84.40351,38.01653],[-84.40338,38.0163],[-84.40331,38.01621],[-84.4032,38.01608],[-84.40299,38.01587],[-84.4014,38.01492],[-84.39907,38.01403],[-84.39883,38.01392],[-84.39796,38.01334],[-84.39738,38.01265],[-84.39721,38.01237],[-84.39706,38.01193],[-84.39703,38.0118],[-84.39695,38.01091],[-84.39699,38.00968],[-84.39701,38.00949],[-84.3974,38.00758],[-84.39764,38.00684],[-84.39793,38.00589],[-84.39811,38.00526],[-84.39821,38.00457],[-84.39819,38.00426],[-84.39815,38.00396],[-84.39802,38.00346],[-84.3978,38.00295],[-84.39765,38.0027],[-84.39662,38.001],[-84.39581,38.00004],[-84.39576,38.00008],[-84.39468,38.00094],[-84.39397,38.00151],[-84.39278,38.00256],[-84.39264,38.00269],[-84.39237,38.00297],[-84.39218,38.00316],[-84.39185,38.00351],[-84.39173,38.00363],[-84.39166,38.0037],[-84.39152,38.00385],[-84.39133,38.00404],[-84.39107,38.00431],[-84.38969,38.00557],[-84.38929,38.0059],[-84.38842,38.00668],[-84.38785,38.0072],[-84.38754,38.00749],[-84.38741,38.00766],[-84.38722,38.00819],[-84.3872,38.0083],[-84.38724,38.00862],[-84.38725,38.00866],[-84.38727,38.00869],[-84.38729,38.00873],[-84.38736,38.00881],[-84.38731,38.00885],[-84.38727,38.00888],[-84.38725,38.00893],[-84.38726,38.00899],[-84.3873,38.00908],[-84.38734,38.0092],[-84.38734,38.00927],[-84.38721,38.0093],[-84.38716,38.00932],[-84.38711,38.00935],[-84.38705,38.00941],[-84.387,38.00946],[-84.38686,38.0098],[-84.38676,38.01021],[-84.38673,38.01031],[-84.3866,38.01049],[-84.38631,38.01074],[-84.38596,38.01112],[-84.3856,38.01155],[-84.385,38.01229],[-84.38462,38.0127],[-84.38346,38.01384],[-84.38254,38.01479],[-84.38204,38.01529],[-84.3813,38.01613],[-84.38075,38.0167],[-84.38016,38.01732],[-84.37971,38.01769],[-84.37843,38.01861],[-84.37633,38.02015],[-84.37491,38.02119],[-84.37419,38.02172],[-84.37359,38.02217],[-84.37292,38.02266],[-84.37286,38.02269],[-84.37279,38.02271],[-84.37236,38.02246],[-84.37207,38.0225],[-84.37162,38.02283],[-84.37058,38.02362],[-84.36854,38.0251],[-84.36578,38.02711],[-84.3651,38.02762],[-84.36421,38.02825],[-84.36266,38.02937],[-84.36218,38.02973],[-84.36206,38.0298],[-84.36193,38.02987],[-84.36162,38.0298],[-84.36152,38.02977],[-84.36001,38.02961],[-84.35983,38.02961],[-84.35714,38.02968],[-84.35695,38.02968],[-84.35632,38.02967],[-84.3563,38.02984],[-84.35628,38.03001],[-84.35625,38.03074],[-84.35621,38.03135],[-84.35605,38.03371],[-84.35568,38.03609],[-84.35545,38.03719],[-84.35419,38.04355],[-84.35397,38.04461],[-84.35366,38.0462],[-84.3534,38.05122],[-84.35338,38.05159],[-84.35335,38.05251],[-84.35334,38.05273],[-84.35328,38.05354],[-84.35324,38.05421],[-84.35312,38.05718],[-84.3531,38.05749],[-84.35294,38.06041],[-84.35256,38.06132],[-84.35239,38.06162],[-84.35216,38.062],[-84.35203,38.06226],[-84.35187,38.06255],[-84.35159,38.06305],[-84.35139,38.06341],[-84.35029,38.06536],[-84.3501,38.06572],[-84.34986,38.06614],[-84.34975,38.06636],[-84.34978,38.06658],[-84.34945,38.06663],[-84.34918,38.06676],[-84.34908,38.06681],[-84.34898,38.06684],[-84.34887,38.06688],[-84.34873,38.0669],[-84.34629,38.06724],[-84.34526,38.06738],[-84.34027,38.06808],[-84.33963,38.06817],[-84.33616,38.06865],[-84.33411,38.06894],[-84.33348,38.06903],[-84.33178,38.06927],[-84.33103,38.06937],[-84.33116,38.07006],[-84.33125,38.0705],[-84.33198,38.0739],[-84.33251,38.07436],[-84.33384,38.07477],[-84.33402,38.0751],[-84.33395,38.07541],[-84.33369,38.07613],[-84.33306,38.07769],[-84.33291,38.07821],[-84.33277,38.0784],[-84.33268,38.0785],[-84.33226,38.0789],[-84.33159,38.07954],[-84.33051,38.08032],[-84.32765,38.08084],[-84.32656,38.08119],[-84.32333,38.08231],[-84.32098,38.08352],[-84.31672,38.08786],[-84.31649,38.08835],[-84.31625,38.08963],[-84.31646,38.09122],[-84.31648,38.09149],[-84.31623,38.09401],[-84.31618,38.09432],[-84.31587,38.0974],[-84.31587,38.09894],[-84.31587,38.09952],[-84.31593,38.10298],[-84.31593,38.10311],[-84.31593,38.10507],[-84.31566,38.10774],[-84.31558,38.10866],[-84.31553,38.1092],[-84.31486,38.10919],[-84.31359,38.10917],[-84.31316,38.10917],[-84.31223,38.10929],[-84.30651,38.11086],[-84.30254,38.11339],[-84.29739,38.11528],[-84.29729,38.11541],[-84.29736,38.11644],[-84.29727,38.11644],[-84.29692,38.11641],[-84.29642,38.11638],[-84.29596,38.11635],[-84.2957,38.11634],[-84.2953,38.11632],[-84.29068,38.11606],[-84.28786,38.11576],[-84.28588,38.11508],[-84.28014,38.11398],[-84.27119,38.11316],[-84.26223,38.11264],[-84.26134,38.11245],[-84.26138,38.11158],[-84.2614,38.11112],[-84.26141,38.11097],[-84.26167,38.10999],[-84.26494,38.10366],[-84.26559,38.10238],[-84.26575,38.10207],[-84.2673,38.09901],[-84.26771,38.0954],[-84.26782,38.09416],[-84.26783,38.09399],[-84.26784,38.09381],[-84.26865,38.08514],[-84.26923,38.08515],[-84.26928,38.08516],[-84.26938,38.08516],[-84.26999,38.08516],[-84.273,38.08514],[-84.27632,38.08454],[-84.27745,38.08431],[-84.28124,38.08362],[-84.28239,38.08357],[-84.28869,38.08326],[-84.29001,38.08319],[-84.29659,38.08288],[-84.29794,38.08272],[-84.29912,38.0822],[-84.30122,38.08042],[-84.30172,38.07999],[-84.30387,38.07818],[-84.30593,38.07653],[-84.30671,38.07592],[-84.30702,38.07582],[-84.31239,38.07557],[-84.31275,38.07546],[-84.31296,38.07535],[-84.31705,38.07307],[-84.31785,38.07255],[-84.3199,38.07128],[-84.32025,38.0711],[-84.32146,38.07069],[-84.32337,38.0704],[-84.32485,38.07018],[-84.32657,38.07001],[-84.32767,38.06985],[-84.32999,38.06952],[-84.33103,38.06937],[-84.33178,38.06927],[-84.33348,38.06903],[-84.33411,38.06894],[-84.33616,38.06865],[-84.33963,38.06817],[-84.34027,38.06808],[-84.34526,38.06738],[-84.34629,38.06724],[-84.34873,38.0669],[-84.34887,38.06688],[-84.34898,38.06684],[-84.34908,38.06681],[-84.34918,38.06676],[-84.34945,38.06663],[-84.34978,38.06658],[-84.35062,38.06669],[-84.35118,38.06676],[-84.3515,38.0668],[-84.35181,38.06682],[-84.35272,38.06689],[-84.35365,38.06695],[-84.35697,38.06718],[-84.36161,38.06675],[-84.36315,38.06659],[-84.3675,38.06615],[-84.37113,38.06658],[-84.37181,38.06666],[-84.37229,38.06673],[-84.37933,38.06941],[-84.38194,38.06989],[-84.38332,38.06953],[-84.38569,38.06872],[-84.38712,38.0682],[-84.38895,38.06759],[-84.39011,38.06779],[-84.39161,38.06817],[-84.39602,38.0693],[-84.39612,38.06931],[-84.3964,38.06925],[-84.40087,38.06656],[-84.40382,38.06434],[-84.40303,38.06279],[-84.40231,38.06224],[-84.40103,38.06136],[-84.39906,38.06001],[-84.39805,38.05958],[-84.39398,38.05792],[-84.39201,38.0571],[-84.38916,38.0559],[-84.38879,38.05573],[-84.38799,38.05528],[-84.38722,38.05485],[-84.38577,38.05405],[-84.38527,38.05377],[-84.38467,38.05343],[-84.38366,38.05274],[-84.3835,38.05259],[-84.38075,38.05037],[-84.37928,38.04921],[-84.37866,38.04872],[-84.37706,38.04746],[-84.3767,38.04711],[-84.3763,38.04633],[-84.37034,38.0411],[-84.36897,38.03994],[-84.36814,38.03921],[-84.36629,38.03762],[-84.36434,38.03596],[-84.35993,38.03213],[-84.3596,38.03158],[-84.35984,38.03136],[-84.36004,38.03121],[-84.36056,38.03084],[-84.36096,38.03055],[-84.36169,38.03002],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38734,38.0092],[-84.3873,38.00908],[-84.38726,38.00899],[-84.38725,38.00893],[-84.38727,38.00888],[-84.38731,38.00885],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39618,38.00074],[-84.3965,38.00126],[-84.39768,38.00321],[-84.39795,38.00426],[-84.39796,38.00449],[-84.39797,38.00476],[-84.39795,38.00492],[-84.39772,38.00579],[-84.39713,38.00764],[-84.39685,38.00882],[-84.39672,38.01051],[-84.39672,38.01084],[-84.39672,38.01088],[-84.39674,38.01122],[-84.39693,38.01221],[-84.39701,38.01244],[-84.39764,38.01334],[-84.39803,38.01367],[-84.39937,38.01435],[-84.39988,38.01454],[-84.40003,38.0146],[-84.40042,38.01473],[-84.40119,38.01499],[-84.40175,38.01528],[-84.40264,38.01579],[-84.40318,38.01632],[-84.40324,38.01641],[-84.40328,38.01648],[-84.40339,38.01669],[-84.40356,38.01665],[-84.40453,38.01645],[-84.40462,38.01678],[-84.4047,38.01721],[-84.4047,38.01724],[-84.40462,38.0179],[-84.40463,38.01795],[-84.40462,38.0179],[-84.40463,38.01795],[-84.40464,38.01797]]}},
{"type":"Feature","properties":{"name":"Harland Old Railroad"},"geometry":{"type":"LineString","coordinates":[[-84.4797,37.96015],[-84.47987,37.96007],[-84.48135,37.95938],[-84.48227,37.95866],[-84.48304,37.95792],[-84.48401,37.95641],[-84.48498,37.95544],[-84.48578,37.95503],[-84.4873,37.95457],[-84.48685,37.95365],[-84.48408,37.94587],[-84.48356,37.94508],[-84.48118,37.94271],[-84.48038,37.94172],[-84.47995,37.94094],[-84.47922,37.9389],[-84.48181,37.93838],[-84.48214,37.93819],[-84.48458,37.93415],[-84.48532,37.93254],[-84.48539,37.93238],[-84.48668,37.92951],[-84.48701,37.92934],[-84.48708,37.92935],[-84.48922,37.9297],[-84.49034,37.93005],[-84.49052,37.92941],[-84.49054,37.92931],[-84.49154,37.92587],[-84.49156,37.92578],[-84.49185,37.92478],[-84.49249,37.9242],[-84.49296,37.92411],[-84.49366,37.92448],[-84.49398,37.92441],[-84.49486,37.92282],[-84.49507,37.92209],[-84.49548,37.92172],[-84.49642,37.92032],[-84.5012,37.91484],[-84.50138,37.91446],[-84.50138,37.91438],[-84.50118,37.91417],[-84.49993,37.9137],[-84.49921,37.91285],[-84.49806,37.91199],[-84.49775,37.91134],[-84.49799,37.91059],[-84.49866,37.90944],[-84.49902,37.90904],[-84.49996,37.90852],[-84.50007,37.90825],[-84.50004,37.9079],[-84.49938,37.90652],[-84.49916,37.90537],[-84.49941,37.90513],[-84.5009,37.90437],[-84.50298,37.90398],[-84.50345,37.90366],[-84.50359,37.90316],[-84.50357,37.90291],[-84.50346,37.90186],[-84.50307,37.90075],[-84.5035,37.89913],[-84.50324,37.89852],[-84.50296,37.89834],[-84.50307,37.89803],[-84.50362,37.89722],[-84.50395,37.89718],[-84.50505,37.89664],[-84.50601,37.89643],[-84.50643,37.89612],[-84.5095,37.89101],[-84.50963,37.89078],[-84.50997,37.89036],[-84.50965,37.89013],[-84.50928,37.88988],[-84.50815,37.88922],[-84.50321,37.88688],[-84.503,37.88678],[-84.50219,37.88658],[-84.50204,37.88658],[-84.50101,37.88681],[-84.49915,37.88787],[-84.49905,37.8877],[-84.49913,37.88742],[-84.49919,37.88731],[-84.49964,37.88648],[-84.49977,37.88624],[-84.5011,37.88404],[-84.50118,37.88391],[-84.50255,37.88155],[-84.50427,37.87937],[-84.50434,37.87843],[-84.50457,37.87792],[-84.50462,37.87782],[-84.5049,37.87742],[-84.50566,37.87724],[-84.50248,37.87649],[-84.50122,37.87601],[-84.50036,37.87547],[-84.49746,37.87319],[-84.49487,37.87195],[-84.49455,37.87181],[-84.49209,37.87073],[-84.49118,37.87005],[-84.48879,37.86661],[-84.48793,37.86567],[-84.48788,37.86562],[-84.48706,37.86493],[-84.48636,37.8655],[-84.48394,37.86738],[-84.48157,37.86786],[-84.47988,37.86847],[-84.47918,37.8695],[-84.4771,37.8735],[-84.47668,37.87432],[-84.47137,37.88473],[-84.4712,37.88505],[-84.4708,37.88585],[-84.47073,37.88598],[-84.47006,37.88596],[-84.46917,37.88598],[-84.46702,37.88589],[-84.46596,37.88534],[-84.46109,37.88085],[-84.46004,37.87931],[-84.45815,37.87796],[-84.45719,37.87622],[-84.45653,37.87532],[-84.45613,37.87495],[-84.45542,37.87456],[-84.45487,37.87435],[-84.45411,37.87428],[-84.45186,37.87467],[-84.44794,37.87489],[-84.4427,37.87482],[-84.44149,37.87452],[-84.43851,37.8729],[-84.43824,37.87278],[-84.43833,37.87306],[-84.43838,37.87321],[-84.43846,37.87337],[-84.43837,37.87346],[-84.43832,37.87351],[-84.43774,37.87422],[-84.43268,37.88048],[-84.42798,37.88319],[-84.42691,37.88459],[-84.42621,37.88558],[-84.42299,37.89018],[-84.42265,37.8904],[-84.42198,37.89056],[-84.42181,37.89057],[-84.41998,37.89068],[-84.41997,37.89139],[-84.41996,37.89219],[-84.41986,37.89459],[-84.41854,37.8953],[-84.41841,37.89677],[-84.41829,37.89795],[-84.4193,37.90422],[-84.41964,37.90439],[-84.42017,37.90465],[-84.42087,37.90498],[-84.42103,37.90508],[-84.42127,37.90525],[-84.42377,37.90648],[-84.4241,37.90666],[-84.42395,37.90687],[-84.4238,37.90707],[-84.42237,37.90889],[-84.42215,37.90947],[-84.42003,37.91279],[-84.41947,37.91373],[-84.41705,37.91792],[-84.41629,37.91923],[-84.41574,37.92013],[-84.41285,37.92531],[-84.41219,37.92652],[-84.4126,37.92655],[-84.41219,37.92652],[-84.41213,37.92662],[-84.41152,37.92773],[-84.40837,37.93335],[-84.40573,37.93862],[-84.40546,37.93916],[-84.40536,37.93932],[-84.40549,37.93942],[-84.40573,37.93964],[-84.40653,37.9407],[-84.40787,37.94285],[-84.41066,37.94726],[-84.41578,37.9589],[-84.41582,37.95899],[-84.41664,37.96036],[-84.41724,37.96138],[-84.41807,37.96275],[-84.42089,37.96755],[-84.42145,37.96848],[-84.4218,37.96909],[-84.42222,37.96992],[-84.42293,37.97218],[-84.42377,37.97489],[-84.42415,37.97614],[-84.42433,37.97672],[-84.42449,37.97724],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46701,37.96551],[-84.46728,37.96532],[-84.46731,37.96525],[-84.46732,37.96523],[-84.46738,37.96519],[-84.46796,37.96476],[-84.47083,37.96282],[-84.47172,37.96255],[-84.47276,37.9624],[-84.47382,37.96238],[-84.47495,37.96253],[-84.47565,37.9626],[-84.47655,37.96253],[-84.47675,37.96248],[-84.47719,37.96232],[-84.47735,37.96224],[-84.47809,37.96166],[-84.47901,37.96056],[-84.47939,37.9603],[-84.4796,37.96019],[-84.47987,37.96007],[-84.48046,37.96069],[-84.48058,37.96078]]}},
{"type":"Feature","properties":{"name":"Paul's Mill 27"},"geometry":{"type":"LineString","coordinates":[[-84.58565,37.9962],[-84.58549,37.99613],[-84.58588,37.99607],[-84.5864,37.99574],[-84.58714,37.99576],[-84.5873,37.99576],[-84.58774,37.99553],[-84.58822,37.99587],[-84.58871,37.99619],[-84.58938,37.99642],[-84.59063,37.99654],[-84.59108,37.9965],[-84.59179,37.9964],[-84.59197,37.99635],[-84.59264,37.99619],[-84.59571,37.99553],[-84.59911,37.99481],[-84.60264,37.99354],[-84.60289,37.99332],[-84.60468,37.9895],[-84.60496,37.98884],[-84.60542,37.98791],[-84.60607,37.98652],[-84.60634,37.98598],[-84.60673,37.98521],[-84.60722,37.98427],[-84.6086,37.98155],[-84.60898,37.98075],[-84.61016,37.97828],[-84.61088,37.9769],[-84.6114,37.97588],[-84.61164,37.97542],[-84.61202,37.97467],[-84.61243,37.97407],[-84.61369,37.97318],[-84.61375,37.97314],[-84.61408,37.97296],[-84.61422,37.97288],[-84.61569,37.97219],[-84.61584,37.97219],[-84.61592,37.9722],[-84.61595,37.9722],[-84.6168,37.97246],[-84.61711,37.97256],[-84.61728,37.97262],[-84.61752,37.9727],[-84.61782,37.97279],[-84.62003,37.97348],[-84.62024,37.97354],[-84.62077,37.97371],[-84.62529,37.97515],[-84.62893,37.97627],[-84.63198,37.97719],[-84.63244,37.97714],[-84.63335,37.97679],[-84.63403,37.97658],[-84.63429,37.97648],[-84.63455,37.97637],[-84.63531,37.9761],[-84.63611,37.97598],[-84.63828,37.97671],[-84.63857,37.97681],[-84.63986,37.97727],[-84.64013,37.97737],[-84.64028,37.97742],[-84.64049,37.9775],[-84.6409,37.97764],[-84.64109,37.97771],[-84.64139,37.97748],[-84.64184,37.97713],[-84.64217,37.97687],[-84.64229,37.97677],[-84.64392,37.97549],[-84.64414,37.97533],[-84.64535,37.9745],[-84.64547,37.97441],[-84.64821,37.97213],[-84.64811,37.97127],[-84.64728,37.97029],[-84.64706,37.96984],[-84.64785,37.96818],[-84.64797,37.96794],[-84.64915,37.96551],[-84.6493,37.9652],[-84.64983,37.96411],[-84.65106,37.9626],[-84.6512,37.96239],[-84.6528,37.95967],[-84.65286,37.95956],[-84.65351,37.95778],[-84.65355,37.95762],[-84.65373,37.957],[-84.65453,37.9556],[-84.65478,37.95514],[-84.65567,37.95353],[-84.6558,37.95327],[-84.65606,37.95332],[-84.65823,37.95378],[-84.65933,37.95402],[-84.66058,37.95429],[-84.66079,37.95434],[-84.66179,37.95462],[-84.662,37.95469],[-84.66235,37.95482],[-84.66256,37.95491],[-84.66276,37.955],[-84.66333,37.95411],[-84.66388,37.95323],[-84.66451,37.95222],[-84.66438,37.95164],[-84.66445,37.95104],[-84.66453,37.95038],[-84.66468,37.94898],[-84.66476,37.94826],[-84.66488,37.94747],[-84.66659,37.94444],[-84.6665,37.94423],[-84.66574,37.94402],[-84.66505,37.94364],[-84.66367,37.94346],[-84.66316,37.94315],[-84.66407,37.94048],[-84.66397,37.94008],[-84.66373,37.93977],[-84.66276,37.93834],[-84.66181,37.93657],[-84.66176,37.9365],[-84.66092,37.93552],[-84.66077,37.93534],[-84.66069,37.9352],[-84.66066,37.93509],[-84.66064,37.93496],[-84.66028,37.93238],[-84.65999,37.93028],[-84.65977,37.92864],[-84.65974,37.92833],[-84.65967,37.92701],[-84.65964,37.92641],[-84.65956,37.92429],[-84.66075,37.92149],[-84.66015,37.9202],[-84.65944,37.91968],[-84.6593,37.91942],[-84.65796,37.91577],[-84.6573,37.91268],[-84.65727,37.91252],[-84.65662,37.90845],[-84.6563,37.90796],[-84.65459,37.90652],[-84.65474,37.90641],[-84.6548,37.90636],[-84.65565,37.90566],[-84.65578,37.90555],[-84.65749,37.90419],[-84.66208,37.90116],[-84.66232,37.90113],[-84.66272,37.90151],[-84.66293,37.90154],[-84.66454,37.90046],[-84.66486,37.90024],[-84.66636,37.89929],[-84.66638,37.8993],[-84.66671,37.89964],[-84.66857,37.90163],[-84.66862,37.90162],[-84.66889,37.90154],[-84.66942,37.90137],[-84.67,37.90118],[-84.67449,37.89971],[-84.67491,37.89957],[-84.67505,37.89953],[-84.67759,37.89939],[-84.68207,37.89845],[-84.68442,37.89778],[-84.68569,37.89753],[-84.68644,37.89751],[-84.68724,37.89781],[-84.68975,37.8993],[-84.69026,37.89947],[-84.69034,37.90002],[-84.69137,37.9017],[-84.69429,37.90477],[-84.69453,37.90499],[-84.69508,37.90552],[-84.69592,37.90632],[-84.69613,37.90617],[-84.69622,37.90611],[-84.69685,37.90566],[-84.69833,37.90461],[-84.70306,37.90123],[-84.70371,37.90069],[-84.7038,37.90061],[-84.70407,37.90071],[-84.70447,37.90082],[-84.70463,37.90087],[-84.70748,37.90146],[-84.70899,37.90123],[-84.70993,37.9014],[-84.7105,37.90239],[-84.71032,37.90446],[-84.71054,37.90585],[-84.71057,37.90601],[-84.71071,37.90799],[-84.71105,37.90899],[-84.71128,37.9093],[-84.71155,37.90962],[-84.71214,37.9102],[-84.71261,37.91176],[-84.71251,37.91175],[-84.71215,37.91172],[-84.71197,37.9117],[-84.71162,37.91167],[-84.71044,37.9118],[-84.70789,37.91268],[-84.70654,37.91403],[-84.70393,37.91551],[-84.69979,37.91871],[-84.69562,37.91208],[-84.69437,37.90992],[-84.69406,37.91012],[-84.69355,37.9105],[-84.69337,37.91064],[-84.69284,37.91102],[-84.69243,37.91132],[-84.69056,37.91275],[-84.69023,37.91402],[-84.68988,37.91542],[-84.68751,37.9172],[-84.68694,37.91762],[-84.68548,37.91863],[-84.68434,37.91934],[-84.68361,37.91977],[-84.68332,37.91993],[-84.68228,37.92054],[-84.68096,37.92139],[-84.6796,37.92228],[-84.67845,37.92322],[-84.67601,37.92562],[-84.67377,37.92755],[-84.67331,37.92792],[-84.67258,37.92852],[-84.6711,37.92974],[-84.6704,37.9303],[-84.66887,37.93151],[-84.66775,37.93227],[-84.66573,37.93359],[-84.66427,37.93422],[-84.66399,37.93434],[-84.6613,37.93506],[-84.66069,37.9352],[-84.66077,37.93534],[-84.66092,37.93552],[-84.66176,37.9365],[-84.66181,37.93657],[-84.66276,37.93834],[-84.66373,37.93977],[-84.66397,37.94008],[-84.66407,37.94048],[-84.66316,37.94315],[-84.66367,37.94346],[-84.66505,37.94364],[-84.66574,37.94402],[-84.6665,37.94423],[-84.66659,37.94444],[-84.66488,37.94747],[-84.66476,37.94826],[-84.66468,37.94898],[-84.66453,37.95038],[-84.66445,37.95104],[-84.66438,37.95164],[-84.66451,37.95222],[-84.66388,37.95323],[-84.66333,37.95411],[-84.66276,37.955],[-84.66256,37.95491],[-84.66235,37.95482],[-84.662,37.95469],[-84.66179,37.95462],[-84.66079,37.95434],[-84.66058,37.95429],[-84.65933,37.95402],[-84.65823,37.95378],[-84.65606,37.95332],[-84.6558,37.95327],[-84.65567,37.95353],[-84.65478,37.95514],[-84.65453,37.9556],[-84.65373,37.957],[-84.65355,37.95762],[-84.65351,37.95778],[-84.65286,37.95956],[-84.6528,37.95967],[-84.6512,37.96239],[-84.65106,37.9626],[-84.64983,37.96411],[-84.6493,37.9652],[-84.64915,37.96551],[-84.64797,37.96794],[-84.64785,37.96818],[-84.64706,37.96984],[-84.64728,37.97029],[-84.64811,37.97127],[-84.64821,37.97213],[-84.64547,37.97441],[-84.64535,37.9745],[-84.64414,37.97533],[-84.64392,37.97549],[-84.64229,37.97677],[-84.64217,37.97687],[-84.64184,37.97713],[-84.64139,37.97748],[-84.64109,37.97771],[-84.6409,37.97764],[-84.64049,37.9775],[-84.64028,37.97742],[-84.64013,37.97737],[-84.63986,37.97727],[-84.63857,37.97681],[-84.63828,37.97671],[-84.63611,37.97598],[-84.63531,37.9761],[-84.63455,37.97637],[-84.63429,37.97648],[-84.63403,37.97658],[-84.63335,37.97679],[-84.63244,37.97714],[-84.63198,37.97719],[-84.62893,37.97627],[-84.62529,37.97515],[-84.62077,37.97371],[-84.62024,37.97354],[-84.62003,37.97348],[-84.61782,37.97279],[-84.61752,37.9727],[-84.61728,37.97262],[-84.61711,37.97256],[-84.6168,37.97246],[-84.61595,37.9722],[-84.61592,37.9722],[-84.61584,37.97219],[-84.61569,37.97219],[-84.61422,37.97288],[-84.61408,37.97296],[-84.61375,37.97314],[-84.61369,37.97318],[-84.61243,37.97407],[-84.61202,37.97467],[-84.61164,37.97542],[-84.6114,37.97588],[-84.61088,37.9769],[-84.61016,37.97828],[-84.60898,37.98075],[-84.6086,37.98155],[-84.60722,37.98427],[-84.60673,37.98521],[-84.60634,37.98598],[-84.60607,37.98652],[-84.60542,37.98791],[-84.60496,37.98884],[-84.60468,37.9895],[-84.60289,37.99332],[-84.60264,37.99354],[-84.59911,37.99481],[-84.59571,37.99553],[-84.59264,37.99619],[-84.59197,37.99635],[-84.59179,37.9964],[-84.59108,37.9965],[-84.59063,37.99654],[-84.58938,37.99642],[-84.58871,37.99619],[-84.58822,37.99587],[-84.58774,37.99553],[-84.5873,37.99576],[-84.58714,37.99576],[-84.5864,37.99574],[-84.58588,37.99607],[-84.58549,37.99613],[-84.58461,37.99625],[-84.58468,37.99659]]}},
{"type":"Feature","properties":{"name":"Cori's BBQ ride short"},"geometry":{"type":"LineString","coordinates":[[-84.40464,38.01797],[-84.40463,38.01795],[-84.40462,38.0179],[-84.4047,38.01724],[-84.4047,38.01721],[-84.40462,38.01678],[-84.40453,38.01645],[-84.40356,38.01665],[-84.40351,38.01653],[-84.40338,38.0163],[-84.40331,38.01621],[-84.4032,38.01608],[-84.40299,38.01587],[-84.4014,38.01492],[-84.39907,38.01403],[-84.39883,38.01392],[-84.39796,38.01334],[-84.39738,38.01265],[-84.39721,38.01237],[-84.39706,38.01193],[-84.39703,38.0118],[-84.39695,38.01091],[-84.39699,38.00968],[-84.39701,38.00949],[-84.3974,38.00758],[-84.39764,38.00684],[-84.39793,38.00589],[-84.39811,38.00526],[-84.39821,38.00457],[-84.39819,38.00426],[-84.39815,38.00396],[-84.39802,38.00346],[-84.3978,38.00295],[-84.39765,38.0027],[-84.39662,38.001],[-84.39581,38.00004],[-84.39576,38.00008],[-84.39468,38.00094],[-84.39397,38.00151],[-84.39278,38.00256],[-84.39264,38.00269],[-84.39237,38.00297],[-84.39218,38.00316],[-84.39185,38.00351],[-84.39173,38.00363],[-84.39166,38.0037],[-84.39152,38.00385],[-84.39133,38.00404],[-84.39107,38.00431],[-84.38969,38.00557],[-84.38929,38.0059],[-84.38842,38.00668],[-84.38785,38.0072],[-84.38754,38.00749],[-84.38741,38.00766],[-84.38722,38.00819],[-84.3872,38.0083],[-84.38724,38.00862],[-84.38725,38.00866],[-84.38727,38.00869],[-84.38729,38.00873],[-84.38736,38.00881],[-84.38731,38.00885],[-84.38727,38.00888],[-84.38725,38.00893],[-84.38726,38.00899],[-84.3873,38.00908],[-84.38734,38.0092],[-84.38734,38.00927],[-84.38751,38.00927],[-84.38734,38.00927],[-84.38721,38.0093],[-84.38716,38.00932],[-84.38711,38.00935],[-84.38705,38.00941],[-84.387,38.00946],[-84.38686,38.0098],[-84.38676,38.01021],[-84.38673,38.01031],[-84.3866,38.01049],[-84.38631,38.01074],[-84.38596,38.01112],[-84.3856,38.01155],[-84.385,38.01229],[-84.38462,38.0127],[-84.38346,38.01384],[-84.38254,38.01479],[-84.38204,38.01529],[-84.3813,38.01613],[-84.38075,38.0167],[-84.38016,38.01732],[-84.37971,38.01769],[-84.37843,38.01861],[-84.37633,38.02015],[-84.37491,38.02119],[-84.37419,38.02172],[-84.37359,38.02217],[-84.37292,38.02266],[-84.37286,38.02269],[-84.37279,38.02271],[-84.37236,38.02246],[-84.37207,38.0225],[-84.37162,38.02283],[-84.37058,38.02362],[-84.36854,38.0251],[-84.36578,38.02711],[-84.3651,38.02762],[-84.36421,38.02825],[-84.36266,38.02937],[-84.36218,38.02973],[-84.36206,38.0298],[-84.36193,38.02987],[-84.36169,38.03002],[-84.36096,38.03055],[-84.36056,38.03084],[-84.36004,38.03121],[-84.35984,38.03136],[-84.3596,38.03158],[-84.35993,38.03213],[-84.36434,38.03596],[-84.36629,38.03762],[-84.36814,38.03921],[-84.36897,38.03994],[-84.37034,38.0411],[-84.3763,38.04633],[-84.3767,38.04711],[-84.37706,38.04746],[-84.37866,38.04872],[-84.37928,38.04921],[-84.38075,38.05037],[-84.3835,38.05259],[-84.38366,38.05274],[-84.38467,38.05343],[-84.38527,38.05377],[-84.38577,38.05405],[-84.38722,38.05485],[-84.38799,38.05528],[-84.38879,38.05573],[-84.38916,38.0559],[-84.39201,38.0571],[-84.39398,38.05792],[-84.39805,38.05958],[-84.39906,38.06001],[-84.40103,38.06136],[-84.40231,38.06224],[-84.40303,38.06279],[-84.40382,38.06434],[-84.40087,38.06656],[-84.3964,38.06925],[-84.39612,38.06931],[-84.39602,38.0693],[-84.39161,38.06817],[-84.39011,38.06779],[-84.38895,38.06759],[-84.38712,38.0682],[-84.38569,38.06872],[-84.38332,38.06953],[-84.38194,38.06989],[-84.37933,38.06941],[-84.37229,38.06673],[-84.37181,38.06666],[-84.37113,38.06658],[-84.3675,38.06615],[-84.36315,38.06659],[-84.36161,38.06675],[-84.35697,38.06718],[-84.35365,38.06695],[-84.35272,38.06689],[-84.35181,38.06682],[-84.3515,38.0668],[-84.35118,38.06676],[-84.35062,38.06669],[-84.34978,38.06658],[-84.34975,38.06636],[-84.34986,38.06614],[-84.3501,38.06572],[-84.35029,38.06536],[-84.35139,38.06341],[-84.35159,38.06305],[-84.35187,38.06255],[-84.35203,38.06226],[-84.35216,38.062],[-84.35239,38.06162],[-84.35256,38.06132],[-84.35294,38.06041],[-84.3531,38.05749],[-84.35312,38.05718],[-84.35324,38.05421],[-84.35328,38.05354],[-84.35334,38.05273],[-84.35335,38.05251],[-84.35338,38.05159],[-84.3534,38.05122],[-84.35366,38.0462],[-84.35397,38.04461],[-84.35419,38.04355],[-84.35545,38.03719],[-84.35568,38.03609],[-84.35605,38.03371],[-84.35621,38.03135],[-84.35625,38.03074],[-84.35628,38.03001],[-84.3563,38.02984],[-84.35632,38.02967],[-84.35695,38.02968],[-84.35714,38.02968],[-84.35983,38.02961],[-84.36001,38.02961],[-84.36152,38.02977],[-84.36162,38.0298],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38734,38.0092],[-84.3873,38.00908],[-84.38726,38.00899],[-84.38725,38.00893],[-84.38727,38.00888],[-84.38731,38.00885],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39618,38.00074],[-84.3965,38.00126],[-84.39768,38.00321],[-84.39795,38.00426],[-84.39796,38.00449],[-84.39797,38.00476],[-84.39795,38.00492],[-84.39772,38.00579],[-84.39713,38.00764],[-84.39685,38.00882],[-84.39672,38.01051],[-84.39672,38.01084],[-84.39672,38.01088],[-84.39674,38.01122],[-84.39693,38.01221],[-84.39701,38.01244],[-84.39764,38.01334],[-84.39803,38.01367],[-84.39937,38.01435],[-84.39988,38.01454],[-84.40003,38.0146],[-84.40042,38.01473],[-84.40119,38.01499],[-84.40175,38.01528],[-84.40264,38.01579],[-84.40318,38.01632],[-84.40324,38.01641],[-84.40328,38.01648],[-84.40339,38.01669],[-84.40356,38.01665],[-84.40453,38.01645],[-84.40462,38.01678],[-84.4047,38.01721],[-84.4047,38.01724],[-84.40462,38.0179],[-84.40463,38.01795],[-84.40464,38.01797],[-84.40465,38.01797],[-84.40464,38.01797],[-84.40463,38.01795],[-84.40462,38.0179],[-84.40463,38.01795],[-84.40464,38.01797],[-84.40465,38.01797],[-84.40466,38.01799],[-84.40465,38.01797]]}},
{"type":"Feature","properties":{"name":"Wallace Station 30 Up Duncan"},"geometry":{"type":"LineString","coordinates":[[-84.69459,38.12132],[-84.69366,38.12099],[-84.69058,38.11984],[-84.68952,38.11943],[-84.68931,38.11936],[-84.68737,38.11862],[-84.68651,38.11833],[-84.68344,38.11728],[-84.67965,38.1154],[-84.67309,38.11188],[-84.66659,38.10913],[-84.66571,38.10882],[-84.66541,38.10871],[-84.65972,38.10685],[-84.65661,38.10612],[-84.65199,38.10523],[-84.65147,38.10512],[-84.65093,38.10501],[-84.65151,38.10392],[-84.65184,38.1033],[-84.65282,38.10145],[-84.65296,38.10118],[-84.65334,38.10047],[-84.65343,38.1003],[-84.65381,38.09959],[-84.6548,38.09774],[-84.65488,38.09759],[-84.6551,38.09718],[-84.65556,38.09614],[-84.65555,38.09601],[-84.65547,38.09456],[-84.65645,38.09385],[-84.6574,38.09292],[-84.65771,38.09261],[-84.65901,38.09129],[-84.65908,38.09121],[-84.65937,38.09079],[-84.65946,38.09066],[-84.65954,38.09053],[-84.66056,38.08898],[-84.66105,38.08825],[-84.66113,38.08811],[-84.6615,38.08756],[-84.66253,38.08574],[-84.6626,38.08562],[-84.66387,38.08317],[-84.66394,38.08196],[-84.66394,38.08177],[-84.66392,38.08116],[-84.66392,38.08093],[-84.66391,38.08029],[-84.6639,38.08008],[-84.66389,38.07958],[-84.66384,38.07723],[-84.66307,38.07602],[-84.66287,38.07573],[-84.66278,38.07558],[-84.66248,38.07513],[-84.66243,38.07504],[-84.66224,38.0748],[-84.66902,38.06995],[-84.6691,38.06987],[-84.66916,38.06978],[-84.66955,38.06907],[-84.66967,38.06883],[-84.66981,38.0686],[-84.66995,38.06835],[-84.67025,38.06775],[-84.67188,38.06817],[-84.67389,38.06993],[-84.67418,38.07048],[-84.6762,38.0709],[-84.67639,38.07094],[-84.67658,38.07099],[-84.6797,38.07164],[-84.68005,38.07171],[-84.68146,38.07202],[-84.68218,38.07216],[-84.68243,38.07219],[-84.68264,38.07206],[-84.68287,38.07047],[-84.68845,38.07163],[-84.68861,38.07167],[-84.68902,38.07176],[-84.68939,38.07184],[-84.69161,38.07232],[-84.69195,38.07239],[-84.69496,38.07302],[-84.69529,38.07309],[-84.69822,38.07366],[-84.69873,38.07375],[-84.70002,38.07404],[-84.70157,38.07221],[-84.70176,38.07199],[-84.70192,38.0718],[-84.70357,38.06984],[-84.70387,38.06949],[-84.70503,38.06817],[-84.70576,38.06812],[-84.70605,38.06814],[-84.70688,38.06809],[-84.70728,38.06789],[-84.71011,38.06441],[-84.7104,38.06426],[-84.71072,38.06429],[-84.71084,38.06433],[-84.71114,38.06442],[-84.71129,38.06448],[-84.71194,38.06469],[-84.71245,38.06478],[-84.71648,38.06203],[-84.71667,38.06189],[-84.718,38.06093],[-84.71809,38.06087],[-84.71817,38.06082],[-84.71908,38.06018],[-84.71955,38.05984],[-84.71987,38.05962],[-84.72002,38.05952],[-84.72031,38.05933],[-84.72051,38.05919],[-84.72162,38.05843],[-84.72173,38.05836],[-84.72205,38.05812],[-84.72262,38.05771],[-84.72423,38.05658],[-84.72448,38.05641],[-84.72464,38.0563],[-84.72561,38.0563],[-84.72846,38.0563],[-84.72911,38.05629],[-84.72958,38.05625],[-84.73009,38.05624],[-84.73042,38.0563],[-84.73099,38.05645],[-84.73105,38.05647],[-84.7321,38.05678],[-84.73285,38.05701],[-84.73308,38.05708],[-84.73326,38.05714],[-84.73359,38.05728],[-84.734,38.05748],[-84.73705,38.059],[-84.73886,38.05992],[-84.73941,38.06019],[-84.74005,38.06049],[-84.74033,38.06062],[-84.74051,38.06072],[-84.7409,38.0609],[-84.74641,38.06365],[-84.74799,38.0646],[-84.74829,38.06486],[-84.74983,38.06615],[-84.7505,38.06667],[-84.75107,38.06711],[-84.75173,38.0676],[-84.75249,38.06819],[-84.75586,38.07074],[-84.75636,38.07113],[-84.75834,38.07264],[-84.75891,38.07309],[-84.76067,38.07442],[-84.76093,38.07462],[-84.76208,38.0755],[-84.76408,38.07753],[-84.76465,38.07811],[-84.76672,38.08023],[-84.76734,38.08073],[-84.76745,38.08079],[-84.768,38.08102],[-84.77028,38.08139],[-84.77043,38.08144],[-84.77072,38.08158],[-84.77095,38.08171],[-84.77112,38.0818],[-84.77151,38.08203],[-84.77207,38.08244],[-84.77316,38.08349],[-84.77371,38.08403],[-84.77425,38.08459],[-84.77471,38.08487],[-84.77486,38.08491],[-84.77642,38.0854],[-84.77673,38.08564],[-84.77736,38.08619],[-84.77832,38.08704],[-84.77862,38.08728],[-84.77893,38.08751],[-84.77932,38.08773],[-84.77948,38.08781],[-84.78145,38.08852],[-84.78208,38.08871],[-84.78268,38.08877],[-84.78315,38.08887],[-84.78329,38.08893],[-84.78388,38.08935],[-84.7841,38.08966],[-84.78457,38.09052],[-84.78519,38.09161],[-84.78553,38.09196],[-84.78577,38.09211],[-84.78619,38.0923],[-84.78643,38.09239],[-84.78737,38.09269],[-84.78837,38.09297],[-84.78944,38.09303],[-84.7896,38.09304],[-84.78989,38.09309],[-84.78998,38.09312],[-84.79029,38.09329],[-84.79256,38.09608],[-84.79268,38.0962],[-84.79281,38.09633],[-84.79307,38.09656],[-84.79338,38.09679],[-84.79373,38.09686],[-84.79436,38.09658],[-84.79463,38.09647],[-84.79801,38.09552],[-84.79868,38.09548],[-84.79908,38.0956],[-84.80122,38.09753],[-84.80264,38.09858],[-84.80367,38.09912],[-84.80385,38.09922],[-84.80394,38.09928],[-84.80454,38.09978],[-84.80466,38.09989],[-84.80574,38.10104],[-84.80658,38.10258],[-84.80648,38.10286],[-84.80471,38.10498],[-84.80444,38.10533],[-84.80379,38.10635],[-84.80364,38.1066],[-84.80273,38.11065],[-84.80268,38.11081],[-84.80245,38.11161],[-84.80241,38.11177],[-84.80234,38.112],[-84.80218,38.11257],[-84.80199,38.11324],[-84.80176,38.11398],[-84.80239,38.11466],[-84.80318,38.11492],[-84.80641,38.11583],[-84.8068,38.11595],[-84.80776,38.1164],[-84.80819,38.1165],[-84.80852,38.11654],[-84.80869,38.11654],[-84.80928,38.11646],[-84.80958,38.11638],[-84.81065,38.11576],[-84.81098,38.11523],[-84.81102,38.11506],[-84.8111,38.11383],[-84.8112,38.11348],[-84.81158,38.11304],[-84.81183,38.11297],[-84.81276,38.11277],[-84.81365,38.11269],[-84.81412,38.11271],[-84.81437,38.11275],[-84.81462,38.11289],[-84.81521,38.11361],[-84.81537,38.11378],[-84.81643,38.11471],[-84.81658,38.11484],[-84.81722,38.11548],[-84.81767,38.11572],[-84.8216,38.11622],[-84.82374,38.11695],[-84.82394,38.11703],[-84.82488,38.11741],[-84.82551,38.11789],[-84.82562,38.11796],[-84.82624,38.1184],[-84.82644,38.1191],[-84.82646,38.11929],[-84.82647,38.11939],[-84.8265,38.11951],[-84.8269,38.1205],[-84.82697,38.12065],[-84.82735,38.1219],[-84.82736,38.12207],[-84.82736,38.12244],[-84.82721,38.12293],[-84.82697,38.12319],[-84.82556,38.12399],[-84.82507,38.12424],[-84.82444,38.12455],[-84.82394,38.1248],[-84.82362,38.12493],[-84.82316,38.12509],[-84.82303,38.12516],[-84.82296,38.12521],[-84.82286,38.12546],[-84.82287,38.12556],[-84.82293,38.12577],[-84.82326,38.12694],[-84.82331,38.12711],[-84.82339,38.12741],[-84.8234,38.12746],[-84.82341,38.12773],[-84.82327,38.12828],[-84.82319,38.12848],[-84.82312,38.12914],[-84.82384,38.13054],[-84.82389,38.13065],[-84.82406,38.13136],[-84.82397,38.13195],[-84.82303,38.13367],[-84.82301,38.13371],[-84.82295,38.1338],[-84.82286,38.13396],[-84.82271,38.13417],[-84.82215,38.13478],[-84.82206,38.13489],[-84.82193,38.13512],[-84.82183,38.13536],[-84.8218,38.13565],[-84.82182,38.13583],[-84.82188,38.13623],[-84.82199,38.13665],[-84.82246,38.13792],[-84.8227,38.13842],[-84.82281,38.13859],[-84.82298,38.13881],[-84.82316,38.139],[-84.82384,38.13959],[-84.82403,38.13977],[-84.82419,38.1399],[-84.82439,38.14004],[-84.82455,38.14014],[-84.82477,38.14025],[-84.82501,38.14036],[-84.82419,38.1412],[-84.8238,38.14221],[-84.82363,38.14312],[-84.82256,38.1444],[-84.82201,38.14491],[-84.82168,38.14526],[-84.82053,38.14632],[-84.82037,38.14648],[-84.82032,38.14654],[-84.8202,38.14671],[-84.8201,38.14694],[-84.81965,38.14793],[-84.81956,38.14813],[-84.81944,38.14856],[-84.81934,38.14878],[-84.81879,38.14941],[-84.81873,38.14948],[-84.8184,38.14987],[-84.81828,38.15007],[-84.8182,38.15032],[-84.81822,38.15068],[-84.81826,38.15094],[-84.81827,38.15101],[-84.81828,38.15122],[-84.81824,38.1516],[-84.8184,38.15305],[-84.81846,38.1535],[-84.81854,38.155],[-84.81676,38.15853],[-84.81648,38.15914],[-84.81628,38.15957],[-84.8162,38.15973],[-84.81613,38.15988],[-84.81571,38.16071],[-84.81569,38.16076],[-84.81565,38.16092],[-84.81565,38.16103],[-84.81567,38.1611],[-84.81572,38.16122],[-84.817,38.1628],[-84.81765,38.16358],[-84.81782,38.1638],[-84.81792,38.16429],[-84.81757,38.16532],[-84.81737,38.16574],[-84.81635,38.16689],[-84.81604,38.16734],[-84.81583,38.16763],[-84.81519,38.1685],[-84.81487,38.16893],[-84.81445,38.16941],[-84.81415,38.1696],[-84.814,38.16967],[-84.81289,38.16981],[-84.81264,38.16977],[-84.81363,38.16644],[-84.81331,38.16574],[-84.81221,38.16494],[-84.81184,38.16469],[-84.81125,38.16429],[-84.81114,38.16422],[-84.81052,38.16406],[-84.80851,38.16457],[-84.8079,38.16474],[-84.80776,38.16475],[-84.80696,38.16479],[-84.80666,38.1648],[-84.80437,38.16484],[-84.80255,38.16483],[-84.79734,38.1634],[-84.79563,38.16293],[-84.79534,38.16285],[-84.79483,38.16278],[-84.79466,38.16278],[-84.79449,38.16279],[-84.79422,38.16279],[-84.79413,38.16278],[-84.79361,38.16265],[-84.79306,38.16249],[-84.79094,38.16189],[-84.78834,38.16294],[-84.78802,38.16308],[-84.78524,38.1643],[-84.78437,38.16443],[-84.78406,38.16445],[-84.78386,38.16444],[-84.78379,38.16441],[-84.78377,38.1644],[-84.78371,38.16434],[-84.78345,38.16395],[-84.7833,38.16366],[-84.78327,38.16359],[-84.78292,38.16306],[-84.78221,38.16217],[-84.78204,38.16189],[-84.78181,38.16153],[-84.78141,38.16083],[-84.78097,38.16006],[-84.78058,38.1597],[-84.78019,38.15947],[-84.77916,38.15892],[-84.77849,38.15854],[-84.77655,38.15746],[-84.77535,38.15677],[-84.77436,38.15611],[-84.77389,38.15587],[-84.77377,38.15584],[-84.77367,38.15583],[-84.77294,38.15595],[-84.77245,38.15601],[-84.77231,38.15599],[-84.77188,38.15577],[-84.77165,38.15529],[-84.77171,38.15451],[-84.77164,38.15428],[-84.7715,38.15414],[-84.7702,38.15321],[-84.7696,38.1528],[-84.76916,38.15249],[-84.76879,38.15223],[-84.76814,38.15179],[-84.76511,38.14975],[-84.76376,38.14883],[-84.76151,38.1473],[-84.75994,38.14622],[-84.7598,38.14611],[-84.75957,38.14592],[-84.75785,38.14456],[-84.75727,38.14423],[-84.75521,38.14322],[-84.75255,38.14226],[-84.75213,38.1421],[-84.75149,38.14187],[-84.75111,38.14173],[-84.73942,38.13762],[-84.72893,38.1336],[-84.72737,38.13302],[-84.71458,38.12832],[-84.70518,38.12528],[-84.69676,38.12211],[-84.69583,38.12176],[-84.69507,38.12149],[-84.69441,38.12126]]}},
{"type":"Feature","properties":{"name":"Wallace Station to Switzer Loop"},"geometry":{"type":"LineString","coordinates":[[-84.69654,38.12203],[-84.69676,38.12211],[-84.70518,38.12528],[-84.71458,38.12832],[-84.72737,38.13302],[-84.72893,38.1336],[-84.73942,38.13762],[-84.75111,38.14173],[-84.75076,38.14226],[-84.75054,38.14262],[-84.7495,38.14431],[-84.74904,38.14505],[-84.74863,38.1457],[-84.74841,38.14606],[-84.74619,38.14966],[-84.74576,38.1504],[-84.74561,38.15065],[-84.74528,38.15119],[-84.74514,38.15143],[-84.74386,38.15352],[-84.74382,38.15359],[-84.74387,38.1538],[-84.74394,38.15386],[-84.74401,38.15396],[-84.74403,38.15399],[-84.74399,38.1542],[-84.74394,38.15476],[-84.74394,38.15492],[-84.74419,38.15843],[-84.74421,38.15871],[-84.74422,38.15949],[-84.74388,38.15977],[-84.7436,38.1606],[-84.74351,38.16091],[-84.74337,38.16155],[-84.74322,38.16221],[-84.74302,38.16307],[-84.74293,38.16344],[-84.74279,38.1641],[-84.74275,38.16427],[-84.74246,38.16552],[-84.74233,38.16616],[-84.74205,38.16745],[-84.74186,38.16834],[-84.74155,38.16984],[-84.74124,38.17129],[-84.7408,38.17335],[-84.74045,38.17457],[-84.74013,38.17568],[-84.73966,38.17731],[-84.73895,38.17981],[-84.73869,38.18069],[-84.73809,38.18279],[-84.73784,38.18361],[-84.73771,38.18404],[-84.73771,38.1849],[-84.73829,38.18618],[-84.73837,38.18635],[-84.73951,38.18893],[-84.74022,38.18964],[-84.74064,38.19025],[-84.74136,38.19253],[-84.74159,38.19306],[-84.74232,38.19477],[-84.7434,38.19596],[-84.74346,38.1961],[-84.7439,38.19734],[-84.74398,38.2019],[-84.74458,38.20298],[-84.74504,38.20375],[-84.7464,38.20603],[-84.74727,38.20749],[-84.74835,38.20939],[-84.74838,38.2095],[-84.74888,38.20957],[-84.74976,38.20967],[-84.75101,38.2099],[-84.7532,38.21047],[-84.7539,38.21074],[-84.75422,38.21087],[-84.75387,38.21106],[-84.75316,38.21146],[-84.75303,38.21155],[-84.75227,38.21212],[-84.75101,38.21434],[-84.75082,38.21468],[-84.74686,38.22185],[-84.74588,38.22274],[-84.74385,38.2273],[-84.74348,38.22796],[-84.7413,38.23185],[-84.73861,38.23412],[-84.73792,38.23451],[-84.73819,38.2352],[-84.73866,38.23638],[-84.74067,38.23942],[-84.7422,38.24145],[-84.74357,38.24291],[-84.7467,38.24533],[-84.74744,38.24613],[-84.74844,38.24767],[-84.74868,38.24822],[-84.75046,38.25126],[-84.75051,38.25187],[-84.75073,38.25223],[-84.75302,38.25398],[-84.75393,38.25406],[-84.7544,38.25426],[-84.75415,38.25508],[-84.75409,38.25536],[-84.75385,38.25643],[-84.75386,38.25759],[-84.75514,38.25941],[-84.75472,38.26024],[-84.75379,38.26117],[-84.75387,38.26265],[-84.75373,38.26317],[-84.75337,38.26386],[-84.75283,38.26476],[-84.75078,38.26704],[-84.74888,38.26826],[-84.74514,38.26931],[-84.74429,38.26918],[-84.74308,38.26854],[-84.74277,38.26817],[-84.74235,38.2677],[-84.73972,38.265],[-84.73935,38.26482],[-84.73898,38.26493],[-84.73596,38.26685],[-84.73582,38.26698],[-84.73418,38.26855],[-84.73313,38.26858],[-84.73284,38.26859],[-84.7311,38.26857],[-84.73085,38.26856],[-84.72692,38.2683],[-84.72674,38.26834],[-84.72332,38.26906],[-84.72086,38.26788],[-84.71879,38.26768],[-84.71846,38.26784],[-84.71775,38.26874],[-84.71764,38.2689],[-84.71726,38.26934],[-84.71617,38.26984],[-84.71482,38.26983],[-84.71244,38.27014],[-84.71204,38.27018],[-84.711,38.27075],[-84.71024,38.27098],[-84.70758,38.27104],[-84.70677,38.27117],[-84.7065,38.27134],[-84.70639,38.27174],[-84.70638,38.27195],[-84.70634,38.27232],[-84.70617,38.2725],[-84.7042,38.27277],[-84.70161,38.27354],[-84.70147,38.27357],[-84.69988,38.27383],[-84.69893,38.27436],[-84.69872,38.27449],[-84.69792,38.27504],[-84.69711,38.27447],[-84.69606,38.27427],[-84.69589,38.27426],[-84.69389,38.27411],[-84.69256,38.2738],[-84.69189,38.27361],[-84.69094,38.27332],[-84.69049,38.27319],[-84.68811,38.27241],[-84.6877,38.27226],[-84.68737,38.27211],[-84.68547,38.27103],[-84.68278,38.26931],[-84.68092,38.26759],[-84.68064,38.26733],[-84.68054,38.26724],[-84.68026,38.26698],[-84.68015,38.26689],[-84.68005,38.2668],[-84.67979,38.26657],[-84.67895,38.26583],[-84.67865,38.26556],[-84.67631,38.26347],[-84.67454,38.26219],[-84.67416,38.26182],[-84.67355,38.26122],[-84.6751,38.26025],[-84.67564,38.2593],[-84.67656,38.25919],[-84.67724,38.25877],[-84.67785,38.25774],[-84.67834,38.25636],[-84.67942,38.25552],[-84.67951,38.25543],[-84.68039,38.25244],[-84.68114,38.25125],[-84.68126,38.25114],[-84.68167,38.25085],[-84.68182,38.25076],[-84.68344,38.25],[-84.68414,38.24951],[-84.68505,38.24831],[-84.68572,38.24712],[-84.68578,38.24698],[-84.68601,38.24628],[-84.686,38.2455],[-84.68598,38.24533],[-84.6858,38.24408],[-84.68605,38.24348],[-84.68647,38.24328],[-84.68795,38.24308],[-84.68897,38.24254],[-84.68949,38.24177],[-84.69037,38.24051],[-84.69112,38.24023],[-84.69262,38.24004],[-84.69458,38.24034],[-84.6953,38.24035],[-84.69546,38.24033],[-84.69597,38.24],[-84.69677,38.2387],[-84.69831,38.23759],[-84.69853,38.23687],[-84.69853,38.23672],[-84.69852,38.23657],[-84.69851,38.23642],[-84.69844,38.23612],[-84.69839,38.23598],[-84.69835,38.23583],[-84.69831,38.2351],[-84.69878,38.23427],[-84.69884,38.23384],[-84.69862,38.23176],[-84.69868,38.23073],[-84.6987,38.23058],[-84.69883,38.22925],[-84.69847,38.22659],[-84.69848,38.22541],[-84.69854,38.22511],[-84.69863,38.22451],[-84.69865,38.22436],[-84.69859,38.22379],[-84.69786,38.22274],[-84.69751,38.22159],[-84.69674,38.22068],[-84.69607,38.21981],[-84.69477,38.21803],[-84.6961,38.21556],[-84.69757,38.21281],[-84.69796,38.21222],[-84.69902,38.21051],[-84.69928,38.2101],[-84.7003,38.20845],[-84.70061,38.2079],[-84.70099,38.20721],[-84.70231,38.20727],[-84.7035,38.20731],[-84.70347,38.20719],[-84.70342,38.20704],[-84.70333,38.20685],[-84.7032,38.20664],[-84.70279,38.20591],[-84.70243,38.20521],[-84.70196,38.20467],[-84.69854,38.2027],[-84.69832,38.20259],[-84.69692,38.20196],[-84.6927,38.20054],[-84.69239,38.20044],[-84.6882,38.19904],[-84.68741,38.19877],[-84.6788,38.19583],[-84.67684,38.19528],[-84.67641,38.19515],[-84.66653,38.19181],[-84.66646,38.19179],[-84.66135,38.19032],[-84.66135,38.19019],[-84.66134,38.19014],[-84.66116,38.18976],[-84.66115,38.18973],[-84.66121,38.18953],[-84.66124,38.18948],[-84.66144,38.18919],[-84.66152,38.18909],[-84.66295,38.18717],[-84.66305,38.18703],[-84.66346,38.18647],[-84.66356,38.18633],[-84.66405,38.18568],[-84.66414,38.18555],[-84.66424,38.18542],[-84.66534,38.18392],[-84.66603,38.1827],[-84.66611,38.18256],[-84.66669,38.18167],[-84.66713,38.18032],[-84.6672,38.18017],[-84.66734,38.17987],[-84.66748,38.17955],[-84.66785,38.17876],[-84.66791,38.1786],[-84.66852,38.17724],[-84.66864,38.17695],[-84.66888,38.17641],[-84.66893,38.17629],[-84.66936,38.17538],[-84.66946,38.17523],[-84.66983,38.17461],[-84.66994,38.17444],[-84.67114,38.1725],[-84.67137,38.17212],[-84.67195,38.17116],[-84.67203,38.17101],[-84.6722,38.17072],[-84.67237,38.17043],[-84.67254,38.17016],[-84.67324,38.16904],[-84.67344,38.16871],[-84.67395,38.16789],[-84.67425,38.16742],[-84.67488,38.16641],[-84.67517,38.16594],[-84.67596,38.16456],[-84.67619,38.16416],[-84.67641,38.16377],[-84.67652,38.16356],[-84.67662,38.1634],[-84.6768,38.1631],[-84.67688,38.16296],[-84.67704,38.16269],[-84.67724,38.16237],[-84.67732,38.16223],[-84.6776,38.16168],[-84.67769,38.16155],[-84.67771,38.16148],[-84.67773,38.16138],[-84.67784,38.16036],[-84.67791,38.15958],[-84.67794,38.15926],[-84.67798,38.1587],[-84.67802,38.15838],[-84.67803,38.15834],[-84.67816,38.1582],[-84.67848,38.15814],[-84.67885,38.15828],[-84.67905,38.15834],[-84.67955,38.15852],[-84.68012,38.15873],[-84.68053,38.1589],[-84.68081,38.15901],[-84.68174,38.15944],[-84.68182,38.15924],[-84.68187,38.15917],[-84.68278,38.15851],[-84.68297,38.15841],[-84.68336,38.15818],[-84.68352,38.15807],[-84.68365,38.15796],[-84.68406,38.15747],[-84.68427,38.15684],[-84.68428,38.15665],[-84.68427,38.15654],[-84.6842,38.15619],[-84.68407,38.15587],[-84.68356,38.15499],[-84.68348,38.15487],[-84.68324,38.15453],[-84.68313,38.15437],[-84.68306,38.15426],[-84.68299,38.15414],[-84.68279,38.15339],[-84.6829,38.15294],[-84.68366,38.1516],[-84.68327,38.15146],[-84.68263,38.15124],[-84.68215,38.15105],[-84.68195,38.15098],[-84.68207,38.15077],[-84.68229,38.15039],[-84.68199,38.15029],[-84.68099,38.14993],[-84.681,38.14982],[-84.68101,38.14963],[-84.68103,38.14938],[-84.68105,38.14917],[-84.68121,38.14864],[-84.68127,38.14853],[-84.6817,38.14786],[-84.68275,38.14609],[-84.68234,38.14595],[-84.68186,38.14578],[-84.68141,38.14562],[-84.68123,38.14555],[-84.6804,38.14519],[-84.6798,38.14474],[-84.67972,38.14469],[-84.67952,38.14453],[-84.67943,38.14445],[-84.67932,38.14436],[-84.67828,38.14351],[-84.67817,38.14341],[-84.67803,38.14331],[-84.67733,38.14274],[-84.67701,38.1425],[-84.67696,38.14246],[-84.67667,38.14228],[-84.67653,38.1422],[-84.67637,38.14211],[-84.67608,38.14193],[-84.67582,38.14173],[-84.67463,38.14056],[-84.67425,38.14026],[-84.67412,38.14017],[-84.67259,38.1385],[-84.67146,38.13832],[-84.67058,38.13827],[-84.67008,38.13824],[-84.66993,38.13823],[-84.66863,38.13816],[-84.66847,38.13815],[-84.66768,38.13807],[-84.66693,38.13775],[-84.66677,38.13768],[-84.66629,38.13743],[-84.66613,38.13735],[-84.6645,38.13654],[-84.66316,38.13606],[-84.66277,38.13592],[-84.66239,38.13578],[-84.66203,38.13565],[-84.66144,38.13545],[-84.65922,38.13467],[-84.65871,38.13449],[-84.6581,38.13428],[-84.65776,38.13416],[-84.65738,38.13402],[-84.65719,38.13396],[-84.65551,38.13338],[-84.65532,38.13331],[-84.65512,38.13324],[-84.65296,38.13251],[-84.6522,38.13225],[-84.64904,38.13111],[-84.64891,38.13105],[-84.64878,38.13098],[-84.64866,38.13091],[-84.64811,38.13065],[-84.64797,38.1306],[-84.64697,38.13026],[-84.64683,38.13021],[-84.64559,38.12979],[-84.64545,38.12974],[-84.64429,38.1293],[-84.64412,38.12925],[-84.64297,38.12918],[-84.64224,38.12926],[-84.64116,38.12931],[-84.64036,38.1292],[-84.64009,38.12912],[-84.63949,38.12885],[-84.63876,38.12823],[-84.63868,38.12816],[-84.63852,38.12802],[-84.6385,38.12753],[-84.63845,38.12735],[-84.63796,38.12629],[-84.63819,38.12598],[-84.63871,38.1257],[-84.63867,38.12517],[-84.63864,38.12498],[-84.63863,38.12451],[-84.63887,38.12398],[-84.639,38.1237],[-84.63923,38.12322],[-84.63937,38.1229],[-84.64002,38.12146],[-84.64011,38.12127],[-84.64059,38.12026],[-84.64185,38.1191],[-84.64233,38.11767],[-84.6424,38.11746],[-84.64261,38.11686],[-84.64269,38.11669],[-84.64301,38.11609],[-84.64344,38.11553],[-84.64408,38.11456],[-84.64645,38.11096],[-84.64654,38.11082],[-84.64664,38.11067],[-84.64673,38.11053],[-84.6468,38.11042],[-84.64767,38.1091],[-84.6479,38.10875],[-84.64878,38.10743],[-84.6491,38.10694],[-84.64917,38.10683],[-84.64924,38.10672],[-84.65043,38.10491],[-84.6507,38.10496],[-84.65093,38.10501],[-84.65147,38.10512],[-84.65199,38.10523],[-84.65661,38.10612],[-84.65972,38.10685],[-84.66541,38.10871],[-84.66571,38.10882],[-84.66659,38.10913],[-84.67309,38.11188],[-84.67965,38.1154],[-84.68344,38.11728],[-84.68651,38.11833],[-84.68737,38.11862],[-84.68931,38.11936],[-84.68952,38.11943],[-84.69058,38.11984],[-84.69366,38.12099],[-84.69507,38.12149],[-84.69583,38.12176],[-84.69643,38.12199]]}},
{"type":"Feature","properties":{"name":"RRR 38 Mile - Gorge"},"geometry":{"type":"LineString","coordinates":[[-83.69112,37.78234],[-83.6908,37.78217],[-83.69067,37.78215],[-83.69006,37.78207],[-83.68946,37.78216],[-83.68816,37.78267],[-83.68699,37.78294],[-83.68516,37.78302],[-83.68395,37.7827],[-83.68305,37.7821],[-83.68179,37.7804],[-83.68127,37.78015],[-83.68047,37.78003],[-83.68041,37.78053],[-83.68041,37.78059],[-83.68162,37.78094],[-83.68204,37.78135],[-83.68276,37.7827],[-83.6833,37.78311],[-83.68386,37.78333],[-83.68475,37.78341],[-83.68813,37.78333],[-83.68873,37.78321],[-83.69014,37.78266],[-83.69077,37.78275],[-83.69122,37.78303],[-83.69127,37.78308],[-83.69149,37.78369],[-83.69112,37.78504],[-83.69115,37.78627],[-83.69141,37.78695],[-83.69196,37.78759],[-83.69278,37.7881],[-83.69701,37.79001],[-83.69859,37.79141],[-83.7032,37.79377],[-83.70376,37.79416],[-83.70381,37.79421],[-83.70406,37.79464],[-83.70411,37.79508],[-83.70365,37.79784],[-83.70364,37.7979],[-83.70358,37.79821],[-83.70715,37.79933],[-83.70872,37.8032],[-83.70885,37.80337],[-83.70954,37.80411],[-83.71077,37.80495],[-83.71166,37.80571],[-83.71285,37.80748],[-83.71312,37.80832],[-83.71299,37.80975],[-83.71345,37.81059],[-83.71473,37.81129],[-83.71566,37.81185],[-83.71756,37.81374],[-83.71883,37.81477],[-83.71803,37.81531],[-83.71653,37.81549],[-83.71641,37.81554],[-83.71483,37.81646],[-83.71354,37.81663],[-83.71192,37.81634],[-83.71041,37.81565],[-83.70919,37.81576],[-83.70832,37.8157],[-83.7067,37.81488],[-83.70526,37.8144],[-83.7038,37.81413],[-83.70195,37.81432],[-83.70127,37.81415],[-83.70063,37.81391],[-83.69962,37.81368],[-83.69846,37.81381],[-83.69774,37.81366],[-83.69672,37.81367],[-83.69539,37.81422],[-83.69452,37.81496],[-83.69391,37.81527],[-83.69149,37.81559],[-83.68871,37.81651],[-83.68676,37.81681],[-83.68447,37.81659],[-83.68374,37.81661],[-83.68325,37.81667],[-83.68201,37.81715],[-83.6793,37.81743],[-83.67853,37.81729],[-83.67763,37.81748],[-83.67724,37.81733],[-83.67719,37.81666],[-83.67669,37.81605],[-83.67637,37.81585],[-83.67611,37.81586],[-83.67541,37.81619],[-83.67465,37.81627],[-83.67428,37.81696],[-83.67382,37.81664],[-83.67345,37.81662],[-83.67136,37.81727],[-83.66967,37.81847],[-83.66787,37.81911],[-83.66644,37.8205],[-83.66463,37.82173],[-83.6644,37.82193],[-83.66238,37.82388],[-83.66129,37.82614],[-83.66144,37.82725],[-83.66242,37.82934],[-83.66237,37.82984],[-83.6618,37.83101],[-83.66172,37.83229],[-83.6615,37.83269],[-83.66044,37.83293],[-83.65977,37.83374],[-83.65957,37.8338],[-83.65746,37.83327],[-83.65594,37.83342],[-83.65528,37.83372],[-83.65371,37.83483],[-83.65226,37.83546],[-83.6517,37.83559],[-83.64793,37.83478],[-83.64717,37.83442],[-83.64619,37.83232],[-83.64568,37.83142],[-83.64497,37.83015],[-83.64441,37.82868],[-83.64367,37.8273],[-83.64336,37.82702],[-83.64231,37.82676],[-83.64063,37.82666],[-83.63589,37.82688],[-83.63439,37.82708],[-83.6323,37.82679],[-83.63155,37.82674],[-83.63101,37.82675],[-83.6305,37.8269],[-83.62995,37.82754],[-83.62969,37.82761],[-83.62938,37.82753],[-83.62922,37.82717],[-83.62927,37.82584],[-83.62893,37.82526],[-83.62778,37.82402],[-83.62743,37.82384],[-83.62673,37.82401],[-83.62588,37.82479],[-83.62546,37.82662],[-83.62543,37.82717],[-83.62495,37.82876],[-83.62457,37.8294],[-83.62403,37.82977],[-83.62361,37.83027],[-83.62284,37.83076],[-83.62251,37.8313],[-83.62238,37.83158],[-83.62193,37.83265],[-83.62185,37.83298],[-83.6218,37.83421],[-83.62143,37.83471],[-83.62095,37.83501],[-83.61853,37.8358],[-83.61778,37.83593],[-83.61448,37.83609],[-83.61341,37.83587],[-83.61236,37.8353],[-83.61162,37.83528],[-83.61087,37.83561],[-83.60967,37.83669],[-83.60822,37.83594],[-83.60821,37.83572],[-83.60721,37.83458],[-83.60715,37.83442],[-83.60724,37.83322],[-83.60697,37.83306],[-83.60498,37.83257],[-83.60462,37.83179],[-83.60477,37.83114],[-83.6057,37.83],[-83.6057,37.82983],[-83.60532,37.82982],[-83.60363,37.83037],[-83.60032,37.8308],[-83.59967,37.8304],[-83.59901,37.82957],[-83.59848,37.82817],[-83.59843,37.82769],[-83.59728,37.82605],[-83.59744,37.82439],[-83.59774,37.82327],[-83.59728,37.82202],[-83.59593,37.8208],[-83.5952,37.82059],[-83.59342,37.81977],[-83.59161,37.81958],[-83.59032,37.81898],[-83.58994,37.81901],[-83.58788,37.8199],[-83.58759,37.82018],[-83.58731,37.82087],[-83.58703,37.82335],[-83.5865,37.82536],[-83.58599,37.82564],[-83.5853,37.82572],[-83.5838,37.82543],[-83.58313,37.82523],[-83.58166,37.82489],[-83.58124,37.82431],[-83.58134,37.82266],[-83.58248,37.8214],[-83.58242,37.82113],[-83.58198,37.82079],[-83.58129,37.82066],[-83.58072,37.82079],[-83.57892,37.82083],[-83.57612,37.8211],[-83.57545,37.82097],[-83.57494,37.82046],[-83.57444,37.81935],[-83.57452,37.81899],[-83.57637,37.81806],[-83.57757,37.81772],[-83.57856,37.81712],[-83.57813,37.81617],[-83.57813,37.81597],[-83.57841,37.81568],[-83.57852,37.81561],[-83.57999,37.81507],[-83.58131,37.81514],[-83.58187,37.81496],[-83.58272,37.81392],[-83.58287,37.81302],[-83.58316,37.8126],[-83.58312,37.81223],[-83.58347,37.81191],[-83.58451,37.81197],[-83.58512,37.8115],[-83.58657,37.81147],[-83.58789,37.81126],[-83.5884,37.81071],[-83.58897,37.8105],[-83.58939,37.80967],[-83.58958,37.80953],[-83.58995,37.80961],[-83.5902,37.8101],[-83.58996,37.81109],[-83.59025,37.81192],[-83.59002,37.81256],[-83.58921,37.81283],[-83.5868,37.81321],[-83.58651,37.81339],[-83.58595,37.81417],[-83.58452,37.81464],[-83.58417,37.81544],[-83.58449,37.81627],[-83.584635,37.816263],[-83.58449,37.81627],[-83.58417,37.81544],[-83.58452,37.81464],[-83.58595,37.81417],[-83.58651,37.81339],[-83.5868,37.81321],[-83.58921,37.81283],[-83.59002,37.81256],[-83.59025,37.81192],[-83.58996,37.81109],[-83.5902,37.8101],[-83.59025,37.80949],[-83.58995,37.80816],[-83.59031,37.80693],[-83.59022,37.80669],[-83.58863,37.80643],[-83.58847,37.80628],[-83.58853,37.80592],[-83.58941,37.80508],[-83.59016,37.80438],[-83.59042,37.80392],[-83.59084,37.80247],[-83.59003,37.80097],[-83.59002,37.80072],[-83.59094,37.80001],[-83.59095,37.79922],[-83.59136,37.79775],[-83.59211,37.79718],[-83.593,37.79583],[-83.59323,37.79521],[-83.59295,37.79459],[-83.59129,37.79384],[-83.59079,37.79333],[-83.59078,37.79303],[-83.59123,37.79231],[-83.59128,37.79195],[-83.59079,37.79104],[-83.5908,37.79053],[-83.59131,37.79014],[-83.59169,37.79001],[-83.59363,37.79032],[-83.59447,37.79023],[-83.59485,37.79047],[-83.59528,37.79144],[-83.59562,37.79158],[-83.596,37.79145],[-83.59663,37.79088],[-83.59774,37.79073],[-83.59823,37.79047],[-83.59844,37.79025],[-83.59865,37.78996],[-83.59867,37.78921],[-83.59951,37.78835],[-83.5999,37.78754],[-83.60064,37.78749],[-83.60189,37.78776],[-83.60231,37.78768],[-83.60261,37.78743],[-83.60302,37.78675],[-83.60377,37.78643],[-83.60484,37.78574],[-83.60493,37.78545],[-83.60466,37.78513],[-83.60351,37.78506],[-83.60299,37.78481],[-83.60211,37.78473],[-83.60185,37.78448],[-83.6019,37.78411],[-83.60331,37.78269],[-83.60401,37.78243],[-83.60463,37.78195],[-83.6045,37.781],[-83.60493,37.78034],[-83.60505,37.77968],[-83.60524,37.77938],[-83.60554,37.7792],[-83.60649,37.77907],[-83.60696,37.77907],[-83.60751,37.77923],[-83.6079,37.77916],[-83.60854,37.77875],[-83.60875,37.77795],[-83.60879,37.77774],[-83.60883,37.77688],[-83.60774,37.77552],[-83.60771,37.77475],[-83.60887,37.7738],[-83.61032,37.77332],[-83.611,37.77288],[-83.6113,37.77248],[-83.61148,37.7719],[-83.60987,37.77011],[-83.60995,37.76875],[-83.60902,37.76778],[-83.60896,37.76737],[-83.60959,37.76606],[-83.61062,37.7645],[-83.61128,37.764],[-83.61231,37.76375],[-83.6129,37.76363],[-83.61306,37.76359],[-83.61286,37.76334],[-83.61206,37.76263],[-83.61035,37.7617],[-83.61001,37.76129],[-83.61001,37.7608],[-83.6106,37.75886],[-83.61041,37.7567],[-83.6097,37.75463],[-83.60876,37.75298],[-83.6095,37.75263],[-83.61131,37.75229],[-83.61479,37.75246],[-83.61891,37.75172],[-83.61965,37.75128],[-83.62363,37.74733],[-83.62402,37.74725],[-83.62525,37.74752],[-83.62678,37.74722],[-83.62815,37.74646],[-83.62908,37.74512],[-83.62944,37.7448],[-83.63028,37.74459],[-83.6318,37.74477],[-83.63262,37.74445],[-83.63387,37.74386],[-83.6345,37.74384],[-83.63567,37.74404],[-83.64006,37.74381],[-83.64116,37.74372],[-83.64208,37.74343],[-83.6434,37.74251],[-83.64392,37.74193],[-83.64583,37.73572],[-83.64555,37.73242],[-83.6457,37.73139],[-83.6463,37.73013],[-83.64782,37.72768],[-83.64851,37.72712],[-83.64978,37.7266],[-83.6504,37.72582],[-83.6538,37.71869],[-83.65379,37.71806],[-83.65329,37.71689],[-83.65367,37.71584],[-83.65418,37.71522],[-83.65507,37.71462],[-83.65624,37.71404],[-83.65739,37.71368],[-83.65778,37.7136],[-83.66072,37.71317],[-83.66192,37.71266],[-83.663,37.71198],[-83.66341,37.71127],[-83.66321,37.71036],[-83.66328,37.7099],[-83.66414,37.70874],[-83.66461,37.70843],[-83.6651,37.70833],[-83.66798,37.70839],[-83.66932,37.70882],[-83.66974,37.70885],[-83.67333,37.70739],[-83.67541,37.70613],[-83.67586,37.70606],[-83.67627,37.70627],[-83.67528,37.70653],[-83.67356,37.70764],[-83.67039,37.70924],[-83.66832,37.71119],[-83.66737,37.71295],[-83.66654,37.71373],[-83.66566,37.71437],[-83.66485,37.71486],[-83.66379,37.71524],[-83.66326,37.71567],[-83.66254,37.71729],[-83.65925,37.72248],[-83.65893,37.72383],[-83.65879,37.72731],[-83.65787,37.72997],[-83.658,37.73048],[-83.65873,37.73168],[-83.65889,37.73276],[-83.65863,37.73358],[-83.65755,37.73505],[-83.65754,37.73511],[-83.6575,37.73697],[-83.65655,37.73862],[-83.65643,37.73923],[-83.65655,37.73981],[-83.65687,37.74035],[-83.65725,37.74069],[-83.65908,37.74159],[-83.65963,37.74217],[-83.66064,37.74414],[-83.66138,37.74651],[-83.66209,37.7477],[-83.66236,37.74934],[-83.66277,37.7501],[-83.66331,37.75055],[-83.6654,37.75167],[-83.66594,37.75223],[-83.6661,37.7527],[-83.66607,37.75323],[-83.66529,37.75461],[-83.66522,37.75545],[-83.66525,37.75554],[-83.66565,37.75616],[-83.6674,37.7576],[-83.66822,37.75815],[-83.66964,37.75885],[-83.67021,37.75944],[-83.67037,37.76027],[-83.66959,37.7623],[-83.66969,37.763],[-83.6701,37.76368],[-83.67058,37.76407],[-83.67122,37.76437],[-83.67404,37.76501],[-83.67463,37.76541],[-83.67456,37.76596],[-83.67386,37.76693],[-83.67385,37.76749],[-83.67419,37.76798],[-83.67585,37.76907],[-83.67624,37.76955],[-83.67625,37.77154],[-83.67689,37.77281],[-83.67669,37.77348],[-83.67664,37.77354],[-83.67567,37.77421],[-83.6754,37.77468],[-83.67557,37.77514],[-83.6769,37.7761],[-83.67714,37.77652],[-83.67697,37.77699],[-83.67598,37.77794],[-83.67581,37.77963],[-83.6761,37.78],[-83.67649,37.78017],[-83.67884,37.78032],[-83.67916,37.78038],[-83.6792,37.78039],[-83.68041,37.78053],[-83.68047,37.78003],[-83.68127,37.78015],[-83.68179,37.7804],[-83.68305,37.7821],[-83.68395,37.7827],[-83.68516,37.78302],[-83.68699,37.78294],[-83.68735,37.78287]]}},
{"type":"Feature","properties":{"name":"Windy Corner Market 40 miler"},"geometry":{"type":"LineString","coordinates":[[-84.37414,38.10556],[-84.37551,38.10426],[-84.37429,38.10289],[-84.37142,38.09976],[-84.36979,38.09797],[-84.36853,38.09655],[-84.36837,38.09637],[-84.36649,38.09765],[-84.36412,38.09929],[-84.3618,38.10085],[-84.36066,38.10163],[-84.36034,38.10186],[-84.35947,38.1023],[-84.35491,38.1031],[-84.35387,38.10329],[-84.35078,38.10384],[-84.34922,38.10455],[-84.34856,38.10485],[-84.34494,38.10657],[-84.34461,38.10672],[-84.34353,38.10725],[-84.34348,38.10716],[-84.34343,38.10705],[-84.34242,38.10494],[-84.34221,38.10499],[-84.34213,38.10501],[-84.33657,38.1063],[-84.33613,38.1064],[-84.33397,38.10689],[-84.333,38.10696],[-84.32842,38.10625],[-84.3253,38.10712],[-84.32499,38.10721],[-84.32177,38.10818],[-84.32112,38.10839],[-84.31836,38.10922],[-84.31553,38.1092],[-84.31486,38.10919],[-84.31359,38.10917],[-84.31316,38.10917],[-84.31223,38.10929],[-84.30651,38.11086],[-84.30254,38.11339],[-84.29739,38.11528],[-84.29729,38.11541],[-84.29736,38.11644],[-84.29727,38.11644],[-84.29692,38.11641],[-84.29642,38.11638],[-84.29596,38.11635],[-84.2957,38.11634],[-84.2953,38.11632],[-84.29068,38.11606],[-84.28786,38.11576],[-84.28588,38.11508],[-84.28014,38.11398],[-84.27119,38.11316],[-84.26223,38.11264],[-84.26134,38.11245],[-84.26086,38.11224],[-84.26075,38.11218],[-84.2506,38.10691],[-84.23759,38.11956],[-84.23431,38.12252],[-84.23046,38.12636],[-84.22998,38.12643],[-84.22734,38.12633],[-84.22594,38.12687],[-84.22557,38.12691],[-84.22009,38.12335],[-84.21997,38.12327],[-84.21839,38.12229],[-84.21426,38.12572],[-84.21246,38.12614],[-84.21179,38.12617],[-84.21087,38.12654],[-84.20903,38.12824],[-84.20842,38.12905],[-84.20838,38.13053],[-84.20544,38.13234],[-84.20401,38.1332],[-84.19768,38.12887],[-84.19701,38.12825],[-84.19669,38.12737],[-84.19689,38.12479],[-84.19666,38.12318],[-84.19584,38.12175],[-84.19415,38.12015],[-84.19,38.12301],[-84.18714,38.12446],[-84.18428,38.12677],[-84.18115,38.12968],[-84.17789,38.13094],[-84.1737,38.13294],[-84.17209,38.13351],[-84.16886,38.13411],[-84.16277,38.13441],[-84.1608,38.13407],[-84.15771,38.13507],[-84.15319,38.1372],[-84.14543,38.14155],[-84.13588,38.1463],[-84.13286,38.14866],[-84.13146,38.14954],[-84.13058,38.14969],[-84.12966,38.14957],[-84.12563,38.14828],[-84.12313,38.14794],[-84.12236,38.14811],[-84.12155,38.14925],[-84.11871,38.148],[-84.11685,38.14648],[-84.11628,38.14619],[-84.11297,38.14536],[-84.11118,38.14517],[-84.11142,38.14394],[-84.1135,38.14072],[-84.11543,38.1355],[-84.11594,38.13456],[-84.11734,38.13413],[-84.11806,38.13378],[-84.11945,38.13186],[-84.12103,38.13012],[-84.13129,38.12001],[-84.13188,38.11956],[-84.13426,38.11831],[-84.1363,38.11538],[-84.13875,38.11382],[-84.14255,38.11104],[-84.14508,38.10938],[-84.14683,38.10906],[-84.15875,38.10128],[-84.15954,38.10084],[-84.1617,38.09996],[-84.16217,38.09991],[-84.16252,38.10005],[-84.16569,38.1027],[-84.16845,38.10624],[-84.16883,38.10651],[-84.17149,38.10742],[-84.17487,38.10918],[-84.17669,38.10958],[-84.17821,38.10952],[-84.18205,38.10862],[-84.19233,38.10557],[-84.19331,38.10493],[-84.19705,38.10201],[-84.20309,38.09934],[-84.20405,38.0988],[-84.21003,38.09224],[-84.21074,38.09178],[-84.2267,38.08925],[-84.22834,38.08919],[-84.23675,38.08699],[-84.24541,38.08367],[-84.26865,38.08514],[-84.26923,38.08515],[-84.26928,38.08516],[-84.26938,38.08516],[-84.26999,38.08516],[-84.273,38.08514],[-84.27632,38.08454],[-84.27745,38.08431],[-84.28124,38.08362],[-84.28239,38.08357],[-84.28869,38.08326],[-84.29001,38.08319],[-84.29659,38.08288],[-84.29794,38.08272],[-84.29912,38.0822],[-84.30122,38.08042],[-84.30172,38.07999],[-84.30387,38.07818],[-84.30593,38.07653],[-84.30671,38.07592],[-84.30702,38.07582],[-84.31239,38.07557],[-84.31275,38.07546],[-84.31296,38.07535],[-84.31705,38.07307],[-84.31785,38.07255],[-84.3199,38.07128],[-84.32025,38.0711],[-84.32146,38.07069],[-84.32337,38.0704],[-84.32485,38.07018],[-84.32657,38.07001],[-84.32767,38.06985],[-84.32999,38.06952],[-84.33103,38.06937],[-84.33178,38.06927],[-84.33348,38.06903],[-84.33411,38.06894],[-84.33616,38.06865],[-84.33963,38.06817],[-84.34027,38.06808],[-84.34526,38.06738],[-84.34629,38.06724],[-84.34873,38.0669],[-84.34887,38.06688],[-84.34898,38.06684],[-84.34908,38.06681],[-84.34918,38.06676],[-84.34945,38.06663],[-84.34978,38.06658],[-84.34991,38.06686],[-84.35031,38.0677],[-84.35111,38.06935],[-84.35156,38.07026],[-84.35337,38.07396],[-84.35357,38.07438],[-84.35382,38.07489],[-84.35426,38.07576],[-84.35433,38.0759],[-84.35674,38.07974],[-84.35741,38.08036],[-84.35894,38.0811],[-84.35918,38.08132],[-84.35923,38.0818],[-84.35899,38.08333],[-84.35769,38.08512],[-84.35757,38.08575],[-84.35759,38.08584],[-84.35777,38.08619],[-84.35839,38.08675],[-84.35934,38.08755],[-84.36061,38.08865],[-84.36132,38.08939],[-84.36672,38.09421],[-84.36837,38.09637],[-84.36853,38.09655],[-84.36979,38.09797],[-84.37142,38.09976],[-84.37429,38.10289],[-84.37551,38.10426],[-84.37414,38.10556]]}},
{"type":"Feature","properties":{"name":"Shakertown / New Providence Church"},"geometry":{"type":"LineString","coordinates":[[-84.74012,37.81741],[-84.74039,37.81612],[-84.74164,37.80487],[-84.74193,37.80437],[-84.74422,37.80189],[-84.75057,37.80249],[-84.75083,37.80252],[-84.75279,37.80275],[-84.75392,37.80288],[-84.76553,37.80402],[-84.7703,37.80679],[-84.77076,37.80706],[-84.77233,37.80799],[-84.77359,37.80764],[-84.77383,37.80759],[-84.77518,37.80744],[-84.77638,37.80746],[-84.77794,37.80759],[-84.77898,37.80757],[-84.77975,37.80741],[-84.78039,37.80714],[-84.7811,37.80663],[-84.78169,37.80691],[-84.78405,37.80796],[-84.78606,37.8087],[-84.79453,37.80892],[-84.79557,37.80895],[-84.80245,37.80912],[-84.81316,37.80992],[-84.81328,37.80995],[-84.81533,37.81192],[-84.81892,37.81362],[-84.81949,37.81356],[-84.82374,37.81234],[-84.82445,37.812],[-84.82716,37.81429],[-84.82765,37.81495],[-84.82777,37.81548],[-84.82783,37.81592],[-84.82795,37.81687],[-84.82799,37.81735],[-84.82811,37.81877],[-84.82797,37.82051],[-84.8273,37.8225],[-84.82553,37.82515],[-84.82537,37.82557],[-84.82558,37.83206],[-84.82593,37.83336],[-84.82677,37.83456],[-84.82988,37.83481],[-84.83233,37.83582],[-84.83297,37.83596],[-84.83921,37.83645],[-84.83981,37.83625],[-84.84161,37.83504],[-84.84213,37.83499],[-84.84427,37.83516],[-84.84468,37.83507],[-84.84515,37.83434],[-84.84561,37.83299],[-84.84588,37.83269],[-84.84628,37.83262],[-84.84918,37.83276],[-84.84918,37.83325],[-84.84948,37.83326],[-84.84968,37.83341],[-84.85242,37.83707],[-84.85287,37.83804],[-84.85297,37.83872],[-84.85287,37.84116],[-84.85192,37.84534],[-84.85112,37.84529],[-84.84338,37.84486],[-84.8432,37.845],[-84.84315,37.84617],[-84.84298,37.84635],[-84.84192,37.84652],[-84.83799,37.84653],[-84.83688,37.84967],[-84.83393,37.85539],[-84.83389,37.85573],[-84.83431,37.85686],[-84.83303,37.86013],[-84.83235,37.86178],[-84.8309,37.8641],[-84.8311,37.86429],[-84.83274,37.86428],[-84.84858,37.86444],[-84.85336,37.86459],[-84.86042,37.86467],[-84.86909,37.86495],[-84.8738,37.86523],[-84.87575,37.86517],[-84.87676,37.86546],[-84.87738,37.86616],[-84.87843,37.86657],[-84.87921,37.8671],[-84.88648,37.86866],[-84.89044,37.8689],[-84.89107,37.86576],[-84.89516,37.85528],[-84.89302,37.85476],[-84.89217,37.8536],[-84.8914,37.85095],[-84.89253,37.85049],[-84.89274,37.8503],[-84.89199,37.84847],[-84.89215,37.84634],[-84.89173,37.84525],[-84.89167,37.84331],[-84.89136,37.84238],[-84.8915,37.84161],[-84.88846,37.84071],[-84.88816,37.84048],[-84.88808,37.84029],[-84.88837,37.83957],[-84.88832,37.83933],[-84.88588,37.8375],[-84.88611,37.83552],[-84.88583,37.83471],[-84.88496,37.83326],[-84.88512,37.8322],[-84.88473,37.82963],[-84.88434,37.82815],[-84.88562,37.82643],[-84.88607,37.82559],[-84.87075,37.82495],[-84.86249,37.8243],[-84.86173,37.82417],[-84.85959,37.82319],[-84.85728,37.82305],[-84.85394,37.82295],[-84.84981,37.82389],[-84.8412,37.82557],[-84.83917,37.82631],[-84.83754,37.82664],[-84.83673,37.82716],[-84.83538,37.82714],[-84.83337,37.82684],[-84.8273,37.8225],[-84.82797,37.82051],[-84.82811,37.81877],[-84.82799,37.81735],[-84.82795,37.81687],[-84.82783,37.81592],[-84.82777,37.81548],[-84.82765,37.81495],[-84.82716,37.81429],[-84.82445,37.812],[-84.82374,37.81234],[-84.81949,37.81356],[-84.81892,37.81362],[-84.81533,37.81192],[-84.81328,37.80995],[-84.81316,37.80992],[-84.80245,37.80912],[-84.79557,37.80895],[-84.79453,37.80892],[-84.78606,37.8087],[-84.78405,37.80796],[-84.78169,37.80691],[-84.7811,37.80663],[-84.78039,37.80714],[-84.77975,37.80741],[-84.77898,37.80757],[-84.77794,37.80759],[-84.77638,37.80746],[-84.77518,37.80744],[-84.77383,37.80759],[-84.77359,37.80764],[-84.77233,37.80799],[-84.77076,37.80706],[-84.7703,37.80679],[-84.76553,37.80402],[-84.75392,37.80288],[-84.75279,37.80275],[-84.75083,37.80252],[-84.75057,37.80249],[-84.74422,37.80189],[-84.74193,37.80437],[-84.74164,37.80487],[-84.74039,37.81612],[-84.74012,37.81741]]}},
{"type":"Feature","properties":{"name":"Chinoe-Old Richmond-Athens-Cleveland-Home"},"geometry":{"type":"LineString","coordinates":[[-84.48075,37.99679],[-84.4812,37.99693],[-84.48221,37.9947],[-84.48204,37.99315],[-84.48181,37.99125],[-84.48194,37.99047],[-84.48286,37.98887],[-84.48562,37.98653],[-84.48532,37.9863],[-84.4851,37.98613],[-84.48496,37.98604],[-84.4853,37.98531],[-84.48527,37.98474],[-84.48339,37.9817],[-84.48281,37.98111],[-84.48112,37.98028],[-84.48007,37.9799],[-84.47866,37.97967],[-84.47745,37.97984],[-84.47698,37.97903],[-84.47658,37.97791],[-84.4766,37.97684],[-84.47694,37.9759],[-84.47769,37.9748],[-84.47734,37.97465],[-84.4769,37.97446],[-84.47598,37.97403],[-84.47372,37.97294],[-84.47284,37.97216],[-84.4725,37.97187],[-84.47233,37.97171],[-84.47204,37.9711],[-84.47205,37.96943],[-84.47149,37.96846],[-84.46961,37.96715],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.41219,37.92652],[-84.41213,37.92662],[-84.41152,37.92773],[-84.40837,37.93335],[-84.40573,37.93862],[-84.40546,37.93916],[-84.40536,37.93932],[-84.40502,37.93908],[-84.40096,37.93652],[-84.38446,37.9318],[-84.38105,37.93],[-84.37961,37.92923],[-84.37281,37.92535],[-84.36921,37.92427],[-84.36892,37.92417],[-84.36749,37.92573],[-84.36619,37.92718],[-84.36584,37.92959],[-84.36566,37.93005],[-84.36369,37.93158],[-84.36326,37.93218],[-84.3634,37.93331],[-84.36392,37.93499],[-84.36417,37.93891],[-84.3646,37.94172],[-84.36444,37.9426],[-84.3644,37.94277],[-84.36463,37.94797],[-84.36466,37.94835],[-84.36483,37.94876],[-84.36482,37.94889],[-84.36443,37.94937],[-84.36388,37.95001],[-84.36331,37.95073],[-84.36394,37.95107],[-84.36398,37.95121],[-84.36398,37.95125],[-84.36399,37.9515],[-84.364,37.95231],[-84.36404,37.95409],[-84.36406,37.95545],[-84.36407,37.95666],[-84.36453,37.96485],[-84.36428,37.96525],[-84.36297,37.96641],[-84.3626,37.96721],[-84.36253,37.9682],[-84.36293,37.96961],[-84.36488,37.97301],[-84.365,37.97328],[-84.36513,37.97383],[-84.36477,37.97524],[-84.36472,37.9765],[-84.36482,37.98285],[-84.3635,37.98638],[-84.36257,37.98829],[-84.36207,37.98927],[-84.3608,37.99184],[-84.35997,37.99422],[-84.36,37.9975],[-84.35972,37.99973],[-84.3595,38.00123],[-84.35932,38.00246],[-84.35916,38.00365],[-84.35918,38.00484],[-84.35947,38.00676],[-84.35981,38.00898],[-84.35969,38.01135],[-84.35914,38.0149],[-84.35783,38.02015],[-84.35725,38.02336],[-84.35664,38.02568],[-84.35648,38.02629],[-84.35639,38.027],[-84.3564,38.02848],[-84.35632,38.02967],[-84.35695,38.02968],[-84.35714,38.02968],[-84.35983,38.02961],[-84.36001,38.02961],[-84.36152,38.02977],[-84.36162,38.0298],[-84.36193,38.02987],[-84.36206,38.0298],[-84.36218,38.02973],[-84.36266,38.02937],[-84.36421,38.02825],[-84.3651,38.02762],[-84.36578,38.02711],[-84.36854,38.0251],[-84.37058,38.02362],[-84.37162,38.02283],[-84.37207,38.0225],[-84.37236,38.02246],[-84.37279,38.02271],[-84.37286,38.02269],[-84.37292,38.02266],[-84.37359,38.02217],[-84.37419,38.02172],[-84.37491,38.02119],[-84.37633,38.02015],[-84.37843,38.01861],[-84.37971,38.01769],[-84.38016,38.01732],[-84.38075,38.0167],[-84.3813,38.01613],[-84.38204,38.01529],[-84.38254,38.01479],[-84.38346,38.01384],[-84.38462,38.0127],[-84.385,38.01229],[-84.3856,38.01155],[-84.38596,38.01112],[-84.38631,38.01074],[-84.3866,38.01049],[-84.38673,38.01031],[-84.38676,38.01021],[-84.38686,38.0098],[-84.387,38.00946],[-84.38705,38.00941],[-84.38711,38.00935],[-84.38716,38.00932],[-84.38721,38.0093],[-84.38734,38.00927],[-84.38734,38.0092],[-84.3873,38.00908],[-84.38726,38.00899],[-84.38725,38.00893],[-84.38727,38.00888],[-84.38731,38.00885],[-84.38736,38.00881],[-84.38729,38.00873],[-84.38727,38.00869],[-84.38725,38.00866],[-84.38724,38.00862],[-84.3872,38.0083],[-84.38722,38.00819],[-84.38741,38.00766],[-84.38754,38.00749],[-84.38785,38.0072],[-84.38842,38.00668],[-84.38929,38.0059],[-84.38969,38.00557],[-84.39107,38.00431],[-84.39133,38.00404],[-84.39152,38.00385],[-84.39166,38.0037],[-84.39173,38.00363],[-84.39185,38.00351],[-84.39218,38.00316],[-84.39237,38.00297],[-84.39264,38.00269],[-84.39278,38.00256],[-84.39397,38.00151],[-84.39468,38.00094],[-84.39576,38.00008],[-84.39581,38.00004],[-84.396,37.9999],[-84.39674,37.99927],[-84.39744,37.99867],[-84.39756,37.99855],[-84.39768,37.99811],[-84.39707,37.99696],[-84.39683,37.99656],[-84.39663,37.99623],[-84.3966,37.99618],[-84.39658,37.99612],[-84.39657,37.9961],[-84.39655,37.99598],[-84.39711,37.99609],[-84.39792,37.99625],[-84.39963,37.9966],[-84.39974,37.99662],[-84.39979,37.99657],[-84.40007,37.99571],[-84.40052,37.99504],[-84.40086,37.99476],[-84.40181,37.99386],[-84.40218,37.99396],[-84.40259,37.994],[-84.40268,37.994],[-84.40326,37.99374],[-84.40476,37.99255],[-84.40514,37.99238],[-84.40697,37.99227],[-84.40872,37.99079],[-84.40914,37.9904],[-84.41033,37.98922],[-84.41243,37.98646],[-84.41246,37.98642],[-84.41246,37.98607],[-84.41202,37.98558],[-84.41212,37.98532],[-84.41291,37.98475],[-84.41476,37.98345],[-84.41521,37.98314],[-84.41602,37.98378],[-84.41611,37.98382],[-84.41699,37.98407],[-84.41765,37.98407],[-84.41847,37.98383],[-84.41913,37.98341],[-84.41936,37.98325],[-84.41968,37.98306],[-84.41974,37.98303],[-84.42228,37.98249],[-84.42239,37.98243],[-84.42266,37.98227],[-84.42271,37.98223],[-84.42285,37.98206],[-84.42271,37.98198],[-84.42285,37.98184],[-84.42298,37.98179],[-84.42334,37.98143],[-84.4237,37.9813],[-84.42482,37.98118],[-84.42569,37.98108],[-84.42511,37.97921],[-84.42529,37.9792],[-84.42588,37.97919],[-84.42643,37.97918],[-84.42722,37.97916],[-84.42773,37.97915],[-84.42873,37.97914],[-84.42962,37.97912],[-84.43355,37.97907],[-84.43388,37.97889],[-84.43401,37.97769],[-84.43439,37.97739],[-84.4345,37.97733],[-84.43536,37.97716],[-84.43646,37.97721],[-84.43702,37.97723],[-84.4379,37.97727],[-84.43967,37.97734],[-84.44077,37.97738],[-84.44126,37.97726],[-84.44349,37.97544],[-84.44393,37.97507],[-84.44425,37.97473],[-84.44567,37.97248],[-84.44581,37.97227],[-84.44735,37.96982],[-84.4478,37.96911],[-84.44784,37.96902],[-84.4479,37.9689],[-84.44827,37.96624],[-84.44832,37.96596],[-84.44851,37.96456],[-84.4498,37.96242],[-84.44996,37.96219],[-84.45142,37.95972],[-84.45207,37.95868],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46961,37.96715],[-84.47149,37.96846],[-84.47205,37.96943],[-84.47204,37.9711],[-84.47233,37.97171],[-84.4725,37.97187],[-84.47284,37.97216],[-84.47372,37.97294],[-84.47598,37.97403],[-84.4769,37.97446],[-84.47734,37.97465],[-84.47769,37.9748],[-84.47694,37.9759],[-84.4766,37.97684],[-84.47658,37.97791],[-84.47698,37.97903],[-84.47745,37.97984],[-84.47866,37.97967],[-84.48007,37.9799],[-84.48112,37.98028],[-84.48281,37.98111],[-84.48339,37.9817],[-84.48527,37.98474],[-84.4853,37.98531],[-84.48496,37.98604],[-84.4851,37.98613],[-84.48532,37.9863],[-84.48562,37.98653],[-84.48286,37.98887],[-84.48194,37.99047],[-84.48181,37.99125],[-84.48204,37.99315],[-84.48221,37.9947],[-84.4812,37.99693],[-84.48089,37.99684]]}},
{"type":"Feature","properties":{"name":"Bellerive up Ford's Mill"},"geometry":{"type":"LineString","coordinates":[[-84.59093,37.98573],[-84.59164,37.98598],[-84.59211,37.98603],[-84.59215,37.98622],[-84.59236,37.98621],[-84.59282,37.98625],[-84.5929,37.98626],[-84.5945,37.98636],[-84.59466,37.98638],[-84.5957,37.98681],[-84.59863,37.98725],[-84.60215,37.98808],[-84.60282,37.98809],[-84.60346,37.98769],[-84.6043,37.98622],[-84.60494,37.98609],[-84.60539,37.98624],[-84.60563,37.98635],[-84.60607,37.98652],[-84.60634,37.98598],[-84.60673,37.98521],[-84.60722,37.98427],[-84.6086,37.98155],[-84.60898,37.98075],[-84.61016,37.97828],[-84.61088,37.9769],[-84.6114,37.97588],[-84.61164,37.97542],[-84.61202,37.97467],[-84.61243,37.97407],[-84.61369,37.97318],[-84.61375,37.97314],[-84.61408,37.97296],[-84.61422,37.97288],[-84.61569,37.97219],[-84.61584,37.97219],[-84.61592,37.9722],[-84.61595,37.9722],[-84.6168,37.97246],[-84.61711,37.97256],[-84.61728,37.97262],[-84.61752,37.9727],[-84.61782,37.97279],[-84.62003,37.97348],[-84.62024,37.97354],[-84.62077,37.97371],[-84.62529,37.97515],[-84.62893,37.97627],[-84.63198,37.97719],[-84.63244,37.97714],[-84.63335,37.97679],[-84.63403,37.97658],[-84.63429,37.97648],[-84.63455,37.97637],[-84.63531,37.9761],[-84.63611,37.97598],[-84.63828,37.97671],[-84.63857,37.97681],[-84.63986,37.97727],[-84.64013,37.97737],[-84.64028,37.97742],[-84.64049,37.9775],[-84.6409,37.97764],[-84.64109,37.97771],[-84.64139,37.97748],[-84.64184,37.97713],[-84.64217,37.97687],[-84.64229,37.97677],[-84.64392,37.97549],[-84.64414,37.97533],[-84.64535,37.9745],[-84.64547,37.97441],[-84.64821,37.97213],[-84.64811,37.97127],[-84.64728,37.97029],[-84.64706,37.96984],[-84.64785,37.96818],[-84.64797,37.96794],[-84.64915,37.96551],[-84.6493,37.9652],[-84.64983,37.96411],[-84.65106,37.9626],[-84.6512,37.96239],[-84.6528,37.95967],[-84.65286,37.95956],[-84.65351,37.95778],[-84.65355,37.95762],[-84.65373,37.957],[-84.65453,37.9556],[-84.65478,37.95514],[-84.65567,37.95353],[-84.6558,37.95327],[-84.65606,37.95332],[-84.65823,37.95378],[-84.65933,37.95402],[-84.66058,37.95429],[-84.66079,37.95434],[-84.66179,37.95462],[-84.662,37.95469],[-84.66235,37.95482],[-84.66256,37.95491],[-84.66276,37.955],[-84.66333,37.95411],[-84.66388,37.95323],[-84.66451,37.95222],[-84.66438,37.95164],[-84.66445,37.95104],[-84.66453,37.95038],[-84.66468,37.94898],[-84.66476,37.94826],[-84.66488,37.94747],[-84.66659,37.94444],[-84.6665,37.94423],[-84.66574,37.94402],[-84.66505,37.94364],[-84.66367,37.94346],[-84.66316,37.94315],[-84.66407,37.94048],[-84.66397,37.94008],[-84.66373,37.93977],[-84.66276,37.93834],[-84.66181,37.93657],[-84.66176,37.9365],[-84.66092,37.93552],[-84.66077,37.93534],[-84.66069,37.9352],[-84.66066,37.93509],[-84.66064,37.93496],[-84.66028,37.93238],[-84.65999,37.93028],[-84.65977,37.92864],[-84.65974,37.92833],[-84.65967,37.92701],[-84.65964,37.92641],[-84.65956,37.92429],[-84.66075,37.92149],[-84.66015,37.9202],[-84.65944,37.91968],[-84.6593,37.91942],[-84.65796,37.91577],[-84.6573,37.91268],[-84.65727,37.91252],[-84.65662,37.90845],[-84.6563,37.90796],[-84.65459,37.90652],[-84.65474,37.90641],[-84.6548,37.90636],[-84.65565,37.90566],[-84.65578,37.90555],[-84.65749,37.90419],[-84.66208,37.90116],[-84.66232,37.90113],[-84.66272,37.90151],[-84.66293,37.90154],[-84.66454,37.90046],[-84.66486,37.90024],[-84.66636,37.89929],[-84.66638,37.8993],[-84.66671,37.89964],[-84.66857,37.90163],[-84.66862,37.90162],[-84.66889,37.90154],[-84.66942,37.90137],[-84.67,37.90118],[-84.67449,37.89971],[-84.67491,37.89957],[-84.67505,37.89953],[-84.67759,37.89939],[-84.68207,37.89845],[-84.68442,37.89778],[-84.68569,37.89753],[-84.68644,37.89751],[-84.68724,37.89781],[-84.68975,37.8993],[-84.69026,37.89947],[-84.69034,37.90002],[-84.69137,37.9017],[-84.69429,37.90477],[-84.69453,37.90499],[-84.69508,37.90552],[-84.69592,37.90632],[-84.69613,37.90617],[-84.69622,37.90611],[-84.69685,37.90566],[-84.69833,37.90461],[-84.70306,37.90123],[-84.70371,37.90069],[-84.7038,37.90061],[-84.70407,37.90071],[-84.70447,37.90082],[-84.70463,37.90087],[-84.70748,37.90146],[-84.70899,37.90123],[-84.70993,37.9014],[-84.7105,37.90239],[-84.71032,37.90446],[-84.71054,37.90585],[-84.71057,37.90601],[-84.71071,37.90799],[-84.71105,37.90899],[-84.71128,37.9093],[-84.71155,37.90962],[-84.71214,37.9102],[-84.71261,37.91176],[-84.71329,37.91187],[-84.71394,37.91218],[-84.71496,37.91333],[-84.71541,37.91357],[-84.71652,37.91336],[-84.71754,37.91337],[-84.72339,37.91377],[-84.72831,37.91425],[-84.72881,37.91412],[-84.73148,37.91243],[-84.73267,37.91218],[-84.73525,37.9119],[-84.736,37.91193],[-84.73778,37.91227],[-84.73996,37.91218],[-84.74295,37.913],[-84.74377,37.91303],[-84.74421,37.91289],[-84.74566,37.91193],[-84.74834,37.91076],[-84.75525,37.90616],[-84.7568,37.90934],[-84.75721,37.91138],[-84.75665,37.9152],[-84.75593,37.91707],[-84.75559,37.91755],[-84.75381,37.91888],[-84.75314,37.92007],[-84.75348,37.92369],[-84.75293,37.92533],[-84.75279,37.92646],[-84.75302,37.92759],[-84.75371,37.92933],[-84.75332,37.93265],[-84.75244,37.93422],[-84.75156,37.93487],[-84.75121,37.93595],[-84.75028,37.93759],[-84.74984,37.93895],[-84.7493,37.93945],[-84.74839,37.94159],[-84.74795,37.94207],[-84.74659,37.9428],[-84.74529,37.94386],[-84.74504,37.94452],[-84.74474,37.94697],[-84.74435,37.94742],[-84.74255,37.94866],[-84.74058,37.94953],[-84.73947,37.94972],[-84.73402,37.94869],[-84.73253,37.94871],[-84.72794,37.9498],[-84.72764,37.95004],[-84.72693,37.95126],[-84.72596,37.95181],[-84.72516,37.95177],[-84.72328,37.95134],[-84.72115,37.95219],[-84.72139,37.95115],[-84.72128,37.95072],[-84.7167,37.94453],[-84.7158,37.93925],[-84.71508,37.93768],[-84.71057,37.93476],[-84.70536,37.93221],[-84.70521,37.93179],[-84.70536,37.93092],[-84.70526,37.93016],[-84.7039,37.92875],[-84.70375,37.92748],[-84.70306,37.92494],[-84.70279,37.9246],[-84.70189,37.92402],[-84.70126,37.92254],[-84.7005,37.92179],[-84.70033,37.92125],[-84.70034,37.91977],[-84.69979,37.91871],[-84.69562,37.91208],[-84.69437,37.90992],[-84.69406,37.91012],[-84.69355,37.9105],[-84.69337,37.91064],[-84.69284,37.91102],[-84.69243,37.91132],[-84.69056,37.91275],[-84.69023,37.91402],[-84.68988,37.91542],[-84.68751,37.9172],[-84.68694,37.91762],[-84.68548,37.91863],[-84.68434,37.91934],[-84.68361,37.91977],[-84.68332,37.91993],[-84.68228,37.92054],[-84.68096,37.92139],[-84.6796,37.92228],[-84.67845,37.92322],[-84.67601,37.92562],[-84.67377,37.92755],[-84.67331,37.92792],[-84.67258,37.92852],[-84.6711,37.92974],[-84.6704,37.9303],[-84.66887,37.93151],[-84.66775,37.93227],[-84.66573,37.93359],[-84.66427,37.93422],[-84.66399,37.93434],[-84.6613,37.93506],[-84.66069,37.9352],[-84.65492,37.93694],[-84.65092,37.93755],[-84.65028,37.93806],[-84.64883,37.93985],[-84.64802,37.94041],[-84.64373,37.9421],[-84.64227,37.94281],[-84.63776,37.9439],[-84.63651,37.94395],[-84.63555,37.94417],[-84.63209,37.94773],[-84.63032,37.94929],[-84.62465,37.9591],[-84.62458,37.95922],[-84.62343,37.96112],[-84.62214,37.96274],[-84.61901,37.96846],[-84.61861,37.9692],[-84.6171,37.97197],[-84.617,37.97214],[-84.6168,37.97246],[-84.61595,37.9722],[-84.61592,37.9722],[-84.61584,37.97219],[-84.61569,37.97219],[-84.61422,37.97288],[-84.61408,37.97296],[-84.61375,37.97314],[-84.61369,37.97318],[-84.61243,37.97407],[-84.61202,37.97467],[-84.61164,37.97542],[-84.6114,37.97588],[-84.61088,37.9769],[-84.61016,37.97828],[-84.60898,37.98075],[-84.6086,37.98155],[-84.60722,37.98427],[-84.60673,37.98521],[-84.60634,37.98598],[-84.60607,37.98652],[-84.60563,37.98635],[-84.60539,37.98624],[-84.60494,37.98609],[-84.6043,37.98622],[-84.60346,37.98769],[-84.60282,37.98809],[-84.60215,37.98808],[-84.59863,37.98725],[-84.5957,37.98681],[-84.59466,37.98638],[-84.5945,37.98636],[-84.5929,37.98626],[-84.59282,37.98625],[-84.59236,37.98621],[-84.59232,37.98601],[-84.59211,37.98603],[-84.59164,37.98598],[-84.59093,37.98573]]}},
{"type":"Feature","properties":{"name":"Bellerive to High Bridge via Drakes"},"geometry":{"type":"LineString","coordinates":[[-84.59093,37.98573],[-84.59164,37.98598],[-84.59211,37.98603],[-84.59232,37.98601],[-84.59226,37.98568],[-84.59074,37.98147],[-84.59073,37.98024],[-84.59114,37.97875],[-84.59129,37.97833],[-84.59108,37.97828],[-84.59129,37.97833],[-84.59148,37.97781],[-84.59315,37.97328],[-84.59562,37.96681],[-84.59644,37.9621],[-84.59683,37.95963],[-84.59749,37.95548],[-84.59748,37.95376],[-84.59761,37.95369],[-84.59798,37.95362],[-84.59819,37.95346],[-84.59828,37.95337],[-84.59946,37.95035],[-84.60112,37.94671],[-84.604,37.9417],[-84.60502,37.93788],[-84.60573,37.93382],[-84.60623,37.93285],[-84.60642,37.93253],[-84.60714,37.93149],[-84.61034,37.92939],[-84.61297,37.92748],[-84.61398,37.92657],[-84.615,37.92541],[-84.61514,37.92524],[-84.61609,37.92383],[-84.61626,37.92353],[-84.61642,37.9232],[-84.61639,37.92277],[-84.61648,37.92255],[-84.61627,37.92249],[-84.61518,37.92222],[-84.61482,37.92212],[-84.61461,37.92207],[-84.6147,37.92188],[-84.61479,37.92168],[-84.61491,37.9214],[-84.61736,37.91625],[-84.61767,37.91074],[-84.61768,37.91063],[-84.61852,37.90773],[-84.61886,37.90711],[-84.62102,37.90525],[-84.62182,37.9041],[-84.62323,37.90263],[-84.62796,37.89865],[-84.62874,37.89797],[-84.63036,37.89655],[-84.63143,37.89567],[-84.63172,37.89552],[-84.63181,37.8955],[-84.63191,37.89547],[-84.63199,37.89542],[-84.63204,37.89549],[-84.63218,37.89563],[-84.63569,37.89286],[-84.63668,37.89212],[-84.63696,37.8919],[-84.6383,37.8907],[-84.63996,37.88863],[-84.64011,37.88838],[-84.6405,37.88785],[-84.64244,37.88513],[-84.64301,37.88434],[-84.6448,37.88171],[-84.64587,37.88081],[-84.64603,37.8807],[-84.64676,37.8802],[-84.64596,37.88005],[-84.64586,37.88002],[-84.64524,37.87988],[-84.64063,37.87948],[-84.64022,37.87781],[-84.63958,37.87699],[-84.63748,37.87484],[-84.63719,37.87473],[-84.63626,37.87471],[-84.63663,37.87131],[-84.63652,37.87115],[-84.63594,37.87117],[-84.63535,37.87122],[-84.63488,37.87123],[-84.63511,37.86635],[-84.63512,37.86609],[-84.63519,37.86492],[-84.63521,37.86463],[-84.63521,37.86452],[-84.6335,37.86444],[-84.63333,37.86444],[-84.62964,37.86425],[-84.62912,37.86423],[-84.63133,37.86261],[-84.63165,37.8613],[-84.63147,37.86085],[-84.63125,37.86049],[-84.63089,37.85941],[-84.62935,37.85828],[-84.62868,37.85647],[-84.62867,37.85616],[-84.62895,37.8556],[-84.62985,37.85444],[-84.6301,37.85413],[-84.63068,37.85347],[-84.63133,37.85345],[-84.63232,37.85314],[-84.6337,37.85291],[-84.63463,37.85256],[-84.63499,37.85232],[-84.6354,37.85202],[-84.63551,37.85183],[-84.63556,37.85161],[-84.63562,37.85138],[-84.63585,37.85098],[-84.63866,37.84828],[-84.64038,37.84807],[-84.64204,37.84743],[-84.6462,37.84494],[-84.64667,37.84413],[-84.64654,37.84342],[-84.64648,37.84333],[-84.64516,37.84247],[-84.64531,37.84119],[-84.64562,37.8408],[-84.64583,37.84073],[-84.64629,37.84041],[-84.64663,37.84034],[-84.64832,37.84091],[-84.64968,37.84072],[-84.65008,37.84083],[-84.65047,37.84112],[-84.65099,37.84116],[-84.65158,37.83979],[-84.65157,37.83905],[-84.65181,37.83844],[-84.65293,37.8371],[-84.65303,37.83704],[-84.6549,37.83608],[-84.65588,37.83534],[-84.65726,37.83352],[-84.65831,37.83241],[-84.65875,37.83076],[-84.659,37.83042],[-84.66633,37.83075],[-84.66645,37.83074],[-84.66702,37.83041],[-84.66725,37.83034],[-84.67333,37.83209],[-84.67682,37.83334],[-84.67715,37.83361],[-84.67794,37.83417],[-84.67922,37.83545],[-84.67957,37.83561],[-84.67983,37.83567],[-84.68018,37.83575],[-84.68047,37.83524],[-84.68095,37.83478],[-84.68275,37.83384],[-84.68562,37.83373],[-84.68802,37.83415],[-84.68815,37.83418],[-84.68907,37.83435],[-84.68976,37.83425],[-84.69171,37.83285],[-84.69878,37.82874],[-84.70123,37.82807],[-84.71067,37.8263],[-84.71175,37.82583],[-84.71424,37.82528],[-84.71431,37.82526]]}},
{"type":"Feature","properties":{"name":"Loop from Cold Stream"},"geometry":{"type":"LineString","coordinates":[[-84.48791,38.09656],[-84.48768,38.09686],[-84.4884,38.09886],[-84.48904,38.09935],[-84.49071,38.10114],[-84.49114,38.10134],[-84.49153,38.1015],[-84.49214,38.10153],[-84.49236,38.10182],[-84.49344,38.10249],[-84.4938,38.10268],[-84.49594,38.10392],[-84.4962,38.1039],[-84.49654,38.10368],[-84.49667,38.1036],[-84.49762,38.10318],[-84.49808,38.10527],[-84.49928,38.1058],[-84.49982,38.10625],[-84.50222,38.10739],[-84.50277,38.10766],[-84.50538,38.10907],[-84.50838,38.11048],[-84.50782,38.11121],[-84.5079,38.11137],[-84.51016,38.11221],[-84.51112,38.11297],[-84.51203,38.11295],[-84.51331,38.11332],[-84.51497,38.1139],[-84.51515,38.11418],[-84.51336,38.11559],[-84.51229,38.11837],[-84.51217,38.11852],[-84.51189,38.11857],[-84.51104,38.11834],[-84.51088,38.11831],[-84.51068,38.11845],[-84.51022,38.11968],[-84.50964,38.12026],[-84.51099,38.12095],[-84.51161,38.12148],[-84.51237,38.1228],[-84.5135,38.12397],[-84.51639,38.12495],[-84.51637,38.12518],[-84.5145,38.12805],[-84.51386,38.12793],[-84.51331,38.12756],[-84.51311,38.12751],[-84.5128,38.12762],[-84.51227,38.12847],[-84.512,38.12877],[-84.5111,38.12922],[-84.51041,38.13002],[-84.51054,38.13119],[-84.50994,38.13177],[-84.50984,38.13232],[-84.50962,38.13231],[-84.50924,38.13264],[-84.50759,38.13316],[-84.50689,38.13307],[-84.50636,38.13257],[-84.50568,38.13237],[-84.50502,38.13274],[-84.50436,38.13288],[-84.50227,38.1366],[-84.50213,38.13692],[-84.50001,38.13622],[-84.49781,38.13548],[-84.48967,38.13281],[-84.48897,38.1326],[-84.4858,38.13163],[-84.48492,38.13132],[-84.48347,38.13082],[-84.47959,38.13772],[-84.47872,38.13928],[-84.47369,38.14805],[-84.47275,38.14976],[-84.47213,38.15084],[-84.47088,38.15314],[-84.46754,38.15961],[-84.46708,38.16038],[-84.46523,38.16365],[-84.46389,38.16601],[-84.46368,38.16645],[-84.46345,38.1689],[-84.46338,38.16972],[-84.46332,38.17035],[-84.46323,38.17115],[-84.46321,38.17164],[-84.46339,38.17186],[-84.46456,38.17227],[-84.46594,38.17277],[-84.46507,38.17436],[-84.46423,38.17584],[-84.46379,38.17663],[-84.4626,38.17866],[-84.45947,38.1811],[-84.45769,38.1825],[-84.45582,38.18468],[-84.45382,38.18709],[-84.45209,38.18914],[-84.45104,38.19027],[-84.44965,38.18986],[-84.44936,38.18991],[-84.44652,38.19364],[-84.44522,38.19465],[-84.44418,38.19569],[-84.44406,38.19582],[-84.44374,38.1964],[-84.44374,38.20034],[-84.44373,38.20196],[-84.44373,38.20211],[-84.44374,38.2024],[-84.4437,38.20471],[-84.44306,38.20457],[-84.44266,38.20449],[-84.44227,38.2044],[-84.44151,38.20425],[-84.4404,38.20403],[-84.43713,38.20342],[-84.43673,38.20335],[-84.43636,38.20328],[-84.43459,38.20295],[-84.42885,38.20273],[-84.42856,38.20288],[-84.42852,38.20294],[-84.42783,38.20401],[-84.4252,38.20315],[-84.42484,38.20303],[-84.42293,38.20239],[-84.42272,38.20233],[-84.41799,38.20057],[-84.41657,38.2],[-84.41416,38.19911],[-84.40889,38.1972],[-84.40745,38.19692],[-84.39769,38.19535],[-84.39647,38.19763],[-84.39561,38.19734],[-84.39055,38.19699],[-84.38893,38.19648],[-84.38136,38.19622],[-84.36864,38.19624],[-84.36916,38.19545],[-84.37014,38.19399],[-84.37017,38.19396],[-84.37252,38.19083],[-84.37292,38.19028],[-84.37449,38.18831],[-84.37526,38.18699],[-84.37712,38.18402],[-84.37865,38.18169],[-84.38026,38.17918],[-84.38105,38.17743],[-84.3814,38.17664],[-84.38293,38.1734],[-84.38344,38.17266],[-84.38367,38.17235],[-84.38452,38.17129],[-84.38746,38.16696],[-84.38808,38.16608],[-84.38844,38.16557],[-84.38886,38.16498],[-84.39058,38.1628],[-84.39537,38.15925],[-84.39718,38.15767],[-84.39741,38.15746],[-84.39972,38.15499],[-84.4001,38.15461],[-84.40046,38.15424],[-84.40335,38.15128],[-84.39659,38.14915],[-84.3962,38.14902],[-84.39374,38.14824],[-84.39038,38.1472],[-84.38644,38.14596],[-84.3841,38.14524],[-84.38131,38.14431],[-84.37791,38.14316],[-84.37653,38.14274],[-84.37628,38.14297],[-84.37545,38.14425],[-84.37296,38.14797],[-84.36665,38.14589],[-84.3665,38.14584],[-84.36154,38.14427],[-84.36121,38.14418],[-84.35986,38.14374],[-84.35906,38.14303],[-84.35878,38.14279],[-84.35806,38.14219],[-84.3576,38.1418],[-84.35706,38.14135],[-84.35672,38.14108],[-84.35536,38.14211],[-84.35494,38.1424],[-84.3526,38.14394],[-84.35246,38.14383],[-84.35226,38.14371],[-84.35012,38.14259],[-84.34968,38.14239],[-84.34378,38.13961],[-84.33879,38.13787],[-84.33821,38.13765],[-84.33738,38.13737],[-84.3364,38.13731],[-84.33602,38.13731],[-84.33462,38.13729],[-84.33464,38.1371],[-84.33465,38.13704],[-84.33462,38.13385],[-84.33559,38.13038],[-84.33587,38.13015],[-84.33658,38.12964],[-84.33868,38.12902],[-84.33906,38.12891],[-84.34381,38.1275],[-84.34554,38.12677],[-84.34569,38.12668],[-84.34918,38.12423],[-84.34931,38.12414],[-84.35145,38.12264],[-84.35194,38.12229],[-84.35207,38.12219],[-84.35396,38.12086],[-84.35413,38.12074],[-84.35573,38.11959],[-84.35598,38.1194],[-84.35725,38.1178],[-84.3625,38.11449],[-84.36344,38.11374],[-84.36411,38.1132],[-84.36577,38.11188],[-84.36647,38.11109],[-84.36689,38.11067],[-84.36763,38.11006],[-84.36805,38.10975],[-84.37156,38.10809],[-84.37249,38.10722],[-84.37414,38.10556],[-84.37551,38.10426],[-84.37819,38.1072],[-84.38267,38.1122],[-84.38328,38.11288],[-84.38459,38.11433],[-84.3884,38.11858],[-84.38926,38.1194],[-84.3877,38.12022],[-84.3873,38.12046],[-84.3869,38.12071],[-84.38421,38.12259],[-84.38448,38.12286],[-84.38506,38.12337],[-84.38676,38.1249],[-84.39093,38.12858],[-84.39136,38.12908],[-84.39072,38.13039],[-84.39081,38.13042],[-84.39811,38.13339],[-84.4037,38.13574],[-84.40436,38.13606],[-84.40819,38.13834],[-84.41485,38.1424],[-84.41468,38.1427],[-84.41426,38.1434],[-84.41364,38.14449],[-84.4129,38.14579],[-84.41214,38.1471],[-84.41073,38.14948],[-84.41062,38.14968],[-84.41059,38.14977],[-84.41056,38.14993],[-84.41075,38.15045],[-84.41109,38.15096],[-84.41344,38.15457],[-84.41369,38.15462],[-84.41389,38.15469],[-84.41818,38.15607],[-84.42052,38.15683],[-84.42301,38.15762],[-84.42438,38.15808],[-84.42785,38.1592],[-84.42849,38.15941],[-84.43621,38.16184],[-84.44215,38.16369],[-84.44409,38.1643],[-84.44564,38.16479],[-84.45144,38.1666],[-84.45253,38.16695],[-84.45411,38.16744],[-84.45689,38.16831],[-84.45878,38.16889],[-84.46062,38.16949],[-84.46209,38.16996],[-84.46332,38.17035],[-84.46338,38.16972],[-84.46345,38.1689],[-84.46368,38.16645],[-84.46389,38.16601],[-84.46523,38.16365],[-84.46708,38.16038],[-84.46754,38.15961],[-84.47088,38.15314],[-84.47213,38.15084],[-84.47275,38.14976],[-84.47369,38.14805],[-84.47872,38.13928],[-84.47959,38.13772],[-84.48347,38.13082],[-84.48492,38.13132],[-84.4858,38.13163],[-84.48897,38.1326],[-84.48967,38.13281],[-84.49781,38.13548],[-84.50001,38.13622],[-84.50213,38.13692],[-84.50227,38.1366],[-84.50436,38.13288],[-84.50502,38.13274],[-84.50568,38.13237],[-84.50636,38.13257],[-84.50689,38.13307],[-84.50759,38.13316],[-84.50924,38.13264],[-84.50962,38.13231],[-84.50984,38.13232],[-84.50994,38.13177],[-84.51054,38.13119],[-84.51041,38.13002],[-84.5111,38.12922],[-84.512,38.12877],[-84.51227,38.12847],[-84.5128,38.12762],[-84.51311,38.12751],[-84.51331,38.12756],[-84.51386,38.12793],[-84.5145,38.12805],[-84.51637,38.12518],[-84.51639,38.12495],[-84.5135,38.12397],[-84.51237,38.1228],[-84.51161,38.12148],[-84.51099,38.12095],[-84.50964,38.12026],[-84.51022,38.11968],[-84.51068,38.11845],[-84.51088,38.11831],[-84.51104,38.11834],[-84.51189,38.11857],[-84.51217,38.11852],[-84.51229,38.11837],[-84.51336,38.11559],[-84.51515,38.11418],[-84.51497,38.1139],[-84.51331,38.11332],[-84.51203,38.11295],[-84.51112,38.11297],[-84.51016,38.11221],[-84.5079,38.11137],[-84.50782,38.11121],[-84.50838,38.11048],[-84.50538,38.10907],[-84.50277,38.10766],[-84.50222,38.10739],[-84.49982,38.10625],[-84.49928,38.1058],[-84.49808,38.10527],[-84.49762,38.10318],[-84.49667,38.1036],[-84.49654,38.10368],[-84.4962,38.1039],[-84.49594,38.10392],[-84.4938,38.10268],[-84.49344,38.10249],[-84.49236,38.10182],[-84.49214,38.10153],[-84.49153,38.1015],[-84.49114,38.10134],[-84.49071,38.10114],[-84.48904,38.09935],[-84.4884,38.09886],[-84.48768,38.09686],[-84.48794,38.09651]]}},
{"type":"Feature","properties":{"name":"Polo Club 30 miler"},"geometry":{"type":"LineString","coordinates":[[-84.40544,38.02441],[-84.40556,38.02431],[-84.40544,38.02441],[-84.41083,38.02914],[-84.41172,38.03024],[-84.41226,38.03126],[-84.41269,38.03271],[-84.41275,38.03411],[-84.41224,38.0381],[-84.41175,38.04019],[-84.41374,38.04058],[-84.41642,38.0408],[-84.42058,38.05039],[-84.43307,38.06078],[-84.43592,38.06264],[-84.44043,38.06804],[-84.43762,38.06897],[-84.43293,38.07074],[-84.43128,38.07139],[-84.42848,38.07245],[-84.42367,38.07406],[-84.42161,38.0747],[-84.42034,38.075],[-84.41923,38.07519],[-84.41628,38.07566],[-84.41572,38.07574],[-84.41478,38.07596],[-84.4137,38.07647],[-84.41364,38.0765],[-84.41334,38.0767],[-84.41319,38.07679],[-84.41226,38.07606],[-84.41175,38.07565],[-84.41101,38.07528],[-84.40918,38.07384],[-84.40761,38.07313],[-84.40703,38.0729],[-84.40617,38.07255],[-84.40206,38.07065],[-84.40001,38.06997],[-84.39757,38.06937],[-84.39728,38.06931],[-84.3964,38.06925],[-84.39612,38.06931],[-84.39602,38.0693],[-84.39161,38.06817],[-84.39011,38.06779],[-84.38895,38.06759],[-84.38712,38.0682],[-84.38569,38.06872],[-84.38332,38.06953],[-84.38194,38.06989],[-84.37933,38.06941],[-84.37229,38.06673],[-84.37181,38.06666],[-84.37113,38.06658],[-84.3675,38.06615],[-84.36315,38.06659],[-84.36161,38.06675],[-84.35697,38.06718],[-84.35365,38.06695],[-84.35272,38.06689],[-84.35181,38.06682],[-84.3515,38.0668],[-84.35118,38.06676],[-84.35062,38.06669],[-84.34978,38.06658],[-84.34991,38.06686],[-84.35031,38.0677],[-84.35111,38.06935],[-84.35156,38.07026],[-84.35337,38.07396],[-84.35357,38.07438],[-84.35382,38.07489],[-84.35426,38.07576],[-84.35433,38.0759],[-84.35674,38.07974],[-84.35741,38.08036],[-84.35894,38.0811],[-84.35918,38.08132],[-84.35923,38.0818],[-84.35899,38.08333],[-84.35769,38.08512],[-84.35757,38.08575],[-84.35759,38.08584],[-84.35777,38.08619],[-84.35839,38.08675],[-84.35934,38.08755],[-84.36061,38.08865],[-84.36132,38.08939],[-84.36672,38.09421],[-84.36837,38.09637],[-84.36649,38.09765],[-84.36412,38.09929],[-84.3618,38.10085],[-84.36066,38.10163],[-84.36034,38.10186],[-84.35947,38.1023],[-84.35491,38.1031],[-84.35387,38.10329],[-84.35078,38.10384],[-84.34922,38.10455],[-84.34856,38.10485],[-84.34494,38.10657],[-84.34461,38.10672],[-84.34353,38.10725],[-84.34348,38.10716],[-84.34343,38.10705],[-84.34242,38.10494],[-84.34221,38.10499],[-84.34213,38.10501],[-84.33657,38.1063],[-84.33613,38.1064],[-84.33397,38.10689],[-84.333,38.10696],[-84.32842,38.10625],[-84.3253,38.10712],[-84.32499,38.10721],[-84.32177,38.10818],[-84.32112,38.10839],[-84.31836,38.10922],[-84.31553,38.1092],[-84.31558,38.10866],[-84.31566,38.10774],[-84.31593,38.10507],[-84.31593,38.10311],[-84.31593,38.10298],[-84.31587,38.09952],[-84.31587,38.09894],[-84.31587,38.0974],[-84.31618,38.09432],[-84.31623,38.09401],[-84.31648,38.09149],[-84.31646,38.09122],[-84.31625,38.08963],[-84.31649,38.08835],[-84.31672,38.08786],[-84.32098,38.08352],[-84.32333,38.08231],[-84.32656,38.08119],[-84.32765,38.08084],[-84.33051,38.08032],[-84.33159,38.07954],[-84.33226,38.0789],[-84.33268,38.0785],[-84.33277,38.0784],[-84.33291,38.07821],[-84.33306,38.07769],[-84.33369,38.07613],[-84.33395,38.07541],[-84.33402,38.0751],[-84.33384,38.07477],[-84.33251,38.07436],[-84.33198,38.0739],[-84.33125,38.0705],[-84.33116,38.07006],[-84.33103,38.06937],[-84.32999,38.06952],[-84.32767,38.06985],[-84.32723,38.06857],[-84.32691,38.06843],[-84.32679,38.06748],[-84.32639,38.06629],[-84.32557,38.06362],[-84.32539,38.0629],[-84.32351,38.0547],[-84.32212,38.04879],[-84.32213,38.04749],[-84.32261,38.04626],[-84.32406,38.04341],[-84.325,38.04226],[-84.32847,38.03939],[-84.34091,38.03055],[-84.34142,38.02996],[-84.34155,38.02919],[-84.35632,38.02967],[-84.3564,38.02848],[-84.35639,38.027],[-84.35648,38.02629],[-84.35664,38.02568],[-84.35725,38.02336],[-84.35783,38.02015],[-84.35914,38.0149],[-84.35969,38.01135],[-84.35981,38.00898],[-84.35947,38.00676],[-84.35918,38.00484],[-84.35916,38.00365],[-84.35932,38.00246],[-84.3595,38.00123],[-84.35972,37.99973],[-84.36,37.9975],[-84.35997,37.99422],[-84.3608,37.99184],[-84.36426,37.9905],[-84.36481,37.99031],[-84.36647,37.98981],[-84.36743,37.98995],[-84.36855,37.99066],[-84.3736,37.99142],[-84.375,37.9921],[-84.37549,37.99206],[-84.37805,37.99137],[-84.37881,37.99128],[-84.38046,37.99166],[-84.38136,37.99221],[-84.38225,37.99285],[-84.38277,37.99315],[-84.38508,37.99397],[-84.38707,37.99455],[-84.38738,37.99463],[-84.39337,37.99536],[-84.39655,37.99598],[-84.39657,37.9961],[-84.39658,37.99612],[-84.3966,37.99618],[-84.39663,37.99623],[-84.39683,37.99656],[-84.39707,37.99696],[-84.39768,37.99811],[-84.39756,37.99855],[-84.39744,37.99867],[-84.39674,37.99927],[-84.396,37.9999],[-84.39581,38.00004],[-84.39576,38.00008],[-84.39618,38.00074],[-84.3965,38.00126],[-84.39768,38.00321],[-84.39795,38.00426],[-84.39796,38.00449],[-84.39797,38.00476],[-84.39795,38.00492],[-84.39772,38.00579],[-84.39713,38.00764],[-84.39685,38.00882],[-84.39672,38.01051],[-84.39672,38.01084],[-84.39672,38.01088],[-84.39674,38.01122],[-84.39693,38.01221],[-84.39701,38.01244],[-84.39764,38.01334],[-84.39803,38.01367],[-84.39937,38.01435],[-84.39988,38.01454],[-84.40003,38.0146],[-84.40042,38.01473],[-84.40119,38.01499],[-84.40175,38.01528],[-84.40264,38.01579],[-84.40318,38.01632],[-84.40324,38.01641],[-84.40328,38.01648],[-84.40339,38.01669],[-84.40349,38.01726],[-84.40322,38.01866],[-84.40363,38.0202],[-84.40335,38.02097],[-84.40333,38.02151],[-84.40359,38.02208],[-84.40474,38.02316],[-84.40544,38.02441]]}},
{"type":"Feature","properties":{"name":"Pazzo's to Rockwell"},"geometry":{"type":"LineString","coordinates":[[-84.50408,38.04215],[-84.50276,38.04306],[-84.50173,38.0438],[-84.50128,38.0434],[-84.50055,38.04391],[-84.49986,38.0444],[-84.49888,38.04509],[-84.49877,38.04515],[-84.498,38.04571],[-84.49553,38.0474],[-84.49478,38.04795],[-84.4935,38.04886],[-84.49336,38.04897],[-84.49302,38.04921],[-84.48847,38.05242],[-84.48487,38.05494],[-84.48425,38.05537],[-84.48356,38.05588],[-84.48291,38.05635],[-84.48215,38.05687],[-84.48052,38.05647],[-84.47938,38.05623],[-84.47801,38.05595],[-84.47764,38.05603],[-84.4775,38.05608],[-84.47669,38.05633],[-84.47349,38.05734],[-84.47248,38.05766],[-84.47129,38.05804],[-84.46898,38.05877],[-84.46763,38.05919],[-84.46626,38.05964],[-84.4648,38.0601],[-84.45722,38.06248],[-84.45441,38.06341],[-84.45375,38.06364],[-84.45156,38.06442],[-84.45001,38.06496],[-84.44783,38.06569],[-84.44546,38.06643],[-84.44281,38.06728],[-84.44194,38.06755],[-84.44043,38.06804],[-84.43762,38.06897],[-84.43293,38.07074],[-84.43128,38.07139],[-84.42848,38.07245],[-84.42367,38.07406],[-84.42161,38.0747],[-84.42034,38.075],[-84.41923,38.07519],[-84.41628,38.07566],[-84.41572,38.07574],[-84.41478,38.07596],[-84.4137,38.07647],[-84.41364,38.0765],[-84.41334,38.0767],[-84.41319,38.07679],[-84.41226,38.07606],[-84.41175,38.07565],[-84.41101,38.07528],[-84.40918,38.07384],[-84.40761,38.07313],[-84.40703,38.0729],[-84.40617,38.07255],[-84.40206,38.07065],[-84.40001,38.06997],[-84.39757,38.06937],[-84.39728,38.06931],[-84.3964,38.06925],[-84.39612,38.06931],[-84.39602,38.0693],[-84.39161,38.06817],[-84.39011,38.06779],[-84.38895,38.06759],[-84.38712,38.0682],[-84.38569,38.06872],[-84.38332,38.06953],[-84.38194,38.06989],[-84.37933,38.06941],[-84.37229,38.06673],[-84.37181,38.06666],[-84.37113,38.06658],[-84.3675,38.06615],[-84.36315,38.06659],[-84.36161,38.06675],[-84.35697,38.06718],[-84.35365,38.06695],[-84.35272,38.06689],[-84.35181,38.06682],[-84.3515,38.0668],[-84.35118,38.06676],[-84.35062,38.06669],[-84.34978,38.06658],[-84.34945,38.06663],[-84.34918,38.06676],[-84.34908,38.06681],[-84.34898,38.06684],[-84.34887,38.06688],[-84.34873,38.0669],[-84.34629,38.06724],[-84.34526,38.06738],[-84.34027,38.06808],[-84.33963,38.06817],[-84.33616,38.06865],[-84.33411,38.06894],[-84.33348,38.06903],[-84.33178,38.06927],[-84.33103,38.06937],[-84.32999,38.06952],[-84.32767,38.06985],[-84.32657,38.07001],[-84.32634,38.06995],[-84.32629,38.06955],[-84.32671,38.06902],[-84.32691,38.06843],[-84.32679,38.06748],[-84.32639,38.06629],[-84.32557,38.06362],[-84.32539,38.0629],[-84.32351,38.0547],[-84.32212,38.04879],[-84.32213,38.04749],[-84.32177,38.04733],[-84.32172,38.04578],[-84.32155,38.04537],[-84.32068,38.04478],[-84.31993,38.04448],[-84.29342,38.03816],[-84.2874,38.03711],[-84.27982,38.0361],[-84.27619,38.03587],[-84.27328,38.03534],[-84.27213,38.03511],[-84.26186,38.03362],[-84.25833,38.0328],[-84.25463,38.03162],[-84.25108,38.03014],[-84.24104,38.02523],[-84.22912,38.01915],[-84.22425,38.01694],[-84.21882,38.01488],[-84.21477,38.01358],[-84.21408,38.01354],[-84.21241,38.01386],[-84.21179,38.01395],[-84.21193,38.01458],[-84.21173,38.01508],[-84.21133,38.01548],[-84.21133,38.01622],[-84.21013,38.01943],[-84.21037,38.02175],[-84.21045,38.02261],[-84.21076,38.02526],[-84.21072,38.02612],[-84.20878,38.04113],[-84.20812,38.04787],[-84.2081,38.04827],[-84.20928,38.04833],[-84.24235,38.04966],[-84.24311,38.04982],[-84.24709,38.05221],[-84.24806,38.05265],[-84.25762,38.0533],[-84.26455,38.05351],[-84.26526,38.05333],[-84.26601,38.05353],[-84.27124,38.05382],[-84.27158,38.05384],[-84.27188,38.05386],[-84.26871,38.08447],[-84.26868,38.08485],[-84.26866,38.08506],[-84.26865,38.08514],[-84.26923,38.08515],[-84.26928,38.08516],[-84.26938,38.08516],[-84.26999,38.08516],[-84.273,38.08514],[-84.27632,38.08454],[-84.27745,38.08431],[-84.28124,38.08362],[-84.28239,38.08357],[-84.28869,38.08326],[-84.29001,38.08319],[-84.29659,38.08288],[-84.29794,38.08272],[-84.29912,38.0822],[-84.30122,38.08042],[-84.30172,38.07999],[-84.30387,38.07818],[-84.30593,38.07653],[-84.30671,38.07592],[-84.30702,38.07582],[-84.31239,38.07557],[-84.31275,38.07546],[-84.31296,38.07535],[-84.31705,38.07307],[-84.31785,38.07255],[-84.3199,38.07128],[-84.32025,38.0711],[-84.32146,38.07069],[-84.32337,38.0704],[-84.32485,38.07018],[-84.32657,38.07001],[-84.32767,38.06985],[-84.32999,38.06952],[-84.33103,38.06937],[-84.33116,38.07006],[-84.33125,38.0705],[-84.33198,38.0739],[-84.33251,38.07436],[-84.33384,38.07477],[-84.33402,38.0751],[-84.33395,38.07541],[-84.33369,38.07613],[-84.33306,38.07769],[-84.33291,38.07821],[-84.3343,38.08457],[-84.33641,38.08868],[-84.33654,38.08893],[-84.33774,38.09147],[-84.3378,38.09159],[-84.34035,38.09692],[-84.33999,38.10057],[-84.34149,38.10313],[-84.34162,38.10336],[-84.34242,38.10494],[-84.34343,38.10705],[-84.34348,38.10716],[-84.34353,38.10725],[-84.34461,38.10672],[-84.34494,38.10657],[-84.34856,38.10485],[-84.34922,38.10455],[-84.35078,38.10384],[-84.35387,38.10329],[-84.35491,38.1031],[-84.35947,38.1023],[-84.36034,38.10186],[-84.36066,38.10163],[-84.3618,38.10085],[-84.36412,38.09929],[-84.36649,38.09765],[-84.36837,38.09637],[-84.36853,38.09655],[-84.36979,38.09797],[-84.37142,38.09976],[-84.37429,38.10289],[-84.37551,38.10426],[-84.37679,38.10366],[-84.37803,38.10316],[-84.37865,38.10292],[-84.38275,38.10131],[-84.38848,38.09559],[-84.39382,38.09074],[-84.39436,38.09023],[-84.39533,38.0894],[-84.40034,38.08573],[-84.40498,38.08253],[-84.41033,38.07895],[-84.41319,38.07679],[-84.41334,38.0767],[-84.41364,38.0765],[-84.4137,38.07647],[-84.41478,38.07596],[-84.41572,38.07574],[-84.41628,38.07566],[-84.41923,38.07519],[-84.42034,38.075],[-84.42161,38.0747],[-84.42367,38.07406],[-84.42848,38.07245],[-84.43128,38.07139],[-84.43293,38.07074],[-84.43762,38.06897],[-84.44043,38.06804],[-84.44194,38.06755],[-84.44281,38.06728],[-84.44546,38.06643],[-84.44783,38.06569],[-84.45001,38.06496],[-84.45156,38.06442],[-84.45375,38.06364],[-84.45441,38.06341],[-84.45722,38.06248],[-84.4648,38.0601],[-84.46626,38.05964],[-84.46763,38.05919],[-84.46898,38.05877],[-84.47129,38.05804],[-84.47248,38.05766],[-84.47349,38.05734],[-84.47669,38.05633],[-84.4775,38.05608],[-84.47764,38.05603],[-84.47801,38.05595],[-84.47938,38.05623],[-84.48052,38.05647],[-84.48154,38.05729],[-84.48215,38.05687],[-84.48291,38.05635],[-84.48356,38.05588],[-84.48425,38.05537],[-84.48468,38.05576],[-84.48511,38.05613],[-84.49437,38.04964],[-84.4935,38.04886],[-84.49336,38.04897],[-84.49302,38.04921],[-84.49134,38.0477],[-84.49237,38.04698],[-84.49468,38.04535],[-84.49553,38.04505],[-84.49669,38.04427],[-84.4973,38.04385],[-84.49877,38.04515],[-84.49968,38.04596],[-84.50325,38.04349],[-84.50276,38.04306],[-84.50283,38.04301]]}},
{"type":"Feature","properties":{"name":"Chinoe Kroger to Valley View to Old Railroad 34mi"},"geometry":{"type":"LineString","coordinates":[[-84.48013,37.9966],[-84.48039,37.99668],[-84.4812,37.99693],[-84.48221,37.9947],[-84.48204,37.99315],[-84.48181,37.99125],[-84.48194,37.99047],[-84.48286,37.98887],[-84.48562,37.98653],[-84.48532,37.9863],[-84.4851,37.98613],[-84.48496,37.98604],[-84.4853,37.98531],[-84.48527,37.98474],[-84.48339,37.9817],[-84.48281,37.98111],[-84.48112,37.98028],[-84.48185,37.97938],[-84.48337,37.97753],[-84.48239,37.97706],[-84.47769,37.9748],[-84.47734,37.97465],[-84.4769,37.97446],[-84.47598,37.97403],[-84.47372,37.97294],[-84.47284,37.97216],[-84.4725,37.97187],[-84.47233,37.97171],[-84.47204,37.9711],[-84.47205,37.96943],[-84.47149,37.96846],[-84.46961,37.96715],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45248,37.95798],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.41219,37.92652],[-84.41213,37.92662],[-84.41219,37.92652],[-84.41285,37.92531],[-84.41574,37.92013],[-84.41629,37.91923],[-84.41705,37.91792],[-84.41947,37.91373],[-84.42003,37.91279],[-84.42215,37.90947],[-84.42237,37.90889],[-84.4238,37.90707],[-84.42395,37.90687],[-84.4241,37.90666],[-84.42377,37.90648],[-84.42127,37.90525],[-84.42103,37.90508],[-84.42087,37.90498],[-84.42017,37.90465],[-84.41964,37.90439],[-84.4193,37.90422],[-84.41829,37.89795],[-84.41841,37.89677],[-84.41854,37.8953],[-84.41986,37.89459],[-84.41996,37.89219],[-84.41997,37.89139],[-84.41998,37.89068],[-84.42181,37.89057],[-84.42198,37.89056],[-84.42265,37.8904],[-84.42299,37.89018],[-84.42621,37.88558],[-84.42691,37.88459],[-84.42798,37.88319],[-84.43268,37.88048],[-84.43774,37.87422],[-84.43832,37.87351],[-84.43837,37.87346],[-84.43846,37.87337],[-84.43838,37.87321],[-84.43833,37.87306],[-84.43824,37.87278],[-84.43786,37.87213],[-84.43771,37.87185],[-84.43724,37.87102],[-84.43484,37.86911],[-84.43433,37.86825],[-84.43449,37.8677],[-84.43683,37.86436],[-84.43735,37.86306],[-84.43741,37.86291],[-84.4376,37.86195],[-84.43715,37.86017],[-84.43671,37.8597],[-84.43658,37.85925],[-84.43584,37.85815],[-84.43577,37.85682],[-84.43496,37.85631],[-84.43477,37.85604],[-84.43479,37.85518],[-84.43458,37.85436],[-84.43473,37.85409],[-84.43535,37.85368],[-84.43557,37.85241],[-84.43627,37.85169],[-84.43649,37.85086],[-84.43745,37.8503],[-84.43757,37.84961],[-84.43804,37.84892],[-84.4379,37.8486],[-84.4376,37.84844],[-84.43751,37.84842],[-84.43671,37.84826],[-84.43617,37.8476],[-84.43671,37.84826],[-84.43751,37.84842],[-84.4376,37.84844],[-84.4379,37.8486],[-84.43804,37.84892],[-84.43757,37.84961],[-84.43745,37.8503],[-84.43649,37.85086],[-84.43627,37.85169],[-84.43557,37.85241],[-84.43535,37.85368],[-84.43473,37.85409],[-84.43458,37.85436],[-84.43479,37.85518],[-84.43477,37.85604],[-84.43496,37.85631],[-84.43577,37.85682],[-84.43584,37.85815],[-84.43658,37.85925],[-84.43671,37.8597],[-84.43715,37.86017],[-84.4376,37.86195],[-84.43741,37.86291],[-84.43735,37.86306],[-84.43683,37.86436],[-84.43449,37.8677],[-84.43433,37.86825],[-84.43484,37.86911],[-84.43724,37.87102],[-84.43771,37.87185],[-84.43786,37.87213],[-84.43824,37.87278],[-84.43851,37.8729],[-84.44149,37.87452],[-84.4427,37.87482],[-84.44794,37.87489],[-84.45186,37.87467],[-84.45411,37.87428],[-84.45487,37.87435],[-84.45542,37.87456],[-84.45613,37.87495],[-84.45653,37.87532],[-84.45719,37.87622],[-84.45815,37.87796],[-84.46004,37.87931],[-84.46109,37.88085],[-84.46596,37.88534],[-84.46702,37.88589],[-84.46917,37.88598],[-84.47006,37.88596],[-84.47073,37.88598],[-84.4708,37.88585],[-84.4712,37.88505],[-84.47137,37.88473],[-84.47668,37.87432],[-84.4771,37.8735],[-84.47918,37.8695],[-84.47988,37.86847],[-84.48157,37.86786],[-84.48394,37.86738],[-84.48636,37.8655],[-84.48706,37.86493],[-84.48788,37.86562],[-84.48793,37.86567],[-84.48879,37.86661],[-84.49118,37.87005],[-84.49209,37.87073],[-84.49455,37.87181],[-84.49487,37.87195],[-84.49746,37.87319],[-84.50036,37.87547],[-84.50122,37.87601],[-84.50248,37.87649],[-84.50566,37.87724],[-84.5049,37.87742],[-84.50462,37.87782],[-84.50457,37.87792],[-84.50434,37.87843],[-84.50427,37.87937],[-84.50255,37.88155],[-84.50118,37.88391],[-84.5011,37.88404],[-84.49977,37.88624],[-84.49964,37.88648],[-84.49919,37.88731],[-84.49913,37.88742],[-84.49905,37.8877],[-84.49915,37.88787],[-84.49576,37.88938],[-84.49152,37.8928],[-84.49063,37.89324],[-84.48979,37.89329],[-84.48786,37.89293],[-84.48543,37.89157],[-84.48441,37.89113],[-84.48434,37.89125],[-84.48422,37.89142],[-84.48405,37.89166],[-84.48315,37.893],[-84.48035,37.89732],[-84.47506,37.90103],[-84.47166,37.90579],[-84.47067,37.90667],[-84.47054,37.90736],[-84.47012,37.90814],[-84.47017,37.90906],[-84.47463,37.91236],[-84.47468,37.91272],[-84.47447,37.91294],[-84.47416,37.91313],[-84.47349,37.91374],[-84.47103,37.91769],[-84.47047,37.91832],[-84.47022,37.91863],[-84.46939,37.91982],[-84.46931,37.91981],[-84.46939,37.91982],[-84.47123,37.91994],[-84.4717,37.92011],[-84.47193,37.92056],[-84.47194,37.92183],[-84.47195,37.92263],[-84.46986,37.92488],[-84.46891,37.92599],[-84.46815,37.92687],[-84.46649,37.92875],[-84.46281,37.93087],[-84.46248,37.93111],[-84.45852,37.9341],[-84.45814,37.93438],[-84.45734,37.93489],[-84.45647,37.93536],[-84.45607,37.93557],[-84.45603,37.93561],[-84.45599,37.93565],[-84.45581,37.9359],[-84.45422,37.93823],[-84.45364,37.93893],[-84.45345,37.93909],[-84.45328,37.93923],[-84.45263,37.9398],[-84.4521,37.94018],[-84.45186,37.9403],[-84.45002,37.94239],[-84.45001,37.94303],[-84.45056,37.94405],[-84.45057,37.9441],[-84.45061,37.94482],[-84.45123,37.94559],[-84.45213,37.94643],[-84.45322,37.9474],[-84.45358,37.94779],[-84.45611,37.95093],[-84.4562,37.9513],[-84.45621,37.95149],[-84.4562,37.9519],[-84.45558,37.95295],[-84.45533,37.95338],[-84.45525,37.9535],[-84.45488,37.95412],[-84.45474,37.95435],[-84.45361,37.95614],[-84.45263,37.95772],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46961,37.96715],[-84.47149,37.96846],[-84.47205,37.96943],[-84.47204,37.9711],[-84.47233,37.97171],[-84.4725,37.97187],[-84.47284,37.97216],[-84.47372,37.97294],[-84.47598,37.97403],[-84.4769,37.97446],[-84.47734,37.97465],[-84.47769,37.9748],[-84.48239,37.97706],[-84.48337,37.97753],[-84.48185,37.97938],[-84.48112,37.98028],[-84.48281,37.98111],[-84.48339,37.9817],[-84.48527,37.98474],[-84.4853,37.98531],[-84.48496,37.98604],[-84.4851,37.98613],[-84.48532,37.9863],[-84.48562,37.98653],[-84.48286,37.98887],[-84.48194,37.99047],[-84.48181,37.99125],[-84.48204,37.99315],[-84.48221,37.9947],[-84.4812,37.99693],[-84.48039,37.99668],[-84.48011,37.9966]]}},
{"type":"Feature","properties":{"name":"Midway through Versailles and back via Clifton"},"geometry":{"type":"LineString","coordinates":[[-84.68293,38.1491],[-84.68232,38.14883],[-84.68261,38.14826],[-84.6817,38.14786],[-84.68275,38.14609],[-84.68234,38.14595],[-84.68186,38.14578],[-84.68141,38.14562],[-84.68123,38.14555],[-84.6804,38.14519],[-84.6798,38.14474],[-84.67972,38.14469],[-84.67952,38.14453],[-84.67828,38.14351],[-84.67816,38.14341],[-84.67803,38.14331],[-84.67733,38.14274],[-84.67701,38.1425],[-84.67696,38.14246],[-84.67667,38.14228],[-84.67653,38.1422],[-84.67637,38.14211],[-84.67608,38.14193],[-84.67582,38.14173],[-84.67463,38.14056],[-84.67425,38.14026],[-84.67412,38.14017],[-84.67259,38.1385],[-84.67146,38.13832],[-84.67058,38.13827],[-84.67008,38.13824],[-84.66993,38.13823],[-84.66863,38.13816],[-84.66847,38.13815],[-84.66768,38.13807],[-84.66693,38.13775],[-84.66677,38.13768],[-84.66629,38.13743],[-84.66613,38.13735],[-84.6645,38.13654],[-84.66316,38.13606],[-84.66277,38.13592],[-84.66239,38.13578],[-84.66203,38.13565],[-84.66144,38.13545],[-84.65922,38.13467],[-84.65871,38.13449],[-84.6581,38.13428],[-84.65776,38.13416],[-84.65738,38.13402],[-84.65719,38.13396],[-84.65551,38.13338],[-84.65532,38.13331],[-84.65512,38.13324],[-84.65296,38.13251],[-84.6522,38.13225],[-84.64904,38.13111],[-84.64891,38.13105],[-84.64878,38.13098],[-84.64866,38.13091],[-84.64811,38.13065],[-84.64797,38.1306],[-84.64697,38.13026],[-84.64683,38.13021],[-84.64559,38.12979],[-84.64545,38.12974],[-84.64429,38.1293],[-84.64412,38.12925],[-84.64297,38.12918],[-84.64224,38.12926],[-84.64116,38.12931],[-84.64036,38.1292],[-84.64009,38.12912],[-84.63949,38.12885],[-84.63876,38.12823],[-84.63868,38.12816],[-84.63852,38.12802],[-84.6385,38.12753],[-84.63845,38.12735],[-84.63796,38.12629],[-84.63819,38.12598],[-84.63871,38.1257],[-84.63867,38.12517],[-84.63864,38.12498],[-84.63863,38.12451],[-84.63887,38.12398],[-84.639,38.1237],[-84.63923,38.12322],[-84.63937,38.1229],[-84.64002,38.12146],[-84.64011,38.12127],[-84.64059,38.12026],[-84.64185,38.1191],[-84.64233,38.11767],[-84.6424,38.11746],[-84.64261,38.11686],[-84.64269,38.11669],[-84.64301,38.11609],[-84.64344,38.11553],[-84.64408,38.11456],[-84.64645,38.11096],[-84.64654,38.11082],[-84.64664,38.11067],[-84.64673,38.11053],[-84.6468,38.11042],[-84.64767,38.1091],[-84.6479,38.10875],[-84.64878,38.10743],[-84.6491,38.10694],[-84.64917,38.10683],[-84.64924,38.10672],[-84.65043,38.10491],[-84.6507,38.10496],[-84.65093,38.10501],[-84.65151,38.10392],[-84.65184,38.1033],[-84.65282,38.10145],[-84.65296,38.10118],[-84.65334,38.10047],[-84.65343,38.1003],[-84.65381,38.09959],[-84.6548,38.09774],[-84.65488,38.09759],[-84.6551,38.09718],[-84.65556,38.09614],[-84.65555,38.09601],[-84.65547,38.09456],[-84.65645,38.09385],[-84.6574,38.09292],[-84.65771,38.09261],[-84.65901,38.09129],[-84.65908,38.09121],[-84.65937,38.09079],[-84.65946,38.09066],[-84.65954,38.09053],[-84.66056,38.08898],[-84.66105,38.08825],[-84.66113,38.08811],[-84.6615,38.08756],[-84.66253,38.08574],[-84.6626,38.08562],[-84.66387,38.08317],[-84.66394,38.08196],[-84.66394,38.08177],[-84.66392,38.08116],[-84.66392,38.08093],[-84.66391,38.08029],[-84.6639,38.08008],[-84.66389,38.07958],[-84.66384,38.07723],[-84.66307,38.07602],[-84.66287,38.07573],[-84.66278,38.07558],[-84.66248,38.07513],[-84.66243,38.07504],[-84.66224,38.0748],[-84.66902,38.06995],[-84.6691,38.06987],[-84.66916,38.06978],[-84.66955,38.06907],[-84.66967,38.06883],[-84.66981,38.0686],[-84.66995,38.06835],[-84.67025,38.06775],[-84.67188,38.06817],[-84.67389,38.06993],[-84.67418,38.07048],[-84.6762,38.0709],[-84.67639,38.07094],[-84.67658,38.07099],[-84.6797,38.07164],[-84.68005,38.07171],[-84.68146,38.07202],[-84.68218,38.07216],[-84.68243,38.07219],[-84.68264,38.07206],[-84.68287,38.07047],[-84.68845,38.07163],[-84.68861,38.07167],[-84.68902,38.07176],[-84.68939,38.07184],[-84.69161,38.07232],[-84.69195,38.07239],[-84.69496,38.07302],[-84.69529,38.07309],[-84.69822,38.07366],[-84.69873,38.07375],[-84.70002,38.07404],[-84.70157,38.07221],[-84.70176,38.07199],[-84.70192,38.0718],[-84.70357,38.06984],[-84.70387,38.06949],[-84.70503,38.06817],[-84.70576,38.06812],[-84.70605,38.06814],[-84.70688,38.06809],[-84.70728,38.06789],[-84.71011,38.06441],[-84.7104,38.06426],[-84.71072,38.06429],[-84.71084,38.06433],[-84.71114,38.06442],[-84.71129,38.06448],[-84.71194,38.06469],[-84.71245,38.06478],[-84.71526,38.0629],[-84.71547,38.06276],[-84.718,38.06093],[-84.71809,38.06087],[-84.71906,38.06017],[-84.71954,38.05984],[-84.71971,38.05973],[-84.71986,38.05962],[-84.72002,38.05952],[-84.72016,38.05941],[-84.72031,38.05933],[-84.72051,38.05919],[-84.72162,38.05843],[-84.72173,38.05836],[-84.72205,38.05812],[-84.72262,38.05771],[-84.72423,38.05658],[-84.72448,38.05641],[-84.72464,38.0563],[-84.72561,38.0563],[-84.72667,38.0563],[-84.72807,38.05632],[-84.72846,38.0563],[-84.72911,38.05629],[-84.72958,38.05625],[-84.73009,38.05624],[-84.73015,38.05625],[-84.73042,38.0563],[-84.73105,38.05647],[-84.7321,38.05678],[-84.73285,38.05701],[-84.73359,38.05728],[-84.734,38.05748],[-84.73781,38.05939],[-84.73934,38.05762],[-84.74065,38.0566],[-84.74104,38.05609],[-84.7444,38.05378],[-84.74454,38.05339],[-84.7501,38.05459],[-84.75036,38.05465],[-84.75133,38.05484],[-84.75337,38.05527],[-84.75386,38.05538],[-84.75711,38.05607],[-84.75846,38.05636],[-84.76079,38.05696],[-84.76457,38.05824],[-84.76478,38.05834],[-84.77064,38.0612],[-84.77553,38.06376],[-84.77725,38.06468],[-84.7816,38.06709],[-84.78302,38.06776],[-84.78645,38.06898],[-84.78919,38.06963],[-84.79,38.06982],[-84.79872,38.07187],[-84.80219,38.07309],[-84.80242,38.07319],[-84.80802,38.07603],[-84.80787,38.07626],[-84.80566,38.07945],[-84.80553,38.07963],[-84.80072,38.08667],[-84.80045,38.08705],[-84.79585,38.0934],[-84.79558,38.09376],[-84.79411,38.09573],[-84.79403,38.09584],[-84.79378,38.09617],[-84.79371,38.09627],[-84.79345,38.09667],[-84.79338,38.09679],[-84.79373,38.09686],[-84.79436,38.09658],[-84.79463,38.09647],[-84.79801,38.09552],[-84.79868,38.09548],[-84.79908,38.0956],[-84.80122,38.09753],[-84.80264,38.09858],[-84.80367,38.09912],[-84.80385,38.09922],[-84.80394,38.09928],[-84.80454,38.09978],[-84.80466,38.09989],[-84.80574,38.10104],[-84.80658,38.10258],[-84.80648,38.10286],[-84.80471,38.10498],[-84.80444,38.10533],[-84.80379,38.10635],[-84.80364,38.1066],[-84.80273,38.11065],[-84.80268,38.11081],[-84.80245,38.11161],[-84.80241,38.11177],[-84.80234,38.112],[-84.80218,38.11257],[-84.80199,38.11324],[-84.80176,38.11398],[-84.80057,38.11348],[-84.79921,38.11311],[-84.79326,38.1127],[-84.79099,38.11256],[-84.7901,38.11251],[-84.7883,38.11239],[-84.7882,38.11238],[-84.78783,38.11232],[-84.78738,38.11226],[-84.78719,38.1123],[-84.78708,38.11232],[-84.78697,38.11236],[-84.78474,38.1143],[-84.7828,38.11604],[-84.78232,38.11645],[-84.78168,38.11677],[-84.78017,38.11745],[-84.77903,38.11796],[-84.7786,38.11819],[-84.77839,38.11848],[-84.77808,38.12106],[-84.77778,38.12119],[-84.77665,38.12112],[-84.77646,38.12108],[-84.77638,38.12107],[-84.77576,38.12103],[-84.77557,38.12102],[-84.77516,38.12109],[-84.77436,38.12154],[-84.7726,38.12302],[-84.77197,38.12395],[-84.77152,38.12472],[-84.76747,38.13209],[-84.76676,38.13344],[-84.7661,38.13469],[-84.76528,38.13629],[-84.76381,38.13913],[-84.76363,38.13948],[-84.76324,38.14023],[-84.76297,38.14076],[-84.76141,38.14375],[-84.76118,38.14415],[-84.76024,38.14586],[-84.76013,38.14603],[-84.75994,38.14622],[-84.7598,38.14611],[-84.75957,38.14592],[-84.75785,38.14456],[-84.75727,38.14423],[-84.75521,38.14322],[-84.75255,38.14226],[-84.75213,38.1421],[-84.75149,38.14187],[-84.75111,38.14173],[-84.75076,38.14226],[-84.75054,38.14262],[-84.7495,38.14431],[-84.74904,38.14505],[-84.74863,38.1457],[-84.74841,38.14606],[-84.74619,38.14966],[-84.74576,38.1504],[-84.74561,38.15065],[-84.74528,38.15119],[-84.74514,38.15143],[-84.74386,38.15352],[-84.74382,38.15359],[-84.74387,38.1538],[-84.74394,38.15386],[-84.74401,38.15396],[-84.74403,38.15399],[-84.74399,38.1542],[-84.74381,38.15418],[-84.74361,38.15416],[-84.74347,38.15416],[-84.74298,38.15412],[-84.74119,38.154],[-84.73933,38.15386],[-84.73915,38.15384],[-84.73867,38.15382],[-84.73833,38.15384],[-84.73716,38.15407],[-84.73701,38.15412],[-84.73624,38.15448],[-84.73594,38.15446],[-84.73532,38.15425],[-84.73516,38.1542],[-84.73235,38.15331],[-84.73197,38.15319],[-84.73102,38.15289],[-84.73027,38.15265],[-84.72922,38.15234],[-84.72906,38.15228],[-84.72743,38.15175],[-84.72723,38.15168],[-84.72621,38.15134],[-84.72538,38.15106],[-84.72474,38.15085],[-84.72453,38.15078],[-84.72352,38.15045],[-84.72292,38.15026],[-84.72118,38.14971],[-84.72099,38.14967],[-84.71879,38.149],[-84.71857,38.14893],[-84.71663,38.14833],[-84.71604,38.14815],[-84.71545,38.14795],[-84.71504,38.14782],[-84.71483,38.14775],[-84.714,38.14748],[-84.71358,38.14734],[-84.71336,38.14727],[-84.71168,38.14673],[-84.71106,38.14652],[-84.71085,38.14645],[-84.7102,38.14624],[-84.70937,38.14597],[-84.70897,38.14584],[-84.70859,38.14572],[-84.70841,38.14566],[-84.70776,38.14547],[-84.70749,38.14562],[-84.70739,38.1458],[-84.70715,38.14627],[-84.70688,38.1468],[-84.70673,38.14708],[-84.70659,38.14735],[-84.70623,38.14802],[-84.70616,38.14818],[-84.70512,38.15018],[-84.70506,38.15031],[-84.70501,38.15041],[-84.7049,38.15058],[-84.70483,38.15062],[-84.70424,38.15045],[-84.70411,38.15039],[-84.70397,38.15032],[-84.70382,38.15025],[-84.70367,38.15017],[-84.70333,38.15001],[-84.70264,38.14967],[-84.70231,38.14951],[-84.70122,38.14899],[-84.70103,38.1489],[-84.70008,38.14844],[-84.69989,38.14835],[-84.69952,38.14818],[-84.69903,38.14795],[-84.69878,38.14782],[-84.69866,38.14777],[-84.69857,38.14772],[-84.69839,38.14768],[-84.69797,38.14782],[-84.69771,38.14792],[-84.69662,38.14837],[-84.69633,38.14849],[-84.69596,38.14864],[-84.69567,38.14875],[-84.69434,38.1491],[-84.69386,38.14926],[-84.69324,38.14946],[-84.69299,38.14952],[-84.69256,38.14957],[-84.69191,38.14939],[-84.69118,38.14912],[-84.6904,38.14883],[-84.68992,38.14866],[-84.68931,38.14844],[-84.68864,38.1482],[-84.68832,38.14809],[-84.6876,38.14784],[-84.68686,38.14757],[-84.6861,38.1473],[-84.68605,38.14739],[-84.68504,38.14914],[-84.6848,38.14959],[-84.6847,38.14977],[-84.68465,38.14975],[-84.68441,38.14966],[-84.68391,38.14948],[-84.68304,38.14914],[-84.68296,38.14911]]}},
{"type":"Feature","properties":{"name":"Midway to Keeneland Hill Loop"},"geometry":{"type":"LineString","coordinates":[[-84.68304,38.14914],[-84.68391,38.14948],[-84.68441,38.14966],[-84.68465,38.14975],[-84.6847,38.14977],[-84.6845,38.15012],[-84.68434,38.1504],[-84.68391,38.15115],[-84.68365,38.1516],[-84.68293,38.15287],[-84.68286,38.15302],[-84.68282,38.15313],[-84.68278,38.15338],[-84.68265,38.15338],[-84.6826,38.15337],[-84.68238,38.15335],[-84.68216,38.1533],[-84.68212,38.15338],[-84.68206,38.1535],[-84.68188,38.15379],[-84.68216,38.15413],[-84.68206,38.1543],[-84.68187,38.15465],[-84.68023,38.15744],[-84.67967,38.15834],[-84.67959,38.15845],[-84.67913,38.15828],[-84.67882,38.15817],[-84.67821,38.15795],[-84.67813,38.15792],[-84.67807,38.15799],[-84.67797,38.15814],[-84.67764,38.16129],[-84.6776,38.16168],[-84.67732,38.16223],[-84.67724,38.16237],[-84.67704,38.16269],[-84.67688,38.16296],[-84.6768,38.1631],[-84.67662,38.1634],[-84.67652,38.16356],[-84.67641,38.16377],[-84.67619,38.16416],[-84.67596,38.16456],[-84.67517,38.16594],[-84.67488,38.16641],[-84.67425,38.16742],[-84.67395,38.16789],[-84.67344,38.16871],[-84.67324,38.16904],[-84.67254,38.17016],[-84.67237,38.17043],[-84.6722,38.17072],[-84.67203,38.17101],[-84.67195,38.17116],[-84.67137,38.17212],[-84.67114,38.1725],[-84.66994,38.17444],[-84.66983,38.17461],[-84.66946,38.17523],[-84.66936,38.17538],[-84.66893,38.17629],[-84.66888,38.17641],[-84.66864,38.17695],[-84.66852,38.17724],[-84.66791,38.1786],[-84.66785,38.17876],[-84.66748,38.17955],[-84.66734,38.17987],[-84.6672,38.18017],[-84.66713,38.18032],[-84.66669,38.18167],[-84.66611,38.18256],[-84.66603,38.1827],[-84.66534,38.18392],[-84.66384,38.18335],[-84.66318,38.18243],[-84.66291,38.18224],[-84.66112,38.18161],[-84.66029,38.18103],[-84.65756,38.18167],[-84.65616,38.18136],[-84.65522,38.18219],[-84.65464,38.18312],[-84.65397,38.18545],[-84.6523,38.18515],[-84.65158,38.18535],[-84.65035,38.18549],[-84.65056,38.18722],[-84.64913,38.18682],[-84.64774,38.18643],[-84.64538,38.18575],[-84.64374,38.18529],[-84.64026,38.1843],[-84.63871,38.18386],[-84.63628,38.18317],[-84.63447,38.18264],[-84.62996,38.18135],[-84.62931,38.18116],[-84.62913,38.18111],[-84.62752,38.18064],[-84.6264,38.18034],[-84.62546,38.18008],[-84.62471,38.17986],[-84.625,38.17953],[-84.62561,38.17886],[-84.62571,38.17875],[-84.6269,38.17783],[-84.62746,38.17742],[-84.62935,38.17599],[-84.62956,38.17562],[-84.62977,38.17522],[-84.63049,38.17377],[-84.63075,38.17327],[-84.63083,38.17311],[-84.63106,38.17263],[-84.63128,38.17219],[-84.63136,38.17204],[-84.63271,38.16943],[-84.6336,38.1678],[-84.63435,38.16638],[-84.63545,38.16457],[-84.63707,38.16192],[-84.63725,38.16161],[-84.63826,38.15988],[-84.63838,38.15966],[-84.63852,38.15945],[-84.63883,38.15896],[-84.63889,38.15885],[-84.63853,38.15885],[-84.63838,38.15885],[-84.63804,38.15887],[-84.63669,38.15892],[-84.63644,38.15894],[-84.63434,38.159],[-84.63409,38.15901],[-84.63359,38.15902],[-84.63334,38.15902],[-84.63309,38.15903],[-84.63283,38.15904],[-84.63249,38.15905],[-84.62964,38.15906],[-84.62572,38.15538],[-84.62479,38.15449],[-84.62393,38.15381],[-84.62319,38.15329],[-84.6225,38.15283],[-84.62183,38.15238],[-84.62051,38.15163],[-84.61867,38.15062],[-84.61793,38.15019],[-84.61776,38.1501],[-84.61765,38.15004],[-84.61756,38.14999],[-84.61743,38.14995],[-84.61738,38.14994],[-84.61695,38.14987],[-84.61688,38.14986],[-84.61674,38.14985],[-84.61657,38.14984],[-84.61615,38.14978],[-84.61609,38.14977],[-84.61603,38.14975],[-84.61595,38.14972],[-84.61587,38.14969],[-84.6157,38.1496],[-84.61226,38.14777],[-84.61031,38.14672],[-84.60853,38.14577],[-84.60732,38.14513],[-84.60617,38.14453],[-84.60539,38.14411],[-84.60437,38.14356],[-84.60373,38.14322],[-84.60288,38.14277],[-84.60212,38.14237],[-84.60166,38.14213],[-84.60092,38.14173],[-84.59948,38.14097],[-84.599,38.14072],[-84.59856,38.1405],[-84.59672,38.1395],[-84.59554,38.13887],[-84.59513,38.13867],[-84.59416,38.13816],[-84.59168,38.13681],[-84.59144,38.13668],[-84.59076,38.1363],[-84.58982,38.13579],[-84.58904,38.13538],[-84.58722,38.1344],[-84.58569,38.1336],[-84.5851,38.13327],[-84.58466,38.13302],[-84.58441,38.13287],[-84.58447,38.13272],[-84.58451,38.13246],[-84.58452,38.13222],[-84.58462,38.13106],[-84.58466,38.13066],[-84.58498,38.12929],[-84.58518,38.12841],[-84.5857,38.12631],[-84.58491,38.12528],[-84.58408,38.12424],[-84.58363,38.12362],[-84.58177,38.12109],[-84.57905,38.11741],[-84.5787,38.11692],[-84.57823,38.1163],[-84.57873,38.11565],[-84.57948,38.1147],[-84.58026,38.11372],[-84.58153,38.11213],[-84.58206,38.11145],[-84.58493,38.10777],[-84.58702,38.10506],[-84.58991,38.10135],[-84.59037,38.10008],[-84.59085,38.09871],[-84.59103,38.09834],[-84.59152,38.09798],[-84.5929,38.09705],[-84.59482,38.09577],[-84.5971,38.09426],[-84.59816,38.0934],[-84.59877,38.0929],[-84.59934,38.09243],[-84.59972,38.09212],[-84.60139,38.09075],[-84.60015,38.09014],[-84.59898,38.08958],[-84.59724,38.08881],[-84.59556,38.08813],[-84.59016,38.0867],[-84.59044,38.08651],[-84.59346,38.08449],[-84.59443,38.08384],[-84.59872,38.0811],[-84.6002,38.08016],[-84.60095,38.07969],[-84.60129,38.0795],[-84.6032,38.07848],[-84.60513,38.07743],[-84.60646,38.07672],[-84.60675,38.07685],[-84.6073,38.07739],[-84.6081,38.07775],[-84.60839,38.07773],[-84.60905,38.07728],[-84.60943,38.07702],[-84.61219,38.07511],[-84.6134,38.07431],[-84.6141,38.07381],[-84.61486,38.07331],[-84.60991,38.06989],[-84.60632,38.07007],[-84.60619,38.06991],[-84.60554,38.06648],[-84.60543,38.0659],[-84.60468,38.06218],[-84.60392,38.06196],[-84.60518,38.06053],[-84.60562,38.06003],[-84.60679,38.05783],[-84.6071,38.0575],[-84.60811,38.05682],[-84.60922,38.05594],[-84.60988,38.05473],[-84.6108,38.05304],[-84.61663,38.05503],[-84.6183,38.05558],[-84.62178,38.05678],[-84.62407,38.05755],[-84.62484,38.05781],[-84.62559,38.05818],[-84.62646,38.05908],[-84.62712,38.05949],[-84.62908,38.06033],[-84.63097,38.06129],[-84.63239,38.06259],[-84.63196,38.06265],[-84.63167,38.06275],[-84.63065,38.06328],[-84.62997,38.06393],[-84.62955,38.06398],[-84.62919,38.06473],[-84.62885,38.06601],[-84.6277,38.06774],[-84.62754,38.0679],[-84.62684,38.06838],[-84.62331,38.07147],[-84.62235,38.07183],[-84.62151,38.07194],[-84.62056,38.07182],[-84.61952,38.07153],[-84.6179,38.07211],[-84.61844,38.07309],[-84.61961,38.07513],[-84.61993,38.0757],[-84.62121,38.07801],[-84.62169,38.07883],[-84.62247,38.08008],[-84.62443,38.08361],[-84.62467,38.08406],[-84.6251,38.0848],[-84.62565,38.0858],[-84.62924,38.08433],[-84.63141,38.08349],[-84.63419,38.08241],[-84.63493,38.0823],[-84.63606,38.08218],[-84.63653,38.08215],[-84.63773,38.08203],[-84.63851,38.0819],[-84.63938,38.08035],[-84.64018,38.08076],[-84.64206,38.08217],[-84.64255,38.08213],[-84.64463,38.08157],[-84.64628,38.0814],[-84.64695,38.08132],[-84.64772,38.08124],[-84.64801,38.08122],[-84.64829,38.08119],[-84.64901,38.08104],[-84.65177,38.08003],[-84.65272,38.0797],[-84.65412,38.0792],[-84.65581,38.07909],[-84.65722,38.07839],[-84.65756,38.07815],[-84.65794,38.07787],[-84.66224,38.0748],[-84.66243,38.07504],[-84.66248,38.07513],[-84.66278,38.07558],[-84.66287,38.07573],[-84.66307,38.07602],[-84.66384,38.07723],[-84.66389,38.07958],[-84.6639,38.08008],[-84.66391,38.08029],[-84.66392,38.08093],[-84.66392,38.08116],[-84.66394,38.08177],[-84.66394,38.08196],[-84.66387,38.08317],[-84.6626,38.08562],[-84.66253,38.08574],[-84.6615,38.08756],[-84.66113,38.08811],[-84.66105,38.08825],[-84.66056,38.08898],[-84.65954,38.09053],[-84.65946,38.09066],[-84.65937,38.09079],[-84.65908,38.09121],[-84.65901,38.09129],[-84.65771,38.09261],[-84.6574,38.09292],[-84.65645,38.09385],[-84.65547,38.09456],[-84.65555,38.09601],[-84.65556,38.09614],[-84.6551,38.09718],[-84.65488,38.09759],[-84.6548,38.09774],[-84.65381,38.09959],[-84.65343,38.1003],[-84.65334,38.10047],[-84.65296,38.10118],[-84.65282,38.10145],[-84.65184,38.1033],[-84.65151,38.10392],[-84.65093,38.10501],[-84.6507,38.10496],[-84.65043,38.10491],[-84.64924,38.10672],[-84.64917,38.10683],[-84.6491,38.10694],[-84.64878,38.10743],[-84.6479,38.10875],[-84.64767,38.1091],[-84.6468,38.11042],[-84.64673,38.11053],[-84.64664,38.11067],[-84.64654,38.11082],[-84.64645,38.11096],[-84.64408,38.11456],[-84.64344,38.11553],[-84.64301,38.11609],[-84.64269,38.11669],[-84.64261,38.11686],[-84.6424,38.11746],[-84.64233,38.11767],[-84.64185,38.1191],[-84.64059,38.12026],[-84.64011,38.12127],[-84.64002,38.12146],[-84.63937,38.1229],[-84.63923,38.12322],[-84.639,38.1237],[-84.63887,38.12398],[-84.63863,38.12451],[-84.63864,38.12498],[-84.63867,38.12517],[-84.63871,38.1257],[-84.63819,38.12598],[-84.63796,38.12629],[-84.63845,38.12735],[-84.6385,38.12753],[-84.63852,38.12802],[-84.63868,38.12816],[-84.63876,38.12823],[-84.63949,38.12885],[-84.64009,38.12912],[-84.64036,38.1292],[-84.64116,38.12931],[-84.64224,38.12926],[-84.64297,38.12918],[-84.64412,38.12925],[-84.64429,38.1293],[-84.64545,38.12974],[-84.64559,38.12979],[-84.64683,38.13021],[-84.64697,38.13026],[-84.64797,38.1306],[-84.64811,38.13065],[-84.64866,38.13091],[-84.64878,38.13098],[-84.64891,38.13105],[-84.64904,38.13111],[-84.6522,38.13225],[-84.65296,38.13251],[-84.65512,38.13324],[-84.65532,38.13331],[-84.65551,38.13338],[-84.65719,38.13396],[-84.65738,38.13402],[-84.65776,38.13416],[-84.6581,38.13428],[-84.65871,38.13449],[-84.65922,38.13467],[-84.66144,38.13545],[-84.66203,38.13565],[-84.66239,38.13578],[-84.66277,38.13592],[-84.66316,38.13606],[-84.6645,38.13654],[-84.66613,38.13735],[-84.66629,38.13743],[-84.66677,38.13768],[-84.66693,38.13775],[-84.66768,38.13807],[-84.66847,38.13815],[-84.66863,38.13816],[-84.66993,38.13823],[-84.67008,38.13824],[-84.67058,38.13827],[-84.67146,38.13832],[-84.67259,38.1385],[-84.67412,38.14017],[-84.67425,38.14026],[-84.67463,38.14056],[-84.67582,38.14173],[-84.67608,38.14193],[-84.67637,38.14211],[-84.67653,38.1422],[-84.67667,38.14228],[-84.67696,38.14246],[-84.67701,38.1425],[-84.67733,38.14274],[-84.67803,38.14331],[-84.67816,38.14341],[-84.67828,38.14351],[-84.67952,38.14453],[-84.67972,38.14469],[-84.6798,38.14474],[-84.6804,38.14519],[-84.68123,38.14555],[-84.68141,38.14562],[-84.68186,38.14578],[-84.68234,38.14595],[-84.68275,38.14609],[-84.6831,38.14622],[-84.6838,38.14647],[-84.68417,38.1466],[-84.68443,38.1467],[-84.68409,38.14728],[-84.68403,38.14739],[-84.68389,38.14763],[-84.68372,38.14793],[-84.68356,38.14822],[-84.68338,38.14854],[-84.68312,38.14898],[-84.68304,38.14914]]}},
{"type":"Feature","properties":{"name":"Russell Cave 25 Miles Clockwise"},"geometry":{"type":"LineString","coordinates":[[-84.44533,38.12006],[-84.44474,38.12069],[-84.44329,38.12224],[-84.44241,38.12317],[-84.44128,38.12438],[-84.44402,38.12558],[-84.44756,38.12687],[-84.45022,38.12774],[-84.4508,38.12794],[-84.45274,38.12861],[-84.45414,38.12916],[-84.45419,38.12935],[-84.45396,38.1299],[-84.45384,38.13018],[-84.45376,38.13036],[-84.45365,38.1306],[-84.45357,38.13075],[-84.4528,38.13221],[-84.44924,38.13916],[-84.44876,38.1401],[-84.44755,38.1424],[-84.44734,38.14246],[-84.44659,38.14228],[-84.44636,38.14243],[-84.44539,38.14451],[-84.44359,38.14765],[-84.44045,38.15355],[-84.43939,38.15549],[-84.43904,38.15618],[-84.43881,38.15663],[-84.43749,38.1593],[-84.43687,38.16053],[-84.43621,38.16184],[-84.44215,38.16369],[-84.44409,38.1643],[-84.44564,38.16479],[-84.45144,38.1666],[-84.45253,38.16695],[-84.45411,38.16744],[-84.45689,38.16831],[-84.45878,38.16889],[-84.46062,38.16949],[-84.46209,38.16996],[-84.46332,38.17035],[-84.46323,38.17115],[-84.46321,38.17164],[-84.46339,38.17186],[-84.46456,38.17227],[-84.46594,38.17277],[-84.46507,38.17436],[-84.46423,38.17584],[-84.46379,38.17663],[-84.4626,38.17866],[-84.45947,38.1811],[-84.45769,38.1825],[-84.45582,38.18468],[-84.45382,38.18709],[-84.45209,38.18914],[-84.45104,38.19027],[-84.44965,38.18986],[-84.44936,38.18991],[-84.44652,38.19364],[-84.44522,38.19465],[-84.44418,38.19569],[-84.44406,38.19582],[-84.44374,38.1964],[-84.44374,38.20034],[-84.44373,38.20196],[-84.44373,38.20211],[-84.44374,38.2024],[-84.4437,38.20471],[-84.44306,38.20457],[-84.44266,38.20449],[-84.44227,38.2044],[-84.44151,38.20425],[-84.4404,38.20403],[-84.43713,38.20342],[-84.43673,38.20335],[-84.43636,38.20328],[-84.43459,38.20295],[-84.42885,38.20273],[-84.42856,38.20288],[-84.42852,38.20294],[-84.42783,38.20401],[-84.4252,38.20315],[-84.42484,38.20303],[-84.42293,38.20239],[-84.42272,38.20233],[-84.41799,38.20057],[-84.41657,38.2],[-84.41416,38.19911],[-84.40889,38.1972],[-84.40745,38.19692],[-84.39769,38.19535],[-84.39899,38.19303],[-84.40028,38.19071],[-84.40047,38.19025],[-84.40079,38.18942],[-84.39906,38.1884],[-84.39609,38.18659],[-84.39475,38.18577],[-84.38964,38.18265],[-84.38742,38.18176],[-84.38495,38.18086],[-84.38026,38.17918],[-84.37882,38.17867],[-84.37134,38.17588],[-84.36744,38.17436],[-84.35523,38.1657],[-84.35145,38.1634],[-84.35116,38.16324],[-84.34364,38.15865],[-84.33795,38.15376],[-84.33814,38.15357],[-84.33832,38.1534],[-84.33869,38.15308],[-84.34049,38.15163],[-84.34235,38.15037],[-84.34639,38.1482],[-84.34908,38.14642],[-84.35293,38.14428],[-84.35484,38.14307],[-84.35706,38.14135],[-84.3576,38.1418],[-84.35806,38.14219],[-84.35878,38.14279],[-84.35906,38.14303],[-84.35986,38.14374],[-84.36121,38.14418],[-84.36154,38.14427],[-84.3665,38.14584],[-84.36665,38.14589],[-84.37296,38.14797],[-84.37545,38.14425],[-84.37628,38.14297],[-84.37653,38.14274],[-84.37791,38.14316],[-84.38131,38.14431],[-84.3841,38.14524],[-84.38644,38.14596],[-84.39038,38.1472],[-84.39374,38.14824],[-84.3962,38.14902],[-84.39659,38.14915],[-84.40335,38.15128],[-84.40343,38.1512],[-84.40376,38.15083],[-84.40428,38.15034],[-84.40469,38.15006],[-84.4067,38.14874],[-84.40703,38.14872],[-84.40779,38.149],[-84.40864,38.1493],[-84.41056,38.14993],[-84.41059,38.14977],[-84.41062,38.14968],[-84.41073,38.14948],[-84.41214,38.1471],[-84.4129,38.14579],[-84.41364,38.14449],[-84.41426,38.1434],[-84.41468,38.1427],[-84.41485,38.1424],[-84.40819,38.13834],[-84.41187,38.13257],[-84.41233,38.13185],[-84.41377,38.12962],[-84.41797,38.12318],[-84.41879,38.12255],[-84.42092,38.1192],[-84.42196,38.11845],[-84.42416,38.11517],[-84.42494,38.114],[-84.42649,38.1117],[-84.43044,38.11332],[-84.43167,38.11383],[-84.43354,38.11459],[-84.43558,38.11525],[-84.43661,38.11559],[-84.44662,38.1187],[-84.44601,38.11934],[-84.4456,38.11977],[-84.44537,38.12001]]}},
{"type":"Feature","properties":{"name":"Masterson-Moore's Mill Road"},"geometry":{"type":"LineString","coordinates":[[-84.55422,38.10635],[-84.55341,38.10637],[-84.55298,38.10638],[-84.55215,38.10637],[-84.55071,38.10638],[-84.54952,38.10639],[-84.54823,38.1064],[-84.54684,38.10641],[-84.54669,38.10657],[-84.54668,38.10671],[-84.54668,38.10716],[-84.54669,38.10778],[-84.5467,38.10803],[-84.54655,38.10851],[-84.54598,38.10888],[-84.54593,38.10891],[-84.54589,38.10893],[-84.54584,38.10897],[-84.54561,38.10925],[-84.54542,38.10954],[-84.54516,38.10995],[-84.5449,38.11032],[-84.54419,38.11061],[-84.54409,38.11065],[-84.54385,38.11078],[-84.54379,38.11082],[-84.54373,38.11087],[-84.54371,38.1109],[-84.54365,38.11122],[-84.54436,38.11108],[-84.54699,38.11055],[-84.54753,38.11045],[-84.54803,38.11045],[-84.54969,38.11096],[-84.54994,38.111],[-84.55177,38.11135],[-84.55205,38.11141],[-84.55294,38.11158],[-84.55464,38.1119],[-84.55655,38.11226],[-84.55723,38.1124],[-84.55817,38.11294],[-84.55991,38.11385],[-84.56047,38.11421],[-84.56016,38.11525],[-84.56016,38.11532],[-84.56022,38.11542],[-84.56026,38.11547],[-84.56041,38.11556],[-84.56164,38.1162],[-84.56222,38.11652],[-84.5642,38.11752],[-84.56488,38.11787],[-84.56569,38.11829],[-84.56714,38.11904],[-84.56854,38.11977],[-84.56874,38.11987],[-84.57329,38.12219],[-84.573,38.12311],[-84.57241,38.12494],[-84.57229,38.12534],[-84.572,38.12636],[-84.5718,38.12711],[-84.57176,38.12729],[-84.57235,38.12816],[-84.57247,38.12925],[-84.57256,38.13014],[-84.57257,38.13035],[-84.57255,38.13043],[-84.57252,38.1305],[-84.57216,38.13112],[-84.57183,38.13165],[-84.57129,38.13255],[-84.57089,38.13327],[-84.57107,38.13462],[-84.56995,38.13553],[-84.56928,38.13605],[-84.56871,38.1365],[-84.56884,38.1366],[-84.56898,38.13673],[-84.56905,38.13685],[-84.56909,38.13691],[-84.56921,38.13734],[-84.56923,38.13752],[-84.56938,38.13827],[-84.56977,38.13874],[-84.57099,38.13965],[-84.57186,38.14031],[-84.5736,38.14162],[-84.57404,38.14183],[-84.57475,38.1418],[-84.57541,38.14123],[-84.5773,38.13899],[-84.57889,38.13711],[-84.57959,38.13627],[-84.57996,38.13585],[-84.58108,38.13448],[-84.58176,38.13368],[-84.58238,38.13295],[-84.58276,38.1325],[-84.58296,38.13231],[-84.58322,38.13228],[-84.58328,38.1323],[-84.58348,38.13238],[-84.58373,38.13251],[-84.58441,38.13287],[-84.58466,38.13302],[-84.5851,38.13327],[-84.58569,38.1336],[-84.58722,38.1344],[-84.58904,38.13538],[-84.58982,38.13579],[-84.59076,38.1363],[-84.59144,38.13668],[-84.59168,38.13681],[-84.59416,38.13816],[-84.59513,38.13867],[-84.59554,38.13887],[-84.59672,38.1395],[-84.59856,38.1405],[-84.599,38.14072],[-84.59948,38.14097],[-84.60092,38.14173],[-84.60166,38.14213],[-84.60212,38.14237],[-84.60288,38.14277],[-84.60373,38.14322],[-84.60437,38.14356],[-84.60539,38.14411],[-84.60617,38.14453],[-84.60732,38.14513],[-84.60853,38.14577],[-84.61031,38.14672],[-84.61226,38.14777],[-84.6157,38.1496],[-84.61587,38.14969],[-84.61595,38.14972],[-84.61603,38.14975],[-84.61609,38.14977],[-84.61615,38.14978],[-84.61657,38.14984],[-84.61674,38.14985],[-84.61688,38.14986],[-84.61695,38.14987],[-84.61738,38.14994],[-84.61743,38.14995],[-84.61756,38.14999],[-84.61765,38.15004],[-84.61776,38.1501],[-84.61793,38.15019],[-84.61867,38.15062],[-84.62051,38.15163],[-84.62183,38.15238],[-84.6225,38.15283],[-84.62319,38.15329],[-84.62393,38.15381],[-84.62479,38.15449],[-84.62572,38.15538],[-84.62964,38.15906],[-84.63249,38.15905],[-84.63283,38.15904],[-84.63309,38.15903],[-84.63334,38.15902],[-84.63359,38.15902],[-84.63409,38.15901],[-84.63434,38.159],[-84.63644,38.15894],[-84.63669,38.15892],[-84.63804,38.15887],[-84.63838,38.15885],[-84.63853,38.15885],[-84.63889,38.15885],[-84.63926,38.15897],[-84.63935,38.15902],[-84.64041,38.15955],[-84.64076,38.15973],[-84.64202,38.16032],[-84.64347,38.16068],[-84.64487,38.1594],[-84.6451,38.15929],[-84.64522,38.15923],[-84.6459,38.15905],[-84.64868,38.15882],[-84.64979,38.15892],[-84.65088,38.15918],[-84.65146,38.15918],[-84.65207,38.159],[-84.65246,38.15863],[-84.65254,38.15814],[-84.65195,38.15557],[-84.65202,38.1541],[-84.65247,38.15216],[-84.65228,38.15045],[-84.65273,38.14754],[-84.65352,38.14646],[-84.65381,38.14604],[-84.65344,38.14589],[-84.65381,38.14604],[-84.65352,38.14646],[-84.65273,38.14754],[-84.65228,38.15045],[-84.65247,38.15216],[-84.65202,38.1541],[-84.65195,38.15557],[-84.65254,38.15814],[-84.65246,38.15863],[-84.65207,38.159],[-84.65146,38.15918],[-84.65088,38.15918],[-84.64979,38.15892],[-84.64868,38.15882],[-84.6459,38.15905],[-84.64522,38.15923],[-84.6451,38.15929],[-84.64487,38.1594],[-84.64347,38.16068],[-84.64202,38.16032],[-84.64076,38.15973],[-84.64041,38.15955],[-84.63935,38.15902],[-84.63926,38.15897],[-84.63889,38.15885],[-84.63853,38.15885],[-84.63838,38.15885],[-84.63804,38.15887],[-84.63669,38.15892],[-84.63644,38.15894],[-84.63434,38.159],[-84.63409,38.15901],[-84.63359,38.15902],[-84.63334,38.15902],[-84.63309,38.15903],[-84.63283,38.15904],[-84.63249,38.15905],[-84.62964,38.15906],[-84.62572,38.15538],[-84.62479,38.15449],[-84.62393,38.15381],[-84.62319,38.15329],[-84.6225,38.15283],[-84.62183,38.15238],[-84.62051,38.15163],[-84.61867,38.15062],[-84.61793,38.15019],[-84.61776,38.1501],[-84.61765,38.15004],[-84.61756,38.14999],[-84.61743,38.14995],[-84.61738,38.14994],[-84.61695,38.14987],[-84.61688,38.14986],[-84.61674,38.14985],[-84.61657,38.14984],[-84.61615,38.14978],[-84.61609,38.14977],[-84.61603,38.14975],[-84.61595,38.14972],[-84.61587,38.14969],[-84.6157,38.1496],[-84.61226,38.14777],[-84.61031,38.14672],[-84.60853,38.14577],[-84.60732,38.14513],[-84.60617,38.14453],[-84.60539,38.14411],[-84.60437,38.14356],[-84.60373,38.14322],[-84.60288,38.14277],[-84.60212,38.14237],[-84.60166,38.14213],[-84.60092,38.14173],[-84.59948,38.14097],[-84.599,38.14072],[-84.59856,38.1405],[-84.59672,38.1395],[-84.59554,38.13887],[-84.59513,38.13867],[-84.59416,38.13816],[-84.59168,38.13681],[-84.59144,38.13668],[-84.59076,38.1363],[-84.58982,38.13579],[-84.58904,38.13538],[-84.58722,38.1344],[-84.58569,38.1336],[-84.5851,38.13327],[-84.58466,38.13302],[-84.58441,38.13287],[-84.58373,38.13251],[-84.58348,38.13238],[-84.58328,38.1323],[-84.58322,38.13228],[-84.58296,38.13231],[-84.58276,38.1325],[-84.58238,38.13295],[-84.58176,38.13368],[-84.58108,38.13448],[-84.57996,38.13585],[-84.57959,38.13627],[-84.57889,38.13711],[-84.5773,38.13899],[-84.57541,38.14123],[-84.57475,38.1418],[-84.57404,38.14183],[-84.5736,38.14162],[-84.57186,38.14031],[-84.57099,38.13965],[-84.56977,38.13874],[-84.56938,38.13827],[-84.56923,38.13752],[-84.56921,38.13734],[-84.56909,38.13691],[-84.56905,38.13685],[-84.56898,38.13673],[-84.56884,38.1366],[-84.56871,38.1365],[-84.56928,38.13605],[-84.56995,38.13553],[-84.57107,38.13462],[-84.57089,38.13327],[-84.57129,38.13255],[-84.57183,38.13165],[-84.57216,38.13112],[-84.57252,38.1305],[-84.57255,38.13043],[-84.57257,38.13035],[-84.57256,38.13014],[-84.57247,38.12925],[-84.57235,38.12816],[-84.57176,38.12729],[-84.5718,38.12711],[-84.572,38.12636],[-84.57229,38.12534],[-84.57241,38.12494],[-84.573,38.12311],[-84.57329,38.12219],[-84.56874,38.11987],[-84.56854,38.11977],[-84.56714,38.11904],[-84.56569,38.11829],[-84.56488,38.11787],[-84.5642,38.11752],[-84.56222,38.11652],[-84.56164,38.1162],[-84.56041,38.11556],[-84.56026,38.11547],[-84.56022,38.11542],[-84.56016,38.11532],[-84.56016,38.11525],[-84.56047,38.11421],[-84.55991,38.11385],[-84.55817,38.11294],[-84.55723,38.1124],[-84.55655,38.11226],[-84.55464,38.1119],[-84.55294,38.11158],[-84.55205,38.11141],[-84.55177,38.11135],[-84.54994,38.111],[-84.54969,38.11096],[-84.54803,38.11045],[-84.54753,38.11045],[-84.54699,38.11055],[-84.54436,38.11108],[-84.54365,38.11122],[-84.54371,38.1109],[-84.54373,38.11087],[-84.54379,38.11082],[-84.54385,38.11078],[-84.54409,38.11065],[-84.54419,38.11061],[-84.5449,38.11032],[-84.54516,38.10995],[-84.54542,38.10954],[-84.54561,38.10925],[-84.54584,38.10897],[-84.54589,38.10893],[-84.54593,38.10891],[-84.54598,38.10888],[-84.54655,38.10851],[-84.5467,38.10803],[-84.54669,38.10778],[-84.54668,38.10716],[-84.54668,38.10671],[-84.54669,38.10657],[-84.54684,38.10641],[-84.54823,38.1064],[-84.54952,38.10639],[-84.55071,38.10638],[-84.55215,38.10637],[-84.55298,38.10638],[-84.55341,38.10637],[-84.55422,38.10635]]}},
{"type":"Feature","properties":{"name":"Hartland Shopping Center, Spears, Richmond Road"},"geometry":{"type":"LineString","coordinates":[[-84.47987,37.96007],[-84.4796,37.96019],[-84.47939,37.9603],[-84.47901,37.96056],[-84.47809,37.96166],[-84.47735,37.96224],[-84.47719,37.96232],[-84.47675,37.96248],[-84.47655,37.96253],[-84.47565,37.9626],[-84.47495,37.96253],[-84.47382,37.96238],[-84.47276,37.9624],[-84.47172,37.96255],[-84.47083,37.96282],[-84.46796,37.96476],[-84.46738,37.96519],[-84.46732,37.96523],[-84.46731,37.96525],[-84.46728,37.96532],[-84.46701,37.96551],[-84.46683,37.96565],[-84.46651,37.96548],[-84.46612,37.96524],[-84.46562,37.96498],[-84.46519,37.96476],[-84.4647,37.9645],[-84.46146,37.96278],[-84.45948,37.9617],[-84.45793,37.96087],[-84.45558,37.95958],[-84.45518,37.95936],[-84.45296,37.95816],[-84.45252,37.95793],[-84.45263,37.95772],[-84.45361,37.95614],[-84.45474,37.95435],[-84.45488,37.95412],[-84.45525,37.9535],[-84.45533,37.95338],[-84.45558,37.95295],[-84.4562,37.9519],[-84.45621,37.95149],[-84.4562,37.9513],[-84.45611,37.95093],[-84.45358,37.94779],[-84.45322,37.9474],[-84.45213,37.94643],[-84.45123,37.94559],[-84.45061,37.94482],[-84.45057,37.9441],[-84.45056,37.94405],[-84.45001,37.94303],[-84.45002,37.94239],[-84.45186,37.9403],[-84.4521,37.94018],[-84.45263,37.9398],[-84.45328,37.93923],[-84.45345,37.93909],[-84.45364,37.93893],[-84.45422,37.93823],[-84.45581,37.9359],[-84.45599,37.93565],[-84.45603,37.93561],[-84.45607,37.93557],[-84.45482,37.93483],[-84.45257,37.93346],[-84.45107,37.9326],[-84.45069,37.93238],[-84.44579,37.92957],[-84.44528,37.92924],[-84.44492,37.92871],[-84.44483,37.9286],[-84.4444,37.92834],[-84.44402,37.92818],[-84.44302,37.92783],[-84.44298,37.92785],[-84.44283,37.928],[-84.44238,37.92874],[-84.44223,37.92871],[-84.44208,37.92869],[-84.44158,37.92866],[-84.44035,37.92856],[-84.43851,37.92843],[-84.43633,37.92827],[-84.42877,37.92773],[-84.42484,37.92744],[-84.41736,37.92688],[-84.41296,37.92657],[-84.41219,37.92652],[-84.41285,37.92531],[-84.41574,37.92013],[-84.41629,37.91923],[-84.41705,37.91792],[-84.41947,37.91373],[-84.42003,37.91279],[-84.42215,37.90947],[-84.42237,37.90889],[-84.4238,37.90707],[-84.42395,37.90687],[-84.4241,37.90666],[-84.42434,37.90638],[-84.42579,37.90444],[-84.42742,37.90223],[-84.42858,37.9006],[-84.43148,37.89574],[-84.43541,37.8912],[-84.43574,37.89125],[-84.43906,37.89299],[-84.44129,37.89468],[-84.44546,37.89665],[-84.44578,37.89659],[-84.44821,37.89371],[-84.44817,37.89361],[-84.44788,37.89305],[-84.44644,37.89019],[-84.44398,37.88798],[-84.44328,37.88739],[-84.44273,37.88665],[-84.44227,37.88378],[-84.44266,37.8826],[-84.44355,37.88103],[-84.44336,37.87948],[-84.44307,37.87916],[-84.4418,37.87866],[-84.44131,37.87833],[-84.44019,37.87662],[-84.43846,37.87337],[-84.43837,37.87346],[-84.43832,37.87351],[-84.43774,37.87422],[-84.43268,37.88048],[-84.42798,37.88319],[-84.42691,37.88459],[-84.42621,37.88558],[-84.42299,37.89018],[-84.42265,37.8904],[-84.42198,37.89056],[-84.42181,37.89057],[-84.41998,37.89068],[-84.41997,37.89139],[-84.41996,37.89219],[-84.41986,37.89459],[-84.41854,37.8953],[-84.41841,37.89677],[-84.41829,37.89795],[-84.4193,37.90422],[-84.41964,37.90439],[-84.42017,37.90465],[-84.42087,37.90498],[-84.42103,37.90508],[-84.42127,37.90525],[-84.42377,37.90648],[-84.4241,37.90666],[-84.42395,37.90687],[-84.4238,37.90707],[-84.42237,37.90889],[-84.42215,37.90947],[-84.42003,37.91279],[-84.41947,37.91373],[-84.41705,37.91792],[-84.41629,37.91923],[-84.41574,37.92013],[-84.41285,37.92531],[-84.41219,37.92652],[-84.41213,37.92662],[-84.41152,37.92773],[-84.40837,37.93335],[-84.40573,37.93862],[-84.40546,37.93916],[-84.40536,37.93932],[-84.40549,37.93942],[-84.40573,37.93964],[-84.40653,37.9407],[-84.40787,37.94285],[-84.41066,37.94726],[-84.41578,37.9589],[-84.41582,37.95899],[-84.41664,37.96036],[-84.41724,37.96138],[-84.41807,37.96275],[-84.42089,37.96755],[-84.42145,37.96848],[-84.4217,37.96842],[-84.42286,37.96817],[-84.42336,37.96801],[-84.42404,37.96758],[-84.42525,37.96669],[-84.42732,37.96515],[-84.42947,37.96107],[-84.42986,37.96038],[-84.43085,37.95869],[-84.43211,37.95652],[-84.43378,37.95367],[-84.43604,37.9498],[-84.43593,37.94912],[-84.43548,37.94766],[-84.43502,37.94622],[-84.43372,37.94362],[-84.43677,37.93832],[-84.43829,37.9357],[-84.44022,37.93236],[-84.44063,37.93165],[-84.4414,37.93037],[-84.44198,37.92938],[-84.44238,37.92874],[-84.44283,37.928],[-84.44298,37.92785],[-84.44302,37.92783],[-84.44402,37.92818],[-84.4444,37.92834],[-84.44483,37.9286],[-84.44492,37.92871],[-84.44528,37.92924],[-84.44579,37.92957],[-84.45069,37.93238],[-84.45107,37.9326],[-84.45257,37.93346],[-84.45482,37.93483],[-84.45607,37.93557],[-84.45603,37.93561],[-84.45599,37.93565],[-84.45581,37.9359],[-84.45422,37.93823],[-84.45364,37.93893],[-84.45345,37.93909],[-84.45328,37.93923],[-84.45263,37.9398],[-84.4521,37.94018],[-84.45186,37.9403],[-84.45002,37.94239],[-84.45001,37.94303],[-84.45056,37.94405],[-84.45057,37.9441],[-84.45061,37.94482],[-84.45123,37.94559],[-84.45213,37.94643],[-84.45322,37.9474],[-84.45358,37.94779],[-84.45611,37.95093],[-84.4562,37.9513],[-84.45621,37.95149],[-84.4562,37.9519],[-84.45558,37.95295],[-84.45533,37.95338],[-84.45525,37.9535],[-84.45488,37.95412],[-84.45474,37.95435],[-84.45361,37.95614],[-84.45263,37.95772],[-84.45252,37.95793],[-84.45296,37.95816],[-84.45518,37.95936],[-84.45558,37.95958],[-84.45793,37.96087],[-84.45948,37.9617],[-84.46146,37.96278],[-84.4647,37.9645],[-84.46519,37.96476],[-84.46562,37.96498],[-84.46612,37.96524],[-84.46651,37.96548],[-84.46683,37.96565],[-84.46701,37.96551],[-84.46728,37.96532],[-84.46746,37.96525],[-84.46807,37.96483],[-84.46796,37.96476],[-84.47083,37.96282],[-84.47172,37.96255],[-84.47276,37.9624],[-84.47382,37.96238],[-84.47495,37.96253],[-84.47565,37.9626],[-84.47655,37.96253],[-84.47675,37.96248],[-84.47719,37.96232],[-84.47735,37.96224],[-84.47809,37.96166],[-84.47901,37.96056],[-84.47939,37.9603],[-84.4796,37.96019],[-84.47987,37.96007]]}},
{"type":"Feature","properties":{"name":"Masterson Station Midway Loop Via Cane Run/Ironworks"},"geometry":{"type":"LineString","coordinates":[[-84.55237,38.10637],[-84.55215,38.10637],[-84.55071,38.10638],[-84.54952,38.10639],[-84.54823,38.1064],[-84.54684,38.10641],[-84.54669,38.10657],[-84.54668,38.10671],[-84.54668,38.10716],[-84.54669,38.10778],[-84.5467,38.10803],[-84.54655,38.10851],[-84.54598,38.10888],[-84.54593,38.10891],[-84.54589,38.10893],[-84.54584,38.10897],[-84.54561,38.10925],[-84.54542,38.10954],[-84.54516,38.10995],[-84.5449,38.11032],[-84.54419,38.11061],[-84.54409,38.11065],[-84.54385,38.11078],[-84.54379,38.11082],[-84.54373,38.11087],[-84.54371,38.1109],[-84.54365,38.11122],[-84.54436,38.11108],[-84.54699,38.11055],[-84.54753,38.11045],[-84.54803,38.11045],[-84.54969,38.11096],[-84.54994,38.111],[-84.55177,38.11135],[-84.55205,38.11141],[-84.55294,38.11158],[-84.55464,38.1119],[-84.55655,38.11226],[-84.55723,38.1124],[-84.55817,38.11294],[-84.55991,38.11385],[-84.56047,38.11421],[-84.56016,38.11525],[-84.56016,38.11532],[-84.56022,38.11542],[-84.56026,38.11547],[-84.56041,38.11556],[-84.56164,38.1162],[-84.56222,38.11652],[-84.5642,38.11752],[-84.56488,38.11787],[-84.56569,38.11829],[-84.56714,38.11904],[-84.56854,38.11977],[-84.56874,38.11987],[-84.57329,38.12219],[-84.573,38.12311],[-84.57241,38.12494],[-84.57229,38.12534],[-84.572,38.12636],[-84.5718,38.12711],[-84.57176,38.12729],[-84.57235,38.12816],[-84.57247,38.12925],[-84.57256,38.13014],[-84.57257,38.13035],[-84.57255,38.13043],[-84.57252,38.1305],[-84.57216,38.13112],[-84.57183,38.13165],[-84.57129,38.13255],[-84.57089,38.13327],[-84.57107,38.13462],[-84.56995,38.13553],[-84.56928,38.13605],[-84.56871,38.1365],[-84.56884,38.1366],[-84.56898,38.13673],[-84.56905,38.13685],[-84.56909,38.13691],[-84.56921,38.13734],[-84.56923,38.13752],[-84.56938,38.13827],[-84.56977,38.13874],[-84.57099,38.13965],[-84.57186,38.14031],[-84.5736,38.14162],[-84.57404,38.14183],[-84.57475,38.1418],[-84.57541,38.14123],[-84.5773,38.13899],[-84.57889,38.13711],[-84.57959,38.13627],[-84.57996,38.13585],[-84.58108,38.13448],[-84.58176,38.13368],[-84.58238,38.13295],[-84.58276,38.1325],[-84.58296,38.13231],[-84.58322,38.13228],[-84.58328,38.1323],[-84.58348,38.13238],[-84.58373,38.13251],[-84.58441,38.13287],[-84.58466,38.13302],[-84.5851,38.13327],[-84.58569,38.1336],[-84.58722,38.1344],[-84.58904,38.13538],[-84.58982,38.13579],[-84.59076,38.1363],[-84.59144,38.13668],[-84.59168,38.13681],[-84.59416,38.13816],[-84.59513,38.13867],[-84.59554,38.13887],[-84.59672,38.1395],[-84.59856,38.1405],[-84.599,38.14072],[-84.59948,38.14097],[-84.60092,38.14173],[-84.60166,38.14213],[-84.60212,38.14237],[-84.60288,38.14277],[-84.60373,38.14322],[-84.60437,38.14356],[-84.60539,38.14411],[-84.60617,38.14453],[-84.60732,38.14513],[-84.60853,38.14577],[-84.61031,38.14672],[-84.61226,38.14777],[-84.6157,38.1496],[-84.61587,38.14969],[-84.61595,38.14972],[-84.61603,38.14975],[-84.61609,38.14977],[-84.61615,38.14978],[-84.61657,38.14984],[-84.61674,38.14985],[-84.61688,38.14986],[-84.61695,38.14987],[-84.61738,38.14994],[-84.61743,38.14995],[-84.61756,38.14999],[-84.61765,38.15004],[-84.61776,38.1501],[-84.61793,38.15019],[-84.61867,38.15062],[-84.62051,38.15163],[-84.62183,38.15238],[-84.6225,38.15283],[-84.62319,38.15329],[-84.62393,38.15381],[-84.62479,38.15449],[-84.62572,38.15538],[-84.62964,38.15906],[-84.63249,38.15905],[-84.63283,38.15904],[-84.63309,38.15903],[-84.63334,38.15902],[-84.63359,38.15902],[-84.63409,38.15901],[-84.63434,38.159],[-84.63644,38.15894],[-84.63669,38.15892],[-84.63804,38.15887],[-84.63838,38.15885],[-84.63853,38.15885],[-84.63889,38.15885],[-84.63883,38.15896],[-84.63852,38.15945],[-84.63838,38.15966],[-84.63826,38.15988],[-84.63725,38.16161],[-84.63707,38.16192],[-84.63545,38.16457],[-84.63435,38.16638],[-84.6336,38.1678],[-84.63271,38.16943],[-84.63136,38.17204],[-84.63128,38.17219],[-84.63106,38.17263],[-84.63083,38.17311],[-84.63075,38.17327],[-84.63049,38.17377],[-84.62977,38.17522],[-84.62956,38.17562],[-84.62935,38.17599],[-84.62746,38.17742],[-84.6269,38.17783],[-84.62571,38.17875],[-84.62561,38.17886],[-84.625,38.17953],[-84.62471,38.17986],[-84.62546,38.18008],[-84.6264,38.18034],[-84.62752,38.18064],[-84.62913,38.18111],[-84.62931,38.18116],[-84.62996,38.18135],[-84.63447,38.18264],[-84.63628,38.18317],[-84.63871,38.18386],[-84.64026,38.1843],[-84.64374,38.18529],[-84.64538,38.18575],[-84.64774,38.18643],[-84.64913,38.18682],[-84.65056,38.18722],[-84.6591,38.18967],[-84.66135,38.19032],[-84.66135,38.19019],[-84.66134,38.19014],[-84.66116,38.18976],[-84.66115,38.18973],[-84.66121,38.18953],[-84.66124,38.18948],[-84.66144,38.18919],[-84.66152,38.18909],[-84.66295,38.18717],[-84.66305,38.18703],[-84.66346,38.18647],[-84.66356,38.18633],[-84.66405,38.18568],[-84.66414,38.18555],[-84.66424,38.18542],[-84.66534,38.18392],[-84.66603,38.1827],[-84.66611,38.18256],[-84.66669,38.18167],[-84.66713,38.18032],[-84.6672,38.18017],[-84.66734,38.17987],[-84.66748,38.17955],[-84.66785,38.17876],[-84.66791,38.1786],[-84.66852,38.17724],[-84.66864,38.17695],[-84.66888,38.17641],[-84.66893,38.17629],[-84.66936,38.17538],[-84.66946,38.17523],[-84.66983,38.17461],[-84.66994,38.17444],[-84.67114,38.1725],[-84.67137,38.17212],[-84.67195,38.17116],[-84.67203,38.17101],[-84.6722,38.17072],[-84.67237,38.17043],[-84.67254,38.17016],[-84.67324,38.16904],[-84.67344,38.16871],[-84.67395,38.16789],[-84.67425,38.16742],[-84.67488,38.16641],[-84.67517,38.16594],[-84.67596,38.16456],[-84.67619,38.16416],[-84.67641,38.16377],[-84.67652,38.16356],[-84.67662,38.1634],[-84.6768,38.1631],[-84.67688,38.16296],[-84.67704,38.16269],[-84.67724,38.16237],[-84.67732,38.16223],[-84.6776,38.16168],[-84.67769,38.16155],[-84.67771,38.16148],[-84.67773,38.16138],[-84.67784,38.16036],[-84.67791,38.15958],[-84.67794,38.15926],[-84.67798,38.1587],[-84.67802,38.15838],[-84.67832,38.15817],[-84.67846,38.15814],[-84.67885,38.15828],[-84.67944,38.15849],[-84.68081,38.15901],[-84.68175,38.15942],[-84.68202,38.15903],[-84.68208,38.15896],[-84.68245,38.1587],[-84.68253,38.15866],[-84.68271,38.15856],[-84.68336,38.15818],[-84.68352,38.15807],[-84.68365,38.15796],[-84.68402,38.15753],[-84.68427,38.15684],[-84.68428,38.15665],[-84.68427,38.15654],[-84.68426,38.1565],[-84.68425,38.15638],[-84.6842,38.15619],[-84.6841,38.15594],[-84.68407,38.15587],[-84.68356,38.15499],[-84.68348,38.15487],[-84.68313,38.15437],[-84.68306,38.15426],[-84.68299,38.15414],[-84.68278,38.15338],[-84.68282,38.15313],[-84.68286,38.15302],[-84.68293,38.15287],[-84.68365,38.1516],[-84.68327,38.15146],[-84.68263,38.15124],[-84.68215,38.15105],[-84.68195,38.15098],[-84.68207,38.15077],[-84.68229,38.15039],[-84.68199,38.15029],[-84.68099,38.14993],[-84.681,38.14982],[-84.68101,38.14963],[-84.68103,38.14938],[-84.68105,38.14917],[-84.68121,38.14864],[-84.68127,38.14853],[-84.6817,38.14786],[-84.68275,38.14609],[-84.68234,38.14595],[-84.68186,38.14578],[-84.68141,38.14562],[-84.68123,38.14555],[-84.6804,38.14519],[-84.6798,38.14474],[-84.67972,38.14469],[-84.67952,38.14453],[-84.67828,38.14351],[-84.67816,38.14341],[-84.67803,38.14331],[-84.67733,38.14274],[-84.67701,38.1425],[-84.67696,38.14246],[-84.67667,38.14228],[-84.67653,38.1422],[-84.67637,38.14211],[-84.67608,38.14193],[-84.67582,38.14173],[-84.67463,38.14056],[-84.67425,38.14026],[-84.67412,38.14017],[-84.67259,38.1385],[-84.67146,38.13832],[-84.67058,38.13827],[-84.67008,38.13824],[-84.66993,38.13823],[-84.66863,38.13816],[-84.66847,38.13815],[-84.66768,38.13807],[-84.66693,38.13775],[-84.66677,38.13768],[-84.66629,38.13743],[-84.66613,38.13735],[-84.6645,38.13654],[-84.66316,38.13606],[-84.66277,38.13592],[-84.66239,38.13578],[-84.66203,38.13565],[-84.66144,38.13545],[-84.65922,38.13467],[-84.65871,38.13449],[-84.6581,38.13428],[-84.65776,38.13416],[-84.65738,38.13402],[-84.65719,38.13396],[-84.65551,38.13338],[-84.65532,38.13331],[-84.65512,38.13324],[-84.65296,38.13251],[-84.6522,38.13225],[-84.64904,38.13111],[-84.64891,38.13105],[-84.64878,38.13098],[-84.64866,38.13091],[-84.64811,38.13065],[-84.64797,38.1306],[-84.64697,38.13026],[-84.64683,38.13021],[-84.64559,38.12979],[-84.64545,38.12974],[-84.64429,38.1293],[-84.64412,38.12925],[-84.64297,38.12918],[-84.64224,38.12926],[-84.64116,38.12931],[-84.64036,38.1292],[-84.64009,38.12912],[-84.63949,38.12885],[-84.63876,38.12823],[-84.63868,38.12816],[-84.63852,38.12802],[-84.63814,38.12793],[-84.63791,38.12788],[-84.63768,38.12783],[-84.63752,38.1278],[-84.63718,38.12781],[-84.63697,38.12802],[-84.63647,38.12875],[-84.63639,38.12896],[-84.6356,38.13135],[-84.63557,38.1315],[-84.63482,38.13366],[-84.63476,38.13376],[-84.63453,38.13427],[-84.63369,38.13514],[-84.63361,38.13521],[-84.63355,38.13527],[-84.63324,38.13556],[-84.63262,38.13524],[-84.62829,38.13739],[-84.62814,38.13749],[-84.62721,38.13847],[-84.62673,38.13898],[-84.62606,38.13973],[-84.62558,38.14025],[-84.62534,38.14051],[-84.6251,38.14077],[-84.62436,38.14156],[-84.62389,38.14206],[-84.62382,38.14213],[-84.62306,38.14295],[-84.6228,38.14324],[-84.62202,38.14407],[-84.62157,38.14455],[-84.62118,38.14496],[-84.62065,38.14553],[-84.61979,38.14644],[-84.61904,38.14723],[-84.61835,38.14796],[-84.61796,38.14837],[-84.61763,38.14873],[-84.61727,38.1491],[-84.61674,38.14985],[-84.61657,38.14984],[-84.61615,38.14978],[-84.61609,38.14977],[-84.61603,38.14975],[-84.61595,38.14972],[-84.61587,38.14969],[-84.6157,38.1496],[-84.61226,38.14777],[-84.61031,38.14672],[-84.60853,38.14577],[-84.60732,38.14513],[-84.60617,38.14453],[-84.60539,38.14411],[-84.60437,38.14356],[-84.60373,38.14322],[-84.60288,38.14277],[-84.60212,38.14237],[-84.60166,38.14213],[-84.60092,38.14173],[-84.59948,38.14097],[-84.599,38.14072],[-84.59856,38.1405],[-84.59672,38.1395],[-84.59554,38.13887],[-84.59513,38.13867],[-84.59416,38.13816],[-84.59168,38.13681],[-84.59144,38.13668],[-84.59076,38.1363],[-84.58982,38.13579],[-84.58904,38.13538],[-84.58722,38.1344],[-84.58569,38.1336],[-84.5851,38.13327],[-84.58466,38.13302],[-84.58441,38.13287],[-84.58447,38.13272],[-84.58451,38.13246],[-84.58452,38.13222],[-84.58462,38.13106],[-84.58466,38.13066],[-84.58498,38.12929],[-84.58518,38.12841],[-84.5857,38.12631],[-84.58491,38.12528],[-84.58408,38.12424],[-84.58363,38.12362],[-84.58177,38.12109],[-84.57905,38.11741],[-84.5787,38.11692],[-84.57823,38.1163],[-84.57805,38.11652],[-84.57776,38.11691],[-84.57726,38.11751],[-84.57624,38.11871],[-84.57529,38.11983],[-84.5748,38.1204],[-84.57394,38.12143],[-84.57329,38.12219],[-84.56874,38.11987],[-84.56854,38.11977],[-84.56714,38.11904],[-84.56569,38.11829],[-84.56488,38.11787],[-84.5642,38.11752],[-84.56222,38.11652],[-84.56164,38.1162],[-84.56041,38.11556],[-84.56026,38.11547],[-84.56022,38.11542],[-84.56016,38.11532],[-84.56016,38.11525],[-84.56047,38.11421],[-84.55991,38.11385],[-84.55817,38.11294],[-84.55723,38.1124],[-84.55655,38.11226],[-84.55464,38.1119],[-84.55294,38.11158],[-84.55205,38.11141],[-84.55177,38.11135],[-84.54994,38.111],[-84.54969,38.11096],[-84.54994,38.111],[-84.55177,38.11135],[-84.55205,38.11141],[-84.55294,38.11158],[-84.55464,38.1119],[-84.55655,38.11226],[-84.55464,38.1119],[-84.55294,38.11158],[-84.55205,38.11141],[-84.55177,38.11135],[-84.54994,38.111],[-84.54969,38.11096],[-84.54803,38.11045],[-84.54753,38.11045],[-84.54699,38.11055],[-84.54436,38.11108],[-84.54365,38.11122],[-84.54371,38.1109],[-84.54373,38.11087],[-84.54379,38.11082],[-84.54385,38.11078],[-84.54409,38.11065],[-84.54419,38.11061],[-84.5449,38.11032],[-84.54516,38.10995],[-84.54542,38.10954],[-84.54561,38.10925],[-84.54584,38.10897],[-84.54589,38.10893],[-84.54593,38.10891],[-84.54598,38.10888],[-84.54655,38.10851],[-84.5467,38.10803],[-84.54669,38.10778],[-84.54668,38.10716],[-84.54668,38.10671],[-84.54669,38.10657],[-84.54684,38.10641],[-84.54823,38.1064],[-84.54952,38.10639],[-84.55071,38.10638],[-84.55173,38.10637]]}},
{"type":"Feature","properties":{"name":"Masterson Station Out and Back to Cane Run/Ironworks"},"geometry":{"type":"LineString","coordinates":[[-84.55211,38.10637],[-84.55071,38.10638],[-84.54952,38.10639],[-84.54823,38.1064],[-84.54684,38.10641],[-84.54669,38.10657],[-84.54668,38.10671],[-84.54668,38.10716],[-84.54669,38.10778],[-84.5467,38.10803],[-84.54655,38.10851],[-84.54598,38.10888],[-84.54593,38.10891],[-84.54589,38.10893],[-84.54584,38.10897],[-84.54561,38.10925],[-84.54542,38.10954],[-84.54516,38.10995],[-84.5449,38.11032],[-84.54419,38.11061],[-84.54409,38.11065],[-84.54385,38.11078],[-84.54379,38.11082],[-84.54373,38.11087],[-84.54371,38.1109],[-84.54365,38.11122],[-84.54436,38.11108],[-84.54699,38.11055],[-84.54753,38.11045],[-84.54803,38.11045],[-84.54969,38.11096],[-84.54994,38.111],[-84.55177,38.11135],[-84.55205,38.11141],[-84.55294,38.11158],[-84.55464,38.1119],[-84.55655,38.11226],[-84.55723,38.1124],[-84.55817,38.11294],[-84.55991,38.11385],[-84.56047,38.11421],[-84.56016,38.11525],[-84.56016,38.11532],[-84.56022,38.11542],[-84.56026,38.11547],[-84.56041,38.11556],[-84.56164,38.1162],[-84.56222,38.11652],[-84.5642,38.11752],[-84.56488,38.11787],[-84.56569,38.11829],[-84.56714,38.11904],[-84.56854,38.11977],[-84.56874,38.11987],[-84.57329,38.12219],[-84.573,38.12311],[-84.57241,38.12494],[-84.57229,38.12534],[-84.572,38.12636],[-84.5718,38.12711],[-84.57176,38.12729],[-84.57235,38.12816],[-84.57247,38.12925],[-84.57256,38.13014],[-84.57257,38.13035],[-84.57255,38.13043],[-84.57252,38.1305],[-84.57216,38.13112],[-84.57183,38.13165],[-84.57129,38.13255],[-84.57089,38.13327],[-84.57107,38.13462],[-84.56995,38.13553],[-84.56928,38.13605],[-84.56871,38.1365],[-84.56884,38.1366],[-84.56898,38.13673],[-84.56905,38.13685],[-84.56909,38.13691],[-84.56921,38.13734],[-84.56923,38.13752],[-84.56938,38.13827],[-84.56977,38.13874],[-84.57099,38.13965],[-84.57186,38.14031],[-84.5736,38.14162],[-84.57404,38.14183],[-84.57475,38.1418],[-84.57541,38.14123],[-84.5773,38.13899],[-84.57889,38.13711],[-84.57959,38.13627],[-84.57996,38.13585],[-84.58108,38.13448],[-84.58176,38.13368],[-84.58238,38.13295],[-84.58276,38.1325],[-84.58296,38.13231],[-84.58322,38.13228],[-84.58328,38.1323],[-84.58348,38.13238],[-84.58373,38.13251],[-84.58441,38.13287],[-84.58466,38.13302],[-84.5851,38.13327],[-84.58569,38.1336],[-84.58722,38.1344],[-84.58904,38.13538],[-84.58982,38.13579],[-84.59076,38.1363],[-84.59144,38.13668],[-84.59168,38.13681],[-84.59416,38.13816],[-84.59513,38.13867],[-84.59554,38.13887],[-84.59672,38.1395],[-84.59856,38.1405],[-84.599,38.14072],[-84.59948,38.14097],[-84.60092,38.14173],[-84.60166,38.14213],[-84.60212,38.14237],[-84.60288,38.14277],[-84.60373,38.14322],[-84.60437,38.14356],[-84.60539,38.14411],[-84.60617,38.14453],[-84.60732,38.14513],[-84.60853,38.14577],[-84.61031,38.14672],[-84.61226,38.14777],[-84.6157,38.1496],[-84.61587,38.14969],[-84.61595,38.14972],[-84.61603,38.14975],[-84.61609,38.14977],[-84.61615,38.14978],[-84.61657,38.14984],[-84.61674,38.14985],[-84.61688,38.14986],[-84.61695,38.14987],[-84.61738,38.14994],[-84.61743,38.14995],[-84.61756,38.14999],[-84.61765,38.15004],[-84.61776,38.1501],[-84.61793,38.15019],[-84.61867,38.15062],[-84.62051,38.15163],[-84.62183,38.15238],[-84.6225,38.15283],[-84.62319,38.15329],[-84.62393,38.15381],[-84.62479,38.15449],[-84.62572,38.15538],[-84.62964,38.15906],[-84.63249,38.15905],[-84.63283,38.15904],[-84.63309,38.15903],[-84.63334,38.15902],[-84.63359,38.15902],[-84.63409,38.15901],[-84.63434,38.159],[-84.63644,38.15894],[-84.63669,38.15892],[-84.63804,38.15887],[-84.63838,38.15885],[-84.63853,38.15885],[-84.63889,38.15885],[-84.63883,38.15896],[-84.63852,38.15945],[-84.63838,38.15966],[-84.63826,38.15988],[-84.63725,38.16161],[-84.63707,38.16192],[-84.63545,38.16457],[-84.63435,38.16638],[-84.6336,38.1678],[-84.63271,38.16943],[-84.63136,38.17204],[-84.63128,38.17219],[-84.63106,38.17263],[-84.63083,38.17311],[-84.63075,38.17327],[-84.63049,38.17377],[-84.62977,38.17522],[-84.62956,38.17562],[-84.62935,38.17599],[-84.62746,38.17742],[-84.6269,38.17783],[-84.62571,38.17875],[-84.62561,38.17886],[-84.625,38.17953],[-84.62471,38.17986],[-84.625,38.17953],[-84.62561,38.17886],[-84.62571,38.17875],[-84.6269,38.17783],[-84.62746,38.17742],[-84.62935,38.17599],[-84.62956,38.17562],[-84.62977,38.17522],[-84.63049,38.17377],[-84.63075,38.17327],[-84.63083,38.17311],[-84.63106,38.17263],[-84.63128,38.17219],[-84.63136,38.17204],[-84.63271,38.16943],[-84.6336,38.1678],[-84.63435,38.16638],[-84.63545,38.16457],[-84.63707,38.16192],[-84.63725,38.16161],[-84.63826,38.15988],[-84.63838,38.15966],[-84.63852,38.15945],[-84.63883,38.15896],[-84.63889,38.15885],[-84.63853,38.15885],[-84.63838,38.15885],[-84.63804,38.15887],[-84.63669,38.15892],[-84.63644,38.15894],[-84.63434,38.159],[-84.63409,38.15901],[-84.63359,38.15902],[-84.63334,38.15902],[-84.63309,38.15903],[-84.63283,38.15904],[-84.63249,38.15905],[-84.62964,38.15906],[-84.62572,38.15538],[-84.62479,38.15449],[-84.62393,38.15381],[-84.62319,38.15329],[-84.6225,38.15283],[-84.62183,38.15238],[-84.62051,38.15163],[-84.61867,38.15062],[-84.61793,38.15019],[-84.61776,38.1501],[-84.61765,38.15004],[-84.61756,38.14999],[-84.61743,38.14995],[-84.61738,38.14994],[-84.61695,38.14987],[-84.61688,38.14986],[-84.61674,38.14985],[-84.61657,38.14984],[-84.61615,38.14978],[-84.61609,38.14977],[-84.61603,38.14975],[-84.61595,38.14972],[-84.61587,38.14969],[-84.6157,38.1496],[-84.61226,38.14777],[-84.61031,38.14672],[-84.60853,38.14577],[-84.60732,38.14513],[-84.60617,38.14453],[-84.60539,38.14411],[-84.60437,38.14356],[-84.60373,38.14322],[-84.60288,38.14277],[-84.60212,38.14237],[-84.60166,38.14213],[-84.60092,38.14173],[-84.59948,38.14097],[-84.599,38.14072],[-84.59856,38.1405],[-84.59672,38.1395],[-84.59554,38.13887],[-84.59513,38.13867],[-84.59416,38.13816],[-84.59168,38.13681],[-84.59144,38.13668],[-84.59076,38.1363],[-84.58982,38.13579],[-84.58904,38.13538],[-84.58722,38.1344],[-84.58569,38.1336],[-84.5851,38.13327],[-84.58466,38.13302],[-84.58441,38.13287],[-84.58447,38.13272],[-84.58451,38.13246],[-84.58452,38.13222],[-84.58462,38.13106],[-84.58466,38.13066],[-84.58498,38.12929],[-84.58518,38.12841],[-84.5857,38.12631],[-84.5849
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment