gooby 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +144 -180
- data/bin/example_usage.txt +55 -0
- data/bin/gooby_been_there.rb +35 -0
- data/bin/gooby_config.rb +16 -0
- data/bin/gooby_gen_gmap.rb +16 -0
- data/bin/gooby_parser.rb +19 -0
- data/bin/gooby_splitter.rb +18 -0
- data/bin/gooby_version.rb +16 -0
- data/bin/run_all.sh +23 -0
- data/bin/run_been_there.sh +16 -0
- data/bin/run_db_gen.sh +11 -0
- data/bin/run_db_load.sh +11 -0
- data/bin/run_gen_gmaps.sh +20 -0
- data/bin/run_parse.sh +43 -0
- data/bin/run_parse_named.sh +19 -0
- data/bin/run_split.sh +23 -0
- data/config/gooby_config.yaml +137 -0
- data/data/20050305_corporate_cup_hm.csv +251 -251
- data/data/20050430_nashville_marathon.csv +1208 -1208
- data/data/20060115_phoenix_marathon.csv +1280 -1280
- data/data/davidson_11m_20070101.csv +251 -0
- data/data/davidson_11m_20070101.xml +2020 -0
- data/data/davidson_5K_20070505.csv +286 -0
- data/data/davidson_5K_20070505.xml +2875 -0
- data/lib/gooby.rb +889 -361
- data/samples/20050305_corporate_cup_hm.html +270 -270
- data/samples/20050430_nashville_marathon.html +1240 -1240
- data/samples/20060115_phoenix_marathon.html +1312 -1312
- data/samples/been_there.txt +744 -0
- data/samples/davidson_11m_20070101.html +432 -0
- data/samples/davidson_5K_20070505.html +395 -0
- data/sql/gooby.ddl +56 -0
- data/sql/gooby_load.dml +35 -0
- metadata +30 -32
- data/bin/20050305_corporate_cup_hm_to_csv.rb +0 -9
- data/bin/20050430_nashville_marathon_to_csv.rb +0 -9
- data/bin/20060115_phoenix_marathon_to_csv.rb +0 -9
- data/bin/activity_2007_03_10_13_02_32.xml_to_csv.rb +0 -9
- data/bin/example_usage.rb +0 -46
- data/bin/example_usage.sh +0 -52
- data/bin/gen_gap_phx.rb +0 -10
- data/bin/gen_gmap_cc_2005.rb +0 -10
- data/bin/gen_gmap_cc_2007.rb +0 -10
- data/bin/gen_gmap_nashville.rb +0 -10
- data/bin/gen_gmap_phx.rb +0 -10
- data/bin/phx_to_csv.rb +0 -47
- data/bin/split_forerunner_logbook_2007.rb +0 -10
- data/bin/split_training_center_2007.rb +0 -8
- data/data/2007_03_10.tcx +0 -28445
- data/data/activity_2007_03_10_13_02_32.csv +0 -1168
- data/data/activity_2007_03_10_13_02_32.xml +0 -11695
- data/data/forerunner_2007.xml +0 -31872
- data/data/geo_data.txt +0 -171
- data/pkg/code_header.txt +0 -21
- data/pkg/pkg.rb +0 -238
- data/pkg/test_header.txt +0 -19
- data/samples/20070310_corporate_cup_hm.html +0 -1367
- data/samples/gps_point_capture.html +0 -54
- data/samples/phoenix_marathon.html +0 -1596
- data/tests/ts_gooby.rb +0 -1109
- data/tests/ts_gooby_min.rb +0 -550
| @@ -3,10 +3,10 @@ | |
| 3 3 | 
             
            <html xmlns="http://www.w3.org/1999/xhtml">
         | 
| 4 4 | 
             
              <head>
         | 
| 5 5 | 
             
                <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
         | 
| 6 | 
            -
                <meta name="description" content="Google Map generated with Gooby 1. | 
| 7 | 
            -
                <meta name="keywords" content="Google Map Gooby 1. | 
| 6 | 
            +
                <meta name="description" content="Google Map generated with Gooby 1.1.0">
         | 
| 7 | 
            +
                <meta name="keywords" content="Google Map Gooby 1.1.0 GPS">
         | 
| 8 8 | 
             
                <title> Google Map by Gooby </title>
         | 
| 9 | 
            -
                <script src= | 
| 9 | 
            +
                <script src='http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAdn5SVzjZKZKs1IRkFdx52xR1l5lLpU9GCFYoS8YrTf8v3gVJ2hRLV1dTSiqDWwWSnMRkM7SVr0EKSA' type='text/javascript'></script>
         | 
| 10 10 | 
             
                <script type="text/javascript">
         | 
| 11 11 | 
             
            //<![CDATA[ 
         | 
| 12 12 | 
             
                function load() { 
         | 
| @@ -15,1218 +15,1218 @@ | |
| 15 15 | 
             
                        map.addControl(new GLargeMapControl());
         | 
| 16 16 | 
             
                        map.addControl(new GMapTypeControl());
         | 
| 17 17 |  | 
| 18 | 
            -
                        var centerPoint = new GLatLng(36.15751, -86.77647); // Gooby 1. | 
| 18 | 
            +
                        var centerPoint = new GLatLng(36.15751, -86.77647); // Gooby 1.1.0 
         | 
| 19 19 | 
             
                        map.setCenter(centerPoint, 12); 
         | 
| 20 20 |  | 
| 21 21 |  | 
| 22 22 | 
             
                        var points = new Array(); 
         | 
| 23 | 
            -
                        points.push(new GLatLng(36.14661,-86.80903)); // (1 of 1207.0) 2005-04-30T12:05:04Z 0 00:00:00 0.0  Gooby 1. | 
| 24 | 
            -
                        // points.push(new GLatLng(36.14663,-86.80897)); // (2 of 1207.0) 2005-04-30T12:05:08Z 4 00:00:04 0.00362183459690642  Gooby 1. | 
| 25 | 
            -
                        // points.push(new GLatLng(36.14665,-86.80897)); // (3 of 1207.0) 2005-04-30T12:05:09Z 5 00:00:05 0.00500269004278992  Gooby 1. | 
| 26 | 
            -
                        // points.push(new GLatLng(36.14676,-86.80882)); // (4 of 1207.0) 2005-04-30T12:05:14Z 10 00:00:10 0.0163070181079739  Gooby 1. | 
| 27 | 
            -
                        // points.push(new GLatLng(36.14678,-86.80875)); // (5 of 1207.0) 2005-04-30T12:05:16Z 12 00:00:12 0.0204495844456246  Gooby 1. | 
| 28 | 
            -
                        // points.push(new GLatLng(36.14686,-86.8086)); // (6 of 1207.0) 2005-04-30T12:05:21Z 17 00:00:17 0.0304784529498858  Gooby 1. | 
| 29 | 
            -
                        points.push(new GLatLng(36.14699,-86.80834)); // (7 of 1207.0) 2005-04-30T12:05:30Z 26 00:00:26 0.0475395316117234  Gooby 1. | 
| 30 | 
            -
                        // points.push(new GLatLng(36.14712,-86.80804)); // (8 of 1207.0) 2005-04-30T12:05:41Z 37 00:00:37 0.0665343327729839  Gooby 1. | 
| 31 | 
            -
                        // points.push(new GLatLng(36.14719,-86.80781)); // (9 of 1207.0) 2005-04-30T12:05:49Z 45 00:00:45 0.0802474345220799  Gooby 1. | 
| 32 | 
            -
                        // points.push(new GLatLng(36.14736,-86.8074)); // (10 of 1207.0) 2005-04-30T12:06:04Z 60 00:01:00 0.10596078903113  Gooby 1. | 
| 33 | 
            -
                        // points.push(new GLatLng(36.14755,-86.80693)); // (11 of 1207.0) 2005-04-30T12:06:19Z 75 00:01:15 0.135284498977397  Gooby 1. | 
| 34 | 
            -
                        // points.push(new GLatLng(36.14779,-86.80652)); // (12 of 1207.0) 2005-04-30T12:06:32Z 88 00:01:28 0.163536237528796  Gooby 1. | 
| 35 | 
            -
                        points.push(new GLatLng(36.14802,-86.80603)); // (13 of 1207.0) 2005-04-30T12:06:47Z 103 00:01:43 0.195156249293514  Gooby 1. | 
| 36 | 
            -
                        // points.push(new GLatLng(36.1482,-86.80562)); // (14 of 1207.0) 2005-04-30T12:07:00Z 116 00:01:56 0.221192142297481  Gooby 1. | 
| 37 | 
            -
                        // points.push(new GLatLng(36.14841,-86.80517)); // (15 of 1207.0) 2005-04-30T12:07:14Z 130 00:02:10 0.250188426739633  Gooby 1. | 
| 38 | 
            -
                        // points.push(new GLatLng(36.14869,-86.8047)); // (16 of 1207.0) 2005-04-30T12:07:29Z 145 00:02:25 0.282773407686557  Gooby 1. | 
| 39 | 
            -
                        // points.push(new GLatLng(36.14882,-86.80435)); // (17 of 1207.0) 2005-04-30T12:07:40Z 156 00:02:36 0.304266379372007  Gooby 1. | 
| 40 | 
            -
                        // points.push(new GLatLng(36.14899,-86.8039)); // (18 of 1207.0) 2005-04-30T12:07:54Z 170 00:02:50 0.331983218652656  Gooby 1. | 
| 41 | 
            -
                        points.push(new GLatLng(36.14925,-86.80341)); // (19 of 1207.0) 2005-04-30T12:08:10Z 186 00:03:06 0.364693747035625  Gooby 1. | 
| 42 | 
            -
                        // points.push(new GLatLng(36.1495,-86.80296)); // (20 of 1207.0) 2005-04-30T12:08:25Z 201 00:03:21 0.395166684821317  Gooby 1. | 
| 43 | 
            -
                        // points.push(new GLatLng(36.15,-86.80182)); // (21 of 1207.0) 2005-04-30T12:09:00Z 236 00:03:56 0.467542106297143  Gooby 1. | 
| 44 | 
            -
                        // points.push(new GLatLng(36.15041,-86.8009)); // (22 of 1207.0) 2005-04-30T12:09:28Z 264 00:04:24 0.526165433670955  Gooby 1. | 
| 45 | 
            -
                        // points.push(new GLatLng(36.15073,-86.80036)); // (23 of 1207.0) 2005-04-30T12:09:45Z 281 00:04:41 0.563533174876121  Gooby 1. | 
| 46 | 
            -
                        // points.push(new GLatLng(36.1509,-86.80002)); // (24 of 1207.0) 2005-04-30T12:09:56Z 292 00:04:52 0.585843214977657  Gooby 1. | 
| 47 | 
            -
                        points.push(new GLatLng(36.15113,-86.79955)); // (25 of 1207.0) 2005-04-30T12:10:11Z 307 00:05:07 0.616502897810645  Gooby 1. | 
| 48 | 
            -
                        // points.push(new GLatLng(36.15129,-86.79931)); // (26 of 1207.0) 2005-04-30T12:10:19Z 315 00:05:15 0.633865693942692  Gooby 1. | 
| 49 | 
            -
                        // points.push(new GLatLng(36.15154,-86.79882)); // (27 of 1207.0) 2005-04-30T12:10:35Z 331 00:05:31 0.666201238260048  Gooby 1. | 
| 50 | 
            -
                        // points.push(new GLatLng(36.15176,-86.79841)); // (28 of 1207.0) 2005-04-30T12:10:48Z 344 00:05:44 0.69366395527553  Gooby 1. | 
| 51 | 
            -
                        // points.push(new GLatLng(36.15193,-86.79809)); // (29 of 1207.0) 2005-04-30T12:10:58Z 354 00:05:54 0.715033129479603  Gooby 1. | 
| 52 | 
            -
                        // points.push(new GLatLng(36.15212,-86.79768)); // (30 of 1207.0) 2005-04-30T12:11:11Z 367 00:06:07 0.741405101616147  Gooby 1. | 
| 53 | 
            -
                        points.push(new GLatLng(36.15223,-86.79742)); // (31 of 1207.0) 2005-04-30T12:11:19Z 375 00:06:15 0.757780192213758  Gooby 1. | 
| 54 | 
            -
                        // points.push(new GLatLng(36.15238,-86.79703)); // (32 of 1207.0) 2005-04-30T12:11:32Z 388 00:06:28 0.781879197469583  Gooby 1. | 
| 55 | 
            -
                        // points.push(new GLatLng(36.15266,-86.79648)); // (33 of 1207.0) 2005-04-30T12:11:51Z 407 00:06:47 0.818151206748071  Gooby 1. | 
| 56 | 
            -
                        // points.push(new GLatLng(36.15279,-86.79618)); // (34 of 1207.0) 2005-04-30T12:12:02Z 418 00:06:58 0.837144817193595  Gooby 1. | 
| 57 | 
            -
                        // points.push(new GLatLng(36.15302,-86.79575)); // (35 of 1207.0) 2005-04-30T12:12:17Z 433 00:07:13 0.865918793378541  Gooby 1. | 
| 58 | 
            -
                        // points.push(new GLatLng(36.15319,-86.79538)); // (36 of 1207.0) 2005-04-30T12:12:30Z 446 00:07:26 0.889667432509591  Gooby 1. | 
| 59 | 
            -
                        points.push(new GLatLng(36.15341,-86.79502)); // (37 of 1207.0) 2005-04-30T12:12:43Z 459 00:07:39 0.914853939873745  Gooby 1. | 
| 60 | 
            -
                        // points.push(new GLatLng(36.15358,-86.79465)); // (38 of 1207.0) 2005-04-30T12:12:55Z 471 00:07:51 0.93860243249101  Gooby 1. | 
| 61 | 
            -
                        // points.push(new GLatLng(36.15375,-86.79433)); // (39 of 1207.0) 2005-04-30T12:13:06Z 482 00:08:02 0.959971281037316  Gooby 1. | 
| 62 | 
            -
                        // points.push(new GLatLng(36.15384,-86.79407)); // (40 of 1207.0) 2005-04-30T12:13:14Z 490 00:08:10 0.975752319644865  Gooby 1. | 
| 63 | 
            -
                        // points.push(new GLatLng(36.15395,-86.79371)); // (41 of 1207.0) 2005-04-30T12:13:25Z 501 00:08:21 0.997225126594517  Gooby 1. | 
| 64 | 
            -
                        points.push(new GLatLng(36.15399,-86.79358)); // (42 of 1207.0) 2005-04-30T12:13:29Z 505 00:08:25 1.00498592624051 1.0 00:08:25 Gooby 1. | 
| 65 | 
            -
                        // points.push(new GLatLng(36.15403,-86.79341)); // (43 of 1207.0) 2005-04-30T12:13:34Z 510 00:08:30 1.01486377631818  Gooby 1. | 
| 66 | 
            -
                        // points.push(new GLatLng(36.15414,-86.79309)); // (44 of 1207.0) 2005-04-30T12:13:44Z 520 00:08:40 1.03426564093012  Gooby 1. | 
| 67 | 
            -
                        // points.push(new GLatLng(36.15429,-86.79268)); // (45 of 1207.0) 2005-04-30T12:13:57Z 533 00:08:53 1.05937598207114  Gooby 1. | 
| 68 | 
            -
                        // points.push(new GLatLng(36.15442,-86.79238)); // (46 of 1207.0) 2005-04-30T12:14:07Z 543 00:09:03 1.07836931772551  Gooby 1. | 
| 69 | 
            -
                        // points.push(new GLatLng(36.15459,-86.79199)); // (47 of 1207.0) 2005-04-30T12:14:19Z 555 00:09:15 1.10309347919741  Gooby 1. | 
| 70 | 
            -
                        points.push(new GLatLng(36.15476,-86.79163)); // (48 of 1207.0) 2005-04-30T12:14:31Z 567 00:09:27 1.1263585357867  Gooby 1. | 
| 71 | 
            -
                        // points.push(new GLatLng(36.15491,-86.79128)); // (49 of 1207.0) 2005-04-30T12:14:42Z 578 00:09:38 1.14846324433713  Gooby 1. | 
| 72 | 
            -
                        // points.push(new GLatLng(36.15513,-86.79085)); // (50 of 1207.0) 2005-04-30T12:14:56Z 592 00:09:52 1.17686104291005  Gooby 1. | 
| 73 | 
            -
                        // points.push(new GLatLng(36.1553,-86.79043)); // (51 of 1207.0) 2005-04-30T12:15:09Z 605 00:10:05 1.20306976296555  Gooby 1. | 
| 74 | 
            -
                        // points.push(new GLatLng(36.15545,-86.79004)); // (52 of 1207.0) 2005-04-30T12:15:21Z 617 00:10:17 1.22716790190641  Gooby 1. | 
| 75 | 
            -
                        // points.push(new GLatLng(36.15558,-86.78974)); // (53 of 1207.0) 2005-04-30T12:15:30Z 626 00:10:26 1.24616114596285  Gooby 1. | 
| 76 | 
            -
                        points.push(new GLatLng(36.15573,-86.78937)); // (54 of 1207.0) 2005-04-30T12:15:41Z 637 00:10:37 1.26925703482932  Gooby 1. | 
| 77 | 
            -
                        // points.push(new GLatLng(36.15588,-86.78903)); // (55 of 1207.0) 2005-04-30T12:15:52Z 648 00:10:48 1.29087035837851  Gooby 1. | 
| 78 | 
            -
                        // points.push(new GLatLng(36.15603,-86.78862)); // (56 of 1207.0) 2005-04-30T12:16:04Z 660 00:11:00 1.31598021452649  Gooby 1. | 
| 79 | 
            -
                        // points.push(new GLatLng(36.15616,-86.7883)); // (57 of 1207.0) 2005-04-30T12:16:14Z 670 00:11:10 1.33596330562988  Gooby 1. | 
| 80 | 
            -
                        // points.push(new GLatLng(36.15628,-86.788)); // (58 of 1207.0) 2005-04-30T12:16:24Z 680 00:11:20 1.3546396324052  Gooby 1. | 
| 81 | 
            -
                        // points.push(new GLatLng(36.15644,-86.78768)); // (59 of 1207.0) 2005-04-30T12:16:35Z 691 00:11:31 1.37563610044759  Gooby 1. | 
| 82 | 
            -
                        points.push(new GLatLng(36.1565,-86.78755)); // (60 of 1207.0) 2005-04-30T12:16:40Z 696 00:11:36 1.38398919918005  Gooby 1. | 
| 83 | 
            -
                        // points.push(new GLatLng(36.15633,-86.7871)); // (61 of 1207.0) 2005-04-30T12:16:56Z 712 00:11:52 1.41170377870036  Gooby 1. | 
| 84 | 
            -
                        // points.push(new GLatLng(36.15577,-86.78695)); // (62 of 1207.0) 2005-04-30T12:17:13Z 729 00:12:09 1.45128864331563  Gooby 1. | 
| 85 | 
            -
                        // points.push(new GLatLng(36.15547,-86.78674)); // (63 of 1207.0) 2005-04-30T12:17:26Z 742 00:12:22 1.47509713098813  Gooby 1. | 
| 86 | 
            -
                        // points.push(new GLatLng(36.15517,-86.78658)); // (64 of 1207.0) 2005-04-30T12:17:38Z 754 00:12:34 1.49766419562219  Gooby 1. | 
| 87 | 
            -
                        // points.push(new GLatLng(36.15498,-86.78643)); // (65 of 1207.0) 2005-04-30T12:17:46Z 762 00:12:42 1.51323145862589  Gooby 1. | 
| 88 | 
            -
                        points.push(new GLatLng(36.15483,-86.78633)); // (66 of 1207.0) 2005-04-30T12:17:52Z 768 00:12:48 1.52500099840659  Gooby 1. | 
| 89 | 
            -
                        // points.push(new GLatLng(36.15465,-86.78639)); // (67 of 1207.0) 2005-04-30T12:17:57Z 773 00:12:53 1.53787967991493  Gooby 1. | 
| 90 | 
            -
                        // points.push(new GLatLng(36.15461,-86.78643)); // (68 of 1207.0) 2005-04-30T12:17:59Z 775 00:12:55 1.54143167075963  Gooby 1. | 
| 91 | 
            -
                        // points.push(new GLatLng(36.15433,-86.78689)); // (69 of 1207.0) 2005-04-30T12:18:14Z 790 00:13:10 1.57356796085119  Gooby 1. | 
| 92 | 
            -
                        // points.push(new GLatLng(36.15414,-86.78731)); // (70 of 1207.0) 2005-04-30T12:18:28Z 804 00:13:24 1.60042470728527  Gooby 1. | 
| 93 | 
            -
                        // points.push(new GLatLng(36.15395,-86.78774)); // (71 of 1207.0) 2005-04-30T12:18:42Z 818 00:13:38 1.62776946782984  Gooby 1. | 
| 94 | 
            -
                        points.push(new GLatLng(36.15375,-86.78815)); // (72 of 1207.0) 2005-04-30T12:18:55Z 831 00:13:51 1.65449159052911  Gooby 1. | 
| 95 | 
            -
                        // points.push(new GLatLng(36.15354,-86.78856)); // (73 of 1207.0) 2005-04-30T12:19:09Z 845 00:14:05 1.68157745373406  Gooby 1. | 
| 96 | 
            -
                        // points.push(new GLatLng(36.15332,-86.78899)); // (74 of 1207.0) 2005-04-30T12:19:23Z 859 00:14:19 1.7099756198851  Gooby 1. | 
| 97 | 
            -
                        // points.push(new GLatLng(36.15328,-86.78922)); // (75 of 1207.0) 2005-04-30T12:19:33Z 869 00:14:29 1.72310050857662  Gooby 1. | 
| 98 | 
            -
                        // points.push(new GLatLng(36.15322,-86.7894)); // (76 of 1207.0) 2005-04-30T12:19:40Z 876 00:14:36 1.73396393065379  Gooby 1. | 
| 99 | 
            -
                        // points.push(new GLatLng(36.15307,-86.7897)); // (77 of 1207.0) 2005-04-30T12:19:54Z 890 00:14:50 1.75364870082886  Gooby 1. | 
| 100 | 
            -
                        points.push(new GLatLng(36.15296,-86.79002)); // (78 of 1207.0) 2005-04-30T12:20:05Z 901 00:15:01 1.773050744778  Gooby 1. | 
| 101 | 
            -
                        // points.push(new GLatLng(36.15281,-86.79038)); // (79 of 1207.0) 2005-04-30T12:20:17Z 913 00:15:13 1.79565016496858  Gooby 1. | 
| 102 | 
            -
                        // points.push(new GLatLng(36.15264,-86.79075)); // (80 of 1207.0) 2005-04-30T12:20:30Z 926 00:15:26 1.81939887735618  Gooby 1. | 
| 103 | 
            -
                        // points.push(new GLatLng(36.15242,-86.79116)); // (81 of 1207.0) 2005-04-30T12:20:45Z 941 00:15:41 1.84686127762293  Gooby 1. | 
| 104 | 
            -
                        // points.push(new GLatLng(36.15225,-86.79154)); // (82 of 1207.0) 2005-04-30T12:21:00Z 956 00:15:56 1.87109655631293  Gooby 1. | 
| 105 | 
            -
                        // points.push(new GLatLng(36.15225,-86.79184)); // (83 of 1207.0) 2005-04-30T12:21:09Z 965 00:16:05 1.88783251067848  Gooby 1. | 
| 106 | 
            -
                        points.push(new GLatLng(36.15219,-86.79216)); // (84 of 1207.0) 2005-04-30T12:21:19Z 975 00:16:15 1.90615922422917  Gooby 1. | 
| 107 | 
            -
                        // points.push(new GLatLng(36.1521,-86.7927)); // (85 of 1207.0) 2005-04-30T12:21:35Z 991 00:16:31 1.93691917957264  Gooby 1. | 
| 108 | 
            -
                        // points.push(new GLatLng(36.15193,-86.79313)); // (86 of 1207.0) 2005-04-30T12:21:49Z 1005 00:16:45 1.96362873403442  Gooby 1. | 
| 109 | 
            -
                        // points.push(new GLatLng(36.15165,-86.7933)); // (87 of 1207.0) 2005-04-30T12:22:01Z 1017 00:16:57 1.98517352891427  Gooby 1. | 
| 110 | 
            -
                        points.push(new GLatLng(36.15116,-86.79341)); // (88 of 1207.0) 2005-04-30T12:22:18Z 1034 00:17:14 2.01957931424511 2.0 00:08:49 Gooby 1. | 
| 111 | 
            -
                        // points.push(new GLatLng(36.15058,-86.79315)); // (89 of 1207.0) 2005-04-30T12:22:30Z 1046 00:17:26 2.06219585682865  Gooby 1. | 
| 112 | 
            -
                        // points.push(new GLatLng(36.15021,-86.79322)); // (90 of 1207.0) 2005-04-30T12:22:43Z 1059 00:17:39 2.08805574966123  Gooby 1. | 
| 113 | 
            -
                        // points.push(new GLatLng(36.1498,-86.79326)); // (91 of 1207.0) 2005-04-30T12:22:57Z 1073 00:17:53 2.11647045190591  Gooby 1. | 
| 114 | 
            -
                        // points.push(new GLatLng(36.1494,-86.79334)); // (92 of 1207.0) 2005-04-30T12:23:11Z 1087 00:18:07 2.14446453424279  Gooby 1. | 
| 115 | 
            -
                        // points.push(new GLatLng(36.1489,-86.79343)); // (93 of 1207.0) 2005-04-30T12:23:28Z 1104 00:18:24 2.17937251191084  Gooby 1. | 
| 116 | 
            -
                        points.push(new GLatLng(36.14852,-86.79349)); // (94 of 1207.0) 2005-04-30T12:23:41Z 1117 00:18:37 2.20583917819602  Gooby 1. | 
| 117 | 
            -
                        // points.push(new GLatLng(36.14811,-86.79356)); // (95 of 1207.0) 2005-04-30T12:23:55Z 1131 00:18:51 2.23443399040618  Gooby 1. | 
| 118 | 
            -
                        // points.push(new GLatLng(36.14796,-86.79362)); // (96 of 1207.0) 2005-04-30T12:24:01Z 1137 00:18:57 2.24532476321643  Gooby 1. | 
| 119 | 
            -
                        // points.push(new GLatLng(36.14774,-86.79345)); // (97 of 1207.0) 2005-04-30T12:24:08Z 1144 00:19:04 2.26324086327035  Gooby 1. | 
| 120 | 
            -
                        // points.push(new GLatLng(36.14759,-86.79352)); // (98 of 1207.0) 2005-04-30T12:24:13Z 1149 00:19:09 2.2743157042362  Gooby 1. | 
| 121 | 
            -
                        // points.push(new GLatLng(36.14723,-86.79367)); // (99 of 1207.0) 2005-04-30T12:24:26Z 1162 00:19:22 2.30055819018002  Gooby 1. | 
| 122 | 
            -
                        points.push(new GLatLng(36.14684,-86.79377)); // (100 of 1207.0) 2005-04-30T12:24:40Z 1176 00:19:36 2.32807489115917  Gooby 1. | 
| 123 | 
            -
                        // points.push(new GLatLng(36.14646,-86.79384)); // (101 of 1207.0) 2005-04-30T12:24:54Z 1190 00:19:50 2.35461796093737  Gooby 1. | 
| 124 | 
            -
                        // points.push(new GLatLng(36.14586,-86.79392)); // (102 of 1207.0) 2005-04-30T12:25:15Z 1211 00:20:11 2.39631153762143  Gooby 1. | 
| 125 | 
            -
                        // points.push(new GLatLng(36.14541,-86.79407)); // (103 of 1207.0) 2005-04-30T12:25:32Z 1228 00:20:28 2.42850861963451  Gooby 1. | 
| 126 | 
            -
                        // points.push(new GLatLng(36.14513,-86.79412)); // (104 of 1207.0) 2005-04-30T12:25:43Z 1239 00:20:39 2.4480539621744  Gooby 1. | 
| 127 | 
            -
                        // points.push(new GLatLng(36.14489,-86.79418)); // (105 of 1207.0) 2005-04-30T12:25:52Z 1248 00:20:48 2.46497023845021  Gooby 1. | 
| 128 | 
            -
                        points.push(new GLatLng(36.14433,-86.79431)); // (106 of 1207.0) 2005-04-30T12:26:13Z 1269 00:21:09 2.50433456401668  Gooby 1. | 
| 129 | 
            -
                        // points.push(new GLatLng(36.14393,-86.7944)); // (107 of 1207.0) 2005-04-30T12:26:29Z 1285 00:21:25 2.53242301277453  Gooby 1. | 
| 130 | 
            -
                        // points.push(new GLatLng(36.14365,-86.79444)); // (108 of 1207.0) 2005-04-30T12:26:39Z 1295 00:21:35 2.55189648047378  Gooby 1. | 
| 131 | 
            -
                        // points.push(new GLatLng(36.1432,-86.79444)); // (109 of 1207.0) 2005-04-30T12:26:55Z 1311 00:21:51 2.58298694315613  Gooby 1. | 
| 132 | 
            -
                        // points.push(new GLatLng(36.14272,-86.79452)); // (110 of 1207.0) 2005-04-30T12:27:12Z 1328 00:22:08 2.61644913090668  Gooby 1. | 
| 133 | 
            -
                        // points.push(new GLatLng(36.14225,-86.79465)); // (111 of 1207.0) 2005-04-30T12:27:29Z 1345 00:22:25 2.64972158402774  Gooby 1. | 
| 134 | 
            -
                        points.push(new GLatLng(36.14174,-86.79474)); // (112 of 1207.0) 2005-04-30T12:27:48Z 1364 00:22:44 2.68531341946409  Gooby 1. | 
| 135 | 
            -
                        // points.push(new GLatLng(36.14135,-86.79487)); // (113 of 1207.0) 2005-04-30T12:28:03Z 1379 00:22:59 2.71321767968618  Gooby 1. | 
| 136 | 
            -
                        // points.push(new GLatLng(36.14094,-86.795)); // (114 of 1207.0) 2005-04-30T12:28:19Z 1395 00:23:15 2.74245838956667  Gooby 1. | 
| 137 | 
            -
                        // points.push(new GLatLng(36.14053,-86.79508)); // (115 of 1207.0) 2005-04-30T12:28:37Z 1413 00:23:33 2.77113479525932  Gooby 1. | 
| 138 | 
            -
                        // points.push(new GLatLng(36.14006,-86.79513)); // (116 of 1207.0) 2005-04-30T12:29:01Z 1437 00:23:57 2.80372671630283  Gooby 1. | 
| 139 | 
            -
                        // points.push(new GLatLng(36.13961,-86.79519)); // (117 of 1207.0) 2005-04-30T12:29:19Z 1455 00:24:15 2.83499689881581  Gooby 1. | 
| 140 | 
            -
                        points.push(new GLatLng(36.1392,-86.79528)); // (118 of 1207.0) 2005-04-30T12:29:34Z 1470 00:24:30 2.86376543286236  Gooby 1. | 
| 141 | 
            -
                        // points.push(new GLatLng(36.13858,-86.79536)); // (119 of 1207.0) 2005-04-30T12:29:56Z 1492 00:24:52 2.90683313376297  Gooby 1. | 
| 142 | 
            -
                        // points.push(new GLatLng(36.13777,-86.79553)); // (120 of 1207.0) 2005-04-30T12:30:25Z 1521 00:25:21 2.96359422912679  Gooby 1. | 
| 143 | 
            -
                        points.push(new GLatLng(36.13714,-86.79568)); // (121 of 1207.0) 2005-04-30T12:30:48Z 1544 00:25:44 3.00791828850043 3.0 00:08:30 Gooby 1. | 
| 144 | 
            -
                        // points.push(new GLatLng(36.13693,-86.79575)); // (122 of 1207.0) 2005-04-30T12:30:56Z 1552 00:25:52 3.02294371282939  Gooby 1. | 
| 145 | 
            -
                        // points.push(new GLatLng(36.13678,-86.79579)); // (123 of 1207.0) 2005-04-30T12:31:02Z 1558 00:25:58 3.03354485053902  Gooby 1. | 
| 146 | 
            -
                        // points.push(new GLatLng(36.13639,-86.79605)); // (124 of 1207.0) 2005-04-30T12:31:19Z 1575 00:26:15 3.06414722534428  Gooby 1. | 
| 147 | 
            -
                        // points.push(new GLatLng(36.13609,-86.79639)); // (125 of 1207.0) 2005-04-30T12:31:33Z 1589 00:26:29 3.09224570628844  Gooby 1. | 
| 148 | 
            -
                        // points.push(new GLatLng(36.13581,-86.79682)); // (126 of 1207.0) 2005-04-30T12:31:48Z 1604 00:26:44 3.12306651526394  Gooby 1. | 
| 149 | 
            -
                        points.push(new GLatLng(36.13554,-86.79727)); // (127 of 1207.0) 2005-04-30T12:32:04Z 1620 00:27:00 3.15434698873326  Gooby 1. | 
| 150 | 
            -
                        // points.push(new GLatLng(36.13549,-86.79731)); // (128 of 1207.0) 2005-04-30T12:32:06Z 1622 00:27:02 3.15845962923674  Gooby 1. | 
| 151 | 
            -
                        // points.push(new GLatLng(36.13519,-86.79714)); // (129 of 1207.0) 2005-04-30T12:32:17Z 1633 00:27:13 3.18125405007338  Gooby 1. | 
| 152 | 
            -
                        // points.push(new GLatLng(36.13476,-86.79706)); // (130 of 1207.0) 2005-04-30T12:32:32Z 1648 00:27:28 3.2112962134646  Gooby 1. | 
| 153 | 
            -
                        // points.push(new GLatLng(36.13423,-86.79708)); // (131 of 1207.0) 2005-04-30T12:32:50Z 1666 00:27:46 3.24793093467726  Gooby 1. | 
| 154 | 
            -
                        // points.push(new GLatLng(36.1336,-86.79714)); // (132 of 1207.0) 2005-04-30T12:33:11Z 1687 00:28:07 3.2915861811618  Gooby 1. | 
| 155 | 
            -
                        points.push(new GLatLng(36.13305,-86.79723)); // (133 of 1207.0) 2005-04-30T12:33:30Z 1706 00:28:26 3.32991607569485  Gooby 1. | 
| 156 | 
            -
                        // points.push(new GLatLng(36.13277,-86.79714)); // (134 of 1207.0) 2005-04-30T12:33:42Z 1718 00:28:38 3.34990256188539  Gooby 1. | 
| 157 | 
            -
                        // points.push(new GLatLng(36.13275,-86.79712)); // (135 of 1207.0) 2005-04-30T12:33:43Z 1719 00:28:39 3.35167806744553  Gooby 1. | 
| 158 | 
            -
                        // points.push(new GLatLng(36.13277,-86.79686)); // (136 of 1207.0) 2005-04-30T12:33:50Z 1726 00:28:46 3.36625185099595  Gooby 1. | 
| 159 | 
            -
                        // points.push(new GLatLng(36.13277,-86.79652)); // (137 of 1207.0) 2005-04-30T12:33:59Z 1735 00:28:55 3.38522429087707  Gooby 1. | 
| 160 | 
            -
                        // points.push(new GLatLng(36.13275,-86.79613)); // (138 of 1207.0) 2005-04-30T12:34:10Z 1746 00:29:06 3.40703042334564  Gooby 1. | 
| 161 | 
            -
                        points.push(new GLatLng(36.13275,-86.79577)); // (139 of 1207.0) 2005-04-30T12:34:21Z 1757 00:29:17 3.42711866854481  Gooby 1. | 
| 162 | 
            -
                        // points.push(new GLatLng(36.13272,-86.79573)); // (140 of 1207.0) 2005-04-30T12:34:23Z 1759 00:29:19 3.43016437476576  Gooby 1. | 
| 163 | 
            -
                        // points.push(new GLatLng(36.13255,-86.7956)); // (141 of 1207.0) 2005-04-30T12:34:30Z 1766 00:29:26 3.44396914899335  Gooby 1. | 
| 164 | 
            -
                        // points.push(new GLatLng(36.13225,-86.79551)); // (142 of 1207.0) 2005-04-30T12:34:41Z 1777 00:29:37 3.46529578283933  Gooby 1. | 
| 165 | 
            -
                        // points.push(new GLatLng(36.13169,-86.79551)); // (143 of 1207.0) 2005-04-30T12:35:00Z 1796 00:29:56 3.50398613930855  Gooby 1. | 
| 166 | 
            -
                        // points.push(new GLatLng(36.13131,-86.79555)); // (144 of 1207.0) 2005-04-30T12:35:15Z 1811 00:30:11 3.53033514405373  Gooby 1. | 
| 167 | 
            -
                        points.push(new GLatLng(36.13051,-86.79562)); // (145 of 1207.0) 2005-04-30T12:35:44Z 1840 00:30:40 3.58574502822376  Gooby 1. | 
| 168 | 
            -
                        // points.push(new GLatLng(36.12983,-86.79566)); // (146 of 1207.0) 2005-04-30T12:36:08Z 1864 00:31:04 3.63277922801618  Gooby 1. | 
| 169 | 
            -
                        // points.push(new GLatLng(36.12929,-86.79564)); // (147 of 1207.0) 2005-04-30T12:36:27Z 1883 00:31:23 3.67010448469083  Gooby 1. | 
| 170 | 
            -
                        // points.push(new GLatLng(36.12871,-86.79538)); // (148 of 1207.0) 2005-04-30T12:36:49Z 1905 00:31:45 3.71272245606447  Gooby 1. | 
| 171 | 
            -
                        // points.push(new GLatLng(36.12848,-86.79515)); // (149 of 1207.0) 2005-04-30T12:37:01Z 1917 00:31:57 3.7331490758219  Gooby 1. | 
| 172 | 
            -
                        // points.push(new GLatLng(36.1283,-86.79497)); // (150 of 1207.0) 2005-04-30T12:37:10Z 1926 00:32:06 3.74913504809652  Gooby 1. | 
| 173 | 
            -
                        points.push(new GLatLng(36.12794,-86.79463)); // (151 of 1207.0) 2005-04-30T12:37:26Z 1942 00:32:22 3.7804179686463  Gooby 1. | 
| 174 | 
            -
                        // points.push(new GLatLng(36.12757,-86.7944)); // (152 of 1207.0) 2005-04-30T12:37:42Z 1958 00:32:38 3.80902245299063  Gooby 1. | 
| 175 | 
            -
                        // points.push(new GLatLng(36.12715,-86.79416)); // (153 of 1207.0) 2005-04-30T12:37:59Z 1975 00:32:55 3.84098187969141  Gooby 1. | 
| 176 | 
            -
                        // points.push(new GLatLng(36.12654,-86.79397)); // (154 of 1207.0) 2005-04-30T12:38:22Z 1998 00:33:18 3.88444005188928  Gooby 1. | 
| 177 | 
            -
                        // points.push(new GLatLng(36.1259,-86.79394)); // (155 of 1207.0) 2005-04-30T12:38:45Z 2021 00:33:41 3.92868927568573  Gooby 1. | 
| 178 | 
            -
                        // points.push(new GLatLng(36.12528,-86.79405)); // (156 of 1207.0) 2005-04-30T12:39:06Z 2042 00:34:02 3.97196266461468  Gooby 1. | 
| 179 | 
            -
                        points.push(new GLatLng(36.12476,-86.7942)); // (157 of 1207.0) 2005-04-30T12:39:24Z 2060 00:34:20 4.00885170892019 4.0 00:08:36 Gooby 1. | 
| 180 | 
            -
                        // points.push(new GLatLng(36.12448,-86.79427)); // (158 of 1207.0) 2005-04-30T12:39:34Z 2070 00:34:30 4.02858740865148  Gooby 1. | 
| 181 | 
            -
                        // points.push(new GLatLng(36.12421,-86.79435)); // (159 of 1207.0) 2005-04-30T12:39:44Z 2080 00:34:40 4.04776850750817  Gooby 1. | 
| 182 | 
            -
                        // points.push(new GLatLng(36.12365,-86.7945)); // (160 of 1207.0) 2005-04-30T12:40:04Z 2100 00:35:00 4.08735407531368  Gooby 1. | 
| 183 | 
            -
                        // points.push(new GLatLng(36.12285,-86.79467)); // (161 of 1207.0) 2005-04-30T12:40:34Z 2130 00:35:30 4.14343439018997  Gooby 1. | 
| 184 | 
            -
                        // points.push(new GLatLng(36.12236,-86.79478)); // (162 of 1207.0) 2005-04-30T12:40:51Z 2147 00:35:47 4.17784058004252  Gooby 1. | 
| 185 | 
            -
                        points.push(new GLatLng(36.12144,-86.79497)); // (163 of 1207.0) 2005-04-30T12:41:23Z 2179 00:36:19 4.24228176374313  Gooby 1. | 
| 186 | 
            -
                        // points.push(new GLatLng(36.12088,-86.79513)); // (164 of 1207.0) 2005-04-30T12:41:43Z 2199 00:36:39 4.28198923417381  Gooby 1. | 
| 187 | 
            -
                        // points.push(new GLatLng(36.12028,-86.79532)); // (165 of 1207.0) 2005-04-30T12:42:05Z 2221 00:37:01 4.32477794806073  Gooby 1. | 
| 188 | 
            -
                        // points.push(new GLatLng(36.11974,-86.79553)); // (166 of 1207.0) 2005-04-30T12:42:24Z 2240 00:37:20 4.36388411794891  Gooby 1. | 
| 189 | 
            -
                        // points.push(new GLatLng(36.11927,-86.79583)); // (167 of 1207.0) 2005-04-30T12:42:43Z 2259 00:37:39 4.40041869044696  Gooby 1. | 
| 190 | 
            -
                        // points.push(new GLatLng(36.11878,-86.79618)); // (168 of 1207.0) 2005-04-30T12:43:02Z 2278 00:37:58 4.43950403451532  Gooby 1. | 
| 191 | 
            -
                        points.push(new GLatLng(36.11815,-86.79669)); // (169 of 1207.0) 2005-04-30T12:43:28Z 2304 00:38:24 4.49151123131562  Gooby 1. | 
| 192 | 
            -
                        // points.push(new GLatLng(36.11783,-86.79701)); // (170 of 1207.0) 2005-04-30T12:43:43Z 2319 00:38:39 4.5199323616651  Gooby 1. | 
| 193 | 
            -
                        // points.push(new GLatLng(36.11749,-86.79734)); // (171 of 1207.0) 2005-04-30T12:43:58Z 2334 00:38:54 4.54978234358811  Gooby 1. | 
| 194 | 
            -
                        // points.push(new GLatLng(36.11719,-86.79759)); // (172 of 1207.0) 2005-04-30T12:44:11Z 2347 00:39:07 4.5747681496104  Gooby 1. | 
| 195 | 
            -
                        // points.push(new GLatLng(36.11685,-86.79789)); // (173 of 1207.0) 2005-04-30T12:44:26Z 2362 00:39:22 4.60361531325121  Gooby 1. | 
| 196 | 
            -
                        // points.push(new GLatLng(36.11646,-86.79821)); // (174 of 1207.0) 2005-04-30T12:44:42Z 2378 00:39:38 4.63594197887072  Gooby 1. | 
| 197 | 
            -
                        points.push(new GLatLng(36.11607,-86.79854)); // (175 of 1207.0) 2005-04-30T12:44:58Z 2394 00:39:54 4.66858030719156  Gooby 1. | 
| 198 | 
            -
                        // points.push(new GLatLng(36.11567,-86.79886)); // (176 of 1207.0) 2005-04-30T12:45:15Z 2411 00:40:11 4.70148513247236  Gooby 1. | 
| 199 | 
            -
                        // points.push(new GLatLng(36.11526,-86.79918)); // (177 of 1207.0) 2005-04-30T12:45:32Z 2428 00:40:28 4.73497237070316  Gooby 1. | 
| 200 | 
            -
                        // points.push(new GLatLng(36.11491,-86.79942)); // (178 of 1207.0) 2005-04-30T12:45:47Z 2443 00:40:43 4.76261605082557  Gooby 1. | 
| 201 | 
            -
                        // points.push(new GLatLng(36.11453,-86.79965)); // (179 of 1207.0) 2005-04-30T12:46:03Z 2459 00:40:59 4.79184063246348  Gooby 1. | 
| 202 | 
            -
                        // points.push(new GLatLng(36.11444,-86.79963)); // (180 of 1207.0) 2005-04-30T12:46:07Z 2463 00:41:03 4.7981580509477  Gooby 1. | 
| 203 | 
            -
                        points.push(new GLatLng(36.11442,-86.79944)); // (181 of 1207.0) 2005-04-30T12:46:12Z 2468 00:41:08 4.80885232190606  Gooby 1. | 
| 204 | 
            -
                        // points.push(new GLatLng(36.11438,-86.79907)); // (182 of 1207.0) 2005-04-30T12:46:21Z 2477 00:41:17 4.82968750692442  Gooby 1. | 
| 205 | 
            -
                        // points.push(new GLatLng(36.11429,-86.7986)); // (183 of 1207.0) 2005-04-30T12:46:33Z 2489 00:41:29 4.85664679667323  Gooby 1. | 
| 206 | 
            -
                        // points.push(new GLatLng(36.11429,-86.79847)); // (184 of 1207.0) 2005-04-30T12:46:37Z 2493 00:41:33 4.86390246466472  Gooby 1. | 
| 207 | 
            -
                        // points.push(new GLatLng(36.11427,-86.79839)); // (185 of 1207.0) 2005-04-30T12:46:39Z 2495 00:41:35 4.86857624819132  Gooby 1. | 
| 208 | 
            -
                        // points.push(new GLatLng(36.11416,-86.798)); // (186 of 1207.0) 2005-04-30T12:46:50Z 2506 00:41:46 4.89163225459145  Gooby 1. | 
| 209 | 
            -
                        points.push(new GLatLng(36.11412,-86.79768)); // (187 of 1207.0) 2005-04-30T12:46:59Z 2515 00:41:55 4.90970546172456  Gooby 1. | 
| 210 | 
            -
                        // points.push(new GLatLng(36.11408,-86.79714)); // (188 of 1207.0) 2005-04-30T12:47:14Z 2530 00:42:10 4.93997153994282  Gooby 1. | 
| 211 | 
            -
                        // points.push(new GLatLng(36.11393,-86.79669)); // (189 of 1207.0) 2005-04-30T12:47:27Z 2543 00:42:23 4.96714205549462  Gooby 1. | 
| 212 | 
            -
                        // points.push(new GLatLng(36.11386,-86.7962)); // (190 of 1207.0) 2005-04-30T12:47:41Z 2557 00:42:37 4.99491526638672  Gooby 1. | 
| 213 | 
            -
                        points.push(new GLatLng(36.11384,-86.79568)); // (191 of 1207.0) 2005-04-30T12:47:56Z 2572 00:42:52 5.02397148781549 5.0 00:08:32 Gooby 1. | 
| 214 | 
            -
                        // points.push(new GLatLng(36.11386,-86.79558)); // (192 of 1207.0) 2005-04-30T12:47:59Z 2575 00:42:55 5.02972115354757  Gooby 1. | 
| 215 | 
            -
                        // points.push(new GLatLng(36.11391,-86.79517)); // (193 of 1207.0) 2005-04-30T12:48:11Z 2587 00:43:07 5.05286414913353  Gooby 1. | 
| 216 | 
            -
                        // points.push(new GLatLng(36.11403,-86.79472)); // (194 of 1207.0) 2005-04-30T12:48:25Z 2601 00:43:21 5.07931352186305  Gooby 1. | 
| 217 | 
            -
                        // points.push(new GLatLng(36.11418,-86.79429)); // (195 of 1207.0) 2005-04-30T12:48:38Z 2614 00:43:34 5.10545557756269  Gooby 1. | 
| 218 | 
            -
                        // points.push(new GLatLng(36.11421,-86.79388)); // (196 of 1207.0) 2005-04-30T12:48:49Z 2625 00:43:45 5.12843289854824  Gooby 1. | 
| 219 | 
            -
                        points.push(new GLatLng(36.11412,-86.79324)); // (197 of 1207.0) 2005-04-30T12:49:07Z 2643 00:44:03 5.16469104361709  Gooby 1. | 
| 220 | 
            -
                        // points.push(new GLatLng(36.11408,-86.79272)); // (198 of 1207.0) 2005-04-30T12:49:21Z 2657 00:44:17 5.19384565299518  Gooby 1. | 
| 221 | 
            -
                        // points.push(new GLatLng(36.11406,-86.79223)); // (199 of 1207.0) 2005-04-30T12:49:35Z 2671 00:44:31 5.2212294499834  Gooby 1. | 
| 222 | 
            -
                        // points.push(new GLatLng(36.11399,-86.79186)); // (200 of 1207.0) 2005-04-30T12:49:46Z 2682 00:44:42 5.24243943714105  Gooby 1. | 
| 223 | 
            -
                        // points.push(new GLatLng(36.11395,-86.79148)); // (201 of 1207.0) 2005-04-30T12:49:57Z 2693 00:44:53 5.26382814173735  Gooby 1. | 
| 224 | 
            -
                        // points.push(new GLatLng(36.11391,-86.79096)); // (202 of 1207.0) 2005-04-30T12:50:12Z 2708 00:45:08 5.29298275111545  Gooby 1. | 
| 225 | 
            -
                        points.push(new GLatLng(36.11386,-86.7904)); // (203 of 1207.0) 2005-04-30T12:50:28Z 2724 00:45:24 5.32442897097347  Gooby 1. | 
| 226 | 
            -
                        // points.push(new GLatLng(36.11382,-86.78989)); // (204 of 1207.0) 2005-04-30T12:50:43Z 2739 00:45:39 5.35302798092663  Gooby 1. | 
| 227 | 
            -
                        // points.push(new GLatLng(36.11378,-86.78937)); // (205 of 1207.0) 2005-04-30T12:50:59Z 2755 00:45:55 5.3821827096507  Gooby 1. | 
| 228 | 
            -
                        // points.push(new GLatLng(36.11369,-86.78864)); // (206 of 1207.0) 2005-04-30T12:51:21Z 2777 00:46:17 5.42339886707321  Gooby 1. | 
| 229 | 
            -
                        // points.push(new GLatLng(36.11367,-86.78809)); // (207 of 1207.0) 2005-04-30T12:51:36Z 2792 00:46:32 5.45412786917972  Gooby 1. | 
| 230 | 
            -
                        // points.push(new GLatLng(36.11361,-86.78755)); // (208 of 1207.0) 2005-04-30T12:51:52Z 2808 00:46:48 5.48455138272565  Gooby 1. | 
| 231 | 
            -
                        points.push(new GLatLng(36.11352,-86.78689)); // (209 of 1207.0) 2005-04-30T12:52:11Z 2827 00:47:07 5.52191004412812  Gooby 1. | 
| 232 | 
            -
                        // points.push(new GLatLng(36.11352,-86.78678)); // (210 of 1207.0) 2005-04-30T12:52:14Z 2830 00:47:10 5.52804981767629  Gooby 1. | 
| 233 | 
            -
                        // points.push(new GLatLng(36.11369,-86.78671)); // (211 of 1207.0) 2005-04-30T12:52:19Z 2835 00:47:15 5.54042786124117  Gooby 1. | 
| 234 | 
            -
                        // points.push(new GLatLng(36.11376,-86.78671)); // (212 of 1207.0) 2005-04-30T12:52:21Z 2837 00:47:17 5.54526409397132  Gooby 1. | 
| 235 | 
            -
                        // points.push(new GLatLng(36.11421,-86.78671)); // (213 of 1207.0) 2005-04-30T12:52:34Z 2850 00:47:30 5.57635455665367  Gooby 1. | 
| 236 | 
            -
                        // points.push(new GLatLng(36.11479,-86.78678)); // (214 of 1207.0) 2005-04-30T12:52:52Z 2868 00:47:48 5.61661678131167  Gooby 1. | 
| 237 | 
            -
                        points.push(new GLatLng(36.11483,-86.78682)); // (215 of 1207.0) 2005-04-30T12:52:54Z 2870 00:47:50 5.62016926191726  Gooby 1. | 
| 238 | 
            -
                        // points.push(new GLatLng(36.11485,-86.78706)); // (216 of 1207.0) 2005-04-30T12:53:01Z 2877 00:47:57 5.63363567116331  Gooby 1. | 
| 239 | 
            -
                        // points.push(new GLatLng(36.11489,-86.78755)); // (217 of 1207.0) 2005-04-30T12:53:15Z 2891 00:48:11 5.66112358966936  Gooby 1. | 
| 240 | 
            -
                        // points.push(new GLatLng(36.11494,-86.78807)); // (218 of 1207.0) 2005-04-30T12:53:30Z 2906 00:48:26 5.69035138576303  Gooby 1. | 
| 241 | 
            -
                        // points.push(new GLatLng(36.11498,-86.78862)); // (219 of 1207.0) 2005-04-30T12:53:46Z 2922 00:48:42 5.72117287209662  Gooby 1. | 
| 242 | 
            -
                        // points.push(new GLatLng(36.11506,-86.78927)); // (220 of 1207.0) 2005-04-30T12:54:04Z 2940 00:49:00 5.75787022524535  Gooby 1. | 
| 243 | 
            -
                        points.push(new GLatLng(36.11509,-86.78993)); // (221 of 1207.0) 2005-04-30T12:54:22Z 2958 00:49:18 5.79476530574105  Gooby 1. | 
| 244 | 
            -
                        // points.push(new GLatLng(36.11511,-86.79045)); // (222 of 1207.0) 2005-04-30T12:54:37Z 2973 00:49:33 5.82382104816452  Gooby 1. | 
| 245 | 
            -
                        // points.push(new GLatLng(36.11513,-86.79077)); // (223 of 1207.0) 2005-04-30T12:54:47Z 2983 00:49:43 5.84173472042443  Gooby 1. | 
| 246 | 
            -
                        // points.push(new GLatLng(36.11519,-86.79116)); // (224 of 1207.0) 2005-04-30T12:54:59Z 2995 00:49:55 5.86389311913278  Gooby 1. | 
| 247 | 
            -
                        // points.push(new GLatLng(36.11521,-86.79128)); // (225 of 1207.0) 2005-04-30T12:55:07Z 3003 00:50:03 5.8707315675  Gooby 1. | 
| 248 | 
            -
                        // points.push(new GLatLng(36.11521,-86.79146)); // (226 of 1207.0) 2005-04-30T12:55:14Z 3010 00:50:10 5.88077794158197  Gooby 1. | 
| 249 | 
            -
                        points.push(new GLatLng(36.11524,-86.79186)); // (227 of 1207.0) 2005-04-30T12:55:26Z 3022 00:50:22 5.90319929396684  Gooby 1. | 
| 250 | 
            -
                        // points.push(new GLatLng(36.11524,-86.79234)); // (228 of 1207.0) 2005-04-30T12:55:39Z 3035 00:50:35 5.92998962485212  Gooby 1. | 
| 251 | 
            -
                        // points.push(new GLatLng(36.11519,-86.7927)); // (229 of 1207.0) 2005-04-30T12:55:49Z 3045 00:50:45 5.95037711385307  Gooby 1. | 
| 252 | 
            -
                        // points.push(new GLatLng(36.11519,-86.79319)); // (230 of 1207.0) 2005-04-30T12:56:03Z 3059 00:50:59 5.97772550064826  Gooby 1. | 
| 253 | 
            -
                        points.push(new GLatLng(36.11519,-86.79386)); // (231 of 1207.0) 2005-04-30T12:56:23Z 3079 00:51:19 6.01512032846275 6.0 00:08:27 Gooby 1. | 
| 254 | 
            -
                        // points.push(new GLatLng(36.11519,-86.79416)); // (232 of 1207.0) 2005-04-30T12:56:31Z 3087 00:51:27 6.03186418136278  Gooby 1. | 
| 255 | 
            -
                        // points.push(new GLatLng(36.11521,-86.79437)); // (233 of 1207.0) 2005-04-30T12:56:37Z 3093 00:51:33 6.04366604881909  Gooby 1. | 
| 256 | 
            -
                        // points.push(new GLatLng(36.11524,-86.79493)); // (234 of 1207.0) 2005-04-30T12:56:53Z 3109 00:51:49 6.07499009616936  Gooby 1. | 
| 257 | 
            -
                        // points.push(new GLatLng(36.11521,-86.7956)); // (235 of 1207.0) 2005-04-30T12:57:12Z 3128 00:52:08 6.11244238314517  Gooby 1. | 
| 258 | 
            -
                        // points.push(new GLatLng(36.11526,-86.79598)); // (236 of 1207.0) 2005-04-30T12:57:24Z 3140 00:52:20 6.13393082143892  Gooby 1. | 
| 259 | 
            -
                        points.push(new GLatLng(36.11532,-86.7965)); // (237 of 1207.0) 2005-04-30T12:57:39Z 3155 00:52:35 6.16324812315391  Gooby 1. | 
| 260 | 
            -
                        // points.push(new GLatLng(36.11541,-86.79695)); // (238 of 1207.0) 2005-04-30T12:57:52Z 3168 00:52:48 6.18912227453465  Gooby 1. | 
| 261 | 
            -
                        // points.push(new GLatLng(36.11556,-86.79744)); // (239 of 1207.0) 2005-04-30T12:58:07Z 3183 00:53:03 6.21836839817714  Gooby 1. | 
| 262 | 
            -
                        // points.push(new GLatLng(36.11569,-86.79796)); // (240 of 1207.0) 2005-04-30T12:58:23Z 3199 00:53:19 6.24874916504955  Gooby 1. | 
| 263 | 
            -
                        // points.push(new GLatLng(36.11586,-86.79839)); // (241 of 1207.0) 2005-04-30T12:58:38Z 3214 00:53:34 6.2754686183069  Gooby 1. | 
| 264 | 
            -
                        // points.push(new GLatLng(36.11588,-86.79849)); // (242 of 1207.0) 2005-04-30T12:58:42Z 3218 00:53:38 6.28121858661315  Gooby 1. | 
| 265 | 
            -
                        points.push(new GLatLng(36.11594,-86.79854)); // (243 of 1207.0) 2005-04-30T12:58:45Z 3221 00:53:41 6.28621546929233  Gooby 1. | 
| 266 | 
            -
                        // points.push(new GLatLng(36.11603,-86.79856)); // (244 of 1207.0) 2005-04-30T12:58:48Z 3224 00:53:44 6.29253288777655  Gooby 1. | 
| 267 | 
            -
                        // points.push(new GLatLng(36.11618,-86.79845)); // (245 of 1207.0) 2005-04-30T12:58:55Z 3231 00:53:51 6.30457841921117  Gooby 1. | 
| 268 | 
            -
                        // points.push(new GLatLng(36.11652,-86.79815)); // (246 of 1207.0) 2005-04-30T12:59:09Z 3245 00:54:05 6.333425643161  Gooby 1. | 
| 269 | 
            -
                        // points.push(new GLatLng(36.11678,-86.79794)); // (247 of 1207.0) 2005-04-30T12:59:20Z 3256 00:54:16 6.35487461673949  Gooby 1. | 
| 270 | 
            -
                        // points.push(new GLatLng(36.11695,-86.79779)); // (248 of 1207.0) 2005-04-30T12:59:28Z 3264 00:54:24 6.36929816840529  Gooby 1. | 
| 271 | 
            -
                        points.push(new GLatLng(36.11719,-86.79757)); // (249 of 1207.0) 2005-04-30T12:59:39Z 3275 00:54:35 6.38993105184152  Gooby 1. | 
| 272 | 
            -
                        // points.push(new GLatLng(36.11749,-86.79731)); // (250 of 1207.0) 2005-04-30T12:59:52Z 3288 00:54:48 6.41523278823007  Gooby 1. | 
| 273 | 
            -
                        // points.push(new GLatLng(36.11773,-86.79712)); // (251 of 1207.0) 2005-04-30T13:00:03Z 3299 00:54:59 6.43491526038288  Gooby 1. | 
| 274 | 
            -
                        // points.push(new GLatLng(36.11807,-86.79684)); // (252 of 1207.0) 2005-04-30T13:00:18Z 3314 00:55:14 6.4631290400648  Gooby 1. | 
| 275 | 
            -
                        // points.push(new GLatLng(36.11837,-86.79656)); // (253 of 1207.0) 2005-04-30T13:00:31Z 3327 00:55:27 6.48908690277594  Gooby 1. | 
| 276 | 
            -
                        // points.push(new GLatLng(36.1188,-86.79622)); // (254 of 1207.0) 2005-04-30T13:00:49Z 3345 00:55:45 6.52433856637194  Gooby 1. | 
| 277 | 
            -
                        points.push(new GLatLng(36.11912,-86.79592)); // (255 of 1207.0) 2005-04-30T13:01:04Z 3360 00:56:00 6.55207184613982  Gooby 1. | 
| 278 | 
            -
                        // points.push(new GLatLng(36.11948,-86.79568)); // (256 of 1207.0) 2005-04-30T13:01:18Z 3374 00:56:14 6.58032161405788  Gooby 1. | 
| 279 | 
            -
                        // points.push(new GLatLng(36.11991,-86.79545)); // (257 of 1207.0) 2005-04-30T13:01:34Z 3390 00:56:30 6.61268485500833  Gooby 1. | 
| 280 | 
            -
                        // points.push(new GLatLng(36.12043,-86.79519)); // (258 of 1207.0) 2005-04-30T13:01:53Z 3409 00:56:49 6.65143133316515  Gooby 1. | 
| 281 | 
            -
                        // points.push(new GLatLng(36.12094,-86.79502)); // (259 of 1207.0) 2005-04-30T13:02:12Z 3428 00:57:08 6.6879221650783  Gooby 1. | 
| 282 | 
            -
                        // points.push(new GLatLng(36.12131,-86.79489)); // (260 of 1207.0) 2005-04-30T13:02:26Z 3442 00:57:22 6.71449510623512  Gooby 1. | 
| 283 | 
            -
                        points.push(new GLatLng(36.12182,-86.79478)); // (261 of 1207.0) 2005-04-30T13:02:45Z 3461 00:57:41 6.75026179756936  Gooby 1. | 
| 284 | 
            -
                        // points.push(new GLatLng(36.12238,-86.7947)); // (262 of 1207.0) 2005-04-30T13:03:05Z 3481 00:58:01 6.78920895631561  Gooby 1. | 
| 285 | 
            -
                        // points.push(new GLatLng(36.12292,-86.79459)); // (263 of 1207.0) 2005-04-30T13:03:24Z 3500 00:58:20 6.82701925898348  Gooby 1. | 
| 286 | 
            -
                        // points.push(new GLatLng(36.12335,-86.7945)); // (264 of 1207.0) 2005-04-30T13:03:40Z 3516 00:58:36 6.85714949044538  Gooby 1. | 
| 287 | 
            -
                        // points.push(new GLatLng(36.12388,-86.79444)); // (265 of 1207.0) 2005-04-30T13:03:59Z 3535 00:58:55 6.89391987397885  Gooby 1. | 
| 288 | 
            -
                        // points.push(new GLatLng(36.12429,-86.79431)); // (266 of 1207.0) 2005-04-30T13:04:16Z 3552 00:59:12 6.92316100033816  Gooby 1. | 
| 289 | 
            -
                        points.push(new GLatLng(36.12466,-86.7942)); // (267 of 1207.0) 2005-04-30T13:04:30Z 3566 00:59:26 6.94945110919019  Gooby 1. | 
| 290 | 
            -
                        // points.push(new GLatLng(36.12502,-86.79414)); // (268 of 1207.0) 2005-04-30T13:04:44Z 3580 00:59:40 6.97454793630492  Gooby 1. | 
| 291 | 
            -
                        // points.push(new GLatLng(36.12532,-86.79407)); // (269 of 1207.0) 2005-04-30T13:04:56Z 3592 00:59:52 6.99563988936346  Gooby 1. | 
| 292 | 
            -
                        points.push(new GLatLng(36.12579,-86.79399)); // (270 of 1207.0) 2005-04-30T13:05:15Z 3611 01:00:11 7.0284176822163 7.0 00:08:52 Gooby 1. | 
| 293 | 
            -
                        // points.push(new GLatLng(36.12584,-86.79397)); // (271 of 1207.0) 2005-04-30T13:05:17Z 3613 01:00:13 7.03204815280675  Gooby 1. | 
| 294 | 
            -
                        // points.push(new GLatLng(36.12631,-86.79394)); // (272 of 1207.0) 2005-04-30T13:05:35Z 3631 01:00:31 7.06456354430647  Gooby 1. | 
| 295 | 
            -
                        // points.push(new GLatLng(36.12672,-86.79399)); // (273 of 1207.0) 2005-04-30T13:05:50Z 3646 01:00:46 7.09302755271043  Gooby 1. | 
| 296 | 
            -
                        // points.push(new GLatLng(36.12723,-86.79412)); // (274 of 1207.0) 2005-04-30T13:06:08Z 3664 01:01:04 7.12900250439622  Gooby 1. | 
| 297 | 
            -
                        // points.push(new GLatLng(36.12764,-86.79427)); // (275 of 1207.0) 2005-04-30T13:06:25Z 3681 01:01:21 7.15854026339233  Gooby 1. | 
| 298 | 
            -
                        points.push(new GLatLng(36.12809,-86.79452)); // (276 of 1207.0) 2005-04-30T13:06:43Z 3699 01:01:39 7.19261737049893  Gooby 1. | 
| 299 | 
            -
                        // points.push(new GLatLng(36.12845,-86.79485)); // (277 of 1207.0) 2005-04-30T13:06:59Z 3715 01:01:55 7.22356503733329  Gooby 1. | 
| 300 | 
            -
                        // points.push(new GLatLng(36.12884,-86.79513)); // (278 of 1207.0) 2005-04-30T13:07:15Z 3731 01:02:11 7.25471274784119  Gooby 1. | 
| 301 | 
            -
                        // points.push(new GLatLng(36.12918,-86.7954)); // (279 of 1207.0) 2005-04-30T13:07:29Z 3745 01:02:25 7.28262012523777  Gooby 1. | 
| 302 | 
            -
                        // points.push(new GLatLng(36.12966,-86.79564)); // (280 of 1207.0) 2005-04-30T13:07:47Z 3763 01:02:43 7.31838550322693  Gooby 1. | 
| 303 | 
            -
                        // points.push(new GLatLng(36.12989,-86.79564)); // (281 of 1207.0) 2005-04-30T13:07:56Z 3772 01:02:52 7.33427618328839  Gooby 1. | 
| 304 | 
            -
                        points.push(new GLatLng(36.13039,-86.79562)); // (282 of 1207.0) 2005-04-30T13:08:13Z 3789 01:03:09 7.36883917161603  Gooby 1. | 
| 305 | 
            -
                        // points.push(new GLatLng(36.13084,-86.79555)); // (283 of 1207.0) 2005-04-30T13:08:29Z 3805 01:03:25 7.40017404744783  Gooby 1. | 
| 306 | 
            -
                        // points.push(new GLatLng(36.13148,-86.79551)); // (284 of 1207.0) 2005-04-30T13:08:52Z 3828 01:03:48 7.44444795542683  Gooby 1. | 
| 307 | 
            -
                        // points.push(new GLatLng(36.13193,-86.79553)); // (285 of 1207.0) 2005-04-30T13:09:08Z 3844 01:04:04 7.47555844446242  Gooby 1. | 
| 308 | 
            -
                        // points.push(new GLatLng(36.13245,-86.79555)); // (286 of 1207.0) 2005-04-30T13:09:28Z 3864 01:04:24 7.51150252927102  Gooby 1. | 
| 309 | 
            -
                        // points.push(new GLatLng(36.13281,-86.79562)); // (287 of 1207.0) 2005-04-30T13:09:41Z 3877 01:04:37 7.53667977894689  Gooby 1. | 
| 310 | 
            -
                        points.push(new GLatLng(36.13287,-86.79566)); // (288 of 1207.0) 2005-04-30T13:09:43Z 3879 01:04:39 7.54138768354894  Gooby 1. | 
| 311 | 
            -
                        // points.push(new GLatLng(36.13292,-86.79579)); // (289 of 1207.0) 2005-04-30T13:09:47Z 3883 01:04:43 7.54942251394701  Gooby 1. | 
| 312 | 
            -
                        // points.push(new GLatLng(36.13294,-86.79594)); // (290 of 1207.0) 2005-04-30T13:09:51Z 3887 01:04:47 7.55790601664665  Gooby 1. | 
| 313 | 
            -
                        // points.push(new GLatLng(36.133,-86.79652)); // (291 of 1207.0) 2005-04-30T13:10:08Z 3904 01:05:04 7.59053485551589  Gooby 1. | 
| 314 | 
            -
                        // points.push(new GLatLng(36.13307,-86.7971)); // (292 of 1207.0) 2005-04-30T13:10:23Z 3919 01:05:19 7.62325857139865  Gooby 1. | 
| 315 | 
            -
                        // points.push(new GLatLng(36.13309,-86.79716)); // (293 of 1207.0) 2005-04-30T13:10:25Z 3921 01:05:21 7.62688040599556  Gooby 1. | 
| 316 | 
            -
                        points.push(new GLatLng(36.13322,-86.79729)); // (294 of 1207.0) 2005-04-30T13:10:30Z 3926 01:05:26 7.63842548764446  Gooby 1. | 
| 317 | 
            -
                        // points.push(new GLatLng(36.13326,-86.79729)); // (295 of 1207.0) 2005-04-30T13:10:31Z 3927 01:05:27 7.64118845815357  Gooby 1. | 
| 318 | 
            -
                        // points.push(new GLatLng(36.13375,-86.79727)); // (296 of 1207.0) 2005-04-30T13:10:48Z 3944 01:05:44 7.67506094223217  Gooby 1. | 
| 319 | 
            -
                        // points.push(new GLatLng(36.13436,-86.79718)); // (297 of 1207.0) 2005-04-30T13:11:09Z 3965 01:06:05 7.71750395927358  Gooby 1. | 
| 320 | 
            -
                        // points.push(new GLatLng(36.13498,-86.79708)); // (298 of 1207.0) 2005-04-30T13:11:32Z 3988 01:06:28 7.76070169930629  Gooby 1. | 
| 321 | 
            -
                        // points.push(new GLatLng(36.13547,-86.79703)); // (299 of 1207.0) 2005-04-30T13:11:50Z 4006 01:06:46 7.79467055480107  Gooby 1. | 
| 322 | 
            -
                        points.push(new GLatLng(36.13564,-86.79695)); // (300 of 1207.0) 2005-04-30T13:11:57Z 4013 01:06:53 7.80723552524004  Gooby 1. | 
| 323 | 
            -
                        // points.push(new GLatLng(36.13577,-86.79673)); // (301 of 1207.0) 2005-04-30T13:12:05Z 4021 01:07:01 7.82244622406736  Gooby 1. | 
| 324 | 
            -
                        // points.push(new GLatLng(36.13592,-86.79639)); // (302 of 1207.0) 2005-04-30T13:12:17Z 4033 01:07:13 7.84406373290719  Gooby 1. | 
| 325 | 
            -
                        // points.push(new GLatLng(36.13609,-86.79605)); // (303 of 1207.0) 2005-04-30T13:12:29Z 4045 01:07:25 7.86637681403756  Gooby 1. | 
| 326 | 
            -
                        // points.push(new GLatLng(36.13635,-86.79562)); // (304 of 1207.0) 2005-04-30T13:12:45Z 4061 01:07:41 7.89634952078033  Gooby 1. | 
| 327 | 
            -
                        // points.push(new GLatLng(36.13652,-86.79536)); // (305 of 1207.0) 2005-04-30T13:12:55Z 4071 01:07:51 7.91501559797049  Gooby 1. | 
| 328 | 
            -
                        points.push(new GLatLng(36.13682,-86.79497)); // (306 of 1207.0) 2005-04-30T13:13:10Z 4086 01:08:06 7.94506824127062  Gooby 1. | 
| 329 | 
            -
                        // points.push(new GLatLng(36.13712,-86.79463)); // (307 of 1207.0) 2005-04-30T13:13:24Z 4100 01:08:20 7.97316659838247  Gooby 1. | 
| 330 | 
            -
                        points.push(new GLatLng(36.13751,-86.79433)); // (308 of 1207.0) 2005-04-30T13:13:40Z 4116 01:08:36 8.00488790553936 8.0 00:08:25 Gooby 1. | 
| 331 | 
            -
                        // points.push(new GLatLng(36.13794,-86.79414)); // (309 of 1207.0) 2005-04-30T13:13:56Z 4132 01:08:52 8.03643145652421  Gooby 1. | 
| 332 | 
            -
                        // points.push(new GLatLng(36.138,-86.79412)); // (310 of 1207.0) 2005-04-30T13:13:58Z 4134 01:08:54 8.04072417024016  Gooby 1. | 
| 333 | 
            -
                        // points.push(new GLatLng(36.1383,-86.79412)); // (311 of 1207.0) 2005-04-30T13:14:08Z 4144 01:09:04 8.06145110805663  Gooby 1. | 
| 334 | 
            -
                        // points.push(new GLatLng(36.13869,-86.79405)); // (312 of 1207.0) 2005-04-30T13:14:21Z 4157 01:09:17 8.08867778448915  Gooby 1. | 
| 335 | 
            -
                        // points.push(new GLatLng(36.13935,-86.79397)); // (313 of 1207.0) 2005-04-30T13:14:47Z 4183 01:09:43 8.13449509996831  Gooby 1. | 
| 336 | 
            -
                        points.push(new GLatLng(36.13989,-86.7939)); // (314 of 1207.0) 2005-04-30T13:15:05Z 4201 01:10:01 8.17200754086059  Gooby 1. | 
| 337 | 
            -
                        // points.push(new GLatLng(36.14013,-86.79388)); // (315 of 1207.0) 2005-04-30T13:15:13Z 4209 01:10:09 8.18862666048788  Gooby 1. | 
| 338 | 
            -
                        // points.push(new GLatLng(36.14017,-86.79386)); // (316 of 1207.0) 2005-04-30T13:15:16Z 4212 01:10:12 8.19160653704001  Gooby 1. | 
| 339 | 
            -
                        // points.push(new GLatLng(36.14043,-86.79382)); // (317 of 1207.0) 2005-04-30T13:15:25Z 4221 01:10:21 8.20970802280231  Gooby 1. | 
| 340 | 
            -
                        // points.push(new GLatLng(36.14116,-86.79367)); // (318 of 1207.0) 2005-04-30T13:15:49Z 4245 01:10:45 8.26083344220525  Gooby 1. | 
| 341 | 
            -
                        // points.push(new GLatLng(36.14174,-86.79354)); // (319 of 1207.0) 2005-04-30T13:16:09Z 4265 01:11:05 8.30155680312887  Gooby 1. | 
| 342 | 
            -
                        points.push(new GLatLng(36.14238,-86.79341)); // (320 of 1207.0) 2005-04-30T13:16:32Z 4288 01:11:28 8.34636535385178  Gooby 1. | 
| 343 | 
            -
                        // points.push(new GLatLng(36.14315,-86.79328)); // (321 of 1207.0) 2005-04-30T13:16:58Z 4314 01:11:54 8.40005684983467  Gooby 1. | 
| 344 | 
            -
                        // points.push(new GLatLng(36.14373,-86.79322)); // (322 of 1207.0) 2005-04-30T13:17:17Z 4333 01:12:13 8.44026861635811  Gooby 1. | 
| 345 | 
            -
                        // points.push(new GLatLng(36.14431,-86.79311)); // (323 of 1207.0) 2005-04-30T13:17:37Z 4353 01:12:33 8.48080807498335  Gooby 1. | 
| 346 | 
            -
                        // points.push(new GLatLng(36.14502,-86.79298)); // (324 of 1207.0) 2005-04-30T13:18:02Z 4378 01:12:58 8.53039528174992  Gooby 1. | 
| 347 | 
            -
                        // points.push(new GLatLng(36.14541,-86.79287)); // (325 of 1207.0) 2005-04-30T13:18:17Z 4393 01:13:13 8.55803052733859  Gooby 1. | 
| 348 | 
            -
                        points.push(new GLatLng(36.14573,-86.79279)); // (326 of 1207.0) 2005-04-30T13:18:29Z 4405 01:13:25 8.58058525383738  Gooby 1. | 
| 349 | 
            -
                        // points.push(new GLatLng(36.14616,-86.7927)); // (327 of 1207.0) 2005-04-30T13:18:44Z 4420 01:13:40 8.61071525433487  Gooby 1. | 
| 350 | 
            -
                        // points.push(new GLatLng(36.14652,-86.79261)); // (328 of 1207.0) 2005-04-30T13:18:57Z 4433 01:13:53 8.63608942877695  Gooby 1. | 
| 351 | 
            -
                        // points.push(new GLatLng(36.14697,-86.79253)); // (329 of 1207.0) 2005-04-30T13:19:12Z 4448 01:14:08 8.6674986701324  Gooby 1. | 
| 352 | 
            -
                        // points.push(new GLatLng(36.14738,-86.79244)); // (330 of 1207.0) 2005-04-30T13:19:27Z 4463 01:14:23 8.69626714370497  Gooby 1. | 
| 353 | 
            -
                        // points.push(new GLatLng(36.14796,-86.79236)); // (331 of 1207.0) 2005-04-30T13:19:47Z 4483 01:14:43 8.73658714240368  Gooby 1. | 
| 354 | 
            -
                        points.push(new GLatLng(36.14839,-86.79225)); // (332 of 1207.0) 2005-04-30T13:20:03Z 4499 01:14:59 8.76692309521224  Gooby 1. | 
| 355 | 
            -
                        // points.push(new GLatLng(36.1489,-86.79221)); // (333 of 1207.0) 2005-04-30T13:20:21Z 4517 01:15:17 8.80222959577073  Gooby 1. | 
| 356 | 
            -
                        // points.push(new GLatLng(36.14916,-86.79214)); // (334 of 1207.0) 2005-04-30T13:20:31Z 4527 01:15:27 8.82061261097432  Gooby 1. | 
| 357 | 
            -
                        // points.push(new GLatLng(36.14935,-86.79212)); // (335 of 1207.0) 2005-04-30T13:20:42Z 4538 01:15:38 8.8337869812922  Gooby 1. | 
| 358 | 
            -
                        // points.push(new GLatLng(36.14957,-86.79206)); // (336 of 1207.0) 2005-04-30T13:20:53Z 4549 01:15:49 8.84935089123342  Gooby 1. | 
| 359 | 
            -
                        // points.push(new GLatLng(36.15015,-86.79197)); // (337 of 1207.0) 2005-04-30T13:21:15Z 4571 01:16:11 8.88973637926834  Gooby 1. | 
| 360 | 
            -
                        points.push(new GLatLng(36.15066,-86.79186)); // (338 of 1207.0) 2005-04-30T13:21:32Z 4588 01:16:28 8.92550263282624  Gooby 1. | 
| 361 | 
            -
                        // points.push(new GLatLng(36.15126,-86.7918)); // (339 of 1207.0) 2005-04-30T13:21:53Z 4609 01:16:49 8.96709151029472  Gooby 1. | 
| 362 | 
            -
                        // points.push(new GLatLng(36.15167,-86.79169)); // (340 of 1207.0) 2005-04-30T13:22:07Z 4623 01:17:03 8.99607543232131  Gooby 1. | 
| 363 | 
            -
                        points.push(new GLatLng(36.15189,-86.79165)); // (341 of 1207.0) 2005-04-30T13:22:15Z 4631 01:17:11 9.0114380649405 9.0 00:08:35 Gooby 1. | 
| 364 | 
            -
                        // points.push(new GLatLng(36.15193,-86.79131)); // (342 of 1207.0) 2005-04-30T13:22:25Z 4641 01:17:21 9.03060600763061  Gooby 1. | 
| 365 | 
            -
                        // points.push(new GLatLng(36.15191,-86.79118)); // (343 of 1207.0) 2005-04-30T13:22:28Z 4644 01:17:24 9.03798860655466  Gooby 1. | 
| 366 | 
            -
                        // points.push(new GLatLng(36.15191,-86.79116)); // (344 of 1207.0) 2005-04-30T13:22:29Z 4645 01:17:25 9.03910313728075  Gooby 1. | 
| 367 | 
            -
                        // points.push(new GLatLng(36.15182,-86.79101)); // (345 of 1207.0) 2005-04-30T13:22:33Z 4649 01:17:29 9.04952836727621  Gooby 1. | 
| 368 | 
            -
                        // points.push(new GLatLng(36.15178,-86.79073)); // (346 of 1207.0) 2005-04-30T13:22:41Z 4657 01:17:37 9.06539132416552  Gooby 1. | 
| 369 | 
            -
                        points.push(new GLatLng(36.15176,-86.79017)); // (347 of 1207.0) 2005-04-30T13:22:57Z 4673 01:17:53 9.09666267501151  Gooby 1. | 
| 370 | 
            -
                        // points.push(new GLatLng(36.15169,-86.78967)); // (348 of 1207.0) 2005-04-30T13:23:11Z 4687 01:18:07 9.12497248553501  Gooby 1. | 
| 371 | 
            -
                        // points.push(new GLatLng(36.15169,-86.78937)); // (349 of 1207.0) 2005-04-30T13:23:19Z 4695 01:18:15 9.14170864780449  Gooby 1. | 
| 372 | 
            -
                        // points.push(new GLatLng(36.15163,-86.78897)); // (350 of 1207.0) 2005-04-30T13:23:30Z 4706 01:18:26 9.16440531782809  Gooby 1. | 
| 373 | 
            -
                        // points.push(new GLatLng(36.15159,-86.78854)); // (351 of 1207.0) 2005-04-30T13:23:42Z 4718 01:18:38 9.18855249892972  Gooby 1. | 
| 374 | 
            -
                        // points.push(new GLatLng(36.15156,-86.78832)); // (352 of 1207.0) 2005-04-30T13:23:48Z 4724 01:18:44 9.20099964125966  Gooby 1. | 
| 375 | 
            -
                        points.push(new GLatLng(36.1515,-86.78785)); // (353 of 1207.0) 2005-04-30T13:24:02Z 4738 01:18:58 9.22754533267919  Gooby 1. | 
| 376 | 
            -
                        // points.push(new GLatLng(36.15144,-86.78738)); // (354 of 1207.0) 2005-04-30T13:24:16Z 4752 01:19:12 9.25409108963643  Gooby 1. | 
| 377 | 
            -
                        // points.push(new GLatLng(36.15139,-86.78699)); // (355 of 1207.0) 2005-04-30T13:24:27Z 4763 01:19:23 9.27612074382031  Gooby 1. | 
| 378 | 
            -
                        // points.push(new GLatLng(36.15135,-86.78671)); // (356 of 1207.0) 2005-04-30T13:24:35Z 4771 01:19:31 9.29198381038275  Gooby 1. | 
| 379 | 
            -
                        // points.push(new GLatLng(36.15131,-86.78646)); // (357 of 1207.0) 2005-04-30T13:24:42Z 4778 01:19:38 9.30620181100661  Gooby 1. | 
| 380 | 
            -
                        // points.push(new GLatLng(36.15129,-86.78611)); // (358 of 1207.0) 2005-04-30T13:24:52Z 4788 01:19:48 9.3257763273088  Gooby 1. | 
| 381 | 
            -
                        points.push(new GLatLng(36.15124,-86.78568)); // (359 of 1207.0) 2005-04-30T13:25:04Z 4800 01:20:00 9.3500123956285  Gooby 1. | 
| 382 | 
            -
                        // points.push(new GLatLng(36.1512,-86.7853)); // (360 of 1207.0) 2005-04-30T13:25:15Z 4811 01:20:11 9.37139109312763  Gooby 1. | 
| 383 | 
            -
                        // points.push(new GLatLng(36.15113,-86.78485)); // (361 of 1207.0) 2005-04-30T13:25:28Z 4824 01:20:24 9.39695713745201  Gooby 1. | 
| 384 | 
            -
                        // points.push(new GLatLng(36.15116,-86.7844)); // (362 of 1207.0) 2005-04-30T13:25:41Z 4837 01:20:37 9.42214696017535  Gooby 1. | 
| 385 | 
            -
                        // points.push(new GLatLng(36.15131,-86.78425)); // (363 of 1207.0) 2005-04-30T13:25:49Z 4845 01:20:45 9.43546723604267  Gooby 1. | 
| 386 | 
            -
                        // points.push(new GLatLng(36.15169,-86.78414)); // (364 of 1207.0) 2005-04-30T13:26:01Z 4857 01:20:57 9.46242910696164  Gooby 1. | 
| 387 | 
            -
                        points.push(new GLatLng(36.15174,-86.78412)); // (365 of 1207.0) 2005-04-30T13:26:02Z 4858 01:20:58 9.46605957755209  Gooby 1. | 
| 388 | 
            -
                        // points.push(new GLatLng(36.15197,-86.78418)); // (366 of 1207.0) 2005-04-30T13:26:05Z 4861 01:21:01 9.48229907130677  Gooby 1. | 
| 389 | 
            -
                        // points.push(new GLatLng(36.15214,-86.7841)); // (367 of 1207.0) 2005-04-30T13:26:12Z 4868 01:21:08 9.49486376482263  Gooby 1. | 
| 390 | 
            -
                        // points.push(new GLatLng(36.15229,-86.78399)); // (368 of 1207.0) 2005-04-30T13:26:18Z 4874 01:21:14 9.50690785186233  Gooby 1. | 
| 391 | 
            -
                        // points.push(new GLatLng(36.15262,-86.78382)); // (369 of 1207.0) 2005-04-30T13:26:30Z 4886 01:21:26 9.53160131459763  Gooby 1. | 
| 392 | 
            -
                        // points.push(new GLatLng(36.15296,-86.78377)); // (370 of 1207.0) 2005-04-30T13:26:42Z 4898 01:21:38 9.55525688189969  Gooby 1. | 
| 393 | 
            -
                        points.push(new GLatLng(36.15326,-86.78382)); // (371 of 1207.0) 2005-04-30T13:26:53Z 4909 01:21:49 9.57617082593093  Gooby 1. | 
| 394 | 
            -
                        // points.push(new GLatLng(36.15347,-86.78395)); // (372 of 1207.0) 2005-04-30T13:27:01Z 4917 01:21:57 9.59239134649215  Gooby 1. | 
| 395 | 
            -
                        // points.push(new GLatLng(36.15369,-86.78412)); // (373 of 1207.0) 2005-04-30T13:27:10Z 4926 01:22:06 9.61030705812114  Gooby 1. | 
| 396 | 
            -
                        // points.push(new GLatLng(36.15407,-86.78444)); // (374 of 1207.0) 2005-04-30T13:27:27Z 4943 01:22:23 9.64205539221018  Gooby 1. | 
| 397 | 
            -
                        // points.push(new GLatLng(36.15448,-86.7847)); // (375 of 1207.0) 2005-04-30T13:27:43Z 4959 01:22:39 9.67387974974004  Gooby 1. | 
| 398 | 
            -
                        // points.push(new GLatLng(36.15478,-86.78483)); // (376 of 1207.0) 2005-04-30T13:27:54Z 4970 01:22:50 9.69583876786169  Gooby 1. | 
| 399 | 
            -
                        points.push(new GLatLng(36.1548,-86.78483)); // (377 of 1207.0) 2005-04-30T13:27:55Z 4971 01:22:51 9.69721962330757  Gooby 1. | 
| 400 | 
            -
                        // points.push(new GLatLng(36.15493,-86.78487)); // (378 of 1207.0) 2005-04-30T13:28:00Z 4976 01:22:56 9.70647422768362  Gooby 1. | 
| 401 | 
            -
                        // points.push(new GLatLng(36.15534,-86.78504)); // (379 of 1207.0) 2005-04-30T13:28:15Z 4991 01:23:11 9.7363463489318  Gooby 1. | 
| 402 | 
            -
                        // points.push(new GLatLng(36.15566,-86.7853)); // (380 of 1207.0) 2005-04-30T13:28:28Z 5004 01:23:24 9.76278809049097  Gooby 1. | 
| 403 | 
            -
                        // points.push(new GLatLng(36.15616,-86.78555)); // (381 of 1207.0) 2005-04-30T13:28:48Z 5024 01:23:44 9.80004196495604  Gooby 1. | 
| 404 | 
            -
                        // points.push(new GLatLng(36.15663,-86.78588)); // (382 of 1207.0) 2005-04-30T13:29:07Z 5043 01:24:03 9.83736927243312  Gooby 1. | 
| 405 | 
            -
                        points.push(new GLatLng(36.15725,-86.78628)); // (383 of 1207.0) 2005-04-30T13:29:32Z 5068 01:24:28 9.88566828148241  Gooby 1. | 
| 406 | 
            -
                        // points.push(new GLatLng(36.15807,-86.78691)); // (384 of 1207.0) 2005-04-30T13:30:05Z 5101 01:25:01 9.95233691654958  Gooby 1. | 
| 407 | 
            -
                        // points.push(new GLatLng(36.15837,-86.78727)); // (385 of 1207.0) 2005-04-30T13:30:19Z 5115 01:25:15 9.98119662175444  Gooby 1. | 
| 408 | 
            -
                        points.push(new GLatLng(36.15858,-86.78753)); // (386 of 1207.0) 2005-04-30T13:30:29Z 5125 01:25:25 10.0017113732322 10.0 00:08:14 Gooby 1. | 
| 409 | 
            -
                        // points.push(new GLatLng(36.15886,-86.78777)); // (387 of 1207.0) 2005-04-30T13:30:40Z 5136 01:25:36 10.0252372933413  Gooby 1. | 
| 410 | 
            -
                        // points.push(new GLatLng(36.15912,-86.788)); // (388 of 1207.0) 2005-04-30T13:30:51Z 5147 01:25:47 10.0473119161932  Gooby 1. | 
| 411 | 
            -
                        // points.push(new GLatLng(36.15933,-86.78822)); // (389 of 1207.0) 2005-04-30T13:31:01Z 5157 01:25:57 10.0663147756221  Gooby 1. | 
| 412 | 
            -
                        // points.push(new GLatLng(36.1597,-86.78858)); // (390 of 1207.0) 2005-04-30T13:31:17Z 5173 01:26:13 10.0988223544078  Gooby 1. | 
| 413 | 
            -
                        // points.push(new GLatLng(36.15974,-86.78862)); // (391 of 1207.0) 2005-04-30T13:31:19Z 5175 01:26:15 10.1023743452525  Gooby 1. | 
| 414 | 
            -
                        points.push(new GLatLng(36.16002,-86.78886)); // (392 of 1207.0) 2005-04-30T13:31:30Z 5186 01:26:26 10.1259001914112  Gooby 1. | 
| 415 | 
            -
                        // points.push(new GLatLng(36.16021,-86.78901)); // (393 of 1207.0) 2005-04-30T13:31:38Z 5194 01:26:34 10.1414672308999  Gooby 1. | 
| 416 | 
            -
                        // points.push(new GLatLng(36.16047,-86.78922)); // (394 of 1207.0) 2005-04-30T13:31:49Z 5205 01:26:45 10.1629126353006  Gooby 1. | 
| 417 | 
            -
                        // points.push(new GLatLng(36.16064,-86.78937)); // (395 of 1207.0) 2005-04-30T13:31:56Z 5212 01:26:52 10.1773334124757  Gooby 1. | 
| 418 | 
            -
                        // points.push(new GLatLng(36.16086,-86.78952)); // (396 of 1207.0) 2005-04-30T13:32:05Z 5221 01:27:01 10.1946838796733  Gooby 1. | 
| 419 | 
            -
                        // points.push(new GLatLng(36.16109,-86.7897)); // (397 of 1207.0) 2005-04-30T13:32:15Z 5231 01:27:11 10.2134808220383  Gooby 1. | 
| 420 | 
            -
                        points.push(new GLatLng(36.16131,-86.78991)); // (398 of 1207.0) 2005-04-30T13:32:25Z 5241 01:27:21 10.2326707168817  Gooby 1. | 
| 421 | 
            -
                        // points.push(new GLatLng(36.16156,-86.79015)); // (399 of 1207.0) 2005-04-30T13:32:36Z 5252 01:27:32 10.2545237906742  Gooby 1. | 
| 422 | 
            -
                        // points.push(new GLatLng(36.16176,-86.7903)); // (400 of 1207.0) 2005-04-30T13:32:44Z 5260 01:27:40 10.2706774603219  Gooby 1. | 
| 423 | 
            -
                        // points.push(new GLatLng(36.16195,-86.79043)); // (401 of 1207.0) 2005-04-30T13:32:52Z 5268 01:27:48 10.2856741420277  Gooby 1. | 
| 424 | 
            -
                        // points.push(new GLatLng(36.16214,-86.79049)); // (402 of 1207.0) 2005-04-30T13:32:59Z 5275 01:27:55 10.2992211837764  Gooby 1. | 
| 425 | 
            -
                        // points.push(new GLatLng(36.16223,-86.79045)); // (403 of 1207.0) 2005-04-30T13:33:02Z 5278 01:27:58 10.305827752553  Gooby 1. | 
| 426 | 
            -
                        points.push(new GLatLng(36.16234,-86.79028)); // (404 of 1207.0) 2005-04-30T13:33:09Z 5285 01:28:05 10.317979979131  Gooby 1. | 
| 427 | 
            -
                        // points.push(new GLatLng(36.16236,-86.79023)); // (405 of 1207.0) 2005-04-30T13:33:10Z 5286 01:28:06 10.3210923586824  Gooby 1. | 
| 428 | 
            -
                        // points.push(new GLatLng(36.16253,-86.78989)); // (406 of 1207.0) 2005-04-30T13:33:22Z 5298 01:28:18 10.3433998252819  Gooby 1. | 
| 429 | 
            -
                        // points.push(new GLatLng(36.16272,-86.78955)); // (407 of 1207.0) 2005-04-30T13:33:34Z 5310 01:28:30 10.3664648093639  Gooby 1. | 
| 430 | 
            -
                        // points.push(new GLatLng(36.16292,-86.78916)); // (408 of 1207.0) 2005-04-30T13:33:48Z 5324 01:28:44 10.3922363526423  Gooby 1. | 
| 431 | 
            -
                        // points.push(new GLatLng(36.16309,-86.78882)); // (409 of 1207.0) 2005-04-30T13:34:01Z 5337 01:28:57 10.4145437412522  Gooby 1. | 
| 432 | 
            -
                        points.push(new GLatLng(36.16334,-86.7883)); // (410 of 1207.0) 2005-04-30T13:34:19Z 5355 01:29:15 10.4483021645463  Gooby 1. | 
| 433 | 
            -
                        // points.push(new GLatLng(36.16349,-86.78804)); // (411 of 1207.0) 2005-04-30T13:34:29Z 5365 01:29:25 10.4661270448232  Gooby 1. | 
| 434 | 
            -
                        // points.push(new GLatLng(36.1636,-86.78792)); // (412 of 1207.0) 2005-04-30T13:34:36Z 5372 01:29:32 10.4762543106965  Gooby 1. | 
| 435 | 
            -
                        // points.push(new GLatLng(36.16386,-86.78802)); // (413 of 1207.0) 2005-04-30T13:34:46Z 5382 01:29:42 10.4950638362945  Gooby 1. | 
| 436 | 
            -
                        // points.push(new GLatLng(36.16412,-86.78826)); // (414 of 1207.0) 2005-04-30T13:34:58Z 5394 01:29:54 10.5174668691827  Gooby 1. | 
| 437 | 
            -
                        // points.push(new GLatLng(36.16433,-86.78845)); // (415 of 1207.0) 2005-04-30T13:35:07Z 5403 01:30:03 10.5354340707892  Gooby 1. | 
| 438 | 
            -
                        points.push(new GLatLng(36.16452,-86.78856)); // (416 of 1207.0) 2005-04-30T13:35:14Z 5410 01:30:10 10.5499242909867  Gooby 1. | 
| 439 | 
            -
                        // points.push(new GLatLng(36.16482,-86.78875)); // (417 of 1207.0) 2005-04-30T13:35:27Z 5423 01:30:23 10.5732035513193  Gooby 1. | 
| 440 | 
            -
                        // points.push(new GLatLng(36.16525,-86.7889)); // (418 of 1207.0) 2005-04-30T13:35:43Z 5439 01:30:39 10.6040679067141  Gooby 1. | 
| 441 | 
            -
                        // points.push(new GLatLng(36.16583,-86.78899)); // (419 of 1207.0) 2005-04-30T13:36:02Z 5458 01:30:58 10.6444532655133  Gooby 1. | 
| 442 | 
            -
                        // points.push(new GLatLng(36.16631,-86.78897)); // (420 of 1207.0) 2005-04-30T13:36:19Z 5475 01:31:15 10.6776352421581  Gooby 1. | 
| 443 | 
            -
                        // points.push(new GLatLng(36.16673,-86.78884)); // (421 of 1207.0) 2005-04-30T13:36:34Z 5490 01:31:30 10.7075453116469  Gooby 1. | 
| 444 | 
            -
                        points.push(new GLatLng(36.16716,-86.78854)); // (422 of 1207.0) 2005-04-30T13:36:51Z 5507 01:31:47 10.7416421706263  Gooby 1. | 
| 445 | 
            -
                        // points.push(new GLatLng(36.16744,-86.78824)); // (423 of 1207.0) 2005-04-30T13:37:03Z 5519 01:31:59 10.7672199167167  Gooby 1. | 
| 446 | 
            -
                        // points.push(new GLatLng(36.16768,-86.78794)); // (424 of 1207.0) 2005-04-30T13:37:14Z 5530 01:32:10 10.7907770231331  Gooby 1. | 
| 447 | 
            -
                        // points.push(new GLatLng(36.16776,-86.78792)); // (425 of 1207.0) 2005-04-30T13:37:17Z 5533 01:32:13 10.7964157818917  Gooby 1. | 
| 448 | 
            -
                        // points.push(new GLatLng(36.16819,-86.78811)); // (426 of 1207.0) 2005-04-30T13:37:33Z 5549 01:32:29 10.827958009158  Gooby 1. | 
| 449 | 
            -
                        // points.push(new GLatLng(36.16852,-86.78828)); // (427 of 1207.0) 2005-04-30T13:37:46Z 5562 01:32:42 10.8526507673461  Gooby 1. | 
| 450 | 
            -
                        points.push(new GLatLng(36.16879,-86.78849)); // (428 of 1207.0) 2005-04-30T13:37:57Z 5573 01:32:53 10.8746774203546  Gooby 1. | 
| 451 | 
            -
                        // points.push(new GLatLng(36.16927,-86.78879)); // (429 of 1207.0) 2005-04-30T13:38:13Z 5589 01:33:09 10.9118226997534  Gooby 1. | 
| 452 | 
            -
                        // points.push(new GLatLng(36.16948,-86.78897)); // (430 of 1207.0) 2005-04-30T13:38:22Z 5598 01:33:18 10.9294662893875  Gooby 1. | 
| 453 | 
            -
                        // points.push(new GLatLng(36.16978,-86.78916)); // (431 of 1207.0) 2005-04-30T13:38:35Z 5611 01:33:31 10.9527451760485  Gooby 1. | 
| 454 | 
            -
                        // points.push(new GLatLng(36.16997,-86.78937)); // (432 of 1207.0) 2005-04-30T13:38:49Z 5625 01:33:45 10.9703379108177  Gooby 1. | 
| 455 | 
            -
                        // points.push(new GLatLng(36.17017,-86.7895)); // (433 of 1207.0) 2005-04-30T13:39:00Z 5636 01:33:56 10.9859425674091  Gooby 1. | 
| 456 | 
            -
                        points.push(new GLatLng(36.17034,-86.78961)); // (434 of 1207.0) 2005-04-30T13:39:07Z 5643 01:34:03 10.9991935710606  Gooby 1. | 
| 457 | 
            -
                        points.push(new GLatLng(36.17045,-86.78976)); // (435 of 1207.0) 2005-04-30T13:39:14Z 5650 01:34:10 11.0104962060892 11.0 00:08:45 Gooby 1. | 
| 458 | 
            -
                        // points.push(new GLatLng(36.17062,-86.78985)); // (436 of 1207.0) 2005-04-30T13:39:21Z 5657 01:34:17 11.0232692211177  Gooby 1. | 
| 459 | 
            -
                        // points.push(new GLatLng(36.17083,-86.79)); // (437 of 1207.0) 2005-04-30T13:39:30Z 5666 01:34:26 11.0400173335224  Gooby 1. | 
| 460 | 
            -
                        // points.push(new GLatLng(36.17103,-86.7901)); // (438 of 1207.0) 2005-04-30T13:39:37Z 5673 01:34:33 11.0549183509219  Gooby 1. | 
| 461 | 
            -
                        // points.push(new GLatLng(36.17128,-86.79028)); // (439 of 1207.0) 2005-04-30T13:39:48Z 5684 01:34:44 11.0748964789369  Gooby 1. | 
| 462 | 
            -
                        // points.push(new GLatLng(36.17156,-86.79045)); // (440 of 1207.0) 2005-04-30T13:39:59Z 5695 01:34:55 11.0964403047928  Gooby 1. | 
| 463 | 
            -
                        points.push(new GLatLng(36.17169,-86.79058)); // (441 of 1207.0) 2005-04-30T13:40:05Z 5701 01:35:01 11.1079834272854  Gooby 1. | 
| 464 | 
            -
                        // points.push(new GLatLng(36.17188,-86.79073)); // (442 of 1207.0) 2005-04-30T13:40:13Z 5709 01:35:09 11.1235497962098  Gooby 1. | 
| 465 | 
            -
                        // points.push(new GLatLng(36.17218,-86.79092)); // (443 of 1207.0) 2005-04-30T13:40:26Z 5722 01:35:22 11.1468285334003  Gooby 1. | 
| 466 | 
            -
                        // points.push(new GLatLng(36.17255,-86.79111)); // (444 of 1207.0) 2005-04-30T13:40:41Z 5737 01:35:37 11.1745012112008  Gooby 1. | 
| 467 | 
            -
                        // points.push(new GLatLng(36.17283,-86.79126)); // (445 of 1207.0) 2005-04-30T13:40:52Z 5748 01:35:48 11.1955778992175  Gooby 1. | 
| 468 | 
            -
                        // points.push(new GLatLng(36.17304,-86.79139)); // (446 of 1207.0) 2005-04-30T13:41:01Z 5757 01:35:57 11.211797561709  Gooby 1. | 
| 469 | 
            -
                        points.push(new GLatLng(36.17337,-86.79158)); // (447 of 1207.0) 2005-04-30T13:41:15Z 5771 01:36:11 11.2369395457235  Gooby 1. | 
| 470 | 
            -
                        // points.push(new GLatLng(36.17362,-86.79176)); // (448 of 1207.0) 2005-04-30T13:41:26Z 5782 01:36:22 11.2569174995727  Gooby 1. | 
| 471 | 
            -
                        // points.push(new GLatLng(36.17403,-86.79193)); // (449 of 1207.0) 2005-04-30T13:41:42Z 5798 01:36:38 11.2867889219352  Gooby 1. | 
| 472 | 
            -
                        // points.push(new GLatLng(36.17424,-86.7921)); // (450 of 1207.0) 2005-04-30T13:41:51Z 5807 01:36:47 11.3041209294761  Gooby 1. | 
| 473 | 
            -
                        // points.push(new GLatLng(36.17448,-86.79221)); // (451 of 1207.0) 2005-04-30T13:42:01Z 5817 01:36:57 11.3218009653165  Gooby 1. | 
| 474 | 
            -
                        // points.push(new GLatLng(36.17467,-86.79238)); // (452 of 1207.0) 2005-04-30T13:42:10Z 5826 01:37:06 11.3379937902174  Gooby 1. | 
| 475 | 
            -
                        points.push(new GLatLng(36.17491,-86.79255)); // (453 of 1207.0) 2005-04-30T13:42:20Z 5836 01:37:16 11.3570945410452  Gooby 1. | 
| 476 | 
            -
                        // points.push(new GLatLng(36.17519,-86.7927)); // (454 of 1207.0) 2005-04-30T13:42:31Z 5847 01:37:27 11.3781709814296  Gooby 1. | 
| 477 | 
            -
                        // points.push(new GLatLng(36.17547,-86.79289)); // (455 of 1207.0) 2005-04-30T13:42:42Z 5858 01:37:38 11.4002281010687  Gooby 1. | 
| 478 | 
            -
                        // points.push(new GLatLng(36.17568,-86.79304)); // (456 of 1207.0) 2005-04-30T13:42:51Z 5867 01:37:47 11.416975901839  Gooby 1. | 
| 479 | 
            -
                        // points.push(new GLatLng(36.17592,-86.79324)); // (457 of 1207.0) 2005-04-30T13:43:01Z 5877 01:37:57 11.4369599505895  Gooby 1. | 
| 480 | 
            -
                        // points.push(new GLatLng(36.17622,-86.79349)); // (458 of 1207.0) 2005-04-30T13:43:13Z 5889 01:38:09 11.4619399767049  Gooby 1. | 
| 481 | 
            -
                        points.push(new GLatLng(36.17643,-86.79367)); // (459 of 1207.0) 2005-04-30T13:43:22Z 5898 01:38:18 11.4795830733071  Gooby 1. | 
| 482 | 
            -
                        // points.push(new GLatLng(36.17667,-86.79379)); // (460 of 1207.0) 2005-04-30T13:43:31Z 5907 01:38:27 11.4974642786194  Gooby 1. | 
| 483 | 
            -
                        // points.push(new GLatLng(36.17695,-86.79399)); // (461 of 1207.0) 2005-04-30T13:43:43Z 5919 01:38:39 11.5197946623333  Gooby 1. | 
| 484 | 
            -
                        // points.push(new GLatLng(36.17721,-86.79429)); // (462 of 1207.0) 2005-04-30T13:43:55Z 5931 01:38:51 11.5443426322551  Gooby 1. | 
| 485 | 
            -
                        // points.push(new GLatLng(36.17755,-86.79418)); // (463 of 1207.0) 2005-04-30T13:44:05Z 5941 01:39:01 11.56862101581  Gooby 1. | 
| 486 | 
            -
                        // points.push(new GLatLng(36.1777,-86.79437)); // (464 of 1207.0) 2005-04-30T13:44:12Z 5948 01:39:08 11.5834424281852  Gooby 1. | 
| 487 | 
            -
                        points.push(new GLatLng(36.17785,-86.79457)); // (465 of 1207.0) 2005-04-30T13:44:20Z 5956 01:39:16 11.5986675316279  Gooby 1. | 
| 488 | 
            -
                        // points.push(new GLatLng(36.178,-86.7947)); // (466 of 1207.0) 2005-04-30T13:44:27Z 5963 01:39:23 11.6113150301359  Gooby 1. | 
| 489 | 
            -
                        // points.push(new GLatLng(36.17828,-86.79487)); // (467 of 1207.0) 2005-04-30T13:44:39Z 5975 01:39:35 11.6328583714634  Gooby 1. | 
| 490 | 
            -
                        // points.push(new GLatLng(36.17851,-86.79497)); // (468 of 1207.0) 2005-04-30T13:44:48Z 5984 01:39:44 11.6496994039045  Gooby 1. | 
| 491 | 
            -
                        // points.push(new GLatLng(36.17882,-86.79519)); // (469 of 1207.0) 2005-04-30T13:45:01Z 5997 01:39:57 11.6743825782545  Gooby 1. | 
| 492 | 
            -
                        // points.push(new GLatLng(36.17935,-86.79558)); // (470 of 1207.0) 2005-04-30T13:45:24Z 6020 01:40:20 11.7169724140587  Gooby 1. | 
| 493 | 
            -
                        points.push(new GLatLng(36.18002,-86.79607)); // (471 of 1207.0) 2005-04-30T13:45:51Z 6047 01:40:47 11.770726507851  Gooby 1. | 
| 494 | 
            -
                        // points.push(new GLatLng(36.18047,-86.79635)); // (472 of 1207.0) 2005-04-30T13:46:10Z 6066 01:41:06 11.8055178690049  Gooby 1. | 
| 495 | 
            -
                        // points.push(new GLatLng(36.18083,-86.79652)); // (473 of 1207.0) 2005-04-30T13:46:24Z 6080 01:41:20 11.8321356850952  Gooby 1. | 
| 496 | 
            -
                        // points.push(new GLatLng(36.18107,-86.79671)); // (474 of 1207.0) 2005-04-30T13:46:34Z 6090 01:41:30 11.8518135603984  Gooby 1. | 
| 497 | 
            -
                        // points.push(new GLatLng(36.18133,-86.79688)); // (475 of 1207.0) 2005-04-30T13:46:45Z 6101 01:41:41 11.872125045798  Gooby 1. | 
| 498 | 
            -
                        // points.push(new GLatLng(36.18167,-86.79712)); // (476 of 1207.0) 2005-04-30T13:46:59Z 6115 01:41:55 11.8991608912735  Gooby 1. | 
| 499 | 
            -
                        points.push(new GLatLng(36.18197,-86.79736)); // (477 of 1207.0) 2005-04-30T13:47:11Z 6127 01:42:07 11.9238334908963  Gooby 1. | 
| 500 | 
            -
                        // points.push(new GLatLng(36.18221,-86.79751)); // (478 of 1207.0) 2005-04-30T13:47:21Z 6137 01:42:17 11.9424053812003  Gooby 1. | 
| 501 | 
            -
                        // points.push(new GLatLng(36.18246,-86.79766)); // (479 of 1207.0) 2005-04-30T13:47:31Z 6147 01:42:27 11.9615967265408  Gooby 1. | 
| 502 | 
            -
                        // points.push(new GLatLng(36.18274,-86.79783)); // (480 of 1207.0) 2005-04-30T13:47:42Z 6158 01:42:38 11.9831399063564  Gooby 1. | 
| 503 | 
            -
                        // points.push(new GLatLng(36.18296,-86.79787)); // (481 of 1207.0) 2005-04-30T13:47:50Z 6166 01:42:46 11.9985025389756  Gooby 1. | 
| 504 | 
            -
                        points.push(new GLatLng(36.18324,-86.79791)); // (482 of 1207.0) 2005-04-30T13:48:00Z 6176 01:42:56 12.0179760066749 12.0 00:08:46 Gooby 1. | 
| 505 | 
            -
                        // points.push(new GLatLng(36.18345,-86.79802)); // (483 of 1207.0) 2005-04-30T13:48:09Z 6185 01:43:05 12.0337282456285  Gooby 1. | 
| 506 | 
            -
                        // points.push(new GLatLng(36.18366,-86.79802)); // (484 of 1207.0) 2005-04-30T13:48:17Z 6193 01:43:13 12.048237063729  Gooby 1. | 
| 507 | 
            -
                        // points.push(new GLatLng(36.1839,-86.79806)); // (485 of 1207.0) 2005-04-30T13:48:25Z 6201 01:43:21 12.0649680276252  Gooby 1. | 
| 508 | 
            -
                        // points.push(new GLatLng(36.18414,-86.79809)); // (486 of 1207.0) 2005-04-30T13:48:34Z 6210 01:43:30 12.0816337706551  Gooby 1. | 
| 509 | 
            -
                        // points.push(new GLatLng(36.18439,-86.79813)); // (487 of 1207.0) 2005-04-30T13:48:43Z 6219 01:43:39 12.0990496915299  Gooby 1. | 
| 510 | 
            -
                        points.push(new GLatLng(36.18465,-86.79817)); // (488 of 1207.0) 2005-04-30T13:48:52Z 6228 01:43:48 12.1171511772922  Gooby 1. | 
| 511 | 
            -
                        // points.push(new GLatLng(36.18487,-86.79826)); // (489 of 1207.0) 2005-04-30T13:49:00Z 6236 01:43:56 12.1331581398889  Gooby 1. | 
| 512 | 
            -
                        // points.push(new GLatLng(36.1851,-86.7983)); // (490 of 1207.0) 2005-04-30T13:49:09Z 6245 01:44:05 12.149204615725  Gooby 1. | 
| 513 | 
            -
                        // points.push(new GLatLng(36.1853,-86.79834)); // (491 of 1207.0) 2005-04-30T13:49:16Z 6252 01:44:12 12.1632016258199  Gooby 1. | 
| 514 | 
            -
                        // points.push(new GLatLng(36.18555,-86.79841)); // (492 of 1207.0) 2005-04-30T13:49:25Z 6261 01:44:21 12.1809097821922  Gooby 1. | 
| 515 | 
            -
                        // points.push(new GLatLng(36.18577,-86.79843)); // (493 of 1207.0) 2005-04-30T13:49:33Z 6269 01:44:29 12.196150532347  Gooby 1. | 
| 516 | 
            -
                        points.push(new GLatLng(36.18596,-86.79845)); // (494 of 1207.0) 2005-04-30T13:49:40Z 6276 01:44:36 12.2093250347196  Gooby 1. | 
| 517 | 
            -
                        // points.push(new GLatLng(36.18635,-86.79854)); // (495 of 1207.0) 2005-04-30T13:49:54Z 6290 01:44:50 12.2367335979704  Gooby 1. | 
| 518 | 
            -
                        // points.push(new GLatLng(36.18686,-86.79856)); // (496 of 1207.0) 2005-04-30T13:50:12Z 6308 01:45:08 12.271987136899  Gooby 1. | 
| 519 | 
            -
                        // points.push(new GLatLng(36.18708,-86.79858)); // (497 of 1207.0) 2005-04-30T13:50:20Z 6316 01:45:16 12.2872277729025  Gooby 1. | 
| 520 | 
            -
                        // points.push(new GLatLng(36.18748,-86.79862)); // (498 of 1207.0) 2005-04-30T13:50:35Z 6331 01:45:31 12.3149535866345  Gooby 1. | 
| 521 | 
            -
                        // points.push(new GLatLng(36.18776,-86.79869)); // (499 of 1207.0) 2005-04-30T13:50:45Z 6341 01:45:41 12.3346886692905  Gooby 1. | 
| 522 | 
            -
                        points.push(new GLatLng(36.18785,-86.79873)); // (500 of 1207.0) 2005-04-30T13:50:48Z 6344 01:45:44 12.3412947113744  Gooby 1. | 
| 523 | 
            -
                        // points.push(new GLatLng(36.18781,-86.79894)); // (501 of 1207.0) 2005-04-30T13:50:54Z 6350 01:45:50 12.3533263694599  Gooby 1. | 
| 524 | 
            -
                        // points.push(new GLatLng(36.1877,-86.79935)); // (502 of 1207.0) 2005-04-30T13:51:06Z 6362 01:46:02 12.3774186599599  Gooby 1. | 
| 525 | 
            -
                        // points.push(new GLatLng(36.18757,-86.7998)); // (503 of 1207.0) 2005-04-30T13:51:20Z 6376 01:46:16 12.4040704416902  Gooby 1. | 
| 526 | 
            -
                        // points.push(new GLatLng(36.18748,-86.80017)); // (504 of 1207.0) 2005-04-30T13:51:31Z 6387 01:46:27 12.4256189507583  Gooby 1. | 
| 527 | 
            -
                        // points.push(new GLatLng(36.18738,-86.80068)); // (505 of 1207.0) 2005-04-30T13:51:47Z 6403 01:46:43 12.4548847577701  Gooby 1. | 
| 528 | 
            -
                        points.push(new GLatLng(36.18736,-86.80079)); // (506 of 1207.0) 2005-04-30T13:51:53Z 6409 01:46:49 12.4611723639235  Gooby 1. | 
| 529 | 
            -
                        // points.push(new GLatLng(36.18729,-86.80111)); // (507 of 1207.0) 2005-04-30T13:52:04Z 6420 01:47:00 12.4796599415206  Gooby 1. | 
| 530 | 
            -
                        // points.push(new GLatLng(36.18721,-86.80156)); // (508 of 1207.0) 2005-04-30T13:52:18Z 6434 01:47:14 12.5053543444573  Gooby 1. | 
| 531 | 
            -
                        // points.push(new GLatLng(36.18712,-86.80193)); // (509 of 1207.0) 2005-04-30T13:52:28Z 6444 01:47:24 12.5269030149973  Gooby 1. | 
| 532 | 
            -
                        // points.push(new GLatLng(36.18703,-86.80233)); // (510 of 1207.0) 2005-04-30T13:52:39Z 6455 01:47:35 12.5500583357989  Gooby 1. | 
| 533 | 
            -
                        // points.push(new GLatLng(36.18695,-86.80281)); // (511 of 1207.0) 2005-04-30T13:52:52Z 6468 01:47:48 12.5773888411541  Gooby 1. | 
| 534 | 
            -
                        points.push(new GLatLng(36.18682,-86.8033)); // (512 of 1207.0) 2005-04-30T13:53:06Z 6482 01:48:02 12.6061506618118  Gooby 1. | 
| 535 | 
            -
                        // points.push(new GLatLng(36.18671,-86.80375)); // (513 of 1207.0) 2005-04-30T13:53:19Z 6495 01:48:15 12.6323694033964  Gooby 1. | 
| 536 | 
            -
                        // points.push(new GLatLng(36.18671,-86.80405)); // (514 of 1207.0) 2005-04-30T13:53:28Z 6504 01:48:24 12.6490980794967  Gooby 1. | 
| 537 | 
            -
                        // points.push(new GLatLng(36.18675,-86.80409)); // (515 of 1207.0) 2005-04-30T13:53:30Z 6506 01:48:26 12.652649090617  Gooby 1. | 
| 538 | 
            -
                        // points.push(new GLatLng(36.18699,-86.80412)); // (516 of 1207.0) 2005-04-30T13:53:37Z 6513 01:48:33 12.6693148336468  Gooby 1. | 
| 539 | 
            -
                        // points.push(new GLatLng(36.18731,-86.80414)); // (517 of 1207.0) 2005-04-30T13:53:48Z 6524 01:48:44 12.6914517876362  Gooby 1. | 
| 540 | 
            -
                        points.push(new GLatLng(36.18776,-86.80416)); // (518 of 1207.0) 2005-04-30T13:54:03Z 6539 01:48:59 12.7225622766718  Gooby 1. | 
| 541 | 
            -
                        // points.push(new GLatLng(36.18824,-86.80418)); // (519 of 1207.0) 2005-04-30T13:54:19Z 6555 01:49:15 12.7557442533166  Gooby 1. | 
| 542 | 
            -
                        // points.push(new GLatLng(36.18851,-86.80424)); // (520 of 1207.0) 2005-04-30T13:54:29Z 6565 01:49:25 12.7746961415807  Gooby 1. | 
| 543 | 
            -
                        // points.push(new GLatLng(36.18879,-86.80439)); // (521 of 1207.0) 2005-04-30T13:54:40Z 6576 01:49:36 12.7957720041451  Gooby 1. | 
| 544 | 
            -
                        // points.push(new GLatLng(36.18907,-86.8047)); // (522 of 1207.0) 2005-04-30T13:54:53Z 6589 01:49:49 12.8217149837204  Gooby 1. | 
| 545 | 
            -
                        // points.push(new GLatLng(36.18929,-86.80506)); // (523 of 1207.0) 2005-04-30T13:55:06Z 6602 01:50:02 12.8468941681199  Gooby 1. | 
| 546 | 
            -
                        points.push(new GLatLng(36.18933,-86.80545)); // (524 of 1207.0) 2005-04-30T13:55:17Z 6613 01:50:13 12.8688156798612  Gooby 1. | 
| 547 | 
            -
                        // points.push(new GLatLng(36.18946,-86.80585)); // (525 of 1207.0) 2005-04-30T13:55:29Z 6625 01:50:25 12.892860335736  Gooby 1. | 
| 548 | 
            -
                        // points.push(new GLatLng(36.18972,-86.80611)); // (526 of 1207.0) 2005-04-30T13:55:41Z 6637 01:50:37 12.9159441691215  Gooby 1. | 
| 549 | 
            -
                        // points.push(new GLatLng(36.18982,-86.80615)); // (527 of 1207.0) 2005-04-30T13:55:45Z 6641 01:50:41 12.9232041518256  Gooby 1. | 
| 550 | 
            -
                        // points.push(new GLatLng(36.18997,-86.8062)); // (528 of 1207.0) 2005-04-30T13:55:50Z 6646 01:50:46 12.9339359361155  Gooby 1. | 
| 551 | 
            -
                        // points.push(new GLatLng(36.19017,-86.80624)); // (529 of 1207.0) 2005-04-30T13:55:56Z 6652 01:50:52 12.9479328219157  Gooby 1. | 
| 552 | 
            -
                        points.push(new GLatLng(36.19062,-86.80628)); // (530 of 1207.0) 2005-04-30T13:56:11Z 6667 01:51:07 12.9791032011842  Gooby 1. | 
| 553 | 
            -
                        points.push(new GLatLng(36.19096,-86.8063)); // (531 of 1207.0) 2005-04-30T13:56:23Z 6679 01:51:19 13.0026203935526 13.0 00:08:23 Gooby 1. | 
| 554 | 
            -
                        // points.push(new GLatLng(36.19135,-86.80639)); // (532 of 1207.0) 2005-04-30T13:56:36Z 6692 01:51:32 13.030028829854  Gooby 1. | 
| 555 | 
            -
                        // points.push(new GLatLng(36.19156,-86.80643)); // (533 of 1207.0) 2005-04-30T13:56:44Z 6700 01:51:40 13.044708235704  Gooby 1. | 
| 556 | 
            -
                        // points.push(new GLatLng(36.19188,-86.80652)); // (534 of 1207.0) 2005-04-30T13:56:57Z 6713 01:51:53 13.067379366228  Gooby 1. | 
| 557 | 
            -
                        // points.push(new GLatLng(36.19248,-86.80658)); // (535 of 1207.0) 2005-04-30T13:57:17Z 6733 01:52:13 13.1089681600324  Gooby 1. | 
| 558 | 
            -
                        // points.push(new GLatLng(36.19259,-86.80663)); // (536 of 1207.0) 2005-04-30T13:57:21Z 6737 01:52:17 13.117063390564  Gooby 1. | 
| 559 | 
            -
                        points.push(new GLatLng(36.19283,-86.80673)); // (537 of 1207.0) 2005-04-30T13:57:30Z 6746 01:52:26 13.1345573535902  Gooby 1. | 
| 560 | 
            -
                        // points.push(new GLatLng(36.19315,-86.80682)); // (538 of 1207.0) 2005-04-30T13:57:41Z 6757 01:52:37 13.1572284841142  Gooby 1. | 
| 561 | 
            -
                        // points.push(new GLatLng(36.19341,-86.80693)); // (539 of 1207.0) 2005-04-30T13:57:51Z 6767 01:52:47 13.1762101832942  Gooby 1. | 
| 562 | 
            -
                        // points.push(new GLatLng(36.19364,-86.8071)); // (540 of 1207.0) 2005-04-30T13:58:00Z 6776 01:52:56 13.1947132814573  Gooby 1. | 
| 563 | 
            -
                        // points.push(new GLatLng(36.19375,-86.80718)); // (541 of 1207.0) 2005-04-30T13:58:05Z 6781 01:53:01 13.2035255063988  Gooby 1. | 
| 564 | 
            -
                        // points.push(new GLatLng(36.19377,-86.80742)); // (542 of 1207.0) 2005-04-30T13:58:12Z 6788 01:53:08 13.2169784730153  Gooby 1. | 
| 565 | 
            -
                        points.push(new GLatLng(36.19379,-86.80787)); // (543 of 1207.0) 2005-04-30T13:58:24Z 6800 01:53:20 13.2421073061887  Gooby 1. | 
| 566 | 
            -
                        // points.push(new GLatLng(36.19377,-86.80836)); // (544 of 1207.0) 2005-04-30T13:58:38Z 6814 01:53:34 13.2694633256245  Gooby 1. | 
| 567 | 
            -
                        // points.push(new GLatLng(36.19375,-86.80884)); // (545 of 1207.0) 2005-04-30T13:58:52Z 6828 01:53:48 13.2962624868034  Gooby 1. | 
| 568 | 
            -
                        // points.push(new GLatLng(36.19375,-86.80933)); // (546 of 1207.0) 2005-04-30T13:59:06Z 6842 01:54:02 13.3235835694707  Gooby 1. | 
| 569 | 
            -
                        // points.push(new GLatLng(36.19371,-86.80984)); // (547 of 1207.0) 2005-04-30T13:59:21Z 6857 01:54:17 13.3521537303202  Gooby 1. | 
| 570 | 
            -
                        // points.push(new GLatLng(36.19369,-86.81027)); // (548 of 1207.0) 2005-04-30T13:59:35Z 6871 01:54:31 13.3761692095108  Gooby 1. | 
| 571 | 
            -
                        points.push(new GLatLng(36.19366,-86.81077)); // (549 of 1207.0) 2005-04-30T13:59:50Z 6886 01:54:46 13.4041249208978  Gooby 1. | 
| 572 | 
            -
                        // points.push(new GLatLng(36.19369,-86.81133)); // (550 of 1207.0) 2005-04-30T14:00:06Z 6902 01:55:02 13.4354178502386  Gooby 1. | 
| 573 | 
            -
                        // points.push(new GLatLng(36.19366,-86.81178)); // (551 of 1207.0) 2005-04-30T14:00:20Z 6916 01:55:16 13.4605942707017  Gooby 1. | 
| 574 | 
            -
                        // points.push(new GLatLng(36.1936,-86.81227)); // (552 of 1207.0) 2005-04-30T14:00:35Z 6931 01:55:31 13.4882281942271  Gooby 1. | 
| 575 | 
            -
                        // points.push(new GLatLng(36.19354,-86.81257)); // (553 of 1207.0) 2005-04-30T14:00:45Z 6941 01:55:41 13.5054613490164  Gooby 1. | 
| 576 | 
            -
                        // points.push(new GLatLng(36.19345,-86.81281)); // (554 of 1207.0) 2005-04-30T14:00:53Z 6949 01:55:49 13.5202173534586  Gooby 1. | 
| 577 | 
            -
                        points.push(new GLatLng(36.19334,-86.81317)); // (555 of 1207.0) 2005-04-30T14:01:04Z 6960 01:56:00 13.5416805978128  Gooby 1. | 
| 578 | 
            -
                        // points.push(new GLatLng(36.19323,-86.81349)); // (556 of 1207.0) 2005-04-30T14:01:14Z 6970 01:56:10 13.5610741214132  Gooby 1. | 
| 579 | 
            -
                        // points.push(new GLatLng(36.19311,-86.81388)); // (557 of 1207.0) 2005-04-30T14:01:27Z 6983 01:56:23 13.5843465052263  Gooby 1. | 
| 580 | 
            -
                        // points.push(new GLatLng(36.19302,-86.81414)); // (558 of 1207.0) 2005-04-30T14:01:35Z 6991 01:56:31 13.6001209278781  Gooby 1. | 
| 581 | 
            -
                        // points.push(new GLatLng(36.19291,-86.81457)); // (559 of 1207.0) 2005-04-30T14:01:48Z 7004 01:56:44 13.6252725284158  Gooby 1. | 
| 582 | 
            -
                        // points.push(new GLatLng(36.19281,-86.81484)); // (560 of 1207.0) 2005-04-30T14:01:57Z 7013 01:56:53 13.6418369131681  Gooby 1. | 
| 583 | 
            -
                        points.push(new GLatLng(36.19272,-86.8151)); // (561 of 1207.0) 2005-04-30T14:02:05Z 7021 01:57:01 13.6576113358199  Gooby 1. | 
| 584 | 
            -
                        // points.push(new GLatLng(36.19263,-86.81542)); // (562 of 1207.0) 2005-04-30T14:02:15Z 7031 01:57:11 13.6765064077318  Gooby 1. | 
| 585 | 
            -
                        // points.push(new GLatLng(36.19261,-86.81568)); // (563 of 1207.0) 2005-04-30T14:02:22Z 7038 01:57:18 13.691069324101  Gooby 1. | 
| 586 | 
            -
                        // points.push(new GLatLng(36.19266,-86.81577)); // (564 of 1207.0) 2005-04-30T14:02:25Z 7041 01:57:21 13.6971613077289  Gooby 1. | 
| 587 | 
            -
                        // points.push(new GLatLng(36.19285,-86.81594)); // (565 of 1207.0) 2005-04-30T14:02:33Z 7049 01:57:29 13.7133529507541  Gooby 1. | 
| 588 | 
            -
                        // points.push(new GLatLng(36.19306,-86.81607)); // (566 of 1207.0) 2005-04-30T14:02:41Z 7057 01:57:37 13.7295717551306  Gooby 1. | 
| 589 | 
            -
                        points.push(new GLatLng(36.19323,-86.81626)); // (567 of 1207.0) 2005-04-30T14:02:49Z 7065 01:57:45 13.7453889120494  Gooby 1. | 
| 590 | 
            -
                        // points.push(new GLatLng(36.19339,-86.8165)); // (568 of 1207.0) 2005-04-30T14:02:58Z 7074 01:57:54 13.7627461963258  Gooby 1. | 
| 591 | 
            -
                        // points.push(new GLatLng(36.19366,-86.81682)); // (569 of 1207.0) 2005-04-30T14:03:12Z 7088 01:58:08 13.7885596944835  Gooby 1. | 
| 592 | 
            -
                        // points.push(new GLatLng(36.19388,-86.81708)); // (570 of 1207.0) 2005-04-30T14:03:23Z 7099 01:58:19 13.8095644467906  Gooby 1. | 
| 593 | 
            -
                        // points.push(new GLatLng(36.19403,-86.81723)); // (571 of 1207.0) 2005-04-30T14:03:30Z 7106 01:58:26 13.8228817183152  Gooby 1. | 
| 594 | 
            -
                        // points.push(new GLatLng(36.19426,-86.81742)); // (572 of 1207.0) 2005-04-30T14:03:40Z 7116 01:58:36 13.8419799186598  Gooby 1. | 
| 595 | 
            -
                        points.push(new GLatLng(36.1945,-86.81755)); // (573 of 1207.0) 2005-04-30T14:03:49Z 7125 01:58:45 13.8600765982499  Gooby 1. | 
| 596 | 
            -
                        // points.push(new GLatLng(36.19476,-86.81766)); // (574 of 1207.0) 2005-04-30T14:03:59Z 7135 01:58:55 13.8790581141214  Gooby 1. | 
| 597 | 
            -
                        // points.push(new GLatLng(36.19497,-86.81774)); // (575 of 1207.0) 2005-04-30T14:04:07Z 7143 01:59:03 13.8942372122154  Gooby 1. | 
| 598 | 
            -
                        // points.push(new GLatLng(36.1951,-86.81787)); // (576 of 1207.0) 2005-04-30T14:04:13Z 7149 01:59:09 13.9057791289082  Gooby 1. | 
| 599 | 
            -
                        // points.push(new GLatLng(36.1951,-86.818)); // (577 of 1207.0) 2005-04-30T14:04:17Z 7153 01:59:13 13.9130280800199  Gooby 1. | 
| 600 | 
            -
                        // points.push(new GLatLng(36.19502,-86.81834)); // (578 of 1207.0) 2005-04-30T14:04:27Z 7163 01:59:23 13.9327746194998  Gooby 1. | 
| 601 | 
            -
                        points.push(new GLatLng(36.19489,-86.8186)); // (579 of 1207.0) 2005-04-30T14:04:35Z 7171 01:59:31 13.9498282526074  Gooby 1. | 
| 602 | 
            -
                        // points.push(new GLatLng(36.19474,-86.81884)); // (580 of 1207.0) 2005-04-30T14:04:44Z 7180 01:59:40 13.9667535767804  Gooby 1. | 
| 603 | 
            -
                        // points.push(new GLatLng(36.19454,-86.81909)); // (581 of 1207.0) 2005-04-30T14:04:54Z 7190 01:59:50 13.9863809929592  Gooby 1. | 
| 604 | 
            -
                        points.push(new GLatLng(36.19433,-86.81937)); // (582 of 1207.0) 2005-04-30T14:05:05Z 7201 02:00:01 14.0076939175942 14.0 00:08:42 Gooby 1. | 
| 605 | 
            -
                        // points.push(new GLatLng(36.19409,-86.81967)); // (583 of 1207.0) 2005-04-30T14:05:17Z 7213 02:00:13 14.0312468879196  Gooby 1. | 
| 606 | 
            -
                        // points.push(new GLatLng(36.19388,-86.81997)); // (584 of 1207.0) 2005-04-30T14:05:28Z 7224 02:00:24 14.0533898139534  Gooby 1. | 
| 607 | 
            -
                        // points.push(new GLatLng(36.19377,-86.82021)); // (585 of 1207.0) 2005-04-30T14:05:36Z 7232 02:00:32 14.0687790362104  Gooby 1. | 
| 608 | 
            -
                        // points.push(new GLatLng(36.19364,-86.82053)); // (586 of 1207.0) 2005-04-30T14:05:46Z 7242 02:00:42 14.0887545515785  Gooby 1. | 
| 609 | 
            -
                        // points.push(new GLatLng(36.19351,-86.82081)); // (587 of 1207.0) 2005-04-30T14:05:56Z 7252 02:00:52 14.1067658530873  Gooby 1. | 
| 610 | 
            -
                        points.push(new GLatLng(36.19347,-86.82096)); // (588 of 1207.0) 2005-04-30T14:06:01Z 7257 02:00:57 14.1155741286605  Gooby 1. | 
| 611 | 
            -
                        // points.push(new GLatLng(36.19345,-86.82102)); // (589 of 1207.0) 2005-04-30T14:06:04Z 7260 02:01:00 14.1191940413498  Gooby 1. | 
| 612 | 
            -
                        // points.push(new GLatLng(36.19341,-86.82115)); // (590 of 1207.0) 2005-04-30T14:06:12Z 7268 02:01:08 14.1269517019671  Gooby 1. | 
| 613 | 
            -
                        // points.push(new GLatLng(36.19339,-86.82137)); // (591 of 1207.0) 2005-04-30T14:06:20Z 7276 02:01:16 14.1392959672085  Gooby 1. | 
| 614 | 
            -
                        // points.push(new GLatLng(36.19332,-86.82186)); // (592 of 1207.0) 2005-04-30T14:06:34Z 7290 02:01:30 14.1670419158159  Gooby 1. | 
| 615 | 
            -
                        // points.push(new GLatLng(36.19321,-86.82238)); // (593 of 1207.0) 2005-04-30T14:06:50Z 7306 02:01:46 14.1970154351685  Gooby 1. | 
| 616 | 
            -
                        points.push(new GLatLng(36.19313,-86.82291)); // (594 of 1207.0) 2005-04-30T14:07:06Z 7322 02:02:02 14.2270794806265  Gooby 1. | 
| 617 | 
            -
                        // points.push(new GLatLng(36.19304,-86.82332)); // (595 of 1207.0) 2005-04-30T14:07:18Z 7334 02:02:14 14.2507707637835  Gooby 1. | 
| 618 | 
            -
                        // points.push(new GLatLng(36.19289,-86.82362)); // (596 of 1207.0) 2005-04-30T14:07:28Z 7344 02:02:24 14.2704482854384  Gooby 1. | 
| 619 | 
            -
                        // points.push(new GLatLng(36.19266,-86.82409)); // (597 of 1207.0) 2005-04-30T14:07:44Z 7360 02:02:40 14.3010959929962  Gooby 1. | 
| 620 | 
            -
                        // points.push(new GLatLng(36.19251,-86.82456)); // (598 of 1207.0) 2005-04-30T14:07:59Z 7375 02:02:55 14.329277072341  Gooby 1. | 
| 621 | 
            -
                        // points.push(new GLatLng(36.19251,-86.82495)); // (599 of 1207.0) 2005-04-30T14:08:11Z 7387 02:03:07 14.3510228056486  Gooby 1. | 
| 622 | 
            -
                        points.push(new GLatLng(36.19253,-86.82502)); // (600 of 1207.0) 2005-04-30T14:08:13Z 7389 02:03:09 14.3551632716127  Gooby 1. | 
| 623 | 
            -
                        // points.push(new GLatLng(36.19266,-86.82497)); // (601 of 1207.0) 2005-04-30T14:08:18Z 7394 02:03:14 14.3645676181848  Gooby 1. | 
| 624 | 
            -
                        // points.push(new GLatLng(36.19272,-86.82495)); // (602 of 1207.0) 2005-04-30T14:08:20Z 7396 02:03:16 14.368861142382  Gooby 1. | 
| 625 | 
            -
                        // points.push(new GLatLng(36.19306,-86.82474)); // (603 of 1207.0) 2005-04-30T14:08:33Z 7409 02:03:29 14.3951083348502  Gooby 1. | 
| 626 | 
            -
                        // points.push(new GLatLng(36.19339,-86.82452)); // (604 of 1207.0) 2005-04-30T14:08:46Z 7422 02:03:42 14.4209985513098  Gooby 1. | 
| 627 | 
            -
                        // points.push(new GLatLng(36.19371,-86.82422)); // (605 of 1207.0) 2005-04-30T14:09:02Z 7438 02:03:58 14.4487221687663  Gooby 1. | 
| 628 | 
            -
                        points.push(new GLatLng(36.19399,-86.82392)); // (606 of 1207.0) 2005-04-30T14:09:16Z 7452 02:04:12 14.474296241623  Gooby 1. | 
| 629 | 
            -
                        // points.push(new GLatLng(36.19431,-86.82358)); // (607 of 1207.0) 2005-04-30T14:09:31Z 7467 02:04:27 14.5034198044547  Gooby 1. | 
| 630 | 
            -
                        // points.push(new GLatLng(36.19459,-86.82328)); // (608 of 1207.0) 2005-04-30T14:09:45Z 7481 02:04:41 14.5289937412557  Gooby 1. | 
| 631 | 
            -
                        // points.push(new GLatLng(36.19489,-86.82293)); // (609 of 1207.0) 2005-04-30T14:10:00Z 7496 02:04:56 14.5574619055782  Gooby 1. | 
| 632 | 
            -
                        // points.push(new GLatLng(36.19514,-86.82263)); // (610 of 1207.0) 2005-04-30T14:10:13Z 7509 02:05:09 14.5815061996763  Gooby 1. | 
| 633 | 
            -
                        // points.push(new GLatLng(36.1954,-86.82231)); // (611 of 1207.0) 2005-04-30T14:10:27Z 7523 02:05:23 14.6068245705047  Gooby 1. | 
| 634 | 
            -
                        points.push(new GLatLng(36.19564,-86.82203)); // (612 of 1207.0) 2005-04-30T14:10:39Z 7535 02:05:35 14.6295989858496  Gooby 1. | 
| 635 | 
            -
                        // points.push(new GLatLng(36.19583,-86.8218)); // (613 of 1207.0) 2005-04-30T14:10:50Z 7546 02:05:46 14.6479503644779  Gooby 1. | 
| 636 | 
            -
                        // points.push(new GLatLng(36.19609,-86.8215)); // (614 of 1207.0) 2005-04-30T14:11:02Z 7558 02:05:58 14.672495570264  Gooby 1. | 
| 637 | 
            -
                        // points.push(new GLatLng(36.1963,-86.82124)); // (615 of 1207.0) 2005-04-30T14:11:13Z 7569 02:06:09 14.6930054873076  Gooby 1. | 
| 638 | 
            -
                        // points.push(new GLatLng(36.19656,-86.82092)); // (616 of 1207.0) 2005-04-30T14:11:26Z 7582 02:06:22 14.7183237207061  Gooby 1. | 
| 639 | 
            -
                        // points.push(new GLatLng(36.19678,-86.82062)); // (617 of 1207.0) 2005-04-30T14:11:38Z 7594 02:06:34 14.7409248344349  Gooby 1. | 
| 640 | 
            -
                        points.push(new GLatLng(36.19703,-86.82027)); // (618 of 1207.0) 2005-04-30T14:11:52Z 7608 02:06:48 14.7669853059899  Gooby 1. | 
| 641 | 
            -
                        // points.push(new GLatLng(36.19723,-86.81997)); // (619 of 1207.0) 2005-04-30T14:12:04Z 7620 02:07:00 14.7886812197271  Gooby 1. | 
| 642 | 
            -
                        // points.push(new GLatLng(36.19746,-86.81965)); // (620 of 1207.0) 2005-04-30T14:12:16Z 7632 02:07:12 14.8125733745667  Gooby 1. | 
| 643 | 
            -
                        // points.push(new GLatLng(36.19766,-86.81931)); // (621 of 1207.0) 2005-04-30T14:12:29Z 7645 02:07:25 14.8360316068327  Gooby 1. | 
| 644 | 
            -
                        // points.push(new GLatLng(36.19785,-86.81901)); // (622 of 1207.0) 2005-04-30T14:12:41Z 7657 02:07:37 14.857294025093  Gooby 1. | 
| 645 | 
            -
                        // points.push(new GLatLng(36.19806,-86.81869)); // (623 of 1207.0) 2005-04-30T14:12:53Z 7669 02:07:49 14.8802901159294  Gooby 1. | 
| 646 | 
            -
                        points.push(new GLatLng(36.19823,-86.81841)); // (624 of 1207.0) 2005-04-30T14:13:03Z 7679 02:07:59 14.899826288208  Gooby 1. | 
| 647 | 
            -
                        // points.push(new GLatLng(36.19834,-86.81815)); // (625 of 1207.0) 2005-04-30T14:13:12Z 7688 02:08:08 14.9161937274896  Gooby 1. | 
| 648 | 
            -
                        // points.push(new GLatLng(36.19847,-86.81785)); // (626 of 1207.0) 2005-04-30T14:13:22Z 7698 02:08:18 14.9351789091971  Gooby 1. | 
| 649 | 
            -
                        // points.push(new GLatLng(36.19858,-86.81757)); // (627 of 1207.0) 2005-04-30T14:13:31Z 7707 02:08:27 14.9525416051292  Gooby 1. | 
| 650 | 
            -
                        // points.push(new GLatLng(36.19875,-86.81716)); // (628 of 1207.0) 2005-04-30T14:13:45Z 7721 02:08:41 14.9782414919217  Gooby 1. | 
| 651 | 
            -
                        // points.push(new GLatLng(36.19892,-86.81693)); // (629 of 1207.0) 2005-04-30T14:13:54Z 7730 02:08:50 14.9956308206889  Gooby 1. | 
| 652 | 
            -
                        points.push(new GLatLng(36.19914,-86.81663)); // (630 of 1207.0) 2005-04-30T14:14:05Z 7741 02:09:01 15.0182316265111 15.0 00:09:00 Gooby 1. | 
| 653 | 
            -
                        // points.push(new GLatLng(36.19926,-86.81641)); // (631 of 1207.0) 2005-04-30T14:14:13Z 7749 02:09:09 15.0330365964834  Gooby 1. | 
| 654 | 
            -
                        // points.push(new GLatLng(36.19939,-86.81617)); // (632 of 1207.0) 2005-04-30T14:14:21Z 7757 02:09:17 15.0491523112304  Gooby 1. | 
| 655 | 
            -
                        // points.push(new GLatLng(36.19952,-86.81594)); // (633 of 1207.0) 2005-04-30T14:14:29Z 7765 02:09:25 15.0648080575967  Gooby 1. | 
| 656 | 
            -
                        // points.push(new GLatLng(36.19965,-86.81566)); // (634 of 1207.0) 2005-04-30T14:14:38Z 7774 02:09:34 15.0828182965631  Gooby 1. | 
| 657 | 
            -
                        // points.push(new GLatLng(36.19976,-86.81527)); // (635 of 1207.0) 2005-04-30T14:14:51Z 7787 02:09:47 15.1058518812151  Gooby 1. | 
| 658 | 
            -
                        points.push(new GLatLng(36.19982,-86.8151)); // (636 of 1207.0) 2005-04-30T14:14:56Z 7792 02:09:52 15.1161966994431  Gooby 1. | 
| 659 | 
            -
                        // points.push(new GLatLng(36.19995,-86.81482)); // (637 of 1207.0) 2005-04-30T14:15:05Z 7801 02:10:01 15.1342069384095  Gooby 1. | 
| 660 | 
            -
                        // points.push(new GLatLng(36.20012,-86.8145)); // (638 of 1207.0) 2005-04-30T14:15:16Z 7812 02:10:12 15.1555668294215  Gooby 1. | 
| 661 | 
            -
                        // points.push(new GLatLng(36.20027,-86.81412)); // (639 of 1207.0) 2005-04-30T14:15:29Z 7825 02:10:25 15.1791516879499  Gooby 1. | 
| 662 | 
            -
                        // points.push(new GLatLng(36.2004,-86.81381)); // (640 of 1207.0) 2005-04-30T14:15:39Z 7835 02:10:35 15.1986294434639  Gooby 1. | 
| 663 | 
            -
                        // points.push(new GLatLng(36.20055,-86.81349)); // (641 of 1207.0) 2005-04-30T14:15:49Z 7845 02:10:45 15.2192618209793  Gooby 1. | 
| 664 | 
            -
                        points.push(new GLatLng(36.20062,-86.81311)); // (642 of 1207.0) 2005-04-30T14:16:01Z 7857 02:10:57 15.2409927485024  Gooby 1. | 
| 665 | 
            -
                        // points.push(new GLatLng(36.20066,-86.81274)); // (643 of 1207.0) 2005-04-30T14:16:12Z 7868 02:11:08 15.2618054597945  Gooby 1. | 
| 666 | 
            -
                        // points.push(new GLatLng(36.20072,-86.81244)); // (644 of 1207.0) 2005-04-30T14:16:21Z 7877 02:11:17 15.2790372011778  Gooby 1. | 
| 667 | 
            -
                        // points.push(new GLatLng(36.20079,-86.81216)); // (645 of 1207.0) 2005-04-30T14:16:30Z 7886 02:11:26 15.2953797489426  Gooby 1. | 
| 668 | 
            -
                        // points.push(new GLatLng(36.20081,-86.81195)); // (646 of 1207.0) 2005-04-30T14:16:37Z 7893 02:11:33 15.3071689320831  Gooby 1. | 
| 669 | 
            -
                        // points.push(new GLatLng(36.20085,-86.81169)); // (647 of 1207.0) 2005-04-30T14:16:45Z 7901 02:11:41 15.3219256439137  Gooby 1. | 
| 670 | 
            -
                        points.push(new GLatLng(36.20087,-86.81143)); // (648 of 1207.0) 2005-04-30T14:16:53Z 7909 02:11:49 15.3364867682108  Gooby 1. | 
| 671 | 
            -
                        // points.push(new GLatLng(36.20092,-86.81103)); // (649 of 1207.0) 2005-04-30T14:17:06Z 7922 02:12:02 15.3590536786598  Gooby 1. | 
| 672 | 
            -
                        // points.push(new GLatLng(36.20105,-86.81062)); // (650 of 1207.0) 2005-04-30T14:17:19Z 7935 02:12:15 15.3836133395594  Gooby 1. | 
| 673 | 
            -
                        // points.push(new GLatLng(36.20111,-86.81023)); // (651 of 1207.0) 2005-04-30T14:17:31Z 7947 02:12:27 15.4057484073053  Gooby 1. | 
| 674 | 
            -
                        // points.push(new GLatLng(36.2012,-86.80989)); // (652 of 1207.0) 2005-04-30T14:17:42Z 7958 02:12:38 15.4256979517995  Gooby 1. | 
| 675 | 
            -
                        // points.push(new GLatLng(36.20128,-86.80946)); // (653 of 1207.0) 2005-04-30T14:17:55Z 7971 02:12:51 15.4503001492289  Gooby 1. | 
| 676 | 
            -
                        points.push(new GLatLng(36.20128,-86.80914)); // (654 of 1207.0) 2005-04-30T14:18:04Z 7980 02:13:00 15.4681407365271  Gooby 1. | 
| 677 | 
            -
                        // points.push(new GLatLng(36.2013,-86.80877)); // (655 of 1207.0) 2005-04-30T14:18:15Z 7991 02:13:11 15.488815147488  Gooby 1. | 
| 678 | 
            -
                        // points.push(new GLatLng(36.20135,-86.80843)); // (656 of 1207.0) 2005-04-30T14:18:26Z 8002 02:13:22 15.5080829420411  Gooby 1. | 
| 679 | 
            -
                        // points.push(new GLatLng(36.20137,-86.80804)); // (657 of 1207.0) 2005-04-30T14:18:37Z 8013 02:13:33 15.529870078018  Gooby 1. | 
| 680 | 
            -
                        // points.push(new GLatLng(36.20139,-86.80781)); // (658 of 1207.0) 2005-04-30T14:18:44Z 8020 02:13:40 15.5427672532062  Gooby 1. | 
| 681 | 
            -
                        // points.push(new GLatLng(36.20143,-86.80746)); // (659 of 1207.0) 2005-04-30T14:18:54Z 8030 02:13:50 15.5624751654198  Gooby 1. | 
| 682 | 
            -
                        points.push(new GLatLng(36.20143,-86.80712)); // (660 of 1207.0) 2005-04-30T14:19:04Z 8040 02:14:00 15.5814308170297  Gooby 1. | 
| 683 | 
            -
                        // points.push(new GLatLng(36.2015,-86.80643)); // (661 of 1207.0) 2005-04-30T14:19:24Z 8060 02:14:20 15.6202024314561  Gooby 1. | 
| 684 | 
            -
                        // points.push(new GLatLng(36.20147,-86.80603)); // (662 of 1207.0) 2005-04-30T14:19:36Z 8072 02:14:32 15.6425992509448  Gooby 1. | 
| 685 | 
            -
                        // points.push(new GLatLng(36.20143,-86.80555)); // (663 of 1207.0) 2005-04-30T14:19:50Z 8086 02:14:46 15.6695024683077  Gooby 1. | 
| 686 | 
            -
                        // points.push(new GLatLng(36.20141,-86.80521)); // (664 of 1207.0) 2005-04-30T14:20:00Z 8096 02:14:56 15.6885084402432  Gooby 1. | 
| 687 | 
            -
                        // points.push(new GLatLng(36.20143,-86.80472)); // (665 of 1207.0) 2005-04-30T14:20:15Z 8111 02:15:11 15.715861788497  Gooby 1. | 
| 688 | 
            -
                        points.push(new GLatLng(36.20143,-86.80442)); // (666 of 1207.0) 2005-04-30T14:20:24Z 8120 02:15:20 15.7325873443711  Gooby 1. | 
| 689 | 
            -
                        // points.push(new GLatLng(36.20141,-86.80416)); // (667 of 1207.0) 2005-04-30T14:20:32Z 8128 02:15:28 15.7471485881465  Gooby 1. | 
| 690 | 
            -
                        // points.push(new GLatLng(36.20141,-86.80388)); // (668 of 1207.0) 2005-04-30T14:20:40Z 8136 02:15:36 15.7627591525318  Gooby 1. | 
| 691 | 
            -
                        // points.push(new GLatLng(36.20137,-86.80362)); // (669 of 1207.0) 2005-04-30T14:20:48Z 8144 02:15:44 15.7775157464666  Gooby 1. | 
| 692 | 
            -
                        // points.push(new GLatLng(36.20135,-86.80332)); // (670 of 1207.0) 2005-04-30T14:20:57Z 8153 02:15:53 15.7942982069853  Gooby 1. | 
| 693 | 
            -
                        // points.push(new GLatLng(36.20128,-86.803)); // (671 of 1207.0) 2005-04-30T14:21:07Z 8163 02:16:03 15.8127826789054  Gooby 1. | 
| 694 | 
            -
                        points.push(new GLatLng(36.20124,-86.80274)); // (672 of 1207.0) 2005-04-30T14:21:15Z 8171 02:16:11 15.8275391549436  Gooby 1. | 
| 695 | 
            -
                        // points.push(new GLatLng(36.2012,-86.80248)); // (673 of 1207.0) 2005-04-30T14:21:23Z 8179 02:16:19 15.8422956309818  Gooby 1. | 
| 696 | 
            -
                        // points.push(new GLatLng(36.20111,-86.80218)); // (674 of 1207.0) 2005-04-30T14:21:33Z 8189 02:16:29 15.8601398260143  Gooby 1. | 
| 697 | 
            -
                        // points.push(new GLatLng(36.20102,-86.80214)); // (675 of 1207.0) 2005-04-30T14:21:37Z 8193 02:16:33 15.8667458680982  Gooby 1. | 
| 698 | 
            -
                        // points.push(new GLatLng(36.20094,-86.80216)); // (676 of 1207.0) 2005-04-30T14:21:41Z 8197 02:16:37 15.872384009756  Gooby 1. | 
| 699 | 
            -
                        // points.push(new GLatLng(36.20083,-86.80221)); // (677 of 1207.0) 2005-04-30T14:21:45Z 8201 02:16:41 15.8804792402877  Gooby 1. | 
| 700 | 
            -
                        points.push(new GLatLng(36.20034,-86.80223)); // (678 of 1207.0) 2005-04-30T14:22:01Z 8217 02:16:57 15.9143516730046  Gooby 1. | 
| 701 | 
            -
                        // points.push(new GLatLng(36.20002,-86.80236)); // (679 of 1207.0) 2005-04-30T14:22:13Z 8229 02:17:09 15.9376182251331  Gooby 1. | 
| 702 | 
            -
                        // points.push(new GLatLng(36.19991,-86.80244)); // (680 of 1207.0) 2005-04-30T14:22:18Z 8234 02:17:14 15.9464300552174  Gooby 1. | 
| 703 | 
            -
                        // points.push(new GLatLng(36.19989,-86.80266)); // (681 of 1207.0) 2005-04-30T14:22:24Z 8240 02:17:20 15.9587731929227  Gooby 1. | 
| 704 | 
            -
                        // points.push(new GLatLng(36.19993,-86.80298)); // (682 of 1207.0) 2005-04-30T14:22:33Z 8249 02:17:29 15.9768269448496  Gooby 1. | 
| 705 | 
            -
                        // points.push(new GLatLng(36.19993,-86.80309)); // (683 of 1207.0) 2005-04-30T14:22:36Z 8252 02:17:32 15.9829593466975  Gooby 1. | 
| 706 | 
            -
                        points.push(new GLatLng(36.19997,-86.80328)); // (684 of 1207.0) 2005-04-30T14:22:41Z 8257 02:17:37 15.9939069999229  Gooby 1. | 
| 707 | 
            -
                        points.push(new GLatLng(36.20002,-86.80349)); // (685 of 1207.0) 2005-04-30T14:22:48Z 8264 02:17:44 16.0061140772076 16.0 00:08:43 Gooby 1. | 
| 708 | 
            -
                        // points.push(new GLatLng(36.20006,-86.80397)); // (686 of 1207.0) 2005-04-30T14:23:02Z 8278 02:17:58 16.0330178119002  Gooby 1. | 
| 709 | 
            -
                        // points.push(new GLatLng(36.20012,-86.80442)); // (687 of 1207.0) 2005-04-30T14:23:16Z 8292 02:18:12 16.0584467096927  Gooby 1. | 
| 710 | 
            -
                        // points.push(new GLatLng(36.20014,-86.80493)); // (688 of 1207.0) 2005-04-30T14:23:31Z 8307 02:18:27 16.0869141406619  Gooby 1. | 
| 711 | 
            -
                        // points.push(new GLatLng(36.20008,-86.80521)); // (689 of 1207.0) 2005-04-30T14:23:40Z 8316 02:18:36 16.1030658715978  Gooby 1. | 
| 712 | 
            -
                        // points.push(new GLatLng(36.20002,-86.8056)); // (690 of 1207.0) 2005-04-30T14:23:53Z 8329 02:18:49 16.1252010179404  Gooby 1. | 
| 713 | 
            -
                        points.push(new GLatLng(36.19995,-86.80585)); // (691 of 1207.0) 2005-04-30T14:24:01Z 8337 02:18:57 16.1399544283349  Gooby 1. | 
| 714 | 
            -
                        // points.push(new GLatLng(36.19989,-86.80605)); // (692 of 1207.0) 2005-04-30T14:24:08Z 8344 02:19:04 16.1518505583565  Gooby 1. | 
| 715 | 
            -
                        // points.push(new GLatLng(36.19987,-86.8062)); // (693 of 1207.0) 2005-04-30T14:24:15Z 8351 02:19:11 16.160326880426  Gooby 1. | 
| 716 | 
            -
                        // points.push(new GLatLng(36.19978,-86.80641)); // (694 of 1207.0) 2005-04-30T14:24:27Z 8363 02:19:23 16.1735839221177  Gooby 1. | 
| 717 | 
            -
                        // points.push(new GLatLng(36.19963,-86.80676)); // (695 of 1207.0) 2005-04-30T14:24:38Z 8374 02:19:34 16.1956787903809  Gooby 1. | 
| 718 | 
            -
                        // points.push(new GLatLng(36.19941,-86.80721)); // (696 of 1207.0) 2005-04-30T14:24:52Z 8388 02:19:48 16.2250128810632  Gooby 1. | 
| 719 | 
            -
                        points.push(new GLatLng(36.19924,-86.80755)); // (697 of 1207.0) 2005-04-30T14:25:04Z 8400 02:20:00 16.2473128594226  Gooby 1. | 
| 720 | 
            -
                        // points.push(new GLatLng(36.19901,-86.80802)); // (698 of 1207.0) 2005-04-30T14:25:20Z 8416 02:20:16 16.2779588071856  Gooby 1. | 
| 721 | 
            -
                        // points.push(new GLatLng(36.19879,-86.80843)); // (699 of 1207.0) 2005-04-30T14:25:34Z 8430 02:20:30 16.3054099921924  Gooby 1. | 
| 722 | 
            -
                        // points.push(new GLatLng(36.19862,-86.80862)); // (700 of 1207.0) 2005-04-30T14:25:43Z 8439 02:20:39 16.3212267091409  Gooby 1. | 
| 723 | 
            -
                        // points.push(new GLatLng(36.19841,-86.80879)); // (701 of 1207.0) 2005-04-30T14:25:52Z 8448 02:20:48 16.3385572109516  Gooby 1. | 
| 724 | 
            -
                        // points.push(new GLatLng(36.19808,-86.80899)); // (702 of 1207.0) 2005-04-30T14:26:05Z 8461 02:21:01 16.3639376239194  Gooby 1. | 
| 725 | 
            -
                        points.push(new GLatLng(36.19772,-86.80905)); // (703 of 1207.0) 2005-04-30T14:26:18Z 8474 02:21:14 16.3890338964571  Gooby 1. | 
| 726 | 
            -
                        // points.push(new GLatLng(36.19733,-86.80905)); // (704 of 1207.0) 2005-04-30T14:26:32Z 8488 02:21:28 16.4159789853503  Gooby 1. | 
| 727 | 
            -
                        // points.push(new GLatLng(36.19699,-86.80892)); // (705 of 1207.0) 2005-04-30T14:26:45Z 8501 02:21:41 16.4405622946052  Gooby 1. | 
| 728 | 
            -
                        // points.push(new GLatLng(36.19669,-86.80884)); // (706 of 1207.0) 2005-04-30T14:26:56Z 8512 02:21:52 16.4617637494617  Gooby 1. | 
| 729 | 
            -
                        // points.push(new GLatLng(36.19626,-86.80869)); // (707 of 1207.0) 2005-04-30T14:27:12Z 8528 02:22:08 16.492627090225  Gooby 1. | 
| 730 | 
            -
                        // points.push(new GLatLng(36.19596,-86.80851)); // (708 of 1207.0) 2005-04-30T14:27:23Z 8539 02:22:19 16.5156559159421  Gooby 1. | 
| 731 | 
            -
                        points.push(new GLatLng(36.19577,-86.80847)); // (709 of 1207.0) 2005-04-30T14:27:30Z 8546 02:22:26 16.5289710970893  Gooby 1. | 
| 732 | 
            -
                        // points.push(new GLatLng(36.1956,-86.80841)); // (710 of 1207.0) 2005-04-30T14:27:37Z 8553 02:22:33 16.5411838738221  Gooby 1. | 
| 733 | 
            -
                        // points.push(new GLatLng(36.19529,-86.80821)); // (711 of 1207.0) 2005-04-30T14:27:50Z 8566 02:22:46 16.5653309108282  Gooby 1. | 
| 734 | 
            -
                        // points.push(new GLatLng(36.19506,-86.80794)); // (712 of 1207.0) 2005-04-30T14:28:03Z 8579 02:22:59 16.5872201776767  Gooby 1. | 
| 735 | 
            -
                        // points.push(new GLatLng(36.19491,-86.80774)); // (713 of 1207.0) 2005-04-30T14:28:11Z 8587 02:23:07 16.6024435669989  Gooby 1. | 
| 736 | 
            -
                        // points.push(new GLatLng(36.19472,-86.80753)); // (714 of 1207.0) 2005-04-30T14:28:21Z 8597 02:23:17 16.6200338293436  Gooby 1. | 
| 737 | 
            -
                        points.push(new GLatLng(36.19448,-86.80733)); // (715 of 1207.0) 2005-04-30T14:28:31Z 8607 02:23:27 16.6400163110113  Gooby 1. | 
| 738 | 
            -
                        // points.push(new GLatLng(36.19431,-86.80723)); // (716 of 1207.0) 2005-04-30T14:28:39Z 8615 02:23:35 16.653017876045  Gooby 1. | 
| 739 | 
            -
                        // points.push(new GLatLng(36.19403,-86.80706)); // (717 of 1207.0) 2005-04-30T14:28:50Z 8626 02:23:46 16.6745603290422  Gooby 1. | 
| 740 | 
            -
                        // points.push(new GLatLng(36.19369,-86.80678)); // (718 of 1207.0) 2005-04-30T14:29:05Z 8641 02:24:01 16.7027657213102  Gooby 1. | 
| 741 | 
            -
                        // points.push(new GLatLng(36.19366,-86.8065)); // (719 of 1207.0) 2005-04-30T14:29:13Z 8649 02:24:09 16.7185149779835  Gooby 1. | 
| 742 | 
            -
                        // points.push(new GLatLng(36.19366,-86.80615)); // (720 of 1207.0) 2005-04-30T14:29:23Z 8659 02:24:19 16.7380302116899  Gooby 1. | 
| 743 | 
            -
                        points.push(new GLatLng(36.19364,-86.80585)); // (721 of 1207.0) 2005-04-30T14:29:32Z 8668 02:24:28 16.7548144344133  Gooby 1. | 
| 744 | 
            -
                        // points.push(new GLatLng(36.1936,-86.80557)); // (722 of 1207.0) 2005-04-30T14:29:40Z 8676 02:24:36 16.7706693831151  Gooby 1. | 
| 745 | 
            -
                        // points.push(new GLatLng(36.19356,-86.8053)); // (723 of 1207.0) 2005-04-30T14:29:49Z 8685 02:24:45 16.7859756293347  Gooby 1. | 
| 746 | 
            -
                        // points.push(new GLatLng(36.19351,-86.80493)); // (724 of 1207.0) 2005-04-30T14:30:00Z 8696 02:24:56 16.8068930668837  Gooby 1. | 
| 747 | 
            -
                        // points.push(new GLatLng(36.19349,-86.80476)); // (725 of 1207.0) 2005-04-30T14:30:05Z 8701 02:25:01 16.8164720903506  Gooby 1. | 
| 748 | 
            -
                        // points.push(new GLatLng(36.19343,-86.80442)); // (726 of 1207.0) 2005-04-30T14:30:16Z 8712 02:25:12 16.835877631044  Gooby 1. | 
| 749 | 
            -
                        points.push(new GLatLng(36.19339,-86.80409)); // (727 of 1207.0) 2005-04-30T14:30:26Z 8722 02:25:22 16.8544839622949  Gooby 1. | 
| 750 | 
            -
                        // points.push(new GLatLng(36.19334,-86.80362)); // (728 of 1207.0) 2005-04-30T14:30:40Z 8736 02:25:36 16.8809166883412  Gooby 1. | 
| 751 | 
            -
                        // points.push(new GLatLng(36.19328,-86.80324)); // (729 of 1207.0) 2005-04-30T14:30:52Z 8748 02:25:48 16.9025062530571  Gooby 1. | 
| 752 | 
            -
                        // points.push(new GLatLng(36.19323,-86.80289)); // (730 of 1207.0) 2005-04-30T14:31:03Z 8759 02:25:59 16.9223249060157  Gooby 1. | 
| 753 | 
            -
                        // points.push(new GLatLng(36.19319,-86.80244)); // (731 of 1207.0) 2005-04-30T14:31:17Z 8773 02:26:13 16.9475675774256  Gooby 1. | 
| 754 | 
            -
                        // points.push(new GLatLng(36.19311,-86.80193)); // (732 of 1207.0) 2005-04-30T14:31:33Z 8789 02:26:29 16.976536249211  Gooby 1. | 
| 755 | 
            -
                        points.push(new GLatLng(36.19302,-86.80154)); // (733 of 1207.0) 2005-04-30T14:31:45Z 8801 02:26:41 16.9991533683063  Gooby 1. | 
| 756 | 
            -
                        points.push(new GLatLng(36.19293,-86.80122)); // (734 of 1207.0) 2005-04-30T14:31:55Z 8811 02:26:51 17.0180483481438 17.0 00:09:07 Gooby 1. | 
| 757 | 
            -
                        // points.push(new GLatLng(36.19281,-86.80096)); // (735 of 1207.0) 2005-04-30T14:32:04Z 8820 02:27:00 17.0347487128755  Gooby 1. | 
| 758 | 
            -
                        // points.push(new GLatLng(36.19272,-86.80077)); // (736 of 1207.0) 2005-04-30T14:32:11Z 8827 02:27:07 17.0470329344681  Gooby 1. | 
| 759 | 
            -
                        // points.push(new GLatLng(36.19257,-86.80045)); // (737 of 1207.0) 2005-04-30T14:32:23Z 8839 02:27:19 17.0676669983379  Gooby 1. | 
| 760 | 
            -
                        // points.push(new GLatLng(36.19238,-86.80012)); // (738 of 1207.0) 2005-04-30T14:32:35Z 8851 02:27:31 17.0902698824482  Gooby 1. | 
| 761 | 
            -
                        // points.push(new GLatLng(36.19223,-86.79993)); // (739 of 1207.0) 2005-04-30T14:32:43Z 8859 02:27:39 17.1050898861895  Gooby 1. | 
| 762 | 
            -
                        points.push(new GLatLng(36.1921,-86.7998)); // (740 of 1207.0) 2005-04-30T14:32:50Z 8866 02:27:46 17.1166318028822  Gooby 1. | 
| 763 | 
            -
                        // points.push(new GLatLng(36.19197,-86.79963)); // (741 of 1207.0) 2005-04-30T14:32:57Z 8873 02:27:53 17.12969024678  Gooby 1. | 
| 764 | 
            -
                        // points.push(new GLatLng(36.19186,-86.7995)); // (742 of 1207.0) 2005-04-30T14:33:03Z 8879 02:27:59 17.1401926229335  Gooby 1. | 
| 765 | 
            -
                        // points.push(new GLatLng(36.19184,-86.79948)); // (743 of 1207.0) 2005-04-30T14:33:04Z 8880 02:28:00 17.1419681284936  Gooby 1. | 
| 766 | 
            -
                        // points.push(new GLatLng(36.1916,-86.79929)); // (744 of 1207.0) 2005-04-30T14:33:15Z 8891 02:28:11 17.1616452080792  Gooby 1. | 
| 767 | 
            -
                        // points.push(new GLatLng(36.19139,-86.79912)); // (745 of 1207.0) 2005-04-30T14:33:26Z 8902 02:28:22 17.1789760110465  Gooby 1. | 
| 768 | 
            -
                        points.push(new GLatLng(36.19115,-86.79901)); // (746 of 1207.0) 2005-04-30T14:33:36Z 8912 02:28:32 17.1966556532756  Gooby 1. | 
| 769 | 
            -
                        // points.push(new GLatLng(36.19094,-86.7989)); // (747 of 1207.0) 2005-04-30T14:33:46Z 8922 02:28:42 17.2124077817844  Gooby 1. | 
| 770 | 
            -
                        // points.push(new GLatLng(36.19072,-86.79882)); // (748 of 1207.0) 2005-04-30T14:33:56Z 8932 02:28:52 17.22824867896  Gooby 1. | 
| 771 | 
            -
                        // points.push(new GLatLng(36.19051,-86.79871)); // (749 of 1207.0) 2005-04-30T14:34:06Z 8942 02:29:02 17.2440008074688  Gooby 1. | 
| 772 | 
            -
                        // points.push(new GLatLng(36.19038,-86.79867)); // (750 of 1207.0) 2005-04-30T14:34:12Z 8948 02:29:08 17.2532552238558  Gooby 1. | 
| 773 | 
            -
                        // points.push(new GLatLng(36.19025,-86.79862)); // (751 of 1207.0) 2005-04-30T14:34:21Z 8957 02:29:17 17.2626595704279  Gooby 1. | 
| 774 | 
            -
                        points.push(new GLatLng(36.19006,-86.79858)); // (752 of 1207.0) 2005-04-30T14:34:32Z 8968 02:29:28 17.2759747515751  Gooby 1. | 
| 775 | 
            -
                        // points.push(new GLatLng(36.18989,-86.79856)); // (753 of 1207.0) 2005-04-30T14:34:40Z 8976 02:29:36 17.2877729331363  Gooby 1. | 
| 776 | 
            -
                        // points.push(new GLatLng(36.18965,-86.79854)); // (754 of 1207.0) 2005-04-30T14:34:50Z 8986 02:29:46 17.3043920527636  Gooby 1. | 
| 777 | 
            -
                        // points.push(new GLatLng(36.18944,-86.79856)); // (755 of 1207.0) 2005-04-30T14:34:58Z 8994 02:29:54 17.3189438547275  Gooby 1. | 
| 778 | 
            -
                        // points.push(new GLatLng(36.18922,-86.79852)); // (756 of 1207.0) 2005-04-30T14:35:07Z 9003 02:30:03 17.3343064873467  Gooby 1. | 
| 779 | 
            -
                        // points.push(new GLatLng(36.18901,-86.79849)); // (757 of 1207.0) 2005-04-30T14:35:15Z 9011 02:30:11 17.3489113945513  Gooby 1. | 
| 780 | 
            -
                        points.push(new GLatLng(36.18881,-86.79847)); // (758 of 1207.0) 2005-04-30T14:35:23Z 9019 02:30:19 17.3627742700432  Gooby 1. | 
| 781 | 
            -
                        // points.push(new GLatLng(36.18862,-86.79843)); // (759 of 1207.0) 2005-04-30T14:35:31Z 9027 02:30:27 17.3760894511904  Gooby 1. | 
| 782 | 
            -
                        // points.push(new GLatLng(36.18845,-86.79843)); // (760 of 1207.0) 2005-04-30T14:35:38Z 9034 02:30:34 17.3878345757289  Gooby 1. | 
| 783 | 
            -
                        // points.push(new GLatLng(36.18819,-86.79843)); // (761 of 1207.0) 2005-04-30T14:35:48Z 9044 02:30:44 17.4057979037579  Gooby 1. | 
| 784 | 
            -
                        // points.push(new GLatLng(36.18798,-86.79837)); // (762 of 1207.0) 2005-04-30T14:35:56Z 9052 02:30:52 17.4206874749168  Gooby 1. | 
| 785 | 
            -
                        // points.push(new GLatLng(36.18761,-86.79837)); // (763 of 1207.0) 2005-04-30T14:36:11Z 9067 02:31:07 17.4462507971326  Gooby 1. | 
| 786 | 
            -
                        points.push(new GLatLng(36.18729,-86.79832)); // (764 of 1207.0) 2005-04-30T14:36:22Z 9078 02:31:18 17.4685346984836  Gooby 1. | 
| 787 | 
            -
                        // points.push(new GLatLng(36.18671,-86.79828)); // (765 of 1207.0) 2005-04-30T14:36:46Z 9102 02:31:42 17.5086689466487  Gooby 1. | 
| 788 | 
            -
                        // points.push(new GLatLng(36.18648,-86.79828)); // (766 of 1207.0) 2005-04-30T14:36:55Z 9111 02:31:51 17.5245596267101  Gooby 1. | 
| 789 | 
            -
                        // points.push(new GLatLng(36.18626,-86.79828)); // (767 of 1207.0) 2005-04-30T14:37:03Z 9119 02:31:59 17.5397593414298  Gooby 1. | 
| 790 | 
            -
                        // points.push(new GLatLng(36.18607,-86.79824)); // (768 of 1207.0) 2005-04-30T14:37:11Z 9127 02:32:07 17.553074522577  Gooby 1. | 
| 791 | 
            -
                        // points.push(new GLatLng(36.18583,-86.79821)); // (769 of 1207.0) 2005-04-30T14:37:20Z 9136 02:32:16 17.5697402656068  Gooby 1. | 
| 792 | 
            -
                        points.push(new GLatLng(36.18566,-86.79819)); // (770 of 1207.0) 2005-04-30T14:37:26Z 9142 02:32:22 17.5815382997082  Gooby 1. | 
| 793 | 
            -
                        // points.push(new GLatLng(36.18542,-86.79813)); // (771 of 1207.0) 2005-04-30T14:37:35Z 9151 02:32:31 17.598454164601  Gooby 1. | 
| 794 | 
            -
                        // points.push(new GLatLng(36.18525,-86.79811)); // (772 of 1207.0) 2005-04-30T14:37:42Z 9158 02:32:38 17.61025249362  Gooby 1. | 
| 795 | 
            -
                        // points.push(new GLatLng(36.18506,-86.79806)); // (773 of 1207.0) 2005-04-30T14:37:49Z 9165 02:32:45 17.6236725725971  Gooby 1. | 
| 796 | 
            -
                        // points.push(new GLatLng(36.18482,-86.79804)); // (774 of 1207.0) 2005-04-30T14:37:58Z 9174 02:32:54 17.6402916922244  Gooby 1. | 
| 797 | 
            -
                        // points.push(new GLatLng(36.18459,-86.79798)); // (775 of 1207.0) 2005-04-30T14:38:07Z 9183 02:33:03 17.6565306503174  Gooby 1. | 
| 798 | 
            -
                        points.push(new GLatLng(36.18439,-86.79794)); // (776 of 1207.0) 2005-04-30T14:38:15Z 9191 02:33:11 17.6705274118219  Gooby 1. | 
| 799 | 
            -
                        // points.push(new GLatLng(36.18418,-86.79791)); // (777 of 1207.0) 2005-04-30T14:38:23Z 9199 02:33:19 17.6851324381467  Gooby 1. | 
| 800 | 
            -
                        // points.push(new GLatLng(36.18394,-86.79785)); // (778 of 1207.0) 2005-04-30T14:38:32Z 9208 02:33:28 17.7020482001921  Gooby 1. | 
| 801 | 
            -
                        // points.push(new GLatLng(36.18373,-86.79779)); // (779 of 1207.0) 2005-04-30T14:38:41Z 9217 02:33:37 17.7169380050358  Gooby 1. | 
| 802 | 
            -
                        // points.push(new GLatLng(36.18343,-86.79776)); // (780 of 1207.0) 2005-04-30T14:38:52Z 9228 02:33:48 17.7377324856019  Gooby 1. | 
| 803 | 
            -
                        // points.push(new GLatLng(36.18324,-86.79776)); // (781 of 1207.0) 2005-04-30T14:39:00Z 9236 02:33:56 17.7508594949735  Gooby 1. | 
| 804 | 
            -
                        points.push(new GLatLng(36.18289,-86.7977)); // (782 of 1207.0) 2005-04-30T14:39:13Z 9249 02:34:09 17.7752714403913  Gooby 1. | 
| 805 | 
            -
                        // points.push(new GLatLng(36.18266,-86.79759)); // (783 of 1207.0) 2005-04-30T14:39:22Z 9258 02:34:18 17.7923049644598  Gooby 1. | 
| 806 | 
            -
                        // points.push(new GLatLng(36.18229,-86.79736)); // (784 of 1207.0) 2005-04-30T14:39:37Z 9273 02:34:33 17.8209054343531  Gooby 1. | 
| 807 | 
            -
                        // points.push(new GLatLng(36.1821,-86.79725)); // (785 of 1207.0) 2005-04-30T14:39:46Z 9282 02:34:42 17.8353951742887  Gooby 1. | 
| 808 | 
            -
                        // points.push(new GLatLng(36.18191,-86.79714)); // (786 of 1207.0) 2005-04-30T14:39:54Z 9290 02:34:50 17.8498849142244  Gooby 1. | 
| 809 | 
            -
                        // points.push(new GLatLng(36.18169,-86.79699)); // (787 of 1207.0) 2005-04-30T14:40:04Z 9300 02:35:00 17.8672343786845  Gooby 1. | 
| 810 | 
            -
                        points.push(new GLatLng(36.18135,-86.79678)); // (788 of 1207.0) 2005-04-30T14:40:19Z 9315 02:35:15 17.893482300257  Gooby 1. | 
| 811 | 
            -
                        // points.push(new GLatLng(36.18107,-86.79658)); // (789 of 1207.0) 2005-04-30T14:40:31Z 9327 02:35:27 17.9158123723313  Gooby 1. | 
| 812 | 
            -
                        // points.push(new GLatLng(36.18075,-86.79635)); // (790 of 1207.0) 2005-04-30T14:40:45Z 9341 02:35:41 17.9413723595689  Gooby 1. | 
| 813 | 
            -
                        // points.push(new GLatLng(36.1804,-86.79615)); // (791 of 1207.0) 2005-04-30T14:40:59Z 9355 02:35:55 17.9680020685611  Gooby 1. | 
| 814 | 
            -
                        // points.push(new GLatLng(36.18015,-86.79594)); // (792 of 1207.0) 2005-04-30T14:41:10Z 9366 02:36:06 17.9888704602738  Gooby 1. | 
| 815 | 
            -
                        points.push(new GLatLng(36.17987,-86.79575)); // (793 of 1207.0) 2005-04-30T14:41:21Z 9377 02:36:17 18.0109273432878 18.0 00:09:26 Gooby 1. | 
| 816 | 
            -
                        // points.push(new GLatLng(36.17954,-86.79555)); // (794 of 1207.0) 2005-04-30T14:41:35Z 9391 02:36:31 18.0363089215244  Gooby 1. | 
| 817 | 
            -
                        // points.push(new GLatLng(36.17933,-86.79538)); // (795 of 1207.0) 2005-04-30T14:41:44Z 9400 02:36:40 18.05364052755  Gooby 1. | 
| 818 | 
            -
                        // points.push(new GLatLng(36.17909,-86.79521)); // (796 of 1207.0) 2005-04-30T14:41:54Z 9410 02:36:50 18.0727410962118  Gooby 1. | 
| 819 | 
            -
                        // points.push(new GLatLng(36.17879,-86.79497)); // (797 of 1207.0) 2005-04-30T14:42:07Z 9423 02:37:03 18.0974139073736  Gooby 1. | 
| 820 | 
            -
                        // points.push(new GLatLng(36.17821,-86.79459)); // (798 of 1207.0) 2005-04-30T14:42:33Z 9449 02:37:29 18.1427446562012  Gooby 1. | 
| 821 | 
            -
                        points.push(new GLatLng(36.17819,-86.79457)); // (799 of 1207.0) 2005-04-30T14:42:34Z 9450 02:37:30 18.1445201617614  Gooby 1. | 
| 822 | 
            -
                        // points.push(new GLatLng(36.17783,-86.79435)); // (800 of 1207.0) 2005-04-30T14:42:48Z 9464 02:37:44 18.1722539433755  Gooby 1. | 
| 823 | 
            -
                        // points.push(new GLatLng(36.17733,-86.79403)); // (801 of 1207.0) 2005-04-30T14:43:09Z 9485 02:38:05 18.211136277547  Gooby 1. | 
| 824 | 
            -
                        // points.push(new GLatLng(36.17688,-86.79377)); // (802 of 1207.0) 2005-04-30T14:43:27Z 9503 02:38:23 18.245441797067  Gooby 1. | 
| 825 | 
            -
                        // points.push(new GLatLng(36.17658,-86.79356)); // (803 of 1207.0) 2005-04-30T14:43:41Z 9517 02:38:37 18.2692486770899  Gooby 1. | 
| 826 | 
            -
                        // points.push(new GLatLng(36.17613,-86.79324)); // (804 of 1207.0) 2005-04-30T14:44:00Z 9536 02:38:56 18.3050970900951  Gooby 1. | 
| 827 | 
            -
                        points.push(new GLatLng(36.17575,-86.79296)); // (805 of 1207.0) 2005-04-30T14:44:17Z 9553 02:39:13 18.3356442136377  Gooby 1. | 
| 828 | 
            -
                        // points.push(new GLatLng(36.17536,-86.79266)); // (806 of 1207.0) 2005-04-30T14:44:34Z 9570 02:39:30 18.3673611329138  Gooby 1. | 
| 829 | 
            -
                        // points.push(new GLatLng(36.17502,-86.79242)); // (807 of 1207.0) 2005-04-30T14:44:49Z 9585 02:39:45 18.3943974288327  Gooby 1. | 
| 830 | 
            -
                        // points.push(new GLatLng(36.17472,-86.79225)); // (808 of 1207.0) 2005-04-30T14:45:02Z 9598 02:39:58 18.4171898651764  Gooby 1. | 
| 831 | 
            -
                        // points.push(new GLatLng(36.17444,-86.79206)); // (809 of 1207.0) 2005-04-30T14:45:14Z 9610 02:40:10 18.439247142564  Gooby 1. | 
| 832 | 
            -
                        // points.push(new GLatLng(36.17412,-86.79186)); // (810 of 1207.0) 2005-04-30T14:45:27Z 9623 02:40:23 18.4640103967563  Gooby 1. | 
| 833 | 
            -
                        points.push(new GLatLng(36.17382,-86.79165)); // (811 of 1207.0) 2005-04-30T14:45:40Z 9636 02:40:36 18.4878175690871  Gooby 1. | 
| 834 | 
            -
                        // points.push(new GLatLng(36.17354,-86.79148)); // (812 of 1207.0) 2005-04-30T14:45:51Z 9647 02:40:47 18.5093612334347  Gooby 1. | 
| 835 | 
            -
                        // points.push(new GLatLng(36.17332,-86.79131)); // (813 of 1207.0) 2005-04-30T14:46:00Z 9656 02:40:56 18.5272756826245  Gooby 1. | 
| 836 | 
            -
                        // points.push(new GLatLng(36.17334,-86.79113)); // (814 of 1207.0) 2005-04-30T14:46:05Z 9661 02:41:01 18.5374093026727  Gooby 1. | 
| 837 | 
            -
                        // points.push(new GLatLng(36.17341,-86.79088)); // (815 of 1207.0) 2005-04-30T14:46:13Z 9669 02:41:09 18.5521671934087  Gooby 1. | 
| 838 | 
            -
                        // points.push(new GLatLng(36.17349,-86.79064)); // (816 of 1207.0) 2005-04-30T14:46:20Z 9676 02:41:16 18.5666487664561  Gooby 1. | 
| 839 | 
            -
                        points.push(new GLatLng(36.17358,-86.79025)); // (817 of 1207.0) 2005-04-30T14:46:32Z 9688 02:41:28 18.5892709618107  Gooby 1. | 
| 840 | 
            -
                        // points.push(new GLatLng(36.17367,-86.78982)); // (818 of 1207.0) 2005-04-30T14:46:45Z 9701 02:41:41 18.6140458053907  Gooby 1. | 
| 841 | 
            -
                        // points.push(new GLatLng(36.17382,-86.78931)); // (819 of 1207.0) 2005-04-30T14:47:01Z 9717 02:41:57 18.6443184932847  Gooby 1. | 
| 842 | 
            -
                        // points.push(new GLatLng(36.17388,-86.78914)); // (820 of 1207.0) 2005-04-30T14:47:07Z 9723 02:42:03 18.6546663382309  Gooby 1. | 
| 843 | 
            -
                        // points.push(new GLatLng(36.17394,-86.78903)); // (821 of 1207.0) 2005-04-30T14:47:11Z 9727 02:42:07 18.6620705856715  Gooby 1. | 
| 844 | 
            -
                        // points.push(new GLatLng(36.17394,-86.78888)); // (822 of 1207.0) 2005-04-30T14:47:15Z 9731 02:42:11 18.6704363795646  Gooby 1. | 
| 845 | 
            -
                        points.push(new GLatLng(36.17377,-86.78854)); // (823 of 1207.0) 2005-04-30T14:47:27Z 9743 02:42:23 18.6927416623538  Gooby 1. | 
| 846 | 
            -
                        // points.push(new GLatLng(36.17341,-86.78832)); // (824 of 1207.0) 2005-04-30T14:47:40Z 9756 02:42:36 18.7204758203467  Gooby 1. | 
| 847 | 
            -
                        // points.push(new GLatLng(36.17306,-86.78819)); // (825 of 1207.0) 2005-04-30T14:47:53Z 9769 02:42:49 18.7457208349565  Gooby 1. | 
| 848 | 
            -
                        // points.push(new GLatLng(36.17279,-86.78798)); // (826 of 1207.0) 2005-04-30T14:48:05Z 9781 02:43:01 18.7677471720279  Gooby 1. | 
| 849 | 
            -
                        // points.push(new GLatLng(36.17261,-86.78785)); // (827 of 1207.0) 2005-04-30T14:48:13Z 9789 02:43:09 18.7821425921662  Gooby 1. | 
| 850 | 
            -
                        // points.push(new GLatLng(36.17253,-86.78777)); // (828 of 1207.0) 2005-04-30T14:48:22Z 9798 02:43:18 18.7892455941988  Gooby 1. | 
| 851 | 
            -
                        points.push(new GLatLng(36.1724,-86.7877)); // (829 of 1207.0) 2005-04-30T14:48:34Z 9810 02:43:30 18.7990388941969  Gooby 1. | 
| 852 | 
            -
                        // points.push(new GLatLng(36.17225,-86.78757)); // (830 of 1207.0) 2005-04-30T14:48:45Z 9821 02:43:41 18.811686942919  Gooby 1. | 
| 853 | 
            -
                        // points.push(new GLatLng(36.17212,-86.78749)); // (831 of 1207.0) 2005-04-30T14:48:55Z 9831 02:43:51 18.8217158114233  Gooby 1. | 
| 854 | 
            -
                        // points.push(new GLatLng(36.17199,-86.78742)); // (832 of 1207.0) 2005-04-30T14:49:06Z 9842 02:44:02 18.8315092890663  Gooby 1. | 
| 855 | 
            -
                        // points.push(new GLatLng(36.17182,-86.78727)); // (833 of 1207.0) 2005-04-30T14:49:17Z 9853 02:44:13 18.8459294630206  Gooby 1. | 
| 856 | 
            -
                        // points.push(new GLatLng(36.17152,-86.78712)); // (834 of 1207.0) 2005-04-30T14:49:30Z 9866 02:44:26 18.8682811837082  Gooby 1. | 
| 857 | 
            -
                        points.push(new GLatLng(36.17118,-86.78693)); // (835 of 1207.0) 2005-04-30T14:49:43Z 9879 02:44:39 18.8940513768217  Gooby 1. | 
| 858 | 
            -
                        // points.push(new GLatLng(36.17081,-86.78671)); // (836 of 1207.0) 2005-04-30T14:49:58Z 9894 02:44:54 18.9224069948384  Gooby 1. | 
| 859 | 
            -
                        // points.push(new GLatLng(36.17049,-86.78648)); // (837 of 1207.0) 2005-04-30T14:50:12Z 9908 02:45:08 18.9479678669085  Gooby 1. | 
| 860 | 
            -
                        points.push(new GLatLng(36.1698,-86.78603)); // (838 of 1207.0) 2005-04-30T14:50:40Z 9936 02:45:36 19.0018432569713 19.0 00:09:19 Gooby 1. | 
| 861 | 
            -
                        // points.push(new GLatLng(36.16965,-86.78581)); // (839 of 1207.0) 2005-04-30T14:50:50Z 9946 02:45:46 19.0179044710507  Gooby 1. | 
| 862 | 
            -
                        // points.push(new GLatLng(36.1697,-86.78568)); // (840 of 1207.0) 2005-04-30T14:50:54Z 9950 02:45:50 19.0259360529087  Gooby 1. | 
| 863 | 
            -
                        // points.push(new GLatLng(36.16985,-86.78536)); // (841 of 1207.0) 2005-04-30T14:51:04Z 9960 02:46:00 19.0465745006552  Gooby 1. | 
| 864 | 
            -
                        // points.push(new GLatLng(36.16995,-86.78508)); // (842 of 1207.0) 2005-04-30T14:51:13Z 9969 02:46:09 19.0636512757288  Gooby 1. | 
| 865 | 
            -
                        // points.push(new GLatLng(36.17004,-86.78476)); // (843 of 1207.0) 2005-04-30T14:51:23Z 9979 02:46:19 19.0825513189863  Gooby 1. | 
| 866 | 
            -
                        points.push(new GLatLng(36.16982,-86.78446)); // (844 of 1207.0) 2005-04-30T14:51:35Z 9991 02:46:31 19.105156742967  Gooby 1. | 
| 867 | 
            -
                        // points.push(new GLatLng(36.16942,-86.78405)); // (845 of 1207.0) 2005-04-30T14:51:55Z 10011 02:46:51 19.1410270366096  Gooby 1. | 
| 868 | 
            -
                        // points.push(new GLatLng(36.1694,-86.78403)); // (846 of 1207.0) 2005-04-30T14:51:56Z 10012 02:46:52 19.1428045008085  Gooby 1. | 
| 869 | 
            -
                        // points.push(new GLatLng(36.1689,-86.78375)); // (847 of 1207.0) 2005-04-30T14:52:17Z 10033 02:47:13 19.1807155286881  Gooby 1. | 
| 870 | 
            -
                        // points.push(new GLatLng(36.16875,-86.78367)); // (848 of 1207.0) 2005-04-30T14:52:24Z 10040 02:47:20 19.1919987526319  Gooby 1. | 
| 871 | 
            -
                        // points.push(new GLatLng(36.16879,-86.78356)); // (849 of 1207.0) 2005-04-30T14:52:29Z 10045 02:47:25 19.1987276925835  Gooby 1. | 
| 872 | 
            -
                        points.push(new GLatLng(36.16882,-86.78349)); // (850 of 1207.0) 2005-04-30T14:52:31Z 10047 02:47:27 19.2031481935249  Gooby 1. | 
| 873 | 
            -
                        // points.push(new GLatLng(36.16877,-86.78337)); // (851 of 1207.0) 2005-04-30T14:52:35Z 10051 02:47:31 19.2106801017774  Gooby 1. | 
| 874 | 
            -
                        // points.push(new GLatLng(36.16871,-86.78326)); // (852 of 1207.0) 2005-04-30T14:52:39Z 10055 02:47:35 19.218084819135  Gooby 1. | 
| 875 | 
            -
                        // points.push(new GLatLng(36.16854,-86.78268)); // (853 of 1207.0) 2005-04-30T14:53:00Z 10076 02:47:56 19.2525006655316  Gooby 1. | 
| 876 | 
            -
                        // points.push(new GLatLng(36.16839,-86.78236)); // (854 of 1207.0) 2005-04-30T14:53:12Z 10088 02:48:08 19.2731393661656  Gooby 1. | 
| 877 | 
            -
                        // points.push(new GLatLng(36.16819,-86.78201)); // (855 of 1207.0) 2005-04-30T14:53:24Z 10100 02:48:20 19.2970564840674  Gooby 1. | 
| 878 | 
            -
                        points.push(new GLatLng(36.16789,-86.78165)); // (856 of 1207.0) 2005-04-30T14:53:40Z 10116 02:48:36 19.3259144410158  Gooby 1. | 
| 879 | 
            -
                        // points.push(new GLatLng(36.16766,-86.78137)); // (857 of 1207.0) 2005-04-30T14:53:52Z 10128 02:48:48 19.3481947507708  Gooby 1. | 
| 880 | 
            -
                        // points.push(new GLatLng(36.16731,-86.78109)); // (858 of 1207.0) 2005-04-30T14:54:07Z 10143 02:49:03 19.3769808773501  Gooby 1. | 
| 881 | 
            -
                        // points.push(new GLatLng(36.16704,-86.78083)); // (859 of 1207.0) 2005-04-30T14:54:21Z 10157 02:49:17 19.4006089228527  Gooby 1. | 
| 882 | 
            -
                        // points.push(new GLatLng(36.16712,-86.78053)); // (860 of 1207.0) 2005-04-30T14:54:29Z 10165 02:49:25 19.4182310034865  Gooby 1. | 
| 883 | 
            -
                        // points.push(new GLatLng(36.16699,-86.78019)); // (861 of 1207.0) 2005-04-30T14:54:40Z 10176 02:49:36 19.4392143757245  Gooby 1. | 
| 884 | 
            -
                        points.push(new GLatLng(36.16701,-86.77987)); // (862 of 1207.0) 2005-04-30T14:54:50Z 10186 02:49:46 19.4571162928081  Gooby 1. | 
| 885 | 
            -
                        // points.push(new GLatLng(36.16697,-86.77959)); // (863 of 1207.0) 2005-04-30T14:54:59Z 10195 02:49:55 19.4729762882363  Gooby 1. | 
| 886 | 
            -
                        // points.push(new GLatLng(36.16682,-86.77938)); // (864 of 1207.0) 2005-04-30T14:55:08Z 10204 02:50:04 19.4886158019249  Gooby 1. | 
| 887 | 
            -
                        // points.push(new GLatLng(36.16654,-86.77914)); // (865 of 1207.0) 2005-04-30T14:55:23Z 10219 02:50:19 19.512140834615  Gooby 1. | 
| 888 | 
            -
                        // points.push(new GLatLng(36.16616,-86.77886)); // (866 of 1207.0) 2005-04-30T14:55:41Z 10237 02:50:37 19.5426889263409  Gooby 1. | 
| 889 | 
            -
                        // points.push(new GLatLng(36.16575,-86.7786)); // (867 of 1207.0) 2005-04-30T14:56:00Z 10256 02:50:56 19.5745121905095  Gooby 1. | 
| 890 | 
            -
                        points.push(new GLatLng(36.16575,-86.77858)); // (868 of 1207.0) 2005-04-30T14:56:01Z 10257 02:50:57 19.5756282811114  Gooby 1. | 
| 891 | 
            -
                        // points.push(new GLatLng(36.16577,-86.77847)); // (869 of 1207.0) 2005-04-30T14:56:05Z 10261 02:51:01 19.5819175472128  Gooby 1. | 
| 892 | 
            -
                        // points.push(new GLatLng(36.16594,-86.77817)); // (870 of 1207.0) 2005-04-30T14:56:14Z 10270 02:51:10 19.6023614492778  Gooby 1. | 
| 893 | 
            -
                        // points.push(new GLatLng(36.16616,-86.77768)); // (871 of 1207.0) 2005-04-30T14:56:30Z 10286 02:51:26 19.6336345803568  Gooby 1. | 
| 894 | 
            -
                        // points.push(new GLatLng(36.16635,-86.77734)); // (872 of 1207.0) 2005-04-30T14:56:43Z 10299 02:51:39 19.6566988855766  Gooby 1. | 
| 895 | 
            -
                        // points.push(new GLatLng(36.16658,-86.77723)); // (873 of 1207.0) 2005-04-30T14:56:53Z 10309 02:51:49 19.6737328181866  Gooby 1. | 
| 896 | 
            -
                        points.push(new GLatLng(36.16701,-86.77719)); // (874 of 1207.0) 2005-04-30T14:57:08Z 10324 02:52:04 19.703525160868  Gooby 1. | 
| 897 | 
            -
                        // points.push(new GLatLng(36.16714,-86.77697)); // (875 of 1207.0) 2005-04-30T14:57:16Z 10332 02:52:12 19.7187319703979  Gooby 1. | 
| 898 | 
            -
                        // points.push(new GLatLng(36.16725,-86.77678)); // (876 of 1207.0) 2005-04-30T14:57:23Z 10339 02:52:19 19.7317729497915  Gooby 1. | 
| 899 | 
            -
                        // points.push(new GLatLng(36.16736,-86.77652)); // (877 of 1207.0) 2005-04-30T14:57:32Z 10348 02:52:28 19.7481454903477  Gooby 1. | 
| 900 | 
            -
                        // points.push(new GLatLng(36.16746,-86.77631)); // (878 of 1207.0) 2005-04-30T14:57:39Z 10355 02:52:35 19.7617443158491  Gooby 1. | 
| 901 | 
            -
                        // points.push(new GLatLng(36.16755,-86.77607)); // (879 of 1207.0) 2005-04-30T14:57:47Z 10363 02:52:43 19.776504210508  Gooby 1. | 
| 902 | 
            -
                        points.push(new GLatLng(36.16764,-86.77586)); // (880 of 1207.0) 2005-04-30T14:57:55Z 10371 02:52:51 19.7897651885709  Gooby 1. | 
| 903 | 
            -
                        // points.push(new GLatLng(36.16774,-86.7756)); // (881 of 1207.0) 2005-04-30T14:58:04Z 10380 02:53:00 19.8058286772033  Gooby 1. | 
| 904 | 
            -
                        // points.push(new GLatLng(36.16785,-86.77534)); // (882 of 1207.0) 2005-04-30T14:58:13Z 10389 02:53:09 19.8222012177596  Gooby 1. | 
| 905 | 
            -
                        // points.push(new GLatLng(36.16796,-86.7751)); // (883 of 1207.0) 2005-04-30T14:58:21Z 10397 02:53:17 19.8375943962457  Gooby 1. | 
| 906 | 
            -
                        // points.push(new GLatLng(36.16807,-86.77487)); // (884 of 1207.0) 2005-04-30T14:58:29Z 10405 02:53:25 19.8525049843597  Gooby 1. | 
| 907 | 
            -
                        // points.push(new GLatLng(36.16824,-86.77446)); // (885 of 1207.0) 2005-04-30T14:58:43Z 10419 02:53:39 19.8782128578858  Gooby 1. | 
| 908 | 
            -
                        points.push(new GLatLng(36.16839,-86.77414)); // (886 of 1207.0) 2005-04-30T14:58:54Z 10430 02:53:50 19.8988516428149  Gooby 1. | 
| 909 | 
            -
                        // points.push(new GLatLng(36.16854,-86.77373)); // (887 of 1207.0) 2005-04-30T14:59:08Z 10444 02:54:04 19.9239582423385  Gooby 1. | 
| 910 | 
            -
                        // points.push(new GLatLng(36.16869,-86.77335)); // (888 of 1207.0) 2005-04-30T14:59:21Z 10457 02:54:17 19.9475508449608  Gooby 1. | 
| 911 | 
            -
                        // points.push(new GLatLng(36.16877,-86.77309)); // (889 of 1207.0) 2005-04-30T14:59:29Z 10465 02:54:25 19.963069978176  Gooby 1. | 
| 912 | 
            -
                        // points.push(new GLatLng(36.1689,-86.77279)); // (890 of 1207.0) 2005-04-30T14:59:39Z 10475 02:54:35 19.9820607489212  Gooby 1. | 
| 913 | 
            -
                        points.push(new GLatLng(36.16903,-86.77244)); // (891 of 1207.0) 2005-04-30T14:59:51Z 10487 02:54:47 20.0035491062528 20.0 00:09:11 Gooby 1. | 
| 914 | 
            -
                        // points.push(new GLatLng(36.16914,-86.77217)); // (892 of 1207.0) 2005-04-30T15:00:00Z 10496 02:54:56 20.0204173889053  Gooby 1. | 
| 915 | 
            -
                        // points.push(new GLatLng(36.16929,-86.77178)); // (893 of 1207.0) 2005-04-30T15:00:13Z 10509 02:55:09 20.0445120622748  Gooby 1. | 
| 916 | 
            -
                        // points.push(new GLatLng(36.16942,-86.77146)); // (894 of 1207.0) 2005-04-30T15:00:24Z 10520 02:55:20 20.0644924543076  Gooby 1. | 
| 917 | 
            -
                        // points.push(new GLatLng(36.16952,-86.77111)); // (895 of 1207.0) 2005-04-30T15:00:36Z 10532 02:55:32 20.08520016175  Gooby 1. | 
| 918 | 
            -
                        // points.push(new GLatLng(36.16965,-86.77079)); // (896 of 1207.0) 2005-04-30T15:00:47Z 10543 02:55:43 20.1051806408553  Gooby 1. | 
| 919 | 
            -
                        points.push(new GLatLng(36.1698,-86.77045)); // (897 of 1207.0) 2005-04-30T15:00:59Z 10555 02:55:55 20.1267910664208  Gooby 1. | 
| 920 | 
            -
                        // points.push(new GLatLng(36.16987,-86.77019)); // (898 of 1207.0) 2005-04-30T15:01:08Z 10564 02:56:04 20.1420775225726  Gooby 1. | 
| 921 | 
            -
                        // points.push(new GLatLng(36.16989,-86.77015)); // (899 of 1207.0) 2005-04-30T15:01:10Z 10566 02:56:06 20.1447016253138  Gooby 1. | 
| 922 | 
            -
                        // points.push(new GLatLng(36.16997,-86.76989)); // (900 of 1207.0) 2005-04-30T15:01:19Z 10575 02:56:15 20.1602206464253  Gooby 1. | 
| 923 | 
            -
                        // points.push(new GLatLng(36.17008,-86.76963)); // (901 of 1207.0) 2005-04-30T15:01:28Z 10584 02:56:24 20.1765925494092  Gooby 1. | 
| 924 | 
            -
                        // points.push(new GLatLng(36.17015,-86.76942)); // (902 of 1207.0) 2005-04-30T15:01:35Z 10591 02:56:31 20.1892645093259  Gooby 1. | 
| 925 | 
            -
                        points.push(new GLatLng(36.17021,-86.76918)); // (903 of 1207.0) 2005-04-30T15:01:43Z 10599 02:56:39 20.2032775441899  Gooby 1. | 
| 926 | 
            -
                        // points.push(new GLatLng(36.1703,-86.76897)); // (904 of 1207.0) 2005-04-30T15:01:51Z 10607 02:56:47 20.2165383910593  Gooby 1. | 
| 927 | 
            -
                        // points.push(new GLatLng(36.17038,-86.76869)); // (905 of 1207.0) 2005-04-30T15:02:00Z 10616 02:56:56 20.2331043511765  Gooby 1. | 
| 928 | 
            -
                        // points.push(new GLatLng(36.17051,-86.76832)); // (906 of 1207.0) 2005-04-30T15:02:12Z 10628 02:57:08 20.2556105851194  Gooby 1. | 
| 929 | 
            -
                        // points.push(new GLatLng(36.17066,-86.76802)); // (907 of 1207.0) 2005-04-30T15:02:22Z 10638 02:57:18 20.2752921733461  Gooby 1. | 
| 930 | 
            -
                        // points.push(new GLatLng(36.17096,-86.76734)); // (908 of 1207.0) 2005-04-30T15:02:47Z 10663 02:57:43 20.3185124609388  Gooby 1. | 
| 931 | 
            -
                        points.push(new GLatLng(36.17109,-86.76695)); // (909 of 1207.0) 2005-04-30T15:03:01Z 10677 02:57:57 20.3420455531225  Gooby 1. | 
| 932 | 
            -
                        // points.push(new GLatLng(36.17113,-86.76672)); // (910 of 1207.0) 2005-04-30T15:03:09Z 10685 02:58:05 20.3551677904821  Gooby 1. | 
| 933 | 
            -
                        // points.push(new GLatLng(36.1712,-86.76648)); // (911 of 1207.0) 2005-04-30T15:03:17Z 10693 02:58:13 20.3694003447616  Gooby 1. | 
| 934 | 
            -
                        // points.push(new GLatLng(36.17128,-86.7662)); // (912 of 1207.0) 2005-04-30T15:03:27Z 10703 02:58:23 20.3859661998592  Gooby 1. | 
| 935 | 
            -
                        // points.push(new GLatLng(36.17139,-86.7659)); // (913 of 1207.0) 2005-04-30T15:03:38Z 10714 02:58:34 20.4043434411904  Gooby 1. | 
| 936 | 
            -
                        // points.push(new GLatLng(36.17148,-86.76566)); // (914 of 1207.0) 2005-04-30T15:03:46Z 10722 02:58:42 20.4191027464885  Gooby 1. | 
| 937 | 
            -
                        points.push(new GLatLng(36.17154,-86.76545)); // (915 of 1207.0) 2005-04-30T15:03:54Z 10730 02:58:50 20.4315269452735  Gooby 1. | 
| 938 | 
            -
                        // points.push(new GLatLng(36.17163,-86.76526)); // (916 of 1207.0) 2005-04-30T15:04:01Z 10737 02:58:57 20.4438132910492  Gooby 1. | 
| 939 | 
            -
                        // points.push(new GLatLng(36.17173,-86.76498)); // (917 of 1207.0) 2005-04-30T15:04:11Z 10747 02:59:07 20.4608897604864  Gooby 1. | 
| 940 | 
            -
                        // points.push(new GLatLng(36.17176,-86.76489)); // (918 of 1207.0) 2005-04-30T15:04:14Z 10750 02:59:10 20.4663204304687  Gooby 1. | 
| 941 | 
            -
                        // points.push(new GLatLng(36.17163,-86.76463)); // (919 of 1207.0) 2005-04-30T15:04:24Z 10760 02:59:20 20.4833776337681  Gooby 1. | 
| 942 | 
            -
                        // points.push(new GLatLng(36.17124,-86.76442)); // (920 of 1207.0) 2005-04-30T15:04:40Z 10776 02:59:36 20.5127581259118  Gooby 1. | 
| 943 | 
            -
                        points.push(new GLatLng(36.17094,-86.76423)); // (921 of 1207.0) 2005-04-30T15:04:53Z 10789 02:59:49 20.5360369378377  Gooby 1. | 
| 944 | 
            -
                        // points.push(new GLatLng(36.17066,-86.7641)); // (922 of 1207.0) 2005-04-30T15:05:04Z 10800 03:00:00 20.5566961962942  Gooby 1. | 
| 945 | 
            -
                        // points.push(new GLatLng(36.17055,-86.76401)); // (923 of 1207.0) 2005-04-30T15:05:11Z 10807 03:00:07 20.5658037544828  Gooby 1. | 
| 946 | 
            -
                        // points.push(new GLatLng(36.17047,-86.76397)); // (924 of 1207.0) 2005-04-30T15:05:14Z 10810 03:00:10 20.57176409139  Gooby 1. | 
| 947 | 
            -
                        // points.push(new GLatLng(36.17028,-86.76388)); // (925 of 1207.0) 2005-04-30T15:05:22Z 10818 03:00:18 20.5858181604819  Gooby 1. | 
| 948 | 
            -
                        // points.push(new GLatLng(36.17019,-86.76384)); // (926 of 1207.0) 2005-04-30T15:05:29Z 10825 03:00:25 20.5924242025659  Gooby 1. | 
| 949 | 
            -
                        points.push(new GLatLng(36.16995,-86.76367)); // (927 of 1207.0) 2005-04-30T15:05:43Z 10839 03:00:39 20.6115253177207  Gooby 1. | 
| 950 | 
            -
                        // points.push(new GLatLng(36.16961,-86.76345)); // (928 of 1207.0) 2005-04-30T15:05:58Z 10854 03:00:54 20.6380275876057  Gooby 1. | 
| 951 | 
            -
                        // points.push(new GLatLng(36.1692,-86.7632)); // (929 of 1207.0) 2005-04-30T15:06:14Z 10870 03:01:10 20.6696003014603  Gooby 1. | 
| 952 | 
            -
                        // points.push(new GLatLng(36.16873,-86.7629)); // (930 of 1207.0) 2005-04-30T15:06:33Z 10889 03:01:29 20.7061301117306  Gooby 1. | 
| 953 | 
            -
                        // points.push(new GLatLng(36.16826,-86.7626)); // (931 of 1207.0) 2005-04-30T15:06:52Z 10908 03:01:48 20.742659922001  Gooby 1. | 
| 954 | 
            -
                        // points.push(new GLatLng(36.16783,-86.76234)); // (932 of 1207.0) 2005-04-30T15:07:10Z 10926 03:02:06 20.7757190889768  Gooby 1. | 
| 955 | 
            -
                        points.push(new GLatLng(36.16751,-86.76217)); // (933 of 1207.0) 2005-04-30T15:07:24Z 10940 03:02:20 20.7997754634726  Gooby 1. | 
| 956 | 
            -
                        // points.push(new GLatLng(36.16708,-86.76195)); // (934 of 1207.0) 2005-04-30T15:07:41Z 10957 03:02:37 20.8319185740389  Gooby 1. | 
| 957 | 
            -
                        // points.push(new GLatLng(36.16665,-86.76174)); // (935 of 1207.0) 2005-04-30T15:07:59Z 10975 03:02:55 20.8638528413643  Gooby 1. | 
| 958 | 
            -
                        // points.push(new GLatLng(36.16626,-86.76152)); // (936 of 1207.0) 2005-04-30T15:08:15Z 10991 03:03:11 20.8934604897567  Gooby 1. | 
| 959 | 
            -
                        // points.push(new GLatLng(36.16579,-86.76122)); // (937 of 1207.0) 2005-04-30T15:08:36Z 11012 03:03:32 20.9299905857782  Gooby 1. | 
| 960 | 
            -
                        // points.push(new GLatLng(36.16545,-86.76103)); // (938 of 1207.0) 2005-04-30T15:08:53Z 11029 03:03:49 20.9557610489303  Gooby 1. | 
| 961 | 
            -
                        points.push(new GLatLng(36.16513,-86.76084)); // (939 of 1207.0) 2005-04-30T15:09:07Z 11043 03:04:03 20.98027859622  Gooby 1. | 
| 962 | 
            -
                        // points.push(new GLatLng(36.16489,-86.76071)); // (940 of 1207.0) 2005-04-30T15:09:17Z 11053 03:04:13 20.9983762371467  Gooby 1. | 
| 963 | 
            -
                        points.push(new GLatLng(36.16463,-86.76058)); // (941 of 1207.0) 2005-04-30T15:09:28Z 11064 03:04:24 21.0177478597304 21.0 00:09:37 Gooby 1. | 
| 964 | 
            -
                        // points.push(new GLatLng(36.16433,-86.76041)); // (942 of 1207.0) 2005-04-30T15:09:41Z 11077 03:04:37 21.0405408303776  Gooby 1. | 
| 965 | 
            -
                        // points.push(new GLatLng(36.16414,-86.7603)); // (943 of 1207.0) 2005-04-30T15:09:49Z 11085 03:04:45 21.0550311706381  Gooby 1. | 
| 966 | 
            -
                        // points.push(new GLatLng(36.16397,-86.76021)); // (944 of 1207.0) 2005-04-30T15:09:56Z 11092 03:04:52 21.0678044580733  Gooby 1. | 
| 967 | 
            -
                        // points.push(new GLatLng(36.16362,-86.76)); // (945 of 1207.0) 2005-04-30T15:10:10Z 11106 03:05:06 21.0946736391464  Gooby 1. | 
| 968 | 
            -
                        // points.push(new GLatLng(36.16328,-86.75981)); // (946 of 1207.0) 2005-04-30T15:10:24Z 11120 03:05:20 21.1204442373167  Gooby 1. | 
| 969 | 
            -
                        points.push(new GLatLng(36.16298,-86.75963)); // (947 of 1207.0) 2005-04-30T15:10:37Z 11133 03:05:33 21.1434750271579  Gooby 1. | 
| 970 | 
            -
                        // points.push(new GLatLng(36.16279,-86.75953)); // (948 of 1207.0) 2005-04-30T15:10:45Z 11141 03:05:41 21.1577381079747  Gooby 1. | 
| 971 | 
            -
                        // points.push(new GLatLng(36.16251,-86.75931)); // (949 of 1207.0) 2005-04-30T15:10:58Z 11154 03:05:54 21.1806471833954  Gooby 1. | 
| 972 | 
            -
                        // points.push(new GLatLng(36.16216,-86.75914)); // (950 of 1207.0) 2005-04-30T15:11:12Z 11168 03:06:08 21.2066213943101  Gooby 1. | 
| 973 | 
            -
                        // points.push(new GLatLng(36.16184,-86.75893)); // (951 of 1207.0) 2005-04-30T15:11:27Z 11183 03:06:23 21.2316416431349  Gooby 1. | 
| 974 | 
            -
                        // points.push(new GLatLng(36.16154,-86.75873)); // (952 of 1207.0) 2005-04-30T15:11:41Z 11197 03:06:37 21.2551802053288  Gooby 1. | 
| 975 | 
            -
                        points.push(new GLatLng(36.16124,-86.75854)); // (953 of 1207.0) 2005-04-30T15:11:54Z 11210 03:06:50 21.2784596151284  Gooby 1. | 
| 976 | 
            -
                        // points.push(new GLatLng(36.16109,-86.75839)); // (954 of 1207.0) 2005-04-30T15:12:01Z 11217 03:06:57 21.2917791073195  Gooby 1. | 
| 977 | 
            -
                        // points.push(new GLatLng(36.16109,-86.75826)); // (955 of 1207.0) 2005-04-30T15:12:05Z 11221 03:07:01 21.299030458031  Gooby 1. | 
| 978 | 
            -
                        // points.push(new GLatLng(36.16109,-86.75802)); // (956 of 1207.0) 2005-04-30T15:12:12Z 11228 03:07:08 21.3124176985311  Gooby 1. | 
| 979 | 
            -
                        // points.push(new GLatLng(36.16113,-86.75772)); // (957 of 1207.0) 2005-04-30T15:12:22Z 11238 03:07:18 21.3293785505935  Gooby 1. | 
| 980 | 
            -
                        // points.push(new GLatLng(36.1612,-86.75736)); // (958 of 1207.0) 2005-04-30T15:12:34Z 11250 03:07:30 21.3500336822768  Gooby 1. | 
| 981 | 
            -
                        points.push(new GLatLng(36.16128,-86.75691)); // (959 of 1207.0) 2005-04-30T15:12:48Z 11264 03:07:44 21.3757362767146  Gooby 1. | 
| 982 | 
            -
                        // points.push(new GLatLng(36.16133,-86.7565)); // (960 of 1207.0) 2005-04-30T15:13:00Z 11276 03:07:56 21.3988655866287  Gooby 1. | 
| 983 | 
            -
                        // points.push(new GLatLng(36.16135,-86.75614)); // (961 of 1207.0) 2005-04-30T15:13:11Z 11287 03:08:07 21.4189939765194  Gooby 1. | 
| 984 | 
            -
                        // points.push(new GLatLng(36.16137,-86.75592)); // (962 of 1207.0) 2005-04-30T15:13:18Z 11294 03:08:14 21.4313433143993  Gooby 1. | 
| 985 | 
            -
                        // points.push(new GLatLng(36.16156,-86.75556)); // (963 of 1207.0) 2005-04-30T15:13:30Z 11306 03:08:26 21.4553342229455  Gooby 1. | 
| 986 | 
            -
                        // points.push(new GLatLng(36.16148,-86.75519)); // (964 of 1207.0) 2005-04-30T15:13:41Z 11317 03:08:37 21.4767001403485  Gooby 1. | 
| 987 | 
            -
                        points.push(new GLatLng(36.1615,-86.75491)); // (965 of 1207.0) 2005-04-30T15:13:50Z 11326 03:08:46 21.492379649449  Gooby 1. | 
| 988 | 
            -
                        // points.push(new GLatLng(36.16152,-86.75468)); // (966 of 1207.0) 2005-04-30T15:13:57Z 11333 03:08:53 21.5052831630779  Gooby 1. | 
| 989 | 
            -
                        // points.push(new GLatLng(36.16156,-86.75431)); // (967 of 1207.0) 2005-04-30T15:14:09Z 11345 03:09:05 21.5261060699207  Gooby 1. | 
| 990 | 
            -
                        // points.push(new GLatLng(36.16161,-86.75397)); // (968 of 1207.0) 2005-04-30T15:14:20Z 11356 03:09:16 21.5453834331513  Gooby 1. | 
| 991 | 
            -
                        // points.push(new GLatLng(36.16165,-86.75369)); // (969 of 1207.0) 2005-04-30T15:14:29Z 11365 03:09:25 21.5612444157946  Gooby 1. | 
| 992 | 
            -
                        // points.push(new GLatLng(36.16169,-86.75341)); // (970 of 1207.0) 2005-04-30T15:14:38Z 11374 03:09:34 21.5771055081246  Gooby 1. | 
| 993 | 
            -
                        points.push(new GLatLng(36.16174,-86.75315)); // (971 of 1207.0) 2005-04-30T15:14:46Z 11382 03:09:42 21.5920139958764  Gooby 1. | 
| 994 | 
            -
                        // points.push(new GLatLng(36.1618,-86.7529)); // (972 of 1207.0) 2005-04-30T15:14:55Z 11391 03:09:51 21.6065619715653  Gooby 1. | 
| 995 | 
            -
                        // points.push(new GLatLng(36.16184,-86.75264)); // (973 of 1207.0) 2005-04-30T15:15:03Z 11399 03:09:59 21.6213257554159  Gooby 1. | 
| 996 | 
            -
                        // points.push(new GLatLng(36.16191,-86.75234)); // (974 of 1207.0) 2005-04-30T15:15:13Z 11409 03:10:09 21.6387444730983  Gooby 1. | 
| 997 | 
            -
                        // points.push(new GLatLng(36.16199,-86.752)); // (975 of 1207.0) 2005-04-30T15:15:24Z 11420 03:10:20 21.6584985880562  Gooby 1. | 
| 998 | 
            -
                        // points.push(new GLatLng(36.16206,-86.75167)); // (976 of 1207.0) 2005-04-30T15:15:35Z 11431 03:10:31 21.6775305386923  Gooby 1. | 
| 999 | 
            -
                        points.push(new GLatLng(36.1621,-86.75133)); // (977 of 1207.0) 2005-04-30T15:15:47Z 11443 03:10:43 21.6966958490654  Gooby 1. | 
| 1000 | 
            -
                        // points.push(new GLatLng(36.16216,-86.75105)); // (978 of 1207.0) 2005-04-30T15:15:56Z 11452 03:10:52 21.7128549028031  Gooby 1. | 
| 1001 | 
            -
                        // points.push(new GLatLng(36.16223,-86.75081)); // (979 of 1207.0) 2005-04-30T15:16:04Z 11460 03:11:00 21.7270889238523  Gooby 1. | 
| 1002 | 
            -
                        // points.push(new GLatLng(36.16229,-86.75049)); // (980 of 1207.0) 2005-04-30T15:16:15Z 11471 03:11:11 21.7454135488345  Gooby 1. | 
| 1003 | 
            -
                        // points.push(new GLatLng(36.16238,-86.75017)); // (981 of 1207.0) 2005-04-30T15:16:26Z 11482 03:11:22 21.7643150648322  Gooby 1. | 
| 1004 | 
            -
                        // points.push(new GLatLng(36.16244,-86.74985)); // (982 of 1207.0) 2005-04-30T15:16:37Z 11493 03:11:33 21.7826394999328  Gooby 1. | 
| 1005 | 
            -
                        points.push(new GLatLng(36.16251,-86.74948)); // (983 of 1207.0) 2005-04-30T15:16:49Z 11505 03:11:45 21.8038370156458  Gooby 1. | 
| 1006 | 
            -
                        // points.push(new GLatLng(36.16257,-86.74912)); // (984 of 1207.0) 2005-04-30T15:17:02Z 11518 03:11:58 21.8243409941055  Gooby 1. | 
| 1007 | 
            -
                        // points.push(new GLatLng(36.16257,-86.7491)); // (985 of 1207.0) 2005-04-30T15:17:03Z 11519 03:11:59 21.8254570847074  Gooby 1. | 
| 1008 | 
            -
                        // points.push(new GLatLng(36.16259,-86.74901)); // (986 of 1207.0) 2005-04-30T15:17:09Z 11525 03:12:05 21.8306640227468  Gooby 1. | 
| 1009 | 
            -
                        // points.push(new GLatLng(36.16264,-86.74884)); // (987 of 1207.0) 2005-04-30T15:17:18Z 11534 03:12:14 21.8407561829539  Gooby 1. | 
| 1010 | 
            -
                        // points.push(new GLatLng(36.16264,-86.74867)); // (988 of 1207.0) 2005-04-30T15:17:24Z 11540 03:12:20 21.8502386425066  Gooby 1. | 
| 1011 | 
            -
                        points.push(new GLatLng(36.16268,-86.74841)); // (989 of 1207.0) 2005-04-30T15:17:33Z 11549 03:12:29 21.8650024263572  Gooby 1. | 
| 1012 | 
            -
                        // points.push(new GLatLng(36.16279,-86.74805)); // (990 of 1207.0) 2005-04-30T15:17:45Z 11561 03:12:41 21.8864731266601  Gooby 1. | 
| 1013 | 
            -
                        // points.push(new GLatLng(36.16285,-86.7477)); // (991 of 1207.0) 2005-04-30T15:17:56Z 11572 03:12:52 21.9064312156409  Gooby 1. | 
| 1014 | 
            -
                        // points.push(new GLatLng(36.16294,-86.74736)); // (992 of 1207.0) 2005-04-30T15:18:07Z 11583 03:13:03 21.9263894789609  Gooby 1. | 
| 1015 | 
            -
                        // points.push(new GLatLng(36.163,-86.7471)); // (993 of 1207.0) 2005-04-30T15:18:15Z 11591 03:13:11 21.9414729162808  Gooby 1. | 
| 1016 | 
            -
                        // points.push(new GLatLng(36.16304,-86.7468)); // (994 of 1207.0) 2005-04-30T15:18:25Z 11601 03:13:21 21.9584333580414  Gooby 1. | 
| 1017 | 
            -
                        points.push(new GLatLng(36.16313,-86.74652)); // (995 of 1207.0) 2005-04-30T15:18:34Z 11610 03:13:30 21.975243784686  Gooby 1. | 
| 1018 | 
            -
                        // points.push(new GLatLng(36.16319,-86.74612)); // (996 of 1207.0) 2005-04-30T15:18:47Z 11623 03:13:43 21.9979372350954  Gooby 1. | 
| 1019 | 
            -
                        points.push(new GLatLng(36.16326,-86.74571)); // (997 of 1207.0) 2005-04-30T15:19:00Z 11636 03:13:56 22.0213124798681 22.0 00:09:32 Gooby 1. | 
| 1020 | 
            -
                        // points.push(new GLatLng(36.16324,-86.74536)); // (998 of 1207.0) 2005-04-30T15:19:11Z 11647 03:14:07 22.0408840629727  Gooby 1. | 
| 1021 | 
            -
                        // points.push(new GLatLng(36.16319,-86.74519)); // (999 of 1207.0) 2005-04-30T15:19:17Z 11653 03:14:13 22.0509762231798  Gooby 1. | 
| 1022 | 
            -
                        // points.push(new GLatLng(36.16313,-86.74496)); // (1000 of 1207.0) 2005-04-30T15:19:25Z 11661 03:14:21 22.0644583845806  Gooby 1. | 
| 1023 | 
            -
                        // points.push(new GLatLng(36.16311,-86.74464)); // (1001 of 1207.0) 2005-04-30T15:19:36Z 11672 03:14:32 22.082361176282  Gooby 1. | 
| 1024 | 
            -
                        // points.push(new GLatLng(36.16319,-86.74429)); // (1002 of 1207.0) 2005-04-30T15:19:47Z 11683 03:14:43 22.1026512370525  Gooby 1. | 
| 1025 | 
            -
                        points.push(new GLatLng(36.16337,-86.74393)); // (1003 of 1207.0) 2005-04-30T15:20:01Z 11697 03:14:57 22.1262707398663  Gooby 1. | 
| 1026 | 
            -
                        // points.push(new GLatLng(36.16345,-86.74358)); // (1004 of 1207.0) 2005-04-30T15:20:12Z 11708 03:15:08 22.1465606291486  Gooby 1. | 
| 1027 | 
            -
                        // points.push(new GLatLng(36.16354,-86.7433)); // (1005 of 1207.0) 2005-04-30T15:20:22Z 11718 03:15:18 22.1633710557932  Gooby 1. | 
| 1028 | 
            -
                        // points.push(new GLatLng(36.1636,-86.74298)); // (1006 of 1207.0) 2005-04-30T15:20:32Z 11728 03:15:28 22.1816953010101  Gooby 1. | 
| 1029 | 
            -
                        // points.push(new GLatLng(36.16364,-86.74266)); // (1007 of 1207.0) 2005-04-30T15:20:43Z 11739 03:15:39 22.1997569531218  Gooby 1. | 
| 1030 | 
            -
                        // points.push(new GLatLng(36.16371,-86.74225)); // (1008 of 1207.0) 2005-04-30T15:20:56Z 11752 03:15:52 22.2231319746128  Gooby 1. | 
| 1031 | 
            -
                        points.push(new GLatLng(36.16371,-86.74206)); // (1009 of 1207.0) 2005-04-30T15:21:02Z 11758 03:15:58 22.2337301579419  Gooby 1. | 
| 1032 | 
            -
                        // points.push(new GLatLng(36.16377,-86.7418)); // (1010 of 1207.0) 2005-04-30T15:21:11Z 11767 03:16:07 22.2488134799199  Gooby 1. | 
| 1033 | 
            -
                        // points.push(new GLatLng(36.16382,-86.74152)); // (1011 of 1207.0) 2005-04-30T15:21:20Z 11776 03:16:16 22.2648089175629  Gooby 1. | 
| 1034 | 
            -
                        // points.push(new GLatLng(36.16388,-86.74131)); // (1012 of 1207.0) 2005-04-30T15:21:27Z 11783 03:16:23 22.2772343765436  Gooby 1. | 
| 1035 | 
            -
                        // points.push(new GLatLng(36.16395,-86.74094)); // (1013 of 1207.0) 2005-04-30T15:21:39Z 11795 03:16:35 22.2984314818871  Gooby 1. | 
| 1036 | 
            -
                        // points.push(new GLatLng(36.16399,-86.74071)); // (1014 of 1207.0) 2005-04-30T15:21:47Z 11803 03:16:43 22.3115547798436  Gooby 1. | 
| 1037 | 
            -
                        points.push(new GLatLng(36.16403,-86.74049)); // (1015 of 1207.0) 2005-04-30T15:21:54Z 11810 03:16:50 22.3241333120463  Gooby 1. | 
| 1038 | 
            -
                        // points.push(new GLatLng(36.1641,-86.74026)); // (1016 of 1207.0) 2005-04-30T15:22:02Z 11818 03:16:58 22.3378437493203  Gooby 1. | 
| 1039 | 
            -
                        // points.push(new GLatLng(36.16418,-86.73994)); // (1017 of 1207.0) 2005-04-30T15:22:13Z 11829 03:17:09 22.3565291097013  Gooby 1. | 
| 1040 | 
            -
                        // points.push(new GLatLng(36.16425,-86.73966)); // (1018 of 1207.0) 2005-04-30T15:22:22Z 11838 03:17:18 22.3728787883963  Gooby 1. | 
| 1041 | 
            -
                        // points.push(new GLatLng(36.16431,-86.73927)); // (1019 of 1207.0) 2005-04-30T15:22:35Z 11851 03:17:31 22.3950237571283  Gooby 1. | 
| 1042 | 
            -
                        // points.push(new GLatLng(36.16433,-86.73895)); // (1020 of 1207.0) 2005-04-30T15:22:45Z 11861 03:17:41 22.4129262572951  Gooby 1. | 
| 1043 | 
            -
                        points.push(new GLatLng(36.16437,-86.73843)); // (1021 of 1207.0) 2005-04-30T15:23:02Z 11878 03:17:58 22.4420623024264  Gooby 1. | 
| 1044 | 
            -
                        // points.push(new GLatLng(36.1644,-86.73813)); // (1022 of 1207.0) 2005-04-30T15:23:11Z 11887 03:18:07 22.458923570296  Gooby 1. | 
| 1045 | 
            -
                        // points.push(new GLatLng(36.1644,-86.73792)); // (1023 of 1207.0) 2005-04-30T15:23:18Z 11894 03:18:14 22.4706369532011  Gooby 1. | 
| 1046 | 
            -
                        // points.push(new GLatLng(36.16435,-86.7376)); // (1024 of 1207.0) 2005-04-30T15:23:29Z 11905 03:18:25 22.4888172702898  Gooby 1. | 
| 1047 | 
            -
                        // points.push(new GLatLng(36.16435,-86.73736)); // (1025 of 1207.0) 2005-04-30T15:23:36Z 11912 03:18:32 22.5022039909576  Gooby 1. | 
| 1048 | 
            -
                        // points.push(new GLatLng(36.1644,-86.73706)); // (1026 of 1207.0) 2005-04-30T15:23:46Z 11922 03:18:42 22.5192903398709  Gooby 1. | 
| 1049 | 
            -
                        points.push(new GLatLng(36.16444,-86.73672)); // (1027 of 1207.0) 2005-04-30T15:23:57Z 11933 03:18:53 22.5384552871374  Gooby 1. | 
| 1050 | 
            -
                        // points.push(new GLatLng(36.16448,-86.73631)); // (1028 of 1207.0) 2005-04-30T15:24:10Z 11946 03:19:06 22.5614906844583  Gooby 1. | 
| 1051 | 
            -
                        // points.push(new GLatLng(36.16455,-86.73605)); // (1029 of 1207.0) 2005-04-30T15:24:19Z 11955 03:19:15 22.5767780510602  Gooby 1. | 
| 1052 | 
            -
                        // points.push(new GLatLng(36.16461,-86.73584)); // (1030 of 1207.0) 2005-04-30T15:24:27Z 11963 03:19:23 22.5892033700254  Gooby 1. | 
| 1053 | 
            -
                        // points.push(new GLatLng(36.16472,-86.73554)); // (1031 of 1207.0) 2005-04-30T15:24:37Z 11973 03:19:33 22.6075818420061  Gooby 1. | 
| 1054 | 
            -
                        // points.push(new GLatLng(36.1648,-86.73513)); // (1032 of 1207.0) 2005-04-30T15:24:51Z 11987 03:19:47 22.6311092410724  Gooby 1. | 
| 1055 | 
            -
                        points.push(new GLatLng(36.1648,-86.73479)); // (1033 of 1207.0) 2005-04-30T15:25:03Z 11999 03:19:59 22.6500737932344  Gooby 1. | 
| 1056 | 
            -
                        // points.push(new GLatLng(36.16491,-86.73444)); // (1034 of 1207.0) 2005-04-30T15:25:14Z 12010 03:20:10 22.6710231445048  Gooby 1. | 
| 1057 | 
            -
                        // points.push(new GLatLng(36.16495,-86.73412)); // (1035 of 1207.0) 2005-04-30T15:25:25Z 12021 03:20:21 22.6890847966165  Gooby 1. | 
| 1058 | 
            -
                        // points.push(new GLatLng(36.16504,-86.73373)); // (1036 of 1207.0) 2005-04-30T15:25:38Z 12034 03:20:34 22.7117094527777  Gooby 1. | 
| 1059 | 
            -
                        // points.push(new GLatLng(36.16519,-86.73339)); // (1037 of 1207.0) 2005-04-30T15:25:51Z 12047 03:20:47 22.7333208443809  Gooby 1. | 
| 1060 | 
            -
                        // points.push(new GLatLng(36.1656,-86.73346)); // (1038 of 1207.0) 2005-04-30T15:26:04Z 12060 03:21:00 22.7619155349082  Gooby 1. | 
| 1061 | 
            -
                        points.push(new GLatLng(36.16588,-86.7335)); // (1039 of 1207.0) 2005-04-30T15:26:15Z 12071 03:21:11 22.7813890026074  Gooby 1. | 
| 1062 | 
            -
                        // points.push(new GLatLng(36.1662,-86.73341)); // (1040 of 1207.0) 2005-04-30T15:26:28Z 12084 03:21:24 22.8040605168201  Gooby 1. | 
| 1063 | 
            -
                        // points.push(new GLatLng(36.16639,-86.73326)); // (1041 of 1207.0) 2005-04-30T15:26:38Z 12094 03:21:34 22.8196269975072  Gooby 1. | 
| 1064 | 
            -
                        // points.push(new GLatLng(36.16661,-86.73296)); // (1042 of 1207.0) 2005-04-30T15:26:52Z 12108 03:21:48 22.8422329602116  Gooby 1. | 
| 1065 | 
            -
                        // points.push(new GLatLng(36.16682,-86.73266)); // (1043 of 1207.0) 2005-04-30T15:27:05Z 12121 03:22:01 22.8643802856688  Gooby 1. | 
| 1066 | 
            -
                        // points.push(new GLatLng(36.16704,-86.73238)); // (1044 of 1207.0) 2005-04-30T15:27:17Z 12133 03:22:13 22.8861732500613  Gooby 1. | 
| 1067 | 
            -
                        points.push(new GLatLng(36.16729,-86.73204)); // (1045 of 1207.0) 2005-04-30T15:27:32Z 12148 03:22:28 22.9118242147163  Gooby 1. | 
| 1068 | 
            -
                        // points.push(new GLatLng(36.16761,-86.73172)); // (1046 of 1207.0) 2005-04-30T15:27:48Z 12164 03:22:44 22.940238427141  Gooby 1. | 
| 1069 | 
            -
                        // points.push(new GLatLng(36.16804,-86.7315)); // (1047 of 1207.0) 2005-04-30T15:28:09Z 12185 03:23:05 22.9723815377072  Gooby 1. | 
| 1070 | 
            -
                        // points.push(new GLatLng(36.16811,-86.73146)); // (1048 of 1207.0) 2005-04-30T15:28:13Z 12189 03:23:09 22.9777077277578  Gooby 1. | 
| 1071 | 
            -
                        points.push(new GLatLng(36.16858,-86.73268)); // (1049 of 1207.0) 2005-04-30T15:28:34Z 12210 03:23:30 23.0531047499703 23.0 00:09:34 Gooby 1. | 
| 1072 | 
            -
                        // points.push(new GLatLng(36.16862,-86.73273)); // (1050 of 1207.0) 2005-04-30T15:28:36Z 12212 03:23:32 23.0570303927522  Gooby 1. | 
| 1073 | 
            -
                        // points.push(new GLatLng(36.16886,-86.73273)); // (1051 of 1207.0) 2005-04-30T15:28:46Z 12222 03:23:42 23.0736118884466  Gooby 1. | 
| 1074 | 
            -
                        // points.push(new GLatLng(36.16899,-86.73249)); // (1052 of 1207.0) 2005-04-30T15:28:55Z 12231 03:23:51 23.0897317049007  Gooby 1. | 
| 1075 | 
            -
                        // points.push(new GLatLng(36.16907,-86.7318)); // (1053 of 1207.0) 2005-04-30T15:29:08Z 12244 03:24:04 23.1286113096002  Gooby 1. | 
| 1076 | 
            -
                        // points.push(new GLatLng(36.16937,-86.73152)); // (1054 of 1207.0) 2005-04-30T15:29:23Z 12259 03:24:19 23.1545632066738  Gooby 1. | 
| 1077 | 
            -
                        points.push(new GLatLng(36.16972,-86.73137)); // (1055 of 1207.0) 2005-04-30T15:29:38Z 12274 03:24:34 23.1801511534243  Gooby 1. | 
| 1078 | 
            -
                        // points.push(new GLatLng(36.17019,-86.73129)); // (1056 of 1207.0) 2005-04-30T15:29:56Z 12292 03:24:52 23.2129286278138  Gooby 1. | 
| 1079 | 
            -
                        // points.push(new GLatLng(36.17066,-86.73116)); // (1057 of 1207.0) 2005-04-30T15:30:14Z 12310 03:25:10 23.2462005580519  Gooby 1. | 
| 1080 | 
            -
                        // points.push(new GLatLng(36.17109,-86.73101)); // (1058 of 1207.0) 2005-04-30T15:30:31Z 12327 03:25:27 23.2770646879759  Gooby 1. | 
| 1081 | 
            -
                        // points.push(new GLatLng(36.17141,-86.73107)); // (1059 of 1207.0) 2005-04-30T15:30:44Z 12340 03:25:40 23.2994252800927  Gooby 1. | 
| 1082 | 
            -
                        // points.push(new GLatLng(36.17178,-86.73127)); // (1060 of 1207.0) 2005-04-30T15:30:59Z 12355 03:25:55 23.3273161948714  Gooby 1. | 
| 1083 | 
            -
                        points.push(new GLatLng(36.17208,-86.7315)); // (1061 of 1207.0) 2005-04-30T15:31:14Z 12370 03:26:10 23.3516915533211  Gooby 1. | 
| 1084 | 
            -
                        // points.push(new GLatLng(36.17246,-86.73189)); // (1062 of 1207.0) 2005-04-30T15:31:36Z 12392 03:26:32 23.3857855548565  Gooby 1. | 
| 1085 | 
            -
                        // points.push(new GLatLng(36.17276,-86.73198)); // (1063 of 1207.0) 2005-04-30T15:31:50Z 12406 03:26:46 23.4071116176613  Gooby 1. | 
| 1086 | 
            -
                        // points.push(new GLatLng(36.17289,-86.73187)); // (1064 of 1207.0) 2005-04-30T15:31:57Z 12413 03:26:53 23.4179886437286  Gooby 1. | 
| 1087 | 
            -
                        // points.push(new GLatLng(36.17259,-86.73045)); // (1065 of 1207.0) 2005-04-30T15:32:26Z 12442 03:27:22 23.4998526853762  Gooby 1. | 
| 1088 | 
            -
                        // points.push(new GLatLng(36.16875,-86.72951)); // (1066 of 1207.0) 2005-04-30T15:35:09Z 12605 03:30:05 23.7702887990097  Gooby 1. | 
| 1089 | 
            -
                        points.push(new GLatLng(36.1686,-86.7291)); // (1067 of 1207.0) 2005-04-30T15:35:21Z 12617 03:30:17 23.7953952599442  Gooby 1. | 
| 1090 | 
            -
                        // points.push(new GLatLng(36.16847,-86.72863)); // (1068 of 1207.0) 2005-04-30T15:35:41Z 12637 03:30:37 23.8231055705255  Gooby 1. | 
| 1091 | 
            -
                        // points.push(new GLatLng(36.16824,-86.72826)); // (1069 of 1207.0) 2005-04-30T15:35:57Z 12653 03:30:53 23.8491516183512  Gooby 1. | 
| 1092 | 
            -
                        // points.push(new GLatLng(36.16787,-86.72801)); // (1070 of 1207.0) 2005-04-30T15:36:13Z 12669 03:31:09 23.8782705810921  Gooby 1. | 
| 1093 | 
            -
                        // points.push(new GLatLng(36.16749,-86.72792)); // (1071 of 1207.0) 2005-04-30T15:36:27Z 12683 03:31:23 23.905000450174  Gooby 1. | 
| 1094 | 
            -
                        // points.push(new GLatLng(36.16719,-86.72798)); // (1072 of 1207.0) 2005-04-30T15:36:36Z 12692 03:31:32 23.9259959238849  Gooby 1. | 
| 1095 | 
            -
                        points.push(new GLatLng(36.16663,-86.72811)); // (1073 of 1207.0) 2005-04-30T15:36:55Z 12711 03:31:51 23.9653598516853  Gooby 1. | 
| 1096 | 
            -
                        // points.push(new GLatLng(36.16622,-86.72818)); // (1074 of 1207.0) 2005-04-30T15:37:10Z 12726 03:32:06 23.9939544813709  Gooby 1. | 
| 1097 | 
            -
                        points.push(new GLatLng(36.16588,-86.72841)); // (1075 of 1207.0) 2005-04-30T15:37:26Z 12742 03:32:22 24.0207198639371 24.0 00:08:52 Gooby 1. | 
| 1098 | 
            -
                        // points.push(new GLatLng(36.16566,-86.72876)); // (1076 of 1207.0) 2005-04-30T15:37:40Z 12756 03:32:36 24.0454614700808  Gooby 1. | 
| 1099 | 
            -
                        // points.push(new GLatLng(36.16558,-86.72891)); // (1077 of 1207.0) 2005-04-30T15:37:45Z 12761 03:32:41 24.0554889506984  Gooby 1. | 
| 1100 | 
            -
                        // points.push(new GLatLng(36.16547,-86.72912)); // (1078 of 1207.0) 2005-04-30T15:37:52Z 12768 03:32:48 24.0694517380715  Gooby 1. | 
| 1101 | 
            -
                        // points.push(new GLatLng(36.16534,-86.72946)); // (1079 of 1207.0) 2005-04-30T15:38:04Z 12780 03:33:00 24.0904354419496  Gooby 1. | 
| 1102 | 
            -
                        // points.push(new GLatLng(36.1653,-86.72976)); // (1080 of 1207.0) 2005-04-30T15:38:15Z 12791 03:33:11 24.1073953708189  Gooby 1. | 
| 1103 | 
            -
                        points.push(new GLatLng(36.16532,-86.73019)); // (1081 of 1207.0) 2005-04-30T15:38:28Z 12804 03:33:24 24.131419469144  Gooby 1. | 
| 1104 | 
            -
                        // points.push(new GLatLng(36.16521,-86.73062)); // (1082 of 1207.0) 2005-04-30T15:38:42Z 12818 03:33:38 24.1565791613163  Gooby 1. | 
| 1105 | 
            -
                        // points.push(new GLatLng(36.16513,-86.73105)); // (1083 of 1207.0) 2005-04-30T15:38:56Z 12832 03:33:52 24.1811922464575  Gooby 1. | 
| 1106 | 
            -
                        // points.push(new GLatLng(36.16508,-86.73163)); // (1084 of 1207.0) 2005-04-30T15:39:14Z 12850 03:34:10 24.2137272150075  Gooby 1. | 
| 1107 | 
            -
                        // points.push(new GLatLng(36.16506,-86.73206)); // (1085 of 1207.0) 2005-04-30T15:39:29Z 12865 03:34:25 24.2377514581655  Gooby 1. | 
| 1108 | 
            -
                        // points.push(new GLatLng(36.16506,-86.73213)); // (1086 of 1207.0) 2005-04-30T15:39:31Z 12867 03:34:27 24.2416553249832  Gooby 1. | 
| 1109 | 
            -
                        points.push(new GLatLng(36.16504,-86.73236)); // (1087 of 1207.0) 2005-04-30T15:39:39Z 12875 03:34:35 24.2545582992915  Gooby 1. | 
| 1110 | 
            -
                        // points.push(new GLatLng(36.16502,-86.73262)); // (1088 of 1207.0) 2005-04-30T15:39:47Z 12883 03:34:43 24.2691261128667  Gooby 1. | 
| 1111 | 
            -
                        // points.push(new GLatLng(36.16502,-86.7329)); // (1089 of 1207.0) 2005-04-30T15:39:57Z 12893 03:34:53 24.2847438082131  Gooby 1. | 
| 1112 | 
            -
                        // points.push(new GLatLng(36.16504,-86.73341)); // (1090 of 1207.0) 2005-04-30T15:40:13Z 12909 03:35:09 24.3132240090528  Gooby 1. | 
| 1113 | 
            -
                        // points.push(new GLatLng(36.16498,-86.73401)); // (1091 of 1207.0) 2005-04-30T15:40:31Z 12927 03:35:27 24.3469463384313  Gooby 1. | 
| 1114 | 
            -
                        // points.push(new GLatLng(36.16491,-86.73449)); // (1092 of 1207.0) 2005-04-30T15:40:47Z 12943 03:35:43 24.374153007255  Gooby 1. | 
| 1115 | 
            -
                        points.push(new GLatLng(36.1648,-86.73485)); // (1093 of 1207.0) 2005-04-30T15:41:00Z 12956 03:35:56 24.3956230593173  Gooby 1. | 
| 1116 | 
            -
                        // points.push(new GLatLng(36.16472,-86.73528)); // (1094 of 1207.0) 2005-04-30T15:41:15Z 12971 03:36:11 24.4202362151422  Gooby 1. | 
| 1117 | 
            -
                        // points.push(new GLatLng(36.16463,-86.73567)); // (1095 of 1207.0) 2005-04-30T15:41:28Z 12984 03:36:24 24.4428608713034  Gooby 1. | 
| 1118 | 
            -
                        // points.push(new GLatLng(36.1645,-86.73612)); // (1096 of 1207.0) 2005-04-30T15:41:42Z 12998 03:36:38 24.4695195714889  Gooby 1. | 
| 1119 | 
            -
                        // points.push(new GLatLng(36.16437,-86.73667)); // (1097 of 1207.0) 2005-04-30T15:42:02Z 13018 03:36:58 24.5014853121521  Gooby 1. | 
| 1120 | 
            -
                        // points.push(new GLatLng(36.16433,-86.73725)); // (1098 of 1207.0) 2005-04-30T15:42:21Z 13037 03:37:17 24.5339545493166  Gooby 1. | 
| 1121 | 
            -
                        points.push(new GLatLng(36.16433,-86.73768)); // (1099 of 1207.0) 2005-04-30T15:42:34Z 13050 03:37:30 24.5579392205993  Gooby 1. | 
| 1122 | 
            -
                        // points.push(new GLatLng(36.16435,-86.738)); // (1100 of 1207.0) 2005-04-30T15:42:44Z 13060 03:37:40 24.5758416235869  Gooby 1. | 
| 1123 | 
            -
                        // points.push(new GLatLng(36.16437,-86.7385)); // (1101 of 1207.0) 2005-04-30T15:43:01Z 13077 03:37:57 24.6037650177694  Gooby 1. | 
| 1124 | 
            -
                        // points.push(new GLatLng(36.16431,-86.7388)); // (1102 of 1207.0) 2005-04-30T15:43:11Z 13087 03:38:07 24.6210042287004  Gooby 1. | 
| 1125 | 
            -
                        // points.push(new GLatLng(36.16427,-86.73921)); // (1103 of 1207.0) 2005-04-30T15:43:25Z 13101 03:38:21 24.6440397015462  Gooby 1. | 
| 1126 | 
            -
                        // points.push(new GLatLng(36.1642,-86.73976)); // (1104 of 1207.0) 2005-04-30T15:43:42Z 13118 03:38:38 24.6750966275682  Gooby 1. | 
| 1127 | 
            -
                        points.push(new GLatLng(36.1641,-86.74015)); // (1105 of 1207.0) 2005-04-30T15:43:54Z 13130 03:38:50 24.6979209475415  Gooby 1. | 
| 1128 | 
            -
                        // points.push(new GLatLng(36.16399,-86.74052)); // (1106 of 1207.0) 2005-04-30T15:44:07Z 13143 03:39:03 24.7199138486589  Gooby 1. | 
| 1129 | 
            -
                        // points.push(new GLatLng(36.1639,-86.7409)); // (1107 of 1207.0) 2005-04-30T15:44:20Z 13156 03:39:16 24.7420029681667  Gooby 1. | 
| 1130 | 
            -
                        // points.push(new GLatLng(36.16384,-86.74137)); // (1108 of 1207.0) 2005-04-30T15:44:35Z 13171 03:39:31 24.7685445959318  Gooby 1. | 
| 1131 | 
            -
                        // points.push(new GLatLng(36.16375,-86.7418)); // (1109 of 1207.0) 2005-04-30T15:44:50Z 13186 03:39:46 24.7933223184582  Gooby 1. | 
| 1132 | 
            -
                        // points.push(new GLatLng(36.16369,-86.74225)); // (1110 of 1207.0) 2005-04-30T15:45:05Z 13201 03:40:01 24.8187627075598  Gooby 1. | 
| 1133 | 
            -
                        points.push(new GLatLng(36.1636,-86.74266)); // (1111 of 1207.0) 2005-04-30T15:45:19Z 13215 03:40:15 24.8424622138997  Gooby 1. | 
| 1134 | 
            -
                        // points.push(new GLatLng(36.16354,-86.74303)); // (1112 of 1207.0) 2005-04-30T15:45:31Z 13227 03:40:27 24.8635125540329  Gooby 1. | 
| 1135 | 
            -
                        // points.push(new GLatLng(36.16343,-86.74341)); // (1113 of 1207.0) 2005-04-30T15:45:44Z 13240 03:40:40 24.8860297619902  Gooby 1. | 
| 1136 | 
            -
                        // points.push(new GLatLng(36.16332,-86.74382)); // (1114 of 1207.0) 2005-04-30T15:45:58Z 13254 03:40:54 24.9101289116288  Gooby 1. | 
| 1137 | 
            -
                        // points.push(new GLatLng(36.16317,-86.74425)); // (1115 of 1207.0) 2005-04-30T15:46:13Z 13269 03:41:09 24.9362571213228  Gooby 1. | 
| 1138 | 
            -
                        // points.push(new GLatLng(36.16307,-86.74457)); // (1116 of 1207.0) 2005-04-30T15:46:25Z 13281 03:41:21 24.9553969975988  Gooby 1. | 
| 1139 | 
            -
                        points.push(new GLatLng(36.163,-86.74496)); // (1117 of 1207.0) 2005-04-30T15:46:37Z 13293 03:41:33 24.9776819919294  Gooby 1. | 
| 1140 | 
            -
                        // points.push(new GLatLng(36.16309,-86.74528)); // (1118 of 1207.0) 2005-04-30T15:46:48Z 13304 03:41:44 24.9965834158842  Gooby 1. | 
| 1141 | 
            -
                        points.push(new GLatLng(36.16317,-86.74551)); // (1119 of 1207.0) 2005-04-30T15:46:56Z 13312 03:41:52 25.0105524318065 25.0 00:09:30 Gooby 1. | 
| 1142 | 
            -
                        // points.push(new GLatLng(36.16322,-86.74564)); // (1120 of 1207.0) 2005-04-30T15:47:01Z 13317 03:41:57 25.0185846634776  Gooby 1. | 
| 1143 | 
            -
                        // points.push(new GLatLng(36.16313,-86.74622)); // (1121 of 1207.0) 2005-04-30T15:47:19Z 13335 03:42:15 25.0515286964733  Gooby 1. | 
| 1144 | 
            -
                        // points.push(new GLatLng(36.16311,-86.74629)); // (1122 of 1207.0) 2005-04-30T15:47:21Z 13337 03:42:17 25.0556704227894  Gooby 1. | 
| 1145 | 
            -
                        // points.push(new GLatLng(36.16304,-86.74657)); // (1123 of 1207.0) 2005-04-30T15:47:32Z 13348 03:42:28 25.0720202078926  Gooby 1. | 
| 1146 | 
            -
                        // points.push(new GLatLng(36.16296,-86.74689)); // (1124 of 1207.0) 2005-04-30T15:47:44Z 13360 03:42:40 25.0907056613808  Gooby 1. | 
| 1147 | 
            -
                        points.push(new GLatLng(36.16294,-86.74717)); // (1125 of 1207.0) 2005-04-30T15:47:54Z 13370 03:42:50 25.1063847266483  Gooby 1. | 
| 1148 | 
            -
                        // points.push(new GLatLng(36.16292,-86.74734)); // (1126 of 1207.0) 2005-04-30T15:48:01Z 13377 03:42:57 25.1159672002815  Gooby 1. | 
| 1149 | 
            -
                        // points.push(new GLatLng(36.16283,-86.7477)); // (1127 of 1207.0) 2005-04-30T15:48:14Z 13390 03:43:10 25.136988345801  Gooby 1. | 
| 1150 | 
            -
                        // points.push(new GLatLng(36.16272,-86.74813)); // (1128 of 1207.0) 2005-04-30T15:48:30Z 13406 03:43:26 25.1621487294453  Gooby 1. | 
| 1151 | 
            -
                        // points.push(new GLatLng(36.16261,-86.74848)); // (1129 of 1207.0) 2005-04-30T15:48:43Z 13419 03:43:39 25.1830985789818  Gooby 1. | 
| 1152 | 
            -
                        // points.push(new GLatLng(36.16255,-86.74878)); // (1130 of 1207.0) 2005-04-30T15:48:56Z 13432 03:43:52 25.20033819358  Gooby 1. | 
| 1153 | 
            -
                        points.push(new GLatLng(36.16249,-86.7491)); // (1131 of 1207.0) 2005-04-30T15:49:06Z 13442 03:44:02 25.2186626286806  Gooby 1. | 
| 1154 | 
            -
                        // points.push(new GLatLng(36.16244,-86.74942)); // (1132 of 1207.0) 2005-04-30T15:49:16Z 13452 03:44:12 25.2368432328488  Gooby 1. | 
| 1155 | 
            -
                        // points.push(new GLatLng(36.16238,-86.74978)); // (1133 of 1207.0) 2005-04-30T15:49:27Z 13463 03:44:23 25.2573473810063  Gooby 1. | 
| 1156 | 
            -
                        // points.push(new GLatLng(36.16227,-86.75024)); // (1134 of 1207.0) 2005-04-30T15:49:41Z 13477 03:44:37 25.2841079531505  Gooby 1. | 
| 1157 | 
            -
                        // points.push(new GLatLng(36.16216,-86.75066)); // (1135 of 1207.0) 2005-04-30T15:49:55Z 13491 03:44:51 25.3087373608348  Gooby 1. | 
| 1158 | 
            -
                        // points.push(new GLatLng(36.1621,-86.75092)); // (1136 of 1207.0) 2005-04-30T15:50:03Z 13499 03:44:59 25.3238210288359  Gooby 1. | 
| 1159 | 
            -
                        points.push(new GLatLng(36.16206,-86.75116)); // (1137 of 1207.0) 2005-04-30T15:50:11Z 13507 03:45:07 25.3374902912428  Gooby 1. | 
| 1160 | 
            -
                        // points.push(new GLatLng(36.16199,-86.7515)); // (1138 of 1207.0) 2005-04-30T15:50:23Z 13519 03:45:19 25.3570623187996  Gooby 1. | 
| 1161 | 
            -
                        // points.push(new GLatLng(36.16193,-86.75195)); // (1139 of 1207.0) 2005-04-30T15:50:37Z 13533 03:45:33 25.382503391744  Gooby 1. | 
| 1162 | 
            -
                        // points.push(new GLatLng(36.16186,-86.75227)); // (1140 of 1207.0) 2005-04-30T15:50:48Z 13544 03:45:44 25.4009966146903  Gooby 1. | 
| 1163 | 
            -
                        // points.push(new GLatLng(36.16176,-86.75277)); // (1141 of 1207.0) 2005-04-30T15:51:04Z 13560 03:46:00 25.4297296286155  Gooby 1. | 
| 1164 | 
            -
                        // points.push(new GLatLng(36.16167,-86.75318)); // (1142 of 1207.0) 2005-04-30T15:51:18Z 13574 03:46:14 25.4534297222165  Gooby 1. | 
| 1165 | 
            -
                        points.push(new GLatLng(36.16156,-86.75365)); // (1143 of 1207.0) 2005-04-30T15:51:33Z 13589 03:46:29 25.4807257680411  Gooby 1. | 
| 1166 | 
            -
                        // points.push(new GLatLng(36.16154,-86.75386)); // (1144 of 1207.0) 2005-04-30T15:51:40Z 13596 03:46:36 25.4925207050617  Gooby 1. | 
| 1167 | 
            -
                        // points.push(new GLatLng(36.16152,-86.75408)); // (1145 of 1207.0) 2005-04-30T15:51:47Z 13603 03:46:43 25.5048700429416  Gooby 1. | 
| 1168 | 
            -
                        // points.push(new GLatLng(36.16148,-86.75431)); // (1146 of 1207.0) 2005-04-30T15:51:55Z 13611 03:46:51 25.517993606034  Gooby 1. | 
| 1169 | 
            -
                        // points.push(new GLatLng(36.16146,-86.75461)); // (1147 of 1207.0) 2005-04-30T15:52:05Z 13621 03:47:01 25.5347845648937  Gooby 1. | 
| 1170 | 
            -
                        // points.push(new GLatLng(36.16143,-86.75485)); // (1148 of 1207.0) 2005-04-30T15:52:13Z 13629 03:47:09 25.5483312213692  Gooby 1. | 
| 1171 | 
            -
                        points.push(new GLatLng(36.16141,-86.75508)); // (1149 of 1207.0) 2005-04-30T15:52:21Z 13637 03:47:17 25.561234734998  Gooby 1. | 
| 1172 | 
            -
                        // points.push(new GLatLng(36.16135,-86.75551)); // (1150 of 1207.0) 2005-04-30T15:52:35Z 13651 03:47:31 25.5855758816997  Gooby 1. | 
| 1173 | 
            -
                        // points.push(new GLatLng(36.16131,-86.75579)); // (1151 of 1207.0) 2005-04-30T15:52:44Z 13660 03:47:40 25.6014369740298  Gooby 1. | 
| 1174 | 
            -
                        // points.push(new GLatLng(36.16128,-86.75609)); // (1152 of 1207.0) 2005-04-30T15:52:54Z 13670 03:47:50 25.6182990673194  Gooby 1. | 
| 1175 | 
            -
                        // points.push(new GLatLng(36.16122,-86.75648)); // (1153 of 1207.0) 2005-04-30T15:53:07Z 13683 03:48:03 25.6404448216543  Gooby 1. | 
| 1176 | 
            -
                        // points.push(new GLatLng(36.16118,-86.75684)); // (1154 of 1207.0) 2005-04-30T15:53:19Z 13695 03:48:15 25.6607151517664  Gooby 1. | 
| 1177 | 
            -
                        points.push(new GLatLng(36.16113,-86.75717)); // (1155 of 1207.0) 2005-04-30T15:53:30Z 13706 03:48:26 25.6794441286322  Gooby 1. | 
| 1178 | 
            -
                        // points.push(new GLatLng(36.16107,-86.75762)); // (1156 of 1207.0) 2005-04-30T15:53:44Z 13720 03:48:40 25.704885338343  Gooby 1. | 
| 1179 | 
            -
                        // points.push(new GLatLng(36.16103,-86.75809)); // (1157 of 1207.0) 2005-04-30T15:53:59Z 13735 03:48:55 25.7312474131955  Gooby 1. | 
| 1180 | 
            -
                        // points.push(new GLatLng(36.16096,-86.75856)); // (1158 of 1207.0) 2005-04-30T15:54:14Z 13750 03:49:10 25.7579066354557  Gooby 1. | 
| 1181 | 
            -
                        // points.push(new GLatLng(36.16094,-86.75888)); // (1159 of 1207.0) 2005-04-30T15:54:24Z 13760 03:49:20 25.7758098158622  Gooby 1. | 
| 1182 | 
            -
                        // points.push(new GLatLng(36.16098,-86.75938)); // (1160 of 1207.0) 2005-04-30T15:54:40Z 13776 03:49:36 25.8038366925666  Gooby 1. | 
| 1183 | 
            -
                        points.push(new GLatLng(36.16103,-86.76006)); // (1161 of 1207.0) 2005-04-30T15:55:02Z 13798 03:49:58 25.8419244448636  Gooby 1. | 
| 1184 | 
            -
                        // points.push(new GLatLng(36.16107,-86.76075)); // (1162 of 1207.0) 2005-04-30T15:55:24Z 13820 03:50:20 25.8805121880062  Gooby 1. | 
| 1185 | 
            -
                        // points.push(new GLatLng(36.16107,-86.76111)); // (1163 of 1207.0) 2005-04-30T15:55:35Z 13831 03:50:31 25.9005931570523  Gooby 1. | 
| 1186 | 
            -
                        // points.push(new GLatLng(36.16109,-86.76137)); // (1164 of 1207.0) 2005-04-30T15:55:43Z 13839 03:50:39 25.9151616871537  Gooby 1. | 
| 1187 | 
            -
                        // points.push(new GLatLng(36.16111,-86.76163)); // (1165 of 1207.0) 2005-04-30T15:55:51Z 13847 03:50:47 25.9297302172551  Gooby 1. | 
| 1188 | 
            -
                        // points.push(new GLatLng(36.16116,-86.76204)); // (1166 of 1207.0) 2005-04-30T15:56:04Z 13860 03:51:00 25.9528596776051  Gooby 1. | 
| 1189 | 
            -
                        points.push(new GLatLng(36.16116,-86.76242)); // (1167 of 1207.0) 2005-04-30T15:56:16Z 13872 03:51:12 25.9740562084178  Gooby 1. | 
| 1190 | 
            -
                        // points.push(new GLatLng(36.1612,-86.76287)); // (1168 of 1207.0) 2005-04-30T15:56:31Z 13887 03:51:27 25.999309146945  Gooby 1. | 
| 1191 | 
            -
                        points.push(new GLatLng(36.1612,-86.76335)); // (1169 of 1207.0) 2005-04-30T15:56:45Z 13901 03:51:41 26.0260837579004 26.0 00:09:49 Gooby 1. | 
| 1192 | 
            -
                        // points.push(new GLatLng(36.16124,-86.76375)); // (1170 of 1207.0) 2005-04-30T15:56:58Z 13914 03:51:54 26.0485664801698  Gooby 1. | 
| 1193 | 
            -
                        // points.push(new GLatLng(36.16126,-86.76382)); // (1171 of 1207.0) 2005-04-30T15:57:00Z 13916 03:51:56 26.0527082064859  Gooby 1. | 
| 1194 | 
            -
                        // points.push(new GLatLng(36.16128,-86.76408)); // (1172 of 1207.0) 2005-04-30T15:57:08Z 13924 03:52:04 26.0672767365873  Gooby 1. | 
| 1195 | 
            -
                        // points.push(new GLatLng(36.16131,-86.76429)); // (1173 of 1207.0) 2005-04-30T15:57:15Z 13931 03:52:11 26.0791727203633  Gooby 1. | 
| 1196 | 
            -
                        // points.push(new GLatLng(36.16135,-86.76459)); // (1174 of 1207.0) 2005-04-30T15:57:25Z 13941 03:52:21 26.0961335724257  Gooby 1. | 
| 1197 | 
            -
                        points.push(new GLatLng(36.16139,-86.76491)); // (1175 of 1207.0) 2005-04-30T15:57:35Z 13951 03:52:31 26.1141959951022  Gooby 1. | 
| 1198 | 
            -
                        // points.push(new GLatLng(36.16143,-86.76526)); // (1176 of 1207.0) 2005-04-30T15:57:46Z 13962 03:52:42 26.1339137918085  Gooby 1. | 
| 1199 | 
            -
                        // points.push(new GLatLng(36.16148,-86.76551)); // (1177 of 1207.0) 2005-04-30T15:57:55Z 13971 03:52:51 26.1482802987711  Gooby 1. | 
| 1200 | 
            -
                        // points.push(new GLatLng(36.16152,-86.76586)); // (1178 of 1207.0) 2005-04-30T15:58:06Z 13982 03:53:02 26.167998007245  Gooby 1. | 
| 1201 | 
            -
                        // points.push(new GLatLng(36.16154,-86.76611)); // (1179 of 1207.0) 2005-04-30T15:58:14Z 13990 03:53:10 26.18201141456  Gooby 1. | 
| 1202 | 
            -
                        // points.push(new GLatLng(36.16161,-86.76644)); // (1180 of 1207.0) 2005-04-30T15:58:24Z 14000 03:53:20 26.201043548019  Gooby 1. | 
| 1203 | 
            -
                        points.push(new GLatLng(36.16165,-86.76667)); // (1181 of 1207.0) 2005-04-30T15:58:31Z 14007 03:53:27 26.2141671111115  Gooby 1. | 
| 1204 | 
            -
                        // points.push(new GLatLng(36.16171,-86.76708)); // (1182 of 1207.0) 2005-04-30T15:58:43Z 14019 03:53:39 26.2374095733614  Gooby 1. | 
| 1205 | 
            -
                        // points.push(new GLatLng(36.1618,-86.76732)); // (1183 of 1207.0) 2005-04-30T15:58:51Z 14027 03:53:47 26.2521704109487  Gooby 1. | 
| 1206 | 
            -
                        // points.push(new GLatLng(36.16186,-86.76757)); // (1184 of 1207.0) 2005-04-30T15:58:59Z 14035 03:53:55 26.2667183866377  Gooby 1. | 
| 1207 | 
            -
                        // points.push(new GLatLng(36.16193,-86.76783)); // (1185 of 1207.0) 2005-04-30T15:59:07Z 14043 03:54:03 26.2820064360414  Gooby 1. | 
| 1208 | 
            -
                        // points.push(new GLatLng(36.16206,-86.76809)); // (1186 of 1207.0) 2005-04-30T15:59:16Z 14052 03:54:12 26.2990652711797  Gooby 1. | 
| 1209 | 
            -
                        points.push(new GLatLng(36.16227,-86.76832)); // (1187 of 1207.0) 2005-04-30T15:59:27Z 14063 03:54:23 26.3184326722803  Gooby 1. | 
| 1210 | 
            -
                        // points.push(new GLatLng(36.16246,-86.76845)); // (1188 of 1207.0) 2005-04-30T15:59:35Z 14071 03:54:31 26.3334295860017  Gooby 1. | 
| 1211 | 
            -
                        // points.push(new GLatLng(36.16272,-86.7686)); // (1189 of 1207.0) 2005-04-30T15:59:45Z 14081 03:54:41 26.3532459564638  Gooby 1. | 
| 1212 | 
            -
                        // points.push(new GLatLng(36.16309,-86.76893)); // (1190 of 1207.0) 2005-04-30T16:00:01Z 14097 03:54:57 26.384746789496  Gooby 1. | 
| 1213 | 
            -
                        // points.push(new GLatLng(36.16345,-86.76908)); // (1191 of 1207.0) 2005-04-30T16:00:13Z 14109 03:55:09 26.4109887450743  Gooby 1. | 
| 1214 | 
            -
                        // points.push(new GLatLng(36.16364,-86.76918)); // (1192 of 1207.0) 2005-04-30T16:00:19Z 14115 03:55:15 26.4252517039151  Gooby 1. | 
| 1215 | 
            -
                        points.push(new GLatLng(36.1639,-86.76933)); // (1193 of 1207.0) 2005-04-30T16:00:27Z 14123 03:55:23 26.4450679865836  Gooby 1. | 
| 1216 | 
            -
                        // points.push(new GLatLng(36.1642,-86.7695)); // (1194 of 1207.0) 2005-04-30T16:00:37Z 14133 03:55:33 26.4678610335589  Gooby 1. | 
| 1217 | 
            -
                        // points.push(new GLatLng(36.16461,-86.76972)); // (1195 of 1207.0) 2005-04-30T16:00:51Z 14147 03:55:47 26.4987317014666  Gooby 1. | 
| 1218 | 
            -
                        // points.push(new GLatLng(36.16491,-86.76996)); // (1196 of 1207.0) 2005-04-30T16:01:02Z 14158 03:55:58 26.5234058523331  Gooby 1. | 
| 1219 | 
            -
                        // points.push(new GLatLng(36.16495,-86.77004)); // (1197 of 1207.0) 2005-04-30T16:01:05Z 14161 03:56:01 26.5286547207608  Gooby 1. | 
| 1220 | 
            -
                        // points.push(new GLatLng(36.16491,-86.77023)); // (1198 of 1207.0) 2005-04-30T16:01:11Z 14167 03:56:07 26.5396069815511  Gooby 1. | 
| 1221 | 
            -
                        points.push(new GLatLng(36.16476,-86.77051)); // (1199 of 1207.0) 2005-04-30T16:01:19Z 14175 03:56:15 26.5583504437509  Gooby 1. | 
| 1222 | 
            -
                        // points.push(new GLatLng(36.16461,-86.7709)); // (1200 of 1207.0) 2005-04-30T16:01:29Z 14185 03:56:25 26.5824464167681  Gooby 1. | 
| 1223 | 
            -
                        // points.push(new GLatLng(36.16444,-86.77137)); // (1201 of 1207.0) 2005-04-30T16:01:41Z 14197 03:56:37 26.6111729512538  Gooby 1. | 
| 1224 | 
            -
                        // points.push(new GLatLng(36.16425,-86.77182)); // (1202 of 1207.0) 2005-04-30T16:01:53Z 14209 03:56:49 26.6394986124267  Gooby 1. | 
| 1225 | 
            -
                        // points.push(new GLatLng(36.16422,-86.77191)); // (1203 of 1207.0) 2005-04-30T16:01:59Z 14215 03:56:55 26.6449299230826  Gooby 1. | 
| 1226 | 
            -
                        // points.push(new GLatLng(36.1642,-86.77195)); // (1204 of 1207.0) 2005-04-30T16:02:03Z 14219 03:56:59 26.6475546887272  Gooby 1. | 
| 1227 | 
            -
                        points.push(new GLatLng(36.16416,-86.77202)); // (1205 of 1207.0) 2005-04-30T16:02:12Z 14228 03:57:08 26.652337384846  Gooby 1. | 
| 1228 | 
            -
                        // points.push(new GLatLng(36.16416,-86.77204)); // (1206 of 1207.0) 2005-04-30T16:02:22Z 14238 03:57:18 26.65345035351  Gooby 1. | 
| 1229 | 
            -
                        points.push(new GLatLng(36.16416,-86.7721)); // (1207 of 1207.0) 2005-04-30T16:02:31Z 14247 03:57:27 26.6567960263308  Gooby 1. | 
| 23 | 
            +
                        points.push(new GLatLng(36.14661,-86.80903)); // (1 of 1207.0) 2005-04-30T12:05:04Z 0 00:00:00 0.0  Gooby 1.1.0 
         | 
| 24 | 
            +
                        // points.push(new GLatLng(36.14663,-86.80897)); // (2 of 1207.0) 2005-04-30T12:05:08Z 4 00:00:04 0.00362183459690642  Gooby 1.1.0 
         | 
| 25 | 
            +
                        // points.push(new GLatLng(36.14665,-86.80897)); // (3 of 1207.0) 2005-04-30T12:05:09Z 5 00:00:05 0.00500269004278992  Gooby 1.1.0 
         | 
| 26 | 
            +
                        // points.push(new GLatLng(36.14676,-86.80882)); // (4 of 1207.0) 2005-04-30T12:05:14Z 10 00:00:10 0.0163070181079739  Gooby 1.1.0 
         | 
| 27 | 
            +
                        // points.push(new GLatLng(36.14678,-86.80875)); // (5 of 1207.0) 2005-04-30T12:05:16Z 12 00:00:12 0.0204495844456246  Gooby 1.1.0 
         | 
| 28 | 
            +
                        // points.push(new GLatLng(36.14686,-86.8086)); // (6 of 1207.0) 2005-04-30T12:05:21Z 17 00:00:17 0.0304784529498858  Gooby 1.1.0 
         | 
| 29 | 
            +
                        points.push(new GLatLng(36.14699,-86.80834)); // (7 of 1207.0) 2005-04-30T12:05:30Z 26 00:00:26 0.0475395316117234  Gooby 1.1.0 
         | 
| 30 | 
            +
                        // points.push(new GLatLng(36.14712,-86.80804)); // (8 of 1207.0) 2005-04-30T12:05:41Z 37 00:00:37 0.0665343327729839  Gooby 1.1.0 
         | 
| 31 | 
            +
                        // points.push(new GLatLng(36.14719,-86.80781)); // (9 of 1207.0) 2005-04-30T12:05:49Z 45 00:00:45 0.0802474345220799  Gooby 1.1.0 
         | 
| 32 | 
            +
                        // points.push(new GLatLng(36.14736,-86.8074)); // (10 of 1207.0) 2005-04-30T12:06:04Z 60 00:01:00 0.10596078903113  Gooby 1.1.0 
         | 
| 33 | 
            +
                        // points.push(new GLatLng(36.14755,-86.80693)); // (11 of 1207.0) 2005-04-30T12:06:19Z 75 00:01:15 0.135284498977397  Gooby 1.1.0 
         | 
| 34 | 
            +
                        // points.push(new GLatLng(36.14779,-86.80652)); // (12 of 1207.0) 2005-04-30T12:06:32Z 88 00:01:28 0.163536237528796  Gooby 1.1.0 
         | 
| 35 | 
            +
                        points.push(new GLatLng(36.14802,-86.80603)); // (13 of 1207.0) 2005-04-30T12:06:47Z 103 00:01:43 0.195156249293514  Gooby 1.1.0 
         | 
| 36 | 
            +
                        // points.push(new GLatLng(36.1482,-86.80562)); // (14 of 1207.0) 2005-04-30T12:07:00Z 116 00:01:56 0.221192142297481  Gooby 1.1.0 
         | 
| 37 | 
            +
                        // points.push(new GLatLng(36.14841,-86.80517)); // (15 of 1207.0) 2005-04-30T12:07:14Z 130 00:02:10 0.250188426739633  Gooby 1.1.0 
         | 
| 38 | 
            +
                        // points.push(new GLatLng(36.14869,-86.8047)); // (16 of 1207.0) 2005-04-30T12:07:29Z 145 00:02:25 0.282773407686557  Gooby 1.1.0 
         | 
| 39 | 
            +
                        // points.push(new GLatLng(36.14882,-86.80435)); // (17 of 1207.0) 2005-04-30T12:07:40Z 156 00:02:36 0.304266379372007  Gooby 1.1.0 
         | 
| 40 | 
            +
                        // points.push(new GLatLng(36.14899,-86.8039)); // (18 of 1207.0) 2005-04-30T12:07:54Z 170 00:02:50 0.331983218652656  Gooby 1.1.0 
         | 
| 41 | 
            +
                        points.push(new GLatLng(36.14925,-86.80341)); // (19 of 1207.0) 2005-04-30T12:08:10Z 186 00:03:06 0.364693747035625  Gooby 1.1.0 
         | 
| 42 | 
            +
                        // points.push(new GLatLng(36.1495,-86.80296)); // (20 of 1207.0) 2005-04-30T12:08:25Z 201 00:03:21 0.395166684821317  Gooby 1.1.0 
         | 
| 43 | 
            +
                        // points.push(new GLatLng(36.15,-86.80182)); // (21 of 1207.0) 2005-04-30T12:09:00Z 236 00:03:56 0.467542106297143  Gooby 1.1.0 
         | 
| 44 | 
            +
                        // points.push(new GLatLng(36.15041,-86.8009)); // (22 of 1207.0) 2005-04-30T12:09:28Z 264 00:04:24 0.526165433670955  Gooby 1.1.0 
         | 
| 45 | 
            +
                        // points.push(new GLatLng(36.15073,-86.80036)); // (23 of 1207.0) 2005-04-30T12:09:45Z 281 00:04:41 0.563533174876121  Gooby 1.1.0 
         | 
| 46 | 
            +
                        // points.push(new GLatLng(36.1509,-86.80002)); // (24 of 1207.0) 2005-04-30T12:09:56Z 292 00:04:52 0.585843214977657  Gooby 1.1.0 
         | 
| 47 | 
            +
                        points.push(new GLatLng(36.15113,-86.79955)); // (25 of 1207.0) 2005-04-30T12:10:11Z 307 00:05:07 0.616502897810645  Gooby 1.1.0 
         | 
| 48 | 
            +
                        // points.push(new GLatLng(36.15129,-86.79931)); // (26 of 1207.0) 2005-04-30T12:10:19Z 315 00:05:15 0.633865693942692  Gooby 1.1.0 
         | 
| 49 | 
            +
                        // points.push(new GLatLng(36.15154,-86.79882)); // (27 of 1207.0) 2005-04-30T12:10:35Z 331 00:05:31 0.666201238260048  Gooby 1.1.0 
         | 
| 50 | 
            +
                        // points.push(new GLatLng(36.15176,-86.79841)); // (28 of 1207.0) 2005-04-30T12:10:48Z 344 00:05:44 0.69366395527553  Gooby 1.1.0 
         | 
| 51 | 
            +
                        // points.push(new GLatLng(36.15193,-86.79809)); // (29 of 1207.0) 2005-04-30T12:10:58Z 354 00:05:54 0.715033129479603  Gooby 1.1.0 
         | 
| 52 | 
            +
                        // points.push(new GLatLng(36.15212,-86.79768)); // (30 of 1207.0) 2005-04-30T12:11:11Z 367 00:06:07 0.741405101616147  Gooby 1.1.0 
         | 
| 53 | 
            +
                        points.push(new GLatLng(36.15223,-86.79742)); // (31 of 1207.0) 2005-04-30T12:11:19Z 375 00:06:15 0.757780192213758  Gooby 1.1.0 
         | 
| 54 | 
            +
                        // points.push(new GLatLng(36.15238,-86.79703)); // (32 of 1207.0) 2005-04-30T12:11:32Z 388 00:06:28 0.781879197469583  Gooby 1.1.0 
         | 
| 55 | 
            +
                        // points.push(new GLatLng(36.15266,-86.79648)); // (33 of 1207.0) 2005-04-30T12:11:51Z 407 00:06:47 0.818151206748071  Gooby 1.1.0 
         | 
| 56 | 
            +
                        // points.push(new GLatLng(36.15279,-86.79618)); // (34 of 1207.0) 2005-04-30T12:12:02Z 418 00:06:58 0.837144817193595  Gooby 1.1.0 
         | 
| 57 | 
            +
                        // points.push(new GLatLng(36.15302,-86.79575)); // (35 of 1207.0) 2005-04-30T12:12:17Z 433 00:07:13 0.865918793378541  Gooby 1.1.0 
         | 
| 58 | 
            +
                        // points.push(new GLatLng(36.15319,-86.79538)); // (36 of 1207.0) 2005-04-30T12:12:30Z 446 00:07:26 0.889667432509591  Gooby 1.1.0 
         | 
| 59 | 
            +
                        points.push(new GLatLng(36.15341,-86.79502)); // (37 of 1207.0) 2005-04-30T12:12:43Z 459 00:07:39 0.914853939873745  Gooby 1.1.0 
         | 
| 60 | 
            +
                        // points.push(new GLatLng(36.15358,-86.79465)); // (38 of 1207.0) 2005-04-30T12:12:55Z 471 00:07:51 0.93860243249101  Gooby 1.1.0 
         | 
| 61 | 
            +
                        // points.push(new GLatLng(36.15375,-86.79433)); // (39 of 1207.0) 2005-04-30T12:13:06Z 482 00:08:02 0.959971281037316  Gooby 1.1.0 
         | 
| 62 | 
            +
                        // points.push(new GLatLng(36.15384,-86.79407)); // (40 of 1207.0) 2005-04-30T12:13:14Z 490 00:08:10 0.975752319644865  Gooby 1.1.0 
         | 
| 63 | 
            +
                        // points.push(new GLatLng(36.15395,-86.79371)); // (41 of 1207.0) 2005-04-30T12:13:25Z 501 00:08:21 0.997225126594517  Gooby 1.1.0 
         | 
| 64 | 
            +
                        points.push(new GLatLng(36.15399,-86.79358)); // (42 of 1207.0) 2005-04-30T12:13:29Z 505 00:08:25 1.00498592624051 1.0 00:08:25 Gooby 1.1.0 
         | 
| 65 | 
            +
                        // points.push(new GLatLng(36.15403,-86.79341)); // (43 of 1207.0) 2005-04-30T12:13:34Z 510 00:08:30 1.01486377631818  Gooby 1.1.0 
         | 
| 66 | 
            +
                        // points.push(new GLatLng(36.15414,-86.79309)); // (44 of 1207.0) 2005-04-30T12:13:44Z 520 00:08:40 1.03426564093012  Gooby 1.1.0 
         | 
| 67 | 
            +
                        // points.push(new GLatLng(36.15429,-86.79268)); // (45 of 1207.0) 2005-04-30T12:13:57Z 533 00:08:53 1.05937598207114  Gooby 1.1.0 
         | 
| 68 | 
            +
                        // points.push(new GLatLng(36.15442,-86.79238)); // (46 of 1207.0) 2005-04-30T12:14:07Z 543 00:09:03 1.07836931772551  Gooby 1.1.0 
         | 
| 69 | 
            +
                        // points.push(new GLatLng(36.15459,-86.79199)); // (47 of 1207.0) 2005-04-30T12:14:19Z 555 00:09:15 1.10309347919741  Gooby 1.1.0 
         | 
| 70 | 
            +
                        points.push(new GLatLng(36.15476,-86.79163)); // (48 of 1207.0) 2005-04-30T12:14:31Z 567 00:09:27 1.1263585357867  Gooby 1.1.0 
         | 
| 71 | 
            +
                        // points.push(new GLatLng(36.15491,-86.79128)); // (49 of 1207.0) 2005-04-30T12:14:42Z 578 00:09:38 1.14846324433713  Gooby 1.1.0 
         | 
| 72 | 
            +
                        // points.push(new GLatLng(36.15513,-86.79085)); // (50 of 1207.0) 2005-04-30T12:14:56Z 592 00:09:52 1.17686104291005  Gooby 1.1.0 
         | 
| 73 | 
            +
                        // points.push(new GLatLng(36.1553,-86.79043)); // (51 of 1207.0) 2005-04-30T12:15:09Z 605 00:10:05 1.20306976296555  Gooby 1.1.0 
         | 
| 74 | 
            +
                        // points.push(new GLatLng(36.15545,-86.79004)); // (52 of 1207.0) 2005-04-30T12:15:21Z 617 00:10:17 1.22716790190641  Gooby 1.1.0 
         | 
| 75 | 
            +
                        // points.push(new GLatLng(36.15558,-86.78974)); // (53 of 1207.0) 2005-04-30T12:15:30Z 626 00:10:26 1.24616114596285  Gooby 1.1.0 
         | 
| 76 | 
            +
                        points.push(new GLatLng(36.15573,-86.78937)); // (54 of 1207.0) 2005-04-30T12:15:41Z 637 00:10:37 1.26925703482932  Gooby 1.1.0 
         | 
| 77 | 
            +
                        // points.push(new GLatLng(36.15588,-86.78903)); // (55 of 1207.0) 2005-04-30T12:15:52Z 648 00:10:48 1.29087035837851  Gooby 1.1.0 
         | 
| 78 | 
            +
                        // points.push(new GLatLng(36.15603,-86.78862)); // (56 of 1207.0) 2005-04-30T12:16:04Z 660 00:11:00 1.31598021452649  Gooby 1.1.0 
         | 
| 79 | 
            +
                        // points.push(new GLatLng(36.15616,-86.7883)); // (57 of 1207.0) 2005-04-30T12:16:14Z 670 00:11:10 1.33596330562988  Gooby 1.1.0 
         | 
| 80 | 
            +
                        // points.push(new GLatLng(36.15628,-86.788)); // (58 of 1207.0) 2005-04-30T12:16:24Z 680 00:11:20 1.3546396324052  Gooby 1.1.0 
         | 
| 81 | 
            +
                        // points.push(new GLatLng(36.15644,-86.78768)); // (59 of 1207.0) 2005-04-30T12:16:35Z 691 00:11:31 1.37563610044759  Gooby 1.1.0 
         | 
| 82 | 
            +
                        points.push(new GLatLng(36.1565,-86.78755)); // (60 of 1207.0) 2005-04-30T12:16:40Z 696 00:11:36 1.38398919918005  Gooby 1.1.0 
         | 
| 83 | 
            +
                        // points.push(new GLatLng(36.15633,-86.7871)); // (61 of 1207.0) 2005-04-30T12:16:56Z 712 00:11:52 1.41170377870036  Gooby 1.1.0 
         | 
| 84 | 
            +
                        // points.push(new GLatLng(36.15577,-86.78695)); // (62 of 1207.0) 2005-04-30T12:17:13Z 729 00:12:09 1.45128864331563  Gooby 1.1.0 
         | 
| 85 | 
            +
                        // points.push(new GLatLng(36.15547,-86.78674)); // (63 of 1207.0) 2005-04-30T12:17:26Z 742 00:12:22 1.47509713098813  Gooby 1.1.0 
         | 
| 86 | 
            +
                        // points.push(new GLatLng(36.15517,-86.78658)); // (64 of 1207.0) 2005-04-30T12:17:38Z 754 00:12:34 1.49766419562219  Gooby 1.1.0 
         | 
| 87 | 
            +
                        // points.push(new GLatLng(36.15498,-86.78643)); // (65 of 1207.0) 2005-04-30T12:17:46Z 762 00:12:42 1.51323145862589  Gooby 1.1.0 
         | 
| 88 | 
            +
                        points.push(new GLatLng(36.15483,-86.78633)); // (66 of 1207.0) 2005-04-30T12:17:52Z 768 00:12:48 1.52500099840659  Gooby 1.1.0 
         | 
| 89 | 
            +
                        // points.push(new GLatLng(36.15465,-86.78639)); // (67 of 1207.0) 2005-04-30T12:17:57Z 773 00:12:53 1.53787967991493  Gooby 1.1.0 
         | 
| 90 | 
            +
                        // points.push(new GLatLng(36.15461,-86.78643)); // (68 of 1207.0) 2005-04-30T12:17:59Z 775 00:12:55 1.54143167075963  Gooby 1.1.0 
         | 
| 91 | 
            +
                        // points.push(new GLatLng(36.15433,-86.78689)); // (69 of 1207.0) 2005-04-30T12:18:14Z 790 00:13:10 1.57356796085119  Gooby 1.1.0 
         | 
| 92 | 
            +
                        // points.push(new GLatLng(36.15414,-86.78731)); // (70 of 1207.0) 2005-04-30T12:18:28Z 804 00:13:24 1.60042470728527  Gooby 1.1.0 
         | 
| 93 | 
            +
                        // points.push(new GLatLng(36.15395,-86.78774)); // (71 of 1207.0) 2005-04-30T12:18:42Z 818 00:13:38 1.62776946782984  Gooby 1.1.0 
         | 
| 94 | 
            +
                        points.push(new GLatLng(36.15375,-86.78815)); // (72 of 1207.0) 2005-04-30T12:18:55Z 831 00:13:51 1.65449159052911  Gooby 1.1.0 
         | 
| 95 | 
            +
                        // points.push(new GLatLng(36.15354,-86.78856)); // (73 of 1207.0) 2005-04-30T12:19:09Z 845 00:14:05 1.68157745373406  Gooby 1.1.0 
         | 
| 96 | 
            +
                        // points.push(new GLatLng(36.15332,-86.78899)); // (74 of 1207.0) 2005-04-30T12:19:23Z 859 00:14:19 1.7099756198851  Gooby 1.1.0 
         | 
| 97 | 
            +
                        // points.push(new GLatLng(36.15328,-86.78922)); // (75 of 1207.0) 2005-04-30T12:19:33Z 869 00:14:29 1.72310050857662  Gooby 1.1.0 
         | 
| 98 | 
            +
                        // points.push(new GLatLng(36.15322,-86.7894)); // (76 of 1207.0) 2005-04-30T12:19:40Z 876 00:14:36 1.73396393065379  Gooby 1.1.0 
         | 
| 99 | 
            +
                        // points.push(new GLatLng(36.15307,-86.7897)); // (77 of 1207.0) 2005-04-30T12:19:54Z 890 00:14:50 1.75364870082886  Gooby 1.1.0 
         | 
| 100 | 
            +
                        points.push(new GLatLng(36.15296,-86.79002)); // (78 of 1207.0) 2005-04-30T12:20:05Z 901 00:15:01 1.773050744778  Gooby 1.1.0 
         | 
| 101 | 
            +
                        // points.push(new GLatLng(36.15281,-86.79038)); // (79 of 1207.0) 2005-04-30T12:20:17Z 913 00:15:13 1.79565016496858  Gooby 1.1.0 
         | 
| 102 | 
            +
                        // points.push(new GLatLng(36.15264,-86.79075)); // (80 of 1207.0) 2005-04-30T12:20:30Z 926 00:15:26 1.81939887735618  Gooby 1.1.0 
         | 
| 103 | 
            +
                        // points.push(new GLatLng(36.15242,-86.79116)); // (81 of 1207.0) 2005-04-30T12:20:45Z 941 00:15:41 1.84686127762293  Gooby 1.1.0 
         | 
| 104 | 
            +
                        // points.push(new GLatLng(36.15225,-86.79154)); // (82 of 1207.0) 2005-04-30T12:21:00Z 956 00:15:56 1.87109655631293  Gooby 1.1.0 
         | 
| 105 | 
            +
                        // points.push(new GLatLng(36.15225,-86.79184)); // (83 of 1207.0) 2005-04-30T12:21:09Z 965 00:16:05 1.88783251067848  Gooby 1.1.0 
         | 
| 106 | 
            +
                        points.push(new GLatLng(36.15219,-86.79216)); // (84 of 1207.0) 2005-04-30T12:21:19Z 975 00:16:15 1.90615922422917  Gooby 1.1.0 
         | 
| 107 | 
            +
                        // points.push(new GLatLng(36.1521,-86.7927)); // (85 of 1207.0) 2005-04-30T12:21:35Z 991 00:16:31 1.93691917957264  Gooby 1.1.0 
         | 
| 108 | 
            +
                        // points.push(new GLatLng(36.15193,-86.79313)); // (86 of 1207.0) 2005-04-30T12:21:49Z 1005 00:16:45 1.96362873403442  Gooby 1.1.0 
         | 
| 109 | 
            +
                        // points.push(new GLatLng(36.15165,-86.7933)); // (87 of 1207.0) 2005-04-30T12:22:01Z 1017 00:16:57 1.98517352891427  Gooby 1.1.0 
         | 
| 110 | 
            +
                        points.push(new GLatLng(36.15116,-86.79341)); // (88 of 1207.0) 2005-04-30T12:22:18Z 1034 00:17:14 2.01957931424511 2.0 00:08:49 Gooby 1.1.0 
         | 
| 111 | 
            +
                        // points.push(new GLatLng(36.15058,-86.79315)); // (89 of 1207.0) 2005-04-30T12:22:30Z 1046 00:17:26 2.06219585682865  Gooby 1.1.0 
         | 
| 112 | 
            +
                        // points.push(new GLatLng(36.15021,-86.79322)); // (90 of 1207.0) 2005-04-30T12:22:43Z 1059 00:17:39 2.08805574966123  Gooby 1.1.0 
         | 
| 113 | 
            +
                        // points.push(new GLatLng(36.1498,-86.79326)); // (91 of 1207.0) 2005-04-30T12:22:57Z 1073 00:17:53 2.11647045190591  Gooby 1.1.0 
         | 
| 114 | 
            +
                        // points.push(new GLatLng(36.1494,-86.79334)); // (92 of 1207.0) 2005-04-30T12:23:11Z 1087 00:18:07 2.14446453424279  Gooby 1.1.0 
         | 
| 115 | 
            +
                        // points.push(new GLatLng(36.1489,-86.79343)); // (93 of 1207.0) 2005-04-30T12:23:28Z 1104 00:18:24 2.17937251191084  Gooby 1.1.0 
         | 
| 116 | 
            +
                        points.push(new GLatLng(36.14852,-86.79349)); // (94 of 1207.0) 2005-04-30T12:23:41Z 1117 00:18:37 2.20583917819602  Gooby 1.1.0 
         | 
| 117 | 
            +
                        // points.push(new GLatLng(36.14811,-86.79356)); // (95 of 1207.0) 2005-04-30T12:23:55Z 1131 00:18:51 2.23443399040618  Gooby 1.1.0 
         | 
| 118 | 
            +
                        // points.push(new GLatLng(36.14796,-86.79362)); // (96 of 1207.0) 2005-04-30T12:24:01Z 1137 00:18:57 2.24532476321643  Gooby 1.1.0 
         | 
| 119 | 
            +
                        // points.push(new GLatLng(36.14774,-86.79345)); // (97 of 1207.0) 2005-04-30T12:24:08Z 1144 00:19:04 2.26324086327035  Gooby 1.1.0 
         | 
| 120 | 
            +
                        // points.push(new GLatLng(36.14759,-86.79352)); // (98 of 1207.0) 2005-04-30T12:24:13Z 1149 00:19:09 2.2743157042362  Gooby 1.1.0 
         | 
| 121 | 
            +
                        // points.push(new GLatLng(36.14723,-86.79367)); // (99 of 1207.0) 2005-04-30T12:24:26Z 1162 00:19:22 2.30055819018002  Gooby 1.1.0 
         | 
| 122 | 
            +
                        points.push(new GLatLng(36.14684,-86.79377)); // (100 of 1207.0) 2005-04-30T12:24:40Z 1176 00:19:36 2.32807489115917  Gooby 1.1.0 
         | 
| 123 | 
            +
                        // points.push(new GLatLng(36.14646,-86.79384)); // (101 of 1207.0) 2005-04-30T12:24:54Z 1190 00:19:50 2.35461796093737  Gooby 1.1.0 
         | 
| 124 | 
            +
                        // points.push(new GLatLng(36.14586,-86.79392)); // (102 of 1207.0) 2005-04-30T12:25:15Z 1211 00:20:11 2.39631153762143  Gooby 1.1.0 
         | 
| 125 | 
            +
                        // points.push(new GLatLng(36.14541,-86.79407)); // (103 of 1207.0) 2005-04-30T12:25:32Z 1228 00:20:28 2.42850861963451  Gooby 1.1.0 
         | 
| 126 | 
            +
                        // points.push(new GLatLng(36.14513,-86.79412)); // (104 of 1207.0) 2005-04-30T12:25:43Z 1239 00:20:39 2.4480539621744  Gooby 1.1.0 
         | 
| 127 | 
            +
                        // points.push(new GLatLng(36.14489,-86.79418)); // (105 of 1207.0) 2005-04-30T12:25:52Z 1248 00:20:48 2.46497023845021  Gooby 1.1.0 
         | 
| 128 | 
            +
                        points.push(new GLatLng(36.14433,-86.79431)); // (106 of 1207.0) 2005-04-30T12:26:13Z 1269 00:21:09 2.50433456401668  Gooby 1.1.0 
         | 
| 129 | 
            +
                        // points.push(new GLatLng(36.14393,-86.7944)); // (107 of 1207.0) 2005-04-30T12:26:29Z 1285 00:21:25 2.53242301277453  Gooby 1.1.0 
         | 
| 130 | 
            +
                        // points.push(new GLatLng(36.14365,-86.79444)); // (108 of 1207.0) 2005-04-30T12:26:39Z 1295 00:21:35 2.55189648047378  Gooby 1.1.0 
         | 
| 131 | 
            +
                        // points.push(new GLatLng(36.1432,-86.79444)); // (109 of 1207.0) 2005-04-30T12:26:55Z 1311 00:21:51 2.58298694315613  Gooby 1.1.0 
         | 
| 132 | 
            +
                        // points.push(new GLatLng(36.14272,-86.79452)); // (110 of 1207.0) 2005-04-30T12:27:12Z 1328 00:22:08 2.61644913090668  Gooby 1.1.0 
         | 
| 133 | 
            +
                        // points.push(new GLatLng(36.14225,-86.79465)); // (111 of 1207.0) 2005-04-30T12:27:29Z 1345 00:22:25 2.64972158402774  Gooby 1.1.0 
         | 
| 134 | 
            +
                        points.push(new GLatLng(36.14174,-86.79474)); // (112 of 1207.0) 2005-04-30T12:27:48Z 1364 00:22:44 2.68531341946409  Gooby 1.1.0 
         | 
| 135 | 
            +
                        // points.push(new GLatLng(36.14135,-86.79487)); // (113 of 1207.0) 2005-04-30T12:28:03Z 1379 00:22:59 2.71321767968618  Gooby 1.1.0 
         | 
| 136 | 
            +
                        // points.push(new GLatLng(36.14094,-86.795)); // (114 of 1207.0) 2005-04-30T12:28:19Z 1395 00:23:15 2.74245838956667  Gooby 1.1.0 
         | 
| 137 | 
            +
                        // points.push(new GLatLng(36.14053,-86.79508)); // (115 of 1207.0) 2005-04-30T12:28:37Z 1413 00:23:33 2.77113479525932  Gooby 1.1.0 
         | 
| 138 | 
            +
                        // points.push(new GLatLng(36.14006,-86.79513)); // (116 of 1207.0) 2005-04-30T12:29:01Z 1437 00:23:57 2.80372671630283  Gooby 1.1.0 
         | 
| 139 | 
            +
                        // points.push(new GLatLng(36.13961,-86.79519)); // (117 of 1207.0) 2005-04-30T12:29:19Z 1455 00:24:15 2.83499689881581  Gooby 1.1.0 
         | 
| 140 | 
            +
                        points.push(new GLatLng(36.1392,-86.79528)); // (118 of 1207.0) 2005-04-30T12:29:34Z 1470 00:24:30 2.86376543286236  Gooby 1.1.0 
         | 
| 141 | 
            +
                        // points.push(new GLatLng(36.13858,-86.79536)); // (119 of 1207.0) 2005-04-30T12:29:56Z 1492 00:24:52 2.90683313376297  Gooby 1.1.0 
         | 
| 142 | 
            +
                        // points.push(new GLatLng(36.13777,-86.79553)); // (120 of 1207.0) 2005-04-30T12:30:25Z 1521 00:25:21 2.96359422912679  Gooby 1.1.0 
         | 
| 143 | 
            +
                        points.push(new GLatLng(36.13714,-86.79568)); // (121 of 1207.0) 2005-04-30T12:30:48Z 1544 00:25:44 3.00791828850043 3.0 00:08:30 Gooby 1.1.0 
         | 
| 144 | 
            +
                        // points.push(new GLatLng(36.13693,-86.79575)); // (122 of 1207.0) 2005-04-30T12:30:56Z 1552 00:25:52 3.02294371282939  Gooby 1.1.0 
         | 
| 145 | 
            +
                        // points.push(new GLatLng(36.13678,-86.79579)); // (123 of 1207.0) 2005-04-30T12:31:02Z 1558 00:25:58 3.03354485053902  Gooby 1.1.0 
         | 
| 146 | 
            +
                        // points.push(new GLatLng(36.13639,-86.79605)); // (124 of 1207.0) 2005-04-30T12:31:19Z 1575 00:26:15 3.06414722534428  Gooby 1.1.0 
         | 
| 147 | 
            +
                        // points.push(new GLatLng(36.13609,-86.79639)); // (125 of 1207.0) 2005-04-30T12:31:33Z 1589 00:26:29 3.09224570628844  Gooby 1.1.0 
         | 
| 148 | 
            +
                        // points.push(new GLatLng(36.13581,-86.79682)); // (126 of 1207.0) 2005-04-30T12:31:48Z 1604 00:26:44 3.12306651526394  Gooby 1.1.0 
         | 
| 149 | 
            +
                        points.push(new GLatLng(36.13554,-86.79727)); // (127 of 1207.0) 2005-04-30T12:32:04Z 1620 00:27:00 3.15434698873326  Gooby 1.1.0 
         | 
| 150 | 
            +
                        // points.push(new GLatLng(36.13549,-86.79731)); // (128 of 1207.0) 2005-04-30T12:32:06Z 1622 00:27:02 3.15845962923674  Gooby 1.1.0 
         | 
| 151 | 
            +
                        // points.push(new GLatLng(36.13519,-86.79714)); // (129 of 1207.0) 2005-04-30T12:32:17Z 1633 00:27:13 3.18125405007338  Gooby 1.1.0 
         | 
| 152 | 
            +
                        // points.push(new GLatLng(36.13476,-86.79706)); // (130 of 1207.0) 2005-04-30T12:32:32Z 1648 00:27:28 3.2112962134646  Gooby 1.1.0 
         | 
| 153 | 
            +
                        // points.push(new GLatLng(36.13423,-86.79708)); // (131 of 1207.0) 2005-04-30T12:32:50Z 1666 00:27:46 3.24793093467726  Gooby 1.1.0 
         | 
| 154 | 
            +
                        // points.push(new GLatLng(36.1336,-86.79714)); // (132 of 1207.0) 2005-04-30T12:33:11Z 1687 00:28:07 3.2915861811618  Gooby 1.1.0 
         | 
| 155 | 
            +
                        points.push(new GLatLng(36.13305,-86.79723)); // (133 of 1207.0) 2005-04-30T12:33:30Z 1706 00:28:26 3.32991607569485  Gooby 1.1.0 
         | 
| 156 | 
            +
                        // points.push(new GLatLng(36.13277,-86.79714)); // (134 of 1207.0) 2005-04-30T12:33:42Z 1718 00:28:38 3.34990256188539  Gooby 1.1.0 
         | 
| 157 | 
            +
                        // points.push(new GLatLng(36.13275,-86.79712)); // (135 of 1207.0) 2005-04-30T12:33:43Z 1719 00:28:39 3.35167806744553  Gooby 1.1.0 
         | 
| 158 | 
            +
                        // points.push(new GLatLng(36.13277,-86.79686)); // (136 of 1207.0) 2005-04-30T12:33:50Z 1726 00:28:46 3.36625185099595  Gooby 1.1.0 
         | 
| 159 | 
            +
                        // points.push(new GLatLng(36.13277,-86.79652)); // (137 of 1207.0) 2005-04-30T12:33:59Z 1735 00:28:55 3.38522429087707  Gooby 1.1.0 
         | 
| 160 | 
            +
                        // points.push(new GLatLng(36.13275,-86.79613)); // (138 of 1207.0) 2005-04-30T12:34:10Z 1746 00:29:06 3.40703042334564  Gooby 1.1.0 
         | 
| 161 | 
            +
                        points.push(new GLatLng(36.13275,-86.79577)); // (139 of 1207.0) 2005-04-30T12:34:21Z 1757 00:29:17 3.42711866854481  Gooby 1.1.0 
         | 
| 162 | 
            +
                        // points.push(new GLatLng(36.13272,-86.79573)); // (140 of 1207.0) 2005-04-30T12:34:23Z 1759 00:29:19 3.43016437476576  Gooby 1.1.0 
         | 
| 163 | 
            +
                        // points.push(new GLatLng(36.13255,-86.7956)); // (141 of 1207.0) 2005-04-30T12:34:30Z 1766 00:29:26 3.44396914899335  Gooby 1.1.0 
         | 
| 164 | 
            +
                        // points.push(new GLatLng(36.13225,-86.79551)); // (142 of 1207.0) 2005-04-30T12:34:41Z 1777 00:29:37 3.46529578283933  Gooby 1.1.0 
         | 
| 165 | 
            +
                        // points.push(new GLatLng(36.13169,-86.79551)); // (143 of 1207.0) 2005-04-30T12:35:00Z 1796 00:29:56 3.50398613930855  Gooby 1.1.0 
         | 
| 166 | 
            +
                        // points.push(new GLatLng(36.13131,-86.79555)); // (144 of 1207.0) 2005-04-30T12:35:15Z 1811 00:30:11 3.53033514405373  Gooby 1.1.0 
         | 
| 167 | 
            +
                        points.push(new GLatLng(36.13051,-86.79562)); // (145 of 1207.0) 2005-04-30T12:35:44Z 1840 00:30:40 3.58574502822376  Gooby 1.1.0 
         | 
| 168 | 
            +
                        // points.push(new GLatLng(36.12983,-86.79566)); // (146 of 1207.0) 2005-04-30T12:36:08Z 1864 00:31:04 3.63277922801618  Gooby 1.1.0 
         | 
| 169 | 
            +
                        // points.push(new GLatLng(36.12929,-86.79564)); // (147 of 1207.0) 2005-04-30T12:36:27Z 1883 00:31:23 3.67010448469083  Gooby 1.1.0 
         | 
| 170 | 
            +
                        // points.push(new GLatLng(36.12871,-86.79538)); // (148 of 1207.0) 2005-04-30T12:36:49Z 1905 00:31:45 3.71272245606447  Gooby 1.1.0 
         | 
| 171 | 
            +
                        // points.push(new GLatLng(36.12848,-86.79515)); // (149 of 1207.0) 2005-04-30T12:37:01Z 1917 00:31:57 3.7331490758219  Gooby 1.1.0 
         | 
| 172 | 
            +
                        // points.push(new GLatLng(36.1283,-86.79497)); // (150 of 1207.0) 2005-04-30T12:37:10Z 1926 00:32:06 3.74913504809652  Gooby 1.1.0 
         | 
| 173 | 
            +
                        points.push(new GLatLng(36.12794,-86.79463)); // (151 of 1207.0) 2005-04-30T12:37:26Z 1942 00:32:22 3.7804179686463  Gooby 1.1.0 
         | 
| 174 | 
            +
                        // points.push(new GLatLng(36.12757,-86.7944)); // (152 of 1207.0) 2005-04-30T12:37:42Z 1958 00:32:38 3.80902245299063  Gooby 1.1.0 
         | 
| 175 | 
            +
                        // points.push(new GLatLng(36.12715,-86.79416)); // (153 of 1207.0) 2005-04-30T12:37:59Z 1975 00:32:55 3.84098187969141  Gooby 1.1.0 
         | 
| 176 | 
            +
                        // points.push(new GLatLng(36.12654,-86.79397)); // (154 of 1207.0) 2005-04-30T12:38:22Z 1998 00:33:18 3.88444005188928  Gooby 1.1.0 
         | 
| 177 | 
            +
                        // points.push(new GLatLng(36.1259,-86.79394)); // (155 of 1207.0) 2005-04-30T12:38:45Z 2021 00:33:41 3.92868927568573  Gooby 1.1.0 
         | 
| 178 | 
            +
                        // points.push(new GLatLng(36.12528,-86.79405)); // (156 of 1207.0) 2005-04-30T12:39:06Z 2042 00:34:02 3.97196266461468  Gooby 1.1.0 
         | 
| 179 | 
            +
                        points.push(new GLatLng(36.12476,-86.7942)); // (157 of 1207.0) 2005-04-30T12:39:24Z 2060 00:34:20 4.00885170892019 4.0 00:08:36 Gooby 1.1.0 
         | 
| 180 | 
            +
                        // points.push(new GLatLng(36.12448,-86.79427)); // (158 of 1207.0) 2005-04-30T12:39:34Z 2070 00:34:30 4.02858740865148  Gooby 1.1.0 
         | 
| 181 | 
            +
                        // points.push(new GLatLng(36.12421,-86.79435)); // (159 of 1207.0) 2005-04-30T12:39:44Z 2080 00:34:40 4.04776850750817  Gooby 1.1.0 
         | 
| 182 | 
            +
                        // points.push(new GLatLng(36.12365,-86.7945)); // (160 of 1207.0) 2005-04-30T12:40:04Z 2100 00:35:00 4.08735407531368  Gooby 1.1.0 
         | 
| 183 | 
            +
                        // points.push(new GLatLng(36.12285,-86.79467)); // (161 of 1207.0) 2005-04-30T12:40:34Z 2130 00:35:30 4.14343439018997  Gooby 1.1.0 
         | 
| 184 | 
            +
                        // points.push(new GLatLng(36.12236,-86.79478)); // (162 of 1207.0) 2005-04-30T12:40:51Z 2147 00:35:47 4.17784058004252  Gooby 1.1.0 
         | 
| 185 | 
            +
                        points.push(new GLatLng(36.12144,-86.79497)); // (163 of 1207.0) 2005-04-30T12:41:23Z 2179 00:36:19 4.24228176374313  Gooby 1.1.0 
         | 
| 186 | 
            +
                        // points.push(new GLatLng(36.12088,-86.79513)); // (164 of 1207.0) 2005-04-30T12:41:43Z 2199 00:36:39 4.28198923417381  Gooby 1.1.0 
         | 
| 187 | 
            +
                        // points.push(new GLatLng(36.12028,-86.79532)); // (165 of 1207.0) 2005-04-30T12:42:05Z 2221 00:37:01 4.32477794806073  Gooby 1.1.0 
         | 
| 188 | 
            +
                        // points.push(new GLatLng(36.11974,-86.79553)); // (166 of 1207.0) 2005-04-30T12:42:24Z 2240 00:37:20 4.36388411794891  Gooby 1.1.0 
         | 
| 189 | 
            +
                        // points.push(new GLatLng(36.11927,-86.79583)); // (167 of 1207.0) 2005-04-30T12:42:43Z 2259 00:37:39 4.40041869044696  Gooby 1.1.0 
         | 
| 190 | 
            +
                        // points.push(new GLatLng(36.11878,-86.79618)); // (168 of 1207.0) 2005-04-30T12:43:02Z 2278 00:37:58 4.43950403451532  Gooby 1.1.0 
         | 
| 191 | 
            +
                        points.push(new GLatLng(36.11815,-86.79669)); // (169 of 1207.0) 2005-04-30T12:43:28Z 2304 00:38:24 4.49151123131562  Gooby 1.1.0 
         | 
| 192 | 
            +
                        // points.push(new GLatLng(36.11783,-86.79701)); // (170 of 1207.0) 2005-04-30T12:43:43Z 2319 00:38:39 4.5199323616651  Gooby 1.1.0 
         | 
| 193 | 
            +
                        // points.push(new GLatLng(36.11749,-86.79734)); // (171 of 1207.0) 2005-04-30T12:43:58Z 2334 00:38:54 4.54978234358811  Gooby 1.1.0 
         | 
| 194 | 
            +
                        // points.push(new GLatLng(36.11719,-86.79759)); // (172 of 1207.0) 2005-04-30T12:44:11Z 2347 00:39:07 4.5747681496104  Gooby 1.1.0 
         | 
| 195 | 
            +
                        // points.push(new GLatLng(36.11685,-86.79789)); // (173 of 1207.0) 2005-04-30T12:44:26Z 2362 00:39:22 4.60361531325121  Gooby 1.1.0 
         | 
| 196 | 
            +
                        // points.push(new GLatLng(36.11646,-86.79821)); // (174 of 1207.0) 2005-04-30T12:44:42Z 2378 00:39:38 4.63594197887072  Gooby 1.1.0 
         | 
| 197 | 
            +
                        points.push(new GLatLng(36.11607,-86.79854)); // (175 of 1207.0) 2005-04-30T12:44:58Z 2394 00:39:54 4.66858030719156  Gooby 1.1.0 
         | 
| 198 | 
            +
                        // points.push(new GLatLng(36.11567,-86.79886)); // (176 of 1207.0) 2005-04-30T12:45:15Z 2411 00:40:11 4.70148513247236  Gooby 1.1.0 
         | 
| 199 | 
            +
                        // points.push(new GLatLng(36.11526,-86.79918)); // (177 of 1207.0) 2005-04-30T12:45:32Z 2428 00:40:28 4.73497237070316  Gooby 1.1.0 
         | 
| 200 | 
            +
                        // points.push(new GLatLng(36.11491,-86.79942)); // (178 of 1207.0) 2005-04-30T12:45:47Z 2443 00:40:43 4.76261605082557  Gooby 1.1.0 
         | 
| 201 | 
            +
                        // points.push(new GLatLng(36.11453,-86.79965)); // (179 of 1207.0) 2005-04-30T12:46:03Z 2459 00:40:59 4.79184063246348  Gooby 1.1.0 
         | 
| 202 | 
            +
                        // points.push(new GLatLng(36.11444,-86.79963)); // (180 of 1207.0) 2005-04-30T12:46:07Z 2463 00:41:03 4.7981580509477  Gooby 1.1.0 
         | 
| 203 | 
            +
                        points.push(new GLatLng(36.11442,-86.79944)); // (181 of 1207.0) 2005-04-30T12:46:12Z 2468 00:41:08 4.80885232190606  Gooby 1.1.0 
         | 
| 204 | 
            +
                        // points.push(new GLatLng(36.11438,-86.79907)); // (182 of 1207.0) 2005-04-30T12:46:21Z 2477 00:41:17 4.82968750692442  Gooby 1.1.0 
         | 
| 205 | 
            +
                        // points.push(new GLatLng(36.11429,-86.7986)); // (183 of 1207.0) 2005-04-30T12:46:33Z 2489 00:41:29 4.85664679667323  Gooby 1.1.0 
         | 
| 206 | 
            +
                        // points.push(new GLatLng(36.11429,-86.79847)); // (184 of 1207.0) 2005-04-30T12:46:37Z 2493 00:41:33 4.86390246466472  Gooby 1.1.0 
         | 
| 207 | 
            +
                        // points.push(new GLatLng(36.11427,-86.79839)); // (185 of 1207.0) 2005-04-30T12:46:39Z 2495 00:41:35 4.86857624819132  Gooby 1.1.0 
         | 
| 208 | 
            +
                        // points.push(new GLatLng(36.11416,-86.798)); // (186 of 1207.0) 2005-04-30T12:46:50Z 2506 00:41:46 4.89163225459145  Gooby 1.1.0 
         | 
| 209 | 
            +
                        points.push(new GLatLng(36.11412,-86.79768)); // (187 of 1207.0) 2005-04-30T12:46:59Z 2515 00:41:55 4.90970546172456  Gooby 1.1.0 
         | 
| 210 | 
            +
                        // points.push(new GLatLng(36.11408,-86.79714)); // (188 of 1207.0) 2005-04-30T12:47:14Z 2530 00:42:10 4.93997153994282  Gooby 1.1.0 
         | 
| 211 | 
            +
                        // points.push(new GLatLng(36.11393,-86.79669)); // (189 of 1207.0) 2005-04-30T12:47:27Z 2543 00:42:23 4.96714205549462  Gooby 1.1.0 
         | 
| 212 | 
            +
                        // points.push(new GLatLng(36.11386,-86.7962)); // (190 of 1207.0) 2005-04-30T12:47:41Z 2557 00:42:37 4.99491526638672  Gooby 1.1.0 
         | 
| 213 | 
            +
                        points.push(new GLatLng(36.11384,-86.79568)); // (191 of 1207.0) 2005-04-30T12:47:56Z 2572 00:42:52 5.02397148781549 5.0 00:08:32 Gooby 1.1.0 
         | 
| 214 | 
            +
                        // points.push(new GLatLng(36.11386,-86.79558)); // (192 of 1207.0) 2005-04-30T12:47:59Z 2575 00:42:55 5.02972115354757  Gooby 1.1.0 
         | 
| 215 | 
            +
                        // points.push(new GLatLng(36.11391,-86.79517)); // (193 of 1207.0) 2005-04-30T12:48:11Z 2587 00:43:07 5.05286414913353  Gooby 1.1.0 
         | 
| 216 | 
            +
                        // points.push(new GLatLng(36.11403,-86.79472)); // (194 of 1207.0) 2005-04-30T12:48:25Z 2601 00:43:21 5.07931352186305  Gooby 1.1.0 
         | 
| 217 | 
            +
                        // points.push(new GLatLng(36.11418,-86.79429)); // (195 of 1207.0) 2005-04-30T12:48:38Z 2614 00:43:34 5.10545557756269  Gooby 1.1.0 
         | 
| 218 | 
            +
                        // points.push(new GLatLng(36.11421,-86.79388)); // (196 of 1207.0) 2005-04-30T12:48:49Z 2625 00:43:45 5.12843289854824  Gooby 1.1.0 
         | 
| 219 | 
            +
                        points.push(new GLatLng(36.11412,-86.79324)); // (197 of 1207.0) 2005-04-30T12:49:07Z 2643 00:44:03 5.16469104361709  Gooby 1.1.0 
         | 
| 220 | 
            +
                        // points.push(new GLatLng(36.11408,-86.79272)); // (198 of 1207.0) 2005-04-30T12:49:21Z 2657 00:44:17 5.19384565299518  Gooby 1.1.0 
         | 
| 221 | 
            +
                        // points.push(new GLatLng(36.11406,-86.79223)); // (199 of 1207.0) 2005-04-30T12:49:35Z 2671 00:44:31 5.2212294499834  Gooby 1.1.0 
         | 
| 222 | 
            +
                        // points.push(new GLatLng(36.11399,-86.79186)); // (200 of 1207.0) 2005-04-30T12:49:46Z 2682 00:44:42 5.24243943714105  Gooby 1.1.0 
         | 
| 223 | 
            +
                        // points.push(new GLatLng(36.11395,-86.79148)); // (201 of 1207.0) 2005-04-30T12:49:57Z 2693 00:44:53 5.26382814173735  Gooby 1.1.0 
         | 
| 224 | 
            +
                        // points.push(new GLatLng(36.11391,-86.79096)); // (202 of 1207.0) 2005-04-30T12:50:12Z 2708 00:45:08 5.29298275111545  Gooby 1.1.0 
         | 
| 225 | 
            +
                        points.push(new GLatLng(36.11386,-86.7904)); // (203 of 1207.0) 2005-04-30T12:50:28Z 2724 00:45:24 5.32442897097347  Gooby 1.1.0 
         | 
| 226 | 
            +
                        // points.push(new GLatLng(36.11382,-86.78989)); // (204 of 1207.0) 2005-04-30T12:50:43Z 2739 00:45:39 5.35302798092663  Gooby 1.1.0 
         | 
| 227 | 
            +
                        // points.push(new GLatLng(36.11378,-86.78937)); // (205 of 1207.0) 2005-04-30T12:50:59Z 2755 00:45:55 5.3821827096507  Gooby 1.1.0 
         | 
| 228 | 
            +
                        // points.push(new GLatLng(36.11369,-86.78864)); // (206 of 1207.0) 2005-04-30T12:51:21Z 2777 00:46:17 5.42339886707321  Gooby 1.1.0 
         | 
| 229 | 
            +
                        // points.push(new GLatLng(36.11367,-86.78809)); // (207 of 1207.0) 2005-04-30T12:51:36Z 2792 00:46:32 5.45412786917972  Gooby 1.1.0 
         | 
| 230 | 
            +
                        // points.push(new GLatLng(36.11361,-86.78755)); // (208 of 1207.0) 2005-04-30T12:51:52Z 2808 00:46:48 5.48455138272565  Gooby 1.1.0 
         | 
| 231 | 
            +
                        points.push(new GLatLng(36.11352,-86.78689)); // (209 of 1207.0) 2005-04-30T12:52:11Z 2827 00:47:07 5.52191004412812  Gooby 1.1.0 
         | 
| 232 | 
            +
                        // points.push(new GLatLng(36.11352,-86.78678)); // (210 of 1207.0) 2005-04-30T12:52:14Z 2830 00:47:10 5.52804981767629  Gooby 1.1.0 
         | 
| 233 | 
            +
                        // points.push(new GLatLng(36.11369,-86.78671)); // (211 of 1207.0) 2005-04-30T12:52:19Z 2835 00:47:15 5.54042786124117  Gooby 1.1.0 
         | 
| 234 | 
            +
                        // points.push(new GLatLng(36.11376,-86.78671)); // (212 of 1207.0) 2005-04-30T12:52:21Z 2837 00:47:17 5.54526409397132  Gooby 1.1.0 
         | 
| 235 | 
            +
                        // points.push(new GLatLng(36.11421,-86.78671)); // (213 of 1207.0) 2005-04-30T12:52:34Z 2850 00:47:30 5.57635455665367  Gooby 1.1.0 
         | 
| 236 | 
            +
                        // points.push(new GLatLng(36.11479,-86.78678)); // (214 of 1207.0) 2005-04-30T12:52:52Z 2868 00:47:48 5.61661678131167  Gooby 1.1.0 
         | 
| 237 | 
            +
                        points.push(new GLatLng(36.11483,-86.78682)); // (215 of 1207.0) 2005-04-30T12:52:54Z 2870 00:47:50 5.62016926191726  Gooby 1.1.0 
         | 
| 238 | 
            +
                        // points.push(new GLatLng(36.11485,-86.78706)); // (216 of 1207.0) 2005-04-30T12:53:01Z 2877 00:47:57 5.63363567116331  Gooby 1.1.0 
         | 
| 239 | 
            +
                        // points.push(new GLatLng(36.11489,-86.78755)); // (217 of 1207.0) 2005-04-30T12:53:15Z 2891 00:48:11 5.66112358966936  Gooby 1.1.0 
         | 
| 240 | 
            +
                        // points.push(new GLatLng(36.11494,-86.78807)); // (218 of 1207.0) 2005-04-30T12:53:30Z 2906 00:48:26 5.69035138576303  Gooby 1.1.0 
         | 
| 241 | 
            +
                        // points.push(new GLatLng(36.11498,-86.78862)); // (219 of 1207.0) 2005-04-30T12:53:46Z 2922 00:48:42 5.72117287209662  Gooby 1.1.0 
         | 
| 242 | 
            +
                        // points.push(new GLatLng(36.11506,-86.78927)); // (220 of 1207.0) 2005-04-30T12:54:04Z 2940 00:49:00 5.75787022524535  Gooby 1.1.0 
         | 
| 243 | 
            +
                        points.push(new GLatLng(36.11509,-86.78993)); // (221 of 1207.0) 2005-04-30T12:54:22Z 2958 00:49:18 5.79476530574105  Gooby 1.1.0 
         | 
| 244 | 
            +
                        // points.push(new GLatLng(36.11511,-86.79045)); // (222 of 1207.0) 2005-04-30T12:54:37Z 2973 00:49:33 5.82382104816452  Gooby 1.1.0 
         | 
| 245 | 
            +
                        // points.push(new GLatLng(36.11513,-86.79077)); // (223 of 1207.0) 2005-04-30T12:54:47Z 2983 00:49:43 5.84173472042443  Gooby 1.1.0 
         | 
| 246 | 
            +
                        // points.push(new GLatLng(36.11519,-86.79116)); // (224 of 1207.0) 2005-04-30T12:54:59Z 2995 00:49:55 5.86389311913278  Gooby 1.1.0 
         | 
| 247 | 
            +
                        // points.push(new GLatLng(36.11521,-86.79128)); // (225 of 1207.0) 2005-04-30T12:55:07Z 3003 00:50:03 5.8707315675  Gooby 1.1.0 
         | 
| 248 | 
            +
                        // points.push(new GLatLng(36.11521,-86.79146)); // (226 of 1207.0) 2005-04-30T12:55:14Z 3010 00:50:10 5.88077794158197  Gooby 1.1.0 
         | 
| 249 | 
            +
                        points.push(new GLatLng(36.11524,-86.79186)); // (227 of 1207.0) 2005-04-30T12:55:26Z 3022 00:50:22 5.90319929396684  Gooby 1.1.0 
         | 
| 250 | 
            +
                        // points.push(new GLatLng(36.11524,-86.79234)); // (228 of 1207.0) 2005-04-30T12:55:39Z 3035 00:50:35 5.92998962485212  Gooby 1.1.0 
         | 
| 251 | 
            +
                        // points.push(new GLatLng(36.11519,-86.7927)); // (229 of 1207.0) 2005-04-30T12:55:49Z 3045 00:50:45 5.95037711385307  Gooby 1.1.0 
         | 
| 252 | 
            +
                        // points.push(new GLatLng(36.11519,-86.79319)); // (230 of 1207.0) 2005-04-30T12:56:03Z 3059 00:50:59 5.97772550064826  Gooby 1.1.0 
         | 
| 253 | 
            +
                        points.push(new GLatLng(36.11519,-86.79386)); // (231 of 1207.0) 2005-04-30T12:56:23Z 3079 00:51:19 6.01512032846275 6.0 00:08:27 Gooby 1.1.0 
         | 
| 254 | 
            +
                        // points.push(new GLatLng(36.11519,-86.79416)); // (232 of 1207.0) 2005-04-30T12:56:31Z 3087 00:51:27 6.03186418136278  Gooby 1.1.0 
         | 
| 255 | 
            +
                        // points.push(new GLatLng(36.11521,-86.79437)); // (233 of 1207.0) 2005-04-30T12:56:37Z 3093 00:51:33 6.04366604881909  Gooby 1.1.0 
         | 
| 256 | 
            +
                        // points.push(new GLatLng(36.11524,-86.79493)); // (234 of 1207.0) 2005-04-30T12:56:53Z 3109 00:51:49 6.07499009616936  Gooby 1.1.0 
         | 
| 257 | 
            +
                        // points.push(new GLatLng(36.11521,-86.7956)); // (235 of 1207.0) 2005-04-30T12:57:12Z 3128 00:52:08 6.11244238314517  Gooby 1.1.0 
         | 
| 258 | 
            +
                        // points.push(new GLatLng(36.11526,-86.79598)); // (236 of 1207.0) 2005-04-30T12:57:24Z 3140 00:52:20 6.13393082143892  Gooby 1.1.0 
         | 
| 259 | 
            +
                        points.push(new GLatLng(36.11532,-86.7965)); // (237 of 1207.0) 2005-04-30T12:57:39Z 3155 00:52:35 6.16324812315391  Gooby 1.1.0 
         | 
| 260 | 
            +
                        // points.push(new GLatLng(36.11541,-86.79695)); // (238 of 1207.0) 2005-04-30T12:57:52Z 3168 00:52:48 6.18912227453465  Gooby 1.1.0 
         | 
| 261 | 
            +
                        // points.push(new GLatLng(36.11556,-86.79744)); // (239 of 1207.0) 2005-04-30T12:58:07Z 3183 00:53:03 6.21836839817714  Gooby 1.1.0 
         | 
| 262 | 
            +
                        // points.push(new GLatLng(36.11569,-86.79796)); // (240 of 1207.0) 2005-04-30T12:58:23Z 3199 00:53:19 6.24874916504955  Gooby 1.1.0 
         | 
| 263 | 
            +
                        // points.push(new GLatLng(36.11586,-86.79839)); // (241 of 1207.0) 2005-04-30T12:58:38Z 3214 00:53:34 6.2754686183069  Gooby 1.1.0 
         | 
| 264 | 
            +
                        // points.push(new GLatLng(36.11588,-86.79849)); // (242 of 1207.0) 2005-04-30T12:58:42Z 3218 00:53:38 6.28121858661315  Gooby 1.1.0 
         | 
| 265 | 
            +
                        points.push(new GLatLng(36.11594,-86.79854)); // (243 of 1207.0) 2005-04-30T12:58:45Z 3221 00:53:41 6.28621546929233  Gooby 1.1.0 
         | 
| 266 | 
            +
                        // points.push(new GLatLng(36.11603,-86.79856)); // (244 of 1207.0) 2005-04-30T12:58:48Z 3224 00:53:44 6.29253288777655  Gooby 1.1.0 
         | 
| 267 | 
            +
                        // points.push(new GLatLng(36.11618,-86.79845)); // (245 of 1207.0) 2005-04-30T12:58:55Z 3231 00:53:51 6.30457841921117  Gooby 1.1.0 
         | 
| 268 | 
            +
                        // points.push(new GLatLng(36.11652,-86.79815)); // (246 of 1207.0) 2005-04-30T12:59:09Z 3245 00:54:05 6.333425643161  Gooby 1.1.0 
         | 
| 269 | 
            +
                        // points.push(new GLatLng(36.11678,-86.79794)); // (247 of 1207.0) 2005-04-30T12:59:20Z 3256 00:54:16 6.35487461673949  Gooby 1.1.0 
         | 
| 270 | 
            +
                        // points.push(new GLatLng(36.11695,-86.79779)); // (248 of 1207.0) 2005-04-30T12:59:28Z 3264 00:54:24 6.36929816840529  Gooby 1.1.0 
         | 
| 271 | 
            +
                        points.push(new GLatLng(36.11719,-86.79757)); // (249 of 1207.0) 2005-04-30T12:59:39Z 3275 00:54:35 6.38993105184152  Gooby 1.1.0 
         | 
| 272 | 
            +
                        // points.push(new GLatLng(36.11749,-86.79731)); // (250 of 1207.0) 2005-04-30T12:59:52Z 3288 00:54:48 6.41523278823007  Gooby 1.1.0 
         | 
| 273 | 
            +
                        // points.push(new GLatLng(36.11773,-86.79712)); // (251 of 1207.0) 2005-04-30T13:00:03Z 3299 00:54:59 6.43491526038288  Gooby 1.1.0 
         | 
| 274 | 
            +
                        // points.push(new GLatLng(36.11807,-86.79684)); // (252 of 1207.0) 2005-04-30T13:00:18Z 3314 00:55:14 6.4631290400648  Gooby 1.1.0 
         | 
| 275 | 
            +
                        // points.push(new GLatLng(36.11837,-86.79656)); // (253 of 1207.0) 2005-04-30T13:00:31Z 3327 00:55:27 6.48908690277594  Gooby 1.1.0 
         | 
| 276 | 
            +
                        // points.push(new GLatLng(36.1188,-86.79622)); // (254 of 1207.0) 2005-04-30T13:00:49Z 3345 00:55:45 6.52433856637194  Gooby 1.1.0 
         | 
| 277 | 
            +
                        points.push(new GLatLng(36.11912,-86.79592)); // (255 of 1207.0) 2005-04-30T13:01:04Z 3360 00:56:00 6.55207184613982  Gooby 1.1.0 
         | 
| 278 | 
            +
                        // points.push(new GLatLng(36.11948,-86.79568)); // (256 of 1207.0) 2005-04-30T13:01:18Z 3374 00:56:14 6.58032161405788  Gooby 1.1.0 
         | 
| 279 | 
            +
                        // points.push(new GLatLng(36.11991,-86.79545)); // (257 of 1207.0) 2005-04-30T13:01:34Z 3390 00:56:30 6.61268485500833  Gooby 1.1.0 
         | 
| 280 | 
            +
                        // points.push(new GLatLng(36.12043,-86.79519)); // (258 of 1207.0) 2005-04-30T13:01:53Z 3409 00:56:49 6.65143133316515  Gooby 1.1.0 
         | 
| 281 | 
            +
                        // points.push(new GLatLng(36.12094,-86.79502)); // (259 of 1207.0) 2005-04-30T13:02:12Z 3428 00:57:08 6.6879221650783  Gooby 1.1.0 
         | 
| 282 | 
            +
                        // points.push(new GLatLng(36.12131,-86.79489)); // (260 of 1207.0) 2005-04-30T13:02:26Z 3442 00:57:22 6.71449510623512  Gooby 1.1.0 
         | 
| 283 | 
            +
                        points.push(new GLatLng(36.12182,-86.79478)); // (261 of 1207.0) 2005-04-30T13:02:45Z 3461 00:57:41 6.75026179756936  Gooby 1.1.0 
         | 
| 284 | 
            +
                        // points.push(new GLatLng(36.12238,-86.7947)); // (262 of 1207.0) 2005-04-30T13:03:05Z 3481 00:58:01 6.78920895631561  Gooby 1.1.0 
         | 
| 285 | 
            +
                        // points.push(new GLatLng(36.12292,-86.79459)); // (263 of 1207.0) 2005-04-30T13:03:24Z 3500 00:58:20 6.82701925898348  Gooby 1.1.0 
         | 
| 286 | 
            +
                        // points.push(new GLatLng(36.12335,-86.7945)); // (264 of 1207.0) 2005-04-30T13:03:40Z 3516 00:58:36 6.85714949044538  Gooby 1.1.0 
         | 
| 287 | 
            +
                        // points.push(new GLatLng(36.12388,-86.79444)); // (265 of 1207.0) 2005-04-30T13:03:59Z 3535 00:58:55 6.89391987397885  Gooby 1.1.0 
         | 
| 288 | 
            +
                        // points.push(new GLatLng(36.12429,-86.79431)); // (266 of 1207.0) 2005-04-30T13:04:16Z 3552 00:59:12 6.92316100033816  Gooby 1.1.0 
         | 
| 289 | 
            +
                        points.push(new GLatLng(36.12466,-86.7942)); // (267 of 1207.0) 2005-04-30T13:04:30Z 3566 00:59:26 6.94945110919019  Gooby 1.1.0 
         | 
| 290 | 
            +
                        // points.push(new GLatLng(36.12502,-86.79414)); // (268 of 1207.0) 2005-04-30T13:04:44Z 3580 00:59:40 6.97454793630492  Gooby 1.1.0 
         | 
| 291 | 
            +
                        // points.push(new GLatLng(36.12532,-86.79407)); // (269 of 1207.0) 2005-04-30T13:04:56Z 3592 00:59:52 6.99563988936346  Gooby 1.1.0 
         | 
| 292 | 
            +
                        points.push(new GLatLng(36.12579,-86.79399)); // (270 of 1207.0) 2005-04-30T13:05:15Z 3611 01:00:11 7.0284176822163 7.0 00:08:52 Gooby 1.1.0 
         | 
| 293 | 
            +
                        // points.push(new GLatLng(36.12584,-86.79397)); // (271 of 1207.0) 2005-04-30T13:05:17Z 3613 01:00:13 7.03204815280675  Gooby 1.1.0 
         | 
| 294 | 
            +
                        // points.push(new GLatLng(36.12631,-86.79394)); // (272 of 1207.0) 2005-04-30T13:05:35Z 3631 01:00:31 7.06456354430647  Gooby 1.1.0 
         | 
| 295 | 
            +
                        // points.push(new GLatLng(36.12672,-86.79399)); // (273 of 1207.0) 2005-04-30T13:05:50Z 3646 01:00:46 7.09302755271043  Gooby 1.1.0 
         | 
| 296 | 
            +
                        // points.push(new GLatLng(36.12723,-86.79412)); // (274 of 1207.0) 2005-04-30T13:06:08Z 3664 01:01:04 7.12900250439622  Gooby 1.1.0 
         | 
| 297 | 
            +
                        // points.push(new GLatLng(36.12764,-86.79427)); // (275 of 1207.0) 2005-04-30T13:06:25Z 3681 01:01:21 7.15854026339233  Gooby 1.1.0 
         | 
| 298 | 
            +
                        points.push(new GLatLng(36.12809,-86.79452)); // (276 of 1207.0) 2005-04-30T13:06:43Z 3699 01:01:39 7.19261737049893  Gooby 1.1.0 
         | 
| 299 | 
            +
                        // points.push(new GLatLng(36.12845,-86.79485)); // (277 of 1207.0) 2005-04-30T13:06:59Z 3715 01:01:55 7.22356503733329  Gooby 1.1.0 
         | 
| 300 | 
            +
                        // points.push(new GLatLng(36.12884,-86.79513)); // (278 of 1207.0) 2005-04-30T13:07:15Z 3731 01:02:11 7.25471274784119  Gooby 1.1.0 
         | 
| 301 | 
            +
                        // points.push(new GLatLng(36.12918,-86.7954)); // (279 of 1207.0) 2005-04-30T13:07:29Z 3745 01:02:25 7.28262012523777  Gooby 1.1.0 
         | 
| 302 | 
            +
                        // points.push(new GLatLng(36.12966,-86.79564)); // (280 of 1207.0) 2005-04-30T13:07:47Z 3763 01:02:43 7.31838550322693  Gooby 1.1.0 
         | 
| 303 | 
            +
                        // points.push(new GLatLng(36.12989,-86.79564)); // (281 of 1207.0) 2005-04-30T13:07:56Z 3772 01:02:52 7.33427618328839  Gooby 1.1.0 
         | 
| 304 | 
            +
                        points.push(new GLatLng(36.13039,-86.79562)); // (282 of 1207.0) 2005-04-30T13:08:13Z 3789 01:03:09 7.36883917161603  Gooby 1.1.0 
         | 
| 305 | 
            +
                        // points.push(new GLatLng(36.13084,-86.79555)); // (283 of 1207.0) 2005-04-30T13:08:29Z 3805 01:03:25 7.40017404744783  Gooby 1.1.0 
         | 
| 306 | 
            +
                        // points.push(new GLatLng(36.13148,-86.79551)); // (284 of 1207.0) 2005-04-30T13:08:52Z 3828 01:03:48 7.44444795542683  Gooby 1.1.0 
         | 
| 307 | 
            +
                        // points.push(new GLatLng(36.13193,-86.79553)); // (285 of 1207.0) 2005-04-30T13:09:08Z 3844 01:04:04 7.47555844446242  Gooby 1.1.0 
         | 
| 308 | 
            +
                        // points.push(new GLatLng(36.13245,-86.79555)); // (286 of 1207.0) 2005-04-30T13:09:28Z 3864 01:04:24 7.51150252927102  Gooby 1.1.0 
         | 
| 309 | 
            +
                        // points.push(new GLatLng(36.13281,-86.79562)); // (287 of 1207.0) 2005-04-30T13:09:41Z 3877 01:04:37 7.53667977894689  Gooby 1.1.0 
         | 
| 310 | 
            +
                        points.push(new GLatLng(36.13287,-86.79566)); // (288 of 1207.0) 2005-04-30T13:09:43Z 3879 01:04:39 7.54138768354894  Gooby 1.1.0 
         | 
| 311 | 
            +
                        // points.push(new GLatLng(36.13292,-86.79579)); // (289 of 1207.0) 2005-04-30T13:09:47Z 3883 01:04:43 7.54942251394701  Gooby 1.1.0 
         | 
| 312 | 
            +
                        // points.push(new GLatLng(36.13294,-86.79594)); // (290 of 1207.0) 2005-04-30T13:09:51Z 3887 01:04:47 7.55790601664665  Gooby 1.1.0 
         | 
| 313 | 
            +
                        // points.push(new GLatLng(36.133,-86.79652)); // (291 of 1207.0) 2005-04-30T13:10:08Z 3904 01:05:04 7.59053485551589  Gooby 1.1.0 
         | 
| 314 | 
            +
                        // points.push(new GLatLng(36.13307,-86.7971)); // (292 of 1207.0) 2005-04-30T13:10:23Z 3919 01:05:19 7.62325857139865  Gooby 1.1.0 
         | 
| 315 | 
            +
                        // points.push(new GLatLng(36.13309,-86.79716)); // (293 of 1207.0) 2005-04-30T13:10:25Z 3921 01:05:21 7.62688040599556  Gooby 1.1.0 
         | 
| 316 | 
            +
                        points.push(new GLatLng(36.13322,-86.79729)); // (294 of 1207.0) 2005-04-30T13:10:30Z 3926 01:05:26 7.63842548764446  Gooby 1.1.0 
         | 
| 317 | 
            +
                        // points.push(new GLatLng(36.13326,-86.79729)); // (295 of 1207.0) 2005-04-30T13:10:31Z 3927 01:05:27 7.64118845815357  Gooby 1.1.0 
         | 
| 318 | 
            +
                        // points.push(new GLatLng(36.13375,-86.79727)); // (296 of 1207.0) 2005-04-30T13:10:48Z 3944 01:05:44 7.67506094223217  Gooby 1.1.0 
         | 
| 319 | 
            +
                        // points.push(new GLatLng(36.13436,-86.79718)); // (297 of 1207.0) 2005-04-30T13:11:09Z 3965 01:06:05 7.71750395927358  Gooby 1.1.0 
         | 
| 320 | 
            +
                        // points.push(new GLatLng(36.13498,-86.79708)); // (298 of 1207.0) 2005-04-30T13:11:32Z 3988 01:06:28 7.76070169930629  Gooby 1.1.0 
         | 
| 321 | 
            +
                        // points.push(new GLatLng(36.13547,-86.79703)); // (299 of 1207.0) 2005-04-30T13:11:50Z 4006 01:06:46 7.79467055480107  Gooby 1.1.0 
         | 
| 322 | 
            +
                        points.push(new GLatLng(36.13564,-86.79695)); // (300 of 1207.0) 2005-04-30T13:11:57Z 4013 01:06:53 7.80723552524004  Gooby 1.1.0 
         | 
| 323 | 
            +
                        // points.push(new GLatLng(36.13577,-86.79673)); // (301 of 1207.0) 2005-04-30T13:12:05Z 4021 01:07:01 7.82244622406736  Gooby 1.1.0 
         | 
| 324 | 
            +
                        // points.push(new GLatLng(36.13592,-86.79639)); // (302 of 1207.0) 2005-04-30T13:12:17Z 4033 01:07:13 7.84406373290719  Gooby 1.1.0 
         | 
| 325 | 
            +
                        // points.push(new GLatLng(36.13609,-86.79605)); // (303 of 1207.0) 2005-04-30T13:12:29Z 4045 01:07:25 7.86637681403756  Gooby 1.1.0 
         | 
| 326 | 
            +
                        // points.push(new GLatLng(36.13635,-86.79562)); // (304 of 1207.0) 2005-04-30T13:12:45Z 4061 01:07:41 7.89634952078033  Gooby 1.1.0 
         | 
| 327 | 
            +
                        // points.push(new GLatLng(36.13652,-86.79536)); // (305 of 1207.0) 2005-04-30T13:12:55Z 4071 01:07:51 7.91501559797049  Gooby 1.1.0 
         | 
| 328 | 
            +
                        points.push(new GLatLng(36.13682,-86.79497)); // (306 of 1207.0) 2005-04-30T13:13:10Z 4086 01:08:06 7.94506824127062  Gooby 1.1.0 
         | 
| 329 | 
            +
                        // points.push(new GLatLng(36.13712,-86.79463)); // (307 of 1207.0) 2005-04-30T13:13:24Z 4100 01:08:20 7.97316659838247  Gooby 1.1.0 
         | 
| 330 | 
            +
                        points.push(new GLatLng(36.13751,-86.79433)); // (308 of 1207.0) 2005-04-30T13:13:40Z 4116 01:08:36 8.00488790553936 8.0 00:08:25 Gooby 1.1.0 
         | 
| 331 | 
            +
                        // points.push(new GLatLng(36.13794,-86.79414)); // (309 of 1207.0) 2005-04-30T13:13:56Z 4132 01:08:52 8.03643145652421  Gooby 1.1.0 
         | 
| 332 | 
            +
                        // points.push(new GLatLng(36.138,-86.79412)); // (310 of 1207.0) 2005-04-30T13:13:58Z 4134 01:08:54 8.04072417024016  Gooby 1.1.0 
         | 
| 333 | 
            +
                        // points.push(new GLatLng(36.1383,-86.79412)); // (311 of 1207.0) 2005-04-30T13:14:08Z 4144 01:09:04 8.06145110805663  Gooby 1.1.0 
         | 
| 334 | 
            +
                        // points.push(new GLatLng(36.13869,-86.79405)); // (312 of 1207.0) 2005-04-30T13:14:21Z 4157 01:09:17 8.08867778448915  Gooby 1.1.0 
         | 
| 335 | 
            +
                        // points.push(new GLatLng(36.13935,-86.79397)); // (313 of 1207.0) 2005-04-30T13:14:47Z 4183 01:09:43 8.13449509996831  Gooby 1.1.0 
         | 
| 336 | 
            +
                        points.push(new GLatLng(36.13989,-86.7939)); // (314 of 1207.0) 2005-04-30T13:15:05Z 4201 01:10:01 8.17200754086059  Gooby 1.1.0 
         | 
| 337 | 
            +
                        // points.push(new GLatLng(36.14013,-86.79388)); // (315 of 1207.0) 2005-04-30T13:15:13Z 4209 01:10:09 8.18862666048788  Gooby 1.1.0 
         | 
| 338 | 
            +
                        // points.push(new GLatLng(36.14017,-86.79386)); // (316 of 1207.0) 2005-04-30T13:15:16Z 4212 01:10:12 8.19160653704001  Gooby 1.1.0 
         | 
| 339 | 
            +
                        // points.push(new GLatLng(36.14043,-86.79382)); // (317 of 1207.0) 2005-04-30T13:15:25Z 4221 01:10:21 8.20970802280231  Gooby 1.1.0 
         | 
| 340 | 
            +
                        // points.push(new GLatLng(36.14116,-86.79367)); // (318 of 1207.0) 2005-04-30T13:15:49Z 4245 01:10:45 8.26083344220525  Gooby 1.1.0 
         | 
| 341 | 
            +
                        // points.push(new GLatLng(36.14174,-86.79354)); // (319 of 1207.0) 2005-04-30T13:16:09Z 4265 01:11:05 8.30155680312887  Gooby 1.1.0 
         | 
| 342 | 
            +
                        points.push(new GLatLng(36.14238,-86.79341)); // (320 of 1207.0) 2005-04-30T13:16:32Z 4288 01:11:28 8.34636535385178  Gooby 1.1.0 
         | 
| 343 | 
            +
                        // points.push(new GLatLng(36.14315,-86.79328)); // (321 of 1207.0) 2005-04-30T13:16:58Z 4314 01:11:54 8.40005684983467  Gooby 1.1.0 
         | 
| 344 | 
            +
                        // points.push(new GLatLng(36.14373,-86.79322)); // (322 of 1207.0) 2005-04-30T13:17:17Z 4333 01:12:13 8.44026861635811  Gooby 1.1.0 
         | 
| 345 | 
            +
                        // points.push(new GLatLng(36.14431,-86.79311)); // (323 of 1207.0) 2005-04-30T13:17:37Z 4353 01:12:33 8.48080807498335  Gooby 1.1.0 
         | 
| 346 | 
            +
                        // points.push(new GLatLng(36.14502,-86.79298)); // (324 of 1207.0) 2005-04-30T13:18:02Z 4378 01:12:58 8.53039528174992  Gooby 1.1.0 
         | 
| 347 | 
            +
                        // points.push(new GLatLng(36.14541,-86.79287)); // (325 of 1207.0) 2005-04-30T13:18:17Z 4393 01:13:13 8.55803052733859  Gooby 1.1.0 
         | 
| 348 | 
            +
                        points.push(new GLatLng(36.14573,-86.79279)); // (326 of 1207.0) 2005-04-30T13:18:29Z 4405 01:13:25 8.58058525383738  Gooby 1.1.0 
         | 
| 349 | 
            +
                        // points.push(new GLatLng(36.14616,-86.7927)); // (327 of 1207.0) 2005-04-30T13:18:44Z 4420 01:13:40 8.61071525433487  Gooby 1.1.0 
         | 
| 350 | 
            +
                        // points.push(new GLatLng(36.14652,-86.79261)); // (328 of 1207.0) 2005-04-30T13:18:57Z 4433 01:13:53 8.63608942877695  Gooby 1.1.0 
         | 
| 351 | 
            +
                        // points.push(new GLatLng(36.14697,-86.79253)); // (329 of 1207.0) 2005-04-30T13:19:12Z 4448 01:14:08 8.6674986701324  Gooby 1.1.0 
         | 
| 352 | 
            +
                        // points.push(new GLatLng(36.14738,-86.79244)); // (330 of 1207.0) 2005-04-30T13:19:27Z 4463 01:14:23 8.69626714370497  Gooby 1.1.0 
         | 
| 353 | 
            +
                        // points.push(new GLatLng(36.14796,-86.79236)); // (331 of 1207.0) 2005-04-30T13:19:47Z 4483 01:14:43 8.73658714240368  Gooby 1.1.0 
         | 
| 354 | 
            +
                        points.push(new GLatLng(36.14839,-86.79225)); // (332 of 1207.0) 2005-04-30T13:20:03Z 4499 01:14:59 8.76692309521224  Gooby 1.1.0 
         | 
| 355 | 
            +
                        // points.push(new GLatLng(36.1489,-86.79221)); // (333 of 1207.0) 2005-04-30T13:20:21Z 4517 01:15:17 8.80222959577073  Gooby 1.1.0 
         | 
| 356 | 
            +
                        // points.push(new GLatLng(36.14916,-86.79214)); // (334 of 1207.0) 2005-04-30T13:20:31Z 4527 01:15:27 8.82061261097432  Gooby 1.1.0 
         | 
| 357 | 
            +
                        // points.push(new GLatLng(36.14935,-86.79212)); // (335 of 1207.0) 2005-04-30T13:20:42Z 4538 01:15:38 8.8337869812922  Gooby 1.1.0 
         | 
| 358 | 
            +
                        // points.push(new GLatLng(36.14957,-86.79206)); // (336 of 1207.0) 2005-04-30T13:20:53Z 4549 01:15:49 8.84935089123342  Gooby 1.1.0 
         | 
| 359 | 
            +
                        // points.push(new GLatLng(36.15015,-86.79197)); // (337 of 1207.0) 2005-04-30T13:21:15Z 4571 01:16:11 8.88973637926834  Gooby 1.1.0 
         | 
| 360 | 
            +
                        points.push(new GLatLng(36.15066,-86.79186)); // (338 of 1207.0) 2005-04-30T13:21:32Z 4588 01:16:28 8.92550263282624  Gooby 1.1.0 
         | 
| 361 | 
            +
                        // points.push(new GLatLng(36.15126,-86.7918)); // (339 of 1207.0) 2005-04-30T13:21:53Z 4609 01:16:49 8.96709151029472  Gooby 1.1.0 
         | 
| 362 | 
            +
                        // points.push(new GLatLng(36.15167,-86.79169)); // (340 of 1207.0) 2005-04-30T13:22:07Z 4623 01:17:03 8.99607543232131  Gooby 1.1.0 
         | 
| 363 | 
            +
                        points.push(new GLatLng(36.15189,-86.79165)); // (341 of 1207.0) 2005-04-30T13:22:15Z 4631 01:17:11 9.0114380649405 9.0 00:08:35 Gooby 1.1.0 
         | 
| 364 | 
            +
                        // points.push(new GLatLng(36.15193,-86.79131)); // (342 of 1207.0) 2005-04-30T13:22:25Z 4641 01:17:21 9.03060600763061  Gooby 1.1.0 
         | 
| 365 | 
            +
                        // points.push(new GLatLng(36.15191,-86.79118)); // (343 of 1207.0) 2005-04-30T13:22:28Z 4644 01:17:24 9.03798860655466  Gooby 1.1.0 
         | 
| 366 | 
            +
                        // points.push(new GLatLng(36.15191,-86.79116)); // (344 of 1207.0) 2005-04-30T13:22:29Z 4645 01:17:25 9.03910313728075  Gooby 1.1.0 
         | 
| 367 | 
            +
                        // points.push(new GLatLng(36.15182,-86.79101)); // (345 of 1207.0) 2005-04-30T13:22:33Z 4649 01:17:29 9.04952836727621  Gooby 1.1.0 
         | 
| 368 | 
            +
                        // points.push(new GLatLng(36.15178,-86.79073)); // (346 of 1207.0) 2005-04-30T13:22:41Z 4657 01:17:37 9.06539132416552  Gooby 1.1.0 
         | 
| 369 | 
            +
                        points.push(new GLatLng(36.15176,-86.79017)); // (347 of 1207.0) 2005-04-30T13:22:57Z 4673 01:17:53 9.09666267501151  Gooby 1.1.0 
         | 
| 370 | 
            +
                        // points.push(new GLatLng(36.15169,-86.78967)); // (348 of 1207.0) 2005-04-30T13:23:11Z 4687 01:18:07 9.12497248553501  Gooby 1.1.0 
         | 
| 371 | 
            +
                        // points.push(new GLatLng(36.15169,-86.78937)); // (349 of 1207.0) 2005-04-30T13:23:19Z 4695 01:18:15 9.14170864780449  Gooby 1.1.0 
         | 
| 372 | 
            +
                        // points.push(new GLatLng(36.15163,-86.78897)); // (350 of 1207.0) 2005-04-30T13:23:30Z 4706 01:18:26 9.16440531782809  Gooby 1.1.0 
         | 
| 373 | 
            +
                        // points.push(new GLatLng(36.15159,-86.78854)); // (351 of 1207.0) 2005-04-30T13:23:42Z 4718 01:18:38 9.18855249892972  Gooby 1.1.0 
         | 
| 374 | 
            +
                        // points.push(new GLatLng(36.15156,-86.78832)); // (352 of 1207.0) 2005-04-30T13:23:48Z 4724 01:18:44 9.20099964125966  Gooby 1.1.0 
         | 
| 375 | 
            +
                        points.push(new GLatLng(36.1515,-86.78785)); // (353 of 1207.0) 2005-04-30T13:24:02Z 4738 01:18:58 9.22754533267919  Gooby 1.1.0 
         | 
| 376 | 
            +
                        // points.push(new GLatLng(36.15144,-86.78738)); // (354 of 1207.0) 2005-04-30T13:24:16Z 4752 01:19:12 9.25409108963643  Gooby 1.1.0 
         | 
| 377 | 
            +
                        // points.push(new GLatLng(36.15139,-86.78699)); // (355 of 1207.0) 2005-04-30T13:24:27Z 4763 01:19:23 9.27612074382031  Gooby 1.1.0 
         | 
| 378 | 
            +
                        // points.push(new GLatLng(36.15135,-86.78671)); // (356 of 1207.0) 2005-04-30T13:24:35Z 4771 01:19:31 9.29198381038275  Gooby 1.1.0 
         | 
| 379 | 
            +
                        // points.push(new GLatLng(36.15131,-86.78646)); // (357 of 1207.0) 2005-04-30T13:24:42Z 4778 01:19:38 9.30620181100661  Gooby 1.1.0 
         | 
| 380 | 
            +
                        // points.push(new GLatLng(36.15129,-86.78611)); // (358 of 1207.0) 2005-04-30T13:24:52Z 4788 01:19:48 9.3257763273088  Gooby 1.1.0 
         | 
| 381 | 
            +
                        points.push(new GLatLng(36.15124,-86.78568)); // (359 of 1207.0) 2005-04-30T13:25:04Z 4800 01:20:00 9.3500123956285  Gooby 1.1.0 
         | 
| 382 | 
            +
                        // points.push(new GLatLng(36.1512,-86.7853)); // (360 of 1207.0) 2005-04-30T13:25:15Z 4811 01:20:11 9.37139109312763  Gooby 1.1.0 
         | 
| 383 | 
            +
                        // points.push(new GLatLng(36.15113,-86.78485)); // (361 of 1207.0) 2005-04-30T13:25:28Z 4824 01:20:24 9.39695713745201  Gooby 1.1.0 
         | 
| 384 | 
            +
                        // points.push(new GLatLng(36.15116,-86.7844)); // (362 of 1207.0) 2005-04-30T13:25:41Z 4837 01:20:37 9.42214696017535  Gooby 1.1.0 
         | 
| 385 | 
            +
                        // points.push(new GLatLng(36.15131,-86.78425)); // (363 of 1207.0) 2005-04-30T13:25:49Z 4845 01:20:45 9.43546723604267  Gooby 1.1.0 
         | 
| 386 | 
            +
                        // points.push(new GLatLng(36.15169,-86.78414)); // (364 of 1207.0) 2005-04-30T13:26:01Z 4857 01:20:57 9.46242910696164  Gooby 1.1.0 
         | 
| 387 | 
            +
                        points.push(new GLatLng(36.15174,-86.78412)); // (365 of 1207.0) 2005-04-30T13:26:02Z 4858 01:20:58 9.46605957755209  Gooby 1.1.0 
         | 
| 388 | 
            +
                        // points.push(new GLatLng(36.15197,-86.78418)); // (366 of 1207.0) 2005-04-30T13:26:05Z 4861 01:21:01 9.48229907130677  Gooby 1.1.0 
         | 
| 389 | 
            +
                        // points.push(new GLatLng(36.15214,-86.7841)); // (367 of 1207.0) 2005-04-30T13:26:12Z 4868 01:21:08 9.49486376482263  Gooby 1.1.0 
         | 
| 390 | 
            +
                        // points.push(new GLatLng(36.15229,-86.78399)); // (368 of 1207.0) 2005-04-30T13:26:18Z 4874 01:21:14 9.50690785186233  Gooby 1.1.0 
         | 
| 391 | 
            +
                        // points.push(new GLatLng(36.15262,-86.78382)); // (369 of 1207.0) 2005-04-30T13:26:30Z 4886 01:21:26 9.53160131459763  Gooby 1.1.0 
         | 
| 392 | 
            +
                        // points.push(new GLatLng(36.15296,-86.78377)); // (370 of 1207.0) 2005-04-30T13:26:42Z 4898 01:21:38 9.55525688189969  Gooby 1.1.0 
         | 
| 393 | 
            +
                        points.push(new GLatLng(36.15326,-86.78382)); // (371 of 1207.0) 2005-04-30T13:26:53Z 4909 01:21:49 9.57617082593093  Gooby 1.1.0 
         | 
| 394 | 
            +
                        // points.push(new GLatLng(36.15347,-86.78395)); // (372 of 1207.0) 2005-04-30T13:27:01Z 4917 01:21:57 9.59239134649215  Gooby 1.1.0 
         | 
| 395 | 
            +
                        // points.push(new GLatLng(36.15369,-86.78412)); // (373 of 1207.0) 2005-04-30T13:27:10Z 4926 01:22:06 9.61030705812114  Gooby 1.1.0 
         | 
| 396 | 
            +
                        // points.push(new GLatLng(36.15407,-86.78444)); // (374 of 1207.0) 2005-04-30T13:27:27Z 4943 01:22:23 9.64205539221018  Gooby 1.1.0 
         | 
| 397 | 
            +
                        // points.push(new GLatLng(36.15448,-86.7847)); // (375 of 1207.0) 2005-04-30T13:27:43Z 4959 01:22:39 9.67387974974004  Gooby 1.1.0 
         | 
| 398 | 
            +
                        // points.push(new GLatLng(36.15478,-86.78483)); // (376 of 1207.0) 2005-04-30T13:27:54Z 4970 01:22:50 9.69583876786169  Gooby 1.1.0 
         | 
| 399 | 
            +
                        points.push(new GLatLng(36.1548,-86.78483)); // (377 of 1207.0) 2005-04-30T13:27:55Z 4971 01:22:51 9.69721962330757  Gooby 1.1.0 
         | 
| 400 | 
            +
                        // points.push(new GLatLng(36.15493,-86.78487)); // (378 of 1207.0) 2005-04-30T13:28:00Z 4976 01:22:56 9.70647422768362  Gooby 1.1.0 
         | 
| 401 | 
            +
                        // points.push(new GLatLng(36.15534,-86.78504)); // (379 of 1207.0) 2005-04-30T13:28:15Z 4991 01:23:11 9.7363463489318  Gooby 1.1.0 
         | 
| 402 | 
            +
                        // points.push(new GLatLng(36.15566,-86.7853)); // (380 of 1207.0) 2005-04-30T13:28:28Z 5004 01:23:24 9.76278809049097  Gooby 1.1.0 
         | 
| 403 | 
            +
                        // points.push(new GLatLng(36.15616,-86.78555)); // (381 of 1207.0) 2005-04-30T13:28:48Z 5024 01:23:44 9.80004196495604  Gooby 1.1.0 
         | 
| 404 | 
            +
                        // points.push(new GLatLng(36.15663,-86.78588)); // (382 of 1207.0) 2005-04-30T13:29:07Z 5043 01:24:03 9.83736927243312  Gooby 1.1.0 
         | 
| 405 | 
            +
                        points.push(new GLatLng(36.15725,-86.78628)); // (383 of 1207.0) 2005-04-30T13:29:32Z 5068 01:24:28 9.88566828148241  Gooby 1.1.0 
         | 
| 406 | 
            +
                        // points.push(new GLatLng(36.15807,-86.78691)); // (384 of 1207.0) 2005-04-30T13:30:05Z 5101 01:25:01 9.95233691654958  Gooby 1.1.0 
         | 
| 407 | 
            +
                        // points.push(new GLatLng(36.15837,-86.78727)); // (385 of 1207.0) 2005-04-30T13:30:19Z 5115 01:25:15 9.98119662175444  Gooby 1.1.0 
         | 
| 408 | 
            +
                        points.push(new GLatLng(36.15858,-86.78753)); // (386 of 1207.0) 2005-04-30T13:30:29Z 5125 01:25:25 10.0017113732322 10.0 00:08:14 Gooby 1.1.0 
         | 
| 409 | 
            +
                        // points.push(new GLatLng(36.15886,-86.78777)); // (387 of 1207.0) 2005-04-30T13:30:40Z 5136 01:25:36 10.0252372933413  Gooby 1.1.0 
         | 
| 410 | 
            +
                        // points.push(new GLatLng(36.15912,-86.788)); // (388 of 1207.0) 2005-04-30T13:30:51Z 5147 01:25:47 10.0473119161932  Gooby 1.1.0 
         | 
| 411 | 
            +
                        // points.push(new GLatLng(36.15933,-86.78822)); // (389 of 1207.0) 2005-04-30T13:31:01Z 5157 01:25:57 10.0663147756221  Gooby 1.1.0 
         | 
| 412 | 
            +
                        // points.push(new GLatLng(36.1597,-86.78858)); // (390 of 1207.0) 2005-04-30T13:31:17Z 5173 01:26:13 10.0988223544078  Gooby 1.1.0 
         | 
| 413 | 
            +
                        // points.push(new GLatLng(36.15974,-86.78862)); // (391 of 1207.0) 2005-04-30T13:31:19Z 5175 01:26:15 10.1023743452525  Gooby 1.1.0 
         | 
| 414 | 
            +
                        points.push(new GLatLng(36.16002,-86.78886)); // (392 of 1207.0) 2005-04-30T13:31:30Z 5186 01:26:26 10.1259001914112  Gooby 1.1.0 
         | 
| 415 | 
            +
                        // points.push(new GLatLng(36.16021,-86.78901)); // (393 of 1207.0) 2005-04-30T13:31:38Z 5194 01:26:34 10.1414672308999  Gooby 1.1.0 
         | 
| 416 | 
            +
                        // points.push(new GLatLng(36.16047,-86.78922)); // (394 of 1207.0) 2005-04-30T13:31:49Z 5205 01:26:45 10.1629126353006  Gooby 1.1.0 
         | 
| 417 | 
            +
                        // points.push(new GLatLng(36.16064,-86.78937)); // (395 of 1207.0) 2005-04-30T13:31:56Z 5212 01:26:52 10.1773334124757  Gooby 1.1.0 
         | 
| 418 | 
            +
                        // points.push(new GLatLng(36.16086,-86.78952)); // (396 of 1207.0) 2005-04-30T13:32:05Z 5221 01:27:01 10.1946838796733  Gooby 1.1.0 
         | 
| 419 | 
            +
                        // points.push(new GLatLng(36.16109,-86.7897)); // (397 of 1207.0) 2005-04-30T13:32:15Z 5231 01:27:11 10.2134808220383  Gooby 1.1.0 
         | 
| 420 | 
            +
                        points.push(new GLatLng(36.16131,-86.78991)); // (398 of 1207.0) 2005-04-30T13:32:25Z 5241 01:27:21 10.2326707168817  Gooby 1.1.0 
         | 
| 421 | 
            +
                        // points.push(new GLatLng(36.16156,-86.79015)); // (399 of 1207.0) 2005-04-30T13:32:36Z 5252 01:27:32 10.2545237906742  Gooby 1.1.0 
         | 
| 422 | 
            +
                        // points.push(new GLatLng(36.16176,-86.7903)); // (400 of 1207.0) 2005-04-30T13:32:44Z 5260 01:27:40 10.2706774603219  Gooby 1.1.0 
         | 
| 423 | 
            +
                        // points.push(new GLatLng(36.16195,-86.79043)); // (401 of 1207.0) 2005-04-30T13:32:52Z 5268 01:27:48 10.2856741420277  Gooby 1.1.0 
         | 
| 424 | 
            +
                        // points.push(new GLatLng(36.16214,-86.79049)); // (402 of 1207.0) 2005-04-30T13:32:59Z 5275 01:27:55 10.2992211837764  Gooby 1.1.0 
         | 
| 425 | 
            +
                        // points.push(new GLatLng(36.16223,-86.79045)); // (403 of 1207.0) 2005-04-30T13:33:02Z 5278 01:27:58 10.305827752553  Gooby 1.1.0 
         | 
| 426 | 
            +
                        points.push(new GLatLng(36.16234,-86.79028)); // (404 of 1207.0) 2005-04-30T13:33:09Z 5285 01:28:05 10.317979979131  Gooby 1.1.0 
         | 
| 427 | 
            +
                        // points.push(new GLatLng(36.16236,-86.79023)); // (405 of 1207.0) 2005-04-30T13:33:10Z 5286 01:28:06 10.3210923586824  Gooby 1.1.0 
         | 
| 428 | 
            +
                        // points.push(new GLatLng(36.16253,-86.78989)); // (406 of 1207.0) 2005-04-30T13:33:22Z 5298 01:28:18 10.3433998252819  Gooby 1.1.0 
         | 
| 429 | 
            +
                        // points.push(new GLatLng(36.16272,-86.78955)); // (407 of 1207.0) 2005-04-30T13:33:34Z 5310 01:28:30 10.3664648093639  Gooby 1.1.0 
         | 
| 430 | 
            +
                        // points.push(new GLatLng(36.16292,-86.78916)); // (408 of 1207.0) 2005-04-30T13:33:48Z 5324 01:28:44 10.3922363526423  Gooby 1.1.0 
         | 
| 431 | 
            +
                        // points.push(new GLatLng(36.16309,-86.78882)); // (409 of 1207.0) 2005-04-30T13:34:01Z 5337 01:28:57 10.4145437412522  Gooby 1.1.0 
         | 
| 432 | 
            +
                        points.push(new GLatLng(36.16334,-86.7883)); // (410 of 1207.0) 2005-04-30T13:34:19Z 5355 01:29:15 10.4483021645463  Gooby 1.1.0 
         | 
| 433 | 
            +
                        // points.push(new GLatLng(36.16349,-86.78804)); // (411 of 1207.0) 2005-04-30T13:34:29Z 5365 01:29:25 10.4661270448232  Gooby 1.1.0 
         | 
| 434 | 
            +
                        // points.push(new GLatLng(36.1636,-86.78792)); // (412 of 1207.0) 2005-04-30T13:34:36Z 5372 01:29:32 10.4762543106965  Gooby 1.1.0 
         | 
| 435 | 
            +
                        // points.push(new GLatLng(36.16386,-86.78802)); // (413 of 1207.0) 2005-04-30T13:34:46Z 5382 01:29:42 10.4950638362945  Gooby 1.1.0 
         | 
| 436 | 
            +
                        // points.push(new GLatLng(36.16412,-86.78826)); // (414 of 1207.0) 2005-04-30T13:34:58Z 5394 01:29:54 10.5174668691827  Gooby 1.1.0 
         | 
| 437 | 
            +
                        // points.push(new GLatLng(36.16433,-86.78845)); // (415 of 1207.0) 2005-04-30T13:35:07Z 5403 01:30:03 10.5354340707892  Gooby 1.1.0 
         | 
| 438 | 
            +
                        points.push(new GLatLng(36.16452,-86.78856)); // (416 of 1207.0) 2005-04-30T13:35:14Z 5410 01:30:10 10.5499242909867  Gooby 1.1.0 
         | 
| 439 | 
            +
                        // points.push(new GLatLng(36.16482,-86.78875)); // (417 of 1207.0) 2005-04-30T13:35:27Z 5423 01:30:23 10.5732035513193  Gooby 1.1.0 
         | 
| 440 | 
            +
                        // points.push(new GLatLng(36.16525,-86.7889)); // (418 of 1207.0) 2005-04-30T13:35:43Z 5439 01:30:39 10.6040679067141  Gooby 1.1.0 
         | 
| 441 | 
            +
                        // points.push(new GLatLng(36.16583,-86.78899)); // (419 of 1207.0) 2005-04-30T13:36:02Z 5458 01:30:58 10.6444532655133  Gooby 1.1.0 
         | 
| 442 | 
            +
                        // points.push(new GLatLng(36.16631,-86.78897)); // (420 of 1207.0) 2005-04-30T13:36:19Z 5475 01:31:15 10.6776352421581  Gooby 1.1.0 
         | 
| 443 | 
            +
                        // points.push(new GLatLng(36.16673,-86.78884)); // (421 of 1207.0) 2005-04-30T13:36:34Z 5490 01:31:30 10.7075453116469  Gooby 1.1.0 
         | 
| 444 | 
            +
                        points.push(new GLatLng(36.16716,-86.78854)); // (422 of 1207.0) 2005-04-30T13:36:51Z 5507 01:31:47 10.7416421706263  Gooby 1.1.0 
         | 
| 445 | 
            +
                        // points.push(new GLatLng(36.16744,-86.78824)); // (423 of 1207.0) 2005-04-30T13:37:03Z 5519 01:31:59 10.7672199167167  Gooby 1.1.0 
         | 
| 446 | 
            +
                        // points.push(new GLatLng(36.16768,-86.78794)); // (424 of 1207.0) 2005-04-30T13:37:14Z 5530 01:32:10 10.7907770231331  Gooby 1.1.0 
         | 
| 447 | 
            +
                        // points.push(new GLatLng(36.16776,-86.78792)); // (425 of 1207.0) 2005-04-30T13:37:17Z 5533 01:32:13 10.7964157818917  Gooby 1.1.0 
         | 
| 448 | 
            +
                        // points.push(new GLatLng(36.16819,-86.78811)); // (426 of 1207.0) 2005-04-30T13:37:33Z 5549 01:32:29 10.827958009158  Gooby 1.1.0 
         | 
| 449 | 
            +
                        // points.push(new GLatLng(36.16852,-86.78828)); // (427 of 1207.0) 2005-04-30T13:37:46Z 5562 01:32:42 10.8526507673461  Gooby 1.1.0 
         | 
| 450 | 
            +
                        points.push(new GLatLng(36.16879,-86.78849)); // (428 of 1207.0) 2005-04-30T13:37:57Z 5573 01:32:53 10.8746774203546  Gooby 1.1.0 
         | 
| 451 | 
            +
                        // points.push(new GLatLng(36.16927,-86.78879)); // (429 of 1207.0) 2005-04-30T13:38:13Z 5589 01:33:09 10.9118226997534  Gooby 1.1.0 
         | 
| 452 | 
            +
                        // points.push(new GLatLng(36.16948,-86.78897)); // (430 of 1207.0) 2005-04-30T13:38:22Z 5598 01:33:18 10.9294662893875  Gooby 1.1.0 
         | 
| 453 | 
            +
                        // points.push(new GLatLng(36.16978,-86.78916)); // (431 of 1207.0) 2005-04-30T13:38:35Z 5611 01:33:31 10.9527451760485  Gooby 1.1.0 
         | 
| 454 | 
            +
                        // points.push(new GLatLng(36.16997,-86.78937)); // (432 of 1207.0) 2005-04-30T13:38:49Z 5625 01:33:45 10.9703379108177  Gooby 1.1.0 
         | 
| 455 | 
            +
                        // points.push(new GLatLng(36.17017,-86.7895)); // (433 of 1207.0) 2005-04-30T13:39:00Z 5636 01:33:56 10.9859425674091  Gooby 1.1.0 
         | 
| 456 | 
            +
                        points.push(new GLatLng(36.17034,-86.78961)); // (434 of 1207.0) 2005-04-30T13:39:07Z 5643 01:34:03 10.9991935710606  Gooby 1.1.0 
         | 
| 457 | 
            +
                        points.push(new GLatLng(36.17045,-86.78976)); // (435 of 1207.0) 2005-04-30T13:39:14Z 5650 01:34:10 11.0104962060892 11.0 00:08:45 Gooby 1.1.0 
         | 
| 458 | 
            +
                        // points.push(new GLatLng(36.17062,-86.78985)); // (436 of 1207.0) 2005-04-30T13:39:21Z 5657 01:34:17 11.0232692211177  Gooby 1.1.0 
         | 
| 459 | 
            +
                        // points.push(new GLatLng(36.17083,-86.79)); // (437 of 1207.0) 2005-04-30T13:39:30Z 5666 01:34:26 11.0400173335224  Gooby 1.1.0 
         | 
| 460 | 
            +
                        // points.push(new GLatLng(36.17103,-86.7901)); // (438 of 1207.0) 2005-04-30T13:39:37Z 5673 01:34:33 11.0549183509219  Gooby 1.1.0 
         | 
| 461 | 
            +
                        // points.push(new GLatLng(36.17128,-86.79028)); // (439 of 1207.0) 2005-04-30T13:39:48Z 5684 01:34:44 11.0748964789369  Gooby 1.1.0 
         | 
| 462 | 
            +
                        // points.push(new GLatLng(36.17156,-86.79045)); // (440 of 1207.0) 2005-04-30T13:39:59Z 5695 01:34:55 11.0964403047928  Gooby 1.1.0 
         | 
| 463 | 
            +
                        points.push(new GLatLng(36.17169,-86.79058)); // (441 of 1207.0) 2005-04-30T13:40:05Z 5701 01:35:01 11.1079834272854  Gooby 1.1.0 
         | 
| 464 | 
            +
                        // points.push(new GLatLng(36.17188,-86.79073)); // (442 of 1207.0) 2005-04-30T13:40:13Z 5709 01:35:09 11.1235497962098  Gooby 1.1.0 
         | 
| 465 | 
            +
                        // points.push(new GLatLng(36.17218,-86.79092)); // (443 of 1207.0) 2005-04-30T13:40:26Z 5722 01:35:22 11.1468285334003  Gooby 1.1.0 
         | 
| 466 | 
            +
                        // points.push(new GLatLng(36.17255,-86.79111)); // (444 of 1207.0) 2005-04-30T13:40:41Z 5737 01:35:37 11.1745012112008  Gooby 1.1.0 
         | 
| 467 | 
            +
                        // points.push(new GLatLng(36.17283,-86.79126)); // (445 of 1207.0) 2005-04-30T13:40:52Z 5748 01:35:48 11.1955778992175  Gooby 1.1.0 
         | 
| 468 | 
            +
                        // points.push(new GLatLng(36.17304,-86.79139)); // (446 of 1207.0) 2005-04-30T13:41:01Z 5757 01:35:57 11.211797561709  Gooby 1.1.0 
         | 
| 469 | 
            +
                        points.push(new GLatLng(36.17337,-86.79158)); // (447 of 1207.0) 2005-04-30T13:41:15Z 5771 01:36:11 11.2369395457235  Gooby 1.1.0 
         | 
| 470 | 
            +
                        // points.push(new GLatLng(36.17362,-86.79176)); // (448 of 1207.0) 2005-04-30T13:41:26Z 5782 01:36:22 11.2569174995727  Gooby 1.1.0 
         | 
| 471 | 
            +
                        // points.push(new GLatLng(36.17403,-86.79193)); // (449 of 1207.0) 2005-04-30T13:41:42Z 5798 01:36:38 11.2867889219352  Gooby 1.1.0 
         | 
| 472 | 
            +
                        // points.push(new GLatLng(36.17424,-86.7921)); // (450 of 1207.0) 2005-04-30T13:41:51Z 5807 01:36:47 11.3041209294761  Gooby 1.1.0 
         | 
| 473 | 
            +
                        // points.push(new GLatLng(36.17448,-86.79221)); // (451 of 1207.0) 2005-04-30T13:42:01Z 5817 01:36:57 11.3218009653165  Gooby 1.1.0 
         | 
| 474 | 
            +
                        // points.push(new GLatLng(36.17467,-86.79238)); // (452 of 1207.0) 2005-04-30T13:42:10Z 5826 01:37:06 11.3379937902174  Gooby 1.1.0 
         | 
| 475 | 
            +
                        points.push(new GLatLng(36.17491,-86.79255)); // (453 of 1207.0) 2005-04-30T13:42:20Z 5836 01:37:16 11.3570945410452  Gooby 1.1.0 
         | 
| 476 | 
            +
                        // points.push(new GLatLng(36.17519,-86.7927)); // (454 of 1207.0) 2005-04-30T13:42:31Z 5847 01:37:27 11.3781709814296  Gooby 1.1.0 
         | 
| 477 | 
            +
                        // points.push(new GLatLng(36.17547,-86.79289)); // (455 of 1207.0) 2005-04-30T13:42:42Z 5858 01:37:38 11.4002281010687  Gooby 1.1.0 
         | 
| 478 | 
            +
                        // points.push(new GLatLng(36.17568,-86.79304)); // (456 of 1207.0) 2005-04-30T13:42:51Z 5867 01:37:47 11.416975901839  Gooby 1.1.0 
         | 
| 479 | 
            +
                        // points.push(new GLatLng(36.17592,-86.79324)); // (457 of 1207.0) 2005-04-30T13:43:01Z 5877 01:37:57 11.4369599505895  Gooby 1.1.0 
         | 
| 480 | 
            +
                        // points.push(new GLatLng(36.17622,-86.79349)); // (458 of 1207.0) 2005-04-30T13:43:13Z 5889 01:38:09 11.4619399767049  Gooby 1.1.0 
         | 
| 481 | 
            +
                        points.push(new GLatLng(36.17643,-86.79367)); // (459 of 1207.0) 2005-04-30T13:43:22Z 5898 01:38:18 11.4795830733071  Gooby 1.1.0 
         | 
| 482 | 
            +
                        // points.push(new GLatLng(36.17667,-86.79379)); // (460 of 1207.0) 2005-04-30T13:43:31Z 5907 01:38:27 11.4974642786194  Gooby 1.1.0 
         | 
| 483 | 
            +
                        // points.push(new GLatLng(36.17695,-86.79399)); // (461 of 1207.0) 2005-04-30T13:43:43Z 5919 01:38:39 11.5197946623333  Gooby 1.1.0 
         | 
| 484 | 
            +
                        // points.push(new GLatLng(36.17721,-86.79429)); // (462 of 1207.0) 2005-04-30T13:43:55Z 5931 01:38:51 11.5443426322551  Gooby 1.1.0 
         | 
| 485 | 
            +
                        // points.push(new GLatLng(36.17755,-86.79418)); // (463 of 1207.0) 2005-04-30T13:44:05Z 5941 01:39:01 11.56862101581  Gooby 1.1.0 
         | 
| 486 | 
            +
                        // points.push(new GLatLng(36.1777,-86.79437)); // (464 of 1207.0) 2005-04-30T13:44:12Z 5948 01:39:08 11.5834424281852  Gooby 1.1.0 
         | 
| 487 | 
            +
                        points.push(new GLatLng(36.17785,-86.79457)); // (465 of 1207.0) 2005-04-30T13:44:20Z 5956 01:39:16 11.5986675316279  Gooby 1.1.0 
         | 
| 488 | 
            +
                        // points.push(new GLatLng(36.178,-86.7947)); // (466 of 1207.0) 2005-04-30T13:44:27Z 5963 01:39:23 11.6113150301359  Gooby 1.1.0 
         | 
| 489 | 
            +
                        // points.push(new GLatLng(36.17828,-86.79487)); // (467 of 1207.0) 2005-04-30T13:44:39Z 5975 01:39:35 11.6328583714634  Gooby 1.1.0 
         | 
| 490 | 
            +
                        // points.push(new GLatLng(36.17851,-86.79497)); // (468 of 1207.0) 2005-04-30T13:44:48Z 5984 01:39:44 11.6496994039045  Gooby 1.1.0 
         | 
| 491 | 
            +
                        // points.push(new GLatLng(36.17882,-86.79519)); // (469 of 1207.0) 2005-04-30T13:45:01Z 5997 01:39:57 11.6743825782545  Gooby 1.1.0 
         | 
| 492 | 
            +
                        // points.push(new GLatLng(36.17935,-86.79558)); // (470 of 1207.0) 2005-04-30T13:45:24Z 6020 01:40:20 11.7169724140587  Gooby 1.1.0 
         | 
| 493 | 
            +
                        points.push(new GLatLng(36.18002,-86.79607)); // (471 of 1207.0) 2005-04-30T13:45:51Z 6047 01:40:47 11.770726507851  Gooby 1.1.0 
         | 
| 494 | 
            +
                        // points.push(new GLatLng(36.18047,-86.79635)); // (472 of 1207.0) 2005-04-30T13:46:10Z 6066 01:41:06 11.8055178690049  Gooby 1.1.0 
         | 
| 495 | 
            +
                        // points.push(new GLatLng(36.18083,-86.79652)); // (473 of 1207.0) 2005-04-30T13:46:24Z 6080 01:41:20 11.8321356850952  Gooby 1.1.0 
         | 
| 496 | 
            +
                        // points.push(new GLatLng(36.18107,-86.79671)); // (474 of 1207.0) 2005-04-30T13:46:34Z 6090 01:41:30 11.8518135603984  Gooby 1.1.0 
         | 
| 497 | 
            +
                        // points.push(new GLatLng(36.18133,-86.79688)); // (475 of 1207.0) 2005-04-30T13:46:45Z 6101 01:41:41 11.872125045798  Gooby 1.1.0 
         | 
| 498 | 
            +
                        // points.push(new GLatLng(36.18167,-86.79712)); // (476 of 1207.0) 2005-04-30T13:46:59Z 6115 01:41:55 11.8991608912735  Gooby 1.1.0 
         | 
| 499 | 
            +
                        points.push(new GLatLng(36.18197,-86.79736)); // (477 of 1207.0) 2005-04-30T13:47:11Z 6127 01:42:07 11.9238334908963  Gooby 1.1.0 
         | 
| 500 | 
            +
                        // points.push(new GLatLng(36.18221,-86.79751)); // (478 of 1207.0) 2005-04-30T13:47:21Z 6137 01:42:17 11.9424053812003  Gooby 1.1.0 
         | 
| 501 | 
            +
                        // points.push(new GLatLng(36.18246,-86.79766)); // (479 of 1207.0) 2005-04-30T13:47:31Z 6147 01:42:27 11.9615967265408  Gooby 1.1.0 
         | 
| 502 | 
            +
                        // points.push(new GLatLng(36.18274,-86.79783)); // (480 of 1207.0) 2005-04-30T13:47:42Z 6158 01:42:38 11.9831399063564  Gooby 1.1.0 
         | 
| 503 | 
            +
                        // points.push(new GLatLng(36.18296,-86.79787)); // (481 of 1207.0) 2005-04-30T13:47:50Z 6166 01:42:46 11.9985025389756  Gooby 1.1.0 
         | 
| 504 | 
            +
                        points.push(new GLatLng(36.18324,-86.79791)); // (482 of 1207.0) 2005-04-30T13:48:00Z 6176 01:42:56 12.0179760066749 12.0 00:08:46 Gooby 1.1.0 
         | 
| 505 | 
            +
                        // points.push(new GLatLng(36.18345,-86.79802)); // (483 of 1207.0) 2005-04-30T13:48:09Z 6185 01:43:05 12.0337282456285  Gooby 1.1.0 
         | 
| 506 | 
            +
                        // points.push(new GLatLng(36.18366,-86.79802)); // (484 of 1207.0) 2005-04-30T13:48:17Z 6193 01:43:13 12.048237063729  Gooby 1.1.0 
         | 
| 507 | 
            +
                        // points.push(new GLatLng(36.1839,-86.79806)); // (485 of 1207.0) 2005-04-30T13:48:25Z 6201 01:43:21 12.0649680276252  Gooby 1.1.0 
         | 
| 508 | 
            +
                        // points.push(new GLatLng(36.18414,-86.79809)); // (486 of 1207.0) 2005-04-30T13:48:34Z 6210 01:43:30 12.0816337706551  Gooby 1.1.0 
         | 
| 509 | 
            +
                        // points.push(new GLatLng(36.18439,-86.79813)); // (487 of 1207.0) 2005-04-30T13:48:43Z 6219 01:43:39 12.0990496915299  Gooby 1.1.0 
         | 
| 510 | 
            +
                        points.push(new GLatLng(36.18465,-86.79817)); // (488 of 1207.0) 2005-04-30T13:48:52Z 6228 01:43:48 12.1171511772922  Gooby 1.1.0 
         | 
| 511 | 
            +
                        // points.push(new GLatLng(36.18487,-86.79826)); // (489 of 1207.0) 2005-04-30T13:49:00Z 6236 01:43:56 12.1331581398889  Gooby 1.1.0 
         | 
| 512 | 
            +
                        // points.push(new GLatLng(36.1851,-86.7983)); // (490 of 1207.0) 2005-04-30T13:49:09Z 6245 01:44:05 12.149204615725  Gooby 1.1.0 
         | 
| 513 | 
            +
                        // points.push(new GLatLng(36.1853,-86.79834)); // (491 of 1207.0) 2005-04-30T13:49:16Z 6252 01:44:12 12.1632016258199  Gooby 1.1.0 
         | 
| 514 | 
            +
                        // points.push(new GLatLng(36.18555,-86.79841)); // (492 of 1207.0) 2005-04-30T13:49:25Z 6261 01:44:21 12.1809097821922  Gooby 1.1.0 
         | 
| 515 | 
            +
                        // points.push(new GLatLng(36.18577,-86.79843)); // (493 of 1207.0) 2005-04-30T13:49:33Z 6269 01:44:29 12.196150532347  Gooby 1.1.0 
         | 
| 516 | 
            +
                        points.push(new GLatLng(36.18596,-86.79845)); // (494 of 1207.0) 2005-04-30T13:49:40Z 6276 01:44:36 12.2093250347196  Gooby 1.1.0 
         | 
| 517 | 
            +
                        // points.push(new GLatLng(36.18635,-86.79854)); // (495 of 1207.0) 2005-04-30T13:49:54Z 6290 01:44:50 12.2367335979704  Gooby 1.1.0 
         | 
| 518 | 
            +
                        // points.push(new GLatLng(36.18686,-86.79856)); // (496 of 1207.0) 2005-04-30T13:50:12Z 6308 01:45:08 12.271987136899  Gooby 1.1.0 
         | 
| 519 | 
            +
                        // points.push(new GLatLng(36.18708,-86.79858)); // (497 of 1207.0) 2005-04-30T13:50:20Z 6316 01:45:16 12.2872277729025  Gooby 1.1.0 
         | 
| 520 | 
            +
                        // points.push(new GLatLng(36.18748,-86.79862)); // (498 of 1207.0) 2005-04-30T13:50:35Z 6331 01:45:31 12.3149535866345  Gooby 1.1.0 
         | 
| 521 | 
            +
                        // points.push(new GLatLng(36.18776,-86.79869)); // (499 of 1207.0) 2005-04-30T13:50:45Z 6341 01:45:41 12.3346886692905  Gooby 1.1.0 
         | 
| 522 | 
            +
                        points.push(new GLatLng(36.18785,-86.79873)); // (500 of 1207.0) 2005-04-30T13:50:48Z 6344 01:45:44 12.3412947113744  Gooby 1.1.0 
         | 
| 523 | 
            +
                        // points.push(new GLatLng(36.18781,-86.79894)); // (501 of 1207.0) 2005-04-30T13:50:54Z 6350 01:45:50 12.3533263694599  Gooby 1.1.0 
         | 
| 524 | 
            +
                        // points.push(new GLatLng(36.1877,-86.79935)); // (502 of 1207.0) 2005-04-30T13:51:06Z 6362 01:46:02 12.3774186599599  Gooby 1.1.0 
         | 
| 525 | 
            +
                        // points.push(new GLatLng(36.18757,-86.7998)); // (503 of 1207.0) 2005-04-30T13:51:20Z 6376 01:46:16 12.4040704416902  Gooby 1.1.0 
         | 
| 526 | 
            +
                        // points.push(new GLatLng(36.18748,-86.80017)); // (504 of 1207.0) 2005-04-30T13:51:31Z 6387 01:46:27 12.4256189507583  Gooby 1.1.0 
         | 
| 527 | 
            +
                        // points.push(new GLatLng(36.18738,-86.80068)); // (505 of 1207.0) 2005-04-30T13:51:47Z 6403 01:46:43 12.4548847577701  Gooby 1.1.0 
         | 
| 528 | 
            +
                        points.push(new GLatLng(36.18736,-86.80079)); // (506 of 1207.0) 2005-04-30T13:51:53Z 6409 01:46:49 12.4611723639235  Gooby 1.1.0 
         | 
| 529 | 
            +
                        // points.push(new GLatLng(36.18729,-86.80111)); // (507 of 1207.0) 2005-04-30T13:52:04Z 6420 01:47:00 12.4796599415206  Gooby 1.1.0 
         | 
| 530 | 
            +
                        // points.push(new GLatLng(36.18721,-86.80156)); // (508 of 1207.0) 2005-04-30T13:52:18Z 6434 01:47:14 12.5053543444573  Gooby 1.1.0 
         | 
| 531 | 
            +
                        // points.push(new GLatLng(36.18712,-86.80193)); // (509 of 1207.0) 2005-04-30T13:52:28Z 6444 01:47:24 12.5269030149973  Gooby 1.1.0 
         | 
| 532 | 
            +
                        // points.push(new GLatLng(36.18703,-86.80233)); // (510 of 1207.0) 2005-04-30T13:52:39Z 6455 01:47:35 12.5500583357989  Gooby 1.1.0 
         | 
| 533 | 
            +
                        // points.push(new GLatLng(36.18695,-86.80281)); // (511 of 1207.0) 2005-04-30T13:52:52Z 6468 01:47:48 12.5773888411541  Gooby 1.1.0 
         | 
| 534 | 
            +
                        points.push(new GLatLng(36.18682,-86.8033)); // (512 of 1207.0) 2005-04-30T13:53:06Z 6482 01:48:02 12.6061506618118  Gooby 1.1.0 
         | 
| 535 | 
            +
                        // points.push(new GLatLng(36.18671,-86.80375)); // (513 of 1207.0) 2005-04-30T13:53:19Z 6495 01:48:15 12.6323694033964  Gooby 1.1.0 
         | 
| 536 | 
            +
                        // points.push(new GLatLng(36.18671,-86.80405)); // (514 of 1207.0) 2005-04-30T13:53:28Z 6504 01:48:24 12.6490980794967  Gooby 1.1.0 
         | 
| 537 | 
            +
                        // points.push(new GLatLng(36.18675,-86.80409)); // (515 of 1207.0) 2005-04-30T13:53:30Z 6506 01:48:26 12.652649090617  Gooby 1.1.0 
         | 
| 538 | 
            +
                        // points.push(new GLatLng(36.18699,-86.80412)); // (516 of 1207.0) 2005-04-30T13:53:37Z 6513 01:48:33 12.6693148336468  Gooby 1.1.0 
         | 
| 539 | 
            +
                        // points.push(new GLatLng(36.18731,-86.80414)); // (517 of 1207.0) 2005-04-30T13:53:48Z 6524 01:48:44 12.6914517876362  Gooby 1.1.0 
         | 
| 540 | 
            +
                        points.push(new GLatLng(36.18776,-86.80416)); // (518 of 1207.0) 2005-04-30T13:54:03Z 6539 01:48:59 12.7225622766718  Gooby 1.1.0 
         | 
| 541 | 
            +
                        // points.push(new GLatLng(36.18824,-86.80418)); // (519 of 1207.0) 2005-04-30T13:54:19Z 6555 01:49:15 12.7557442533166  Gooby 1.1.0 
         | 
| 542 | 
            +
                        // points.push(new GLatLng(36.18851,-86.80424)); // (520 of 1207.0) 2005-04-30T13:54:29Z 6565 01:49:25 12.7746961415807  Gooby 1.1.0 
         | 
| 543 | 
            +
                        // points.push(new GLatLng(36.18879,-86.80439)); // (521 of 1207.0) 2005-04-30T13:54:40Z 6576 01:49:36 12.7957720041451  Gooby 1.1.0 
         | 
| 544 | 
            +
                        // points.push(new GLatLng(36.18907,-86.8047)); // (522 of 1207.0) 2005-04-30T13:54:53Z 6589 01:49:49 12.8217149837204  Gooby 1.1.0 
         | 
| 545 | 
            +
                        // points.push(new GLatLng(36.18929,-86.80506)); // (523 of 1207.0) 2005-04-30T13:55:06Z 6602 01:50:02 12.8468941681199  Gooby 1.1.0 
         | 
| 546 | 
            +
                        points.push(new GLatLng(36.18933,-86.80545)); // (524 of 1207.0) 2005-04-30T13:55:17Z 6613 01:50:13 12.8688156798612  Gooby 1.1.0 
         | 
| 547 | 
            +
                        // points.push(new GLatLng(36.18946,-86.80585)); // (525 of 1207.0) 2005-04-30T13:55:29Z 6625 01:50:25 12.892860335736  Gooby 1.1.0 
         | 
| 548 | 
            +
                        // points.push(new GLatLng(36.18972,-86.80611)); // (526 of 1207.0) 2005-04-30T13:55:41Z 6637 01:50:37 12.9159441691215  Gooby 1.1.0 
         | 
| 549 | 
            +
                        // points.push(new GLatLng(36.18982,-86.80615)); // (527 of 1207.0) 2005-04-30T13:55:45Z 6641 01:50:41 12.9232041518256  Gooby 1.1.0 
         | 
| 550 | 
            +
                        // points.push(new GLatLng(36.18997,-86.8062)); // (528 of 1207.0) 2005-04-30T13:55:50Z 6646 01:50:46 12.9339359361155  Gooby 1.1.0 
         | 
| 551 | 
            +
                        // points.push(new GLatLng(36.19017,-86.80624)); // (529 of 1207.0) 2005-04-30T13:55:56Z 6652 01:50:52 12.9479328219157  Gooby 1.1.0 
         | 
| 552 | 
            +
                        points.push(new GLatLng(36.19062,-86.80628)); // (530 of 1207.0) 2005-04-30T13:56:11Z 6667 01:51:07 12.9791032011842  Gooby 1.1.0 
         | 
| 553 | 
            +
                        points.push(new GLatLng(36.19096,-86.8063)); // (531 of 1207.0) 2005-04-30T13:56:23Z 6679 01:51:19 13.0026203935526 13.0 00:08:23 Gooby 1.1.0 
         | 
| 554 | 
            +
                        // points.push(new GLatLng(36.19135,-86.80639)); // (532 of 1207.0) 2005-04-30T13:56:36Z 6692 01:51:32 13.030028829854  Gooby 1.1.0 
         | 
| 555 | 
            +
                        // points.push(new GLatLng(36.19156,-86.80643)); // (533 of 1207.0) 2005-04-30T13:56:44Z 6700 01:51:40 13.044708235704  Gooby 1.1.0 
         | 
| 556 | 
            +
                        // points.push(new GLatLng(36.19188,-86.80652)); // (534 of 1207.0) 2005-04-30T13:56:57Z 6713 01:51:53 13.067379366228  Gooby 1.1.0 
         | 
| 557 | 
            +
                        // points.push(new GLatLng(36.19248,-86.80658)); // (535 of 1207.0) 2005-04-30T13:57:17Z 6733 01:52:13 13.1089681600324  Gooby 1.1.0 
         | 
| 558 | 
            +
                        // points.push(new GLatLng(36.19259,-86.80663)); // (536 of 1207.0) 2005-04-30T13:57:21Z 6737 01:52:17 13.117063390564  Gooby 1.1.0 
         | 
| 559 | 
            +
                        points.push(new GLatLng(36.19283,-86.80673)); // (537 of 1207.0) 2005-04-30T13:57:30Z 6746 01:52:26 13.1345573535902  Gooby 1.1.0 
         | 
| 560 | 
            +
                        // points.push(new GLatLng(36.19315,-86.80682)); // (538 of 1207.0) 2005-04-30T13:57:41Z 6757 01:52:37 13.1572284841142  Gooby 1.1.0 
         | 
| 561 | 
            +
                        // points.push(new GLatLng(36.19341,-86.80693)); // (539 of 1207.0) 2005-04-30T13:57:51Z 6767 01:52:47 13.1762101832942  Gooby 1.1.0 
         | 
| 562 | 
            +
                        // points.push(new GLatLng(36.19364,-86.8071)); // (540 of 1207.0) 2005-04-30T13:58:00Z 6776 01:52:56 13.1947132814573  Gooby 1.1.0 
         | 
| 563 | 
            +
                        // points.push(new GLatLng(36.19375,-86.80718)); // (541 of 1207.0) 2005-04-30T13:58:05Z 6781 01:53:01 13.2035255063988  Gooby 1.1.0 
         | 
| 564 | 
            +
                        // points.push(new GLatLng(36.19377,-86.80742)); // (542 of 1207.0) 2005-04-30T13:58:12Z 6788 01:53:08 13.2169784730153  Gooby 1.1.0 
         | 
| 565 | 
            +
                        points.push(new GLatLng(36.19379,-86.80787)); // (543 of 1207.0) 2005-04-30T13:58:24Z 6800 01:53:20 13.2421073061887  Gooby 1.1.0 
         | 
| 566 | 
            +
                        // points.push(new GLatLng(36.19377,-86.80836)); // (544 of 1207.0) 2005-04-30T13:58:38Z 6814 01:53:34 13.2694633256245  Gooby 1.1.0 
         | 
| 567 | 
            +
                        // points.push(new GLatLng(36.19375,-86.80884)); // (545 of 1207.0) 2005-04-30T13:58:52Z 6828 01:53:48 13.2962624868034  Gooby 1.1.0 
         | 
| 568 | 
            +
                        // points.push(new GLatLng(36.19375,-86.80933)); // (546 of 1207.0) 2005-04-30T13:59:06Z 6842 01:54:02 13.3235835694707  Gooby 1.1.0 
         | 
| 569 | 
            +
                        // points.push(new GLatLng(36.19371,-86.80984)); // (547 of 1207.0) 2005-04-30T13:59:21Z 6857 01:54:17 13.3521537303202  Gooby 1.1.0 
         | 
| 570 | 
            +
                        // points.push(new GLatLng(36.19369,-86.81027)); // (548 of 1207.0) 2005-04-30T13:59:35Z 6871 01:54:31 13.3761692095108  Gooby 1.1.0 
         | 
| 571 | 
            +
                        points.push(new GLatLng(36.19366,-86.81077)); // (549 of 1207.0) 2005-04-30T13:59:50Z 6886 01:54:46 13.4041249208978  Gooby 1.1.0 
         | 
| 572 | 
            +
                        // points.push(new GLatLng(36.19369,-86.81133)); // (550 of 1207.0) 2005-04-30T14:00:06Z 6902 01:55:02 13.4354178502386  Gooby 1.1.0 
         | 
| 573 | 
            +
                        // points.push(new GLatLng(36.19366,-86.81178)); // (551 of 1207.0) 2005-04-30T14:00:20Z 6916 01:55:16 13.4605942707017  Gooby 1.1.0 
         | 
| 574 | 
            +
                        // points.push(new GLatLng(36.1936,-86.81227)); // (552 of 1207.0) 2005-04-30T14:00:35Z 6931 01:55:31 13.4882281942271  Gooby 1.1.0 
         | 
| 575 | 
            +
                        // points.push(new GLatLng(36.19354,-86.81257)); // (553 of 1207.0) 2005-04-30T14:00:45Z 6941 01:55:41 13.5054613490164  Gooby 1.1.0 
         | 
| 576 | 
            +
                        // points.push(new GLatLng(36.19345,-86.81281)); // (554 of 1207.0) 2005-04-30T14:00:53Z 6949 01:55:49 13.5202173534586  Gooby 1.1.0 
         | 
| 577 | 
            +
                        points.push(new GLatLng(36.19334,-86.81317)); // (555 of 1207.0) 2005-04-30T14:01:04Z 6960 01:56:00 13.5416805978128  Gooby 1.1.0 
         | 
| 578 | 
            +
                        // points.push(new GLatLng(36.19323,-86.81349)); // (556 of 1207.0) 2005-04-30T14:01:14Z 6970 01:56:10 13.5610741214132  Gooby 1.1.0 
         | 
| 579 | 
            +
                        // points.push(new GLatLng(36.19311,-86.81388)); // (557 of 1207.0) 2005-04-30T14:01:27Z 6983 01:56:23 13.5843465052263  Gooby 1.1.0 
         | 
| 580 | 
            +
                        // points.push(new GLatLng(36.19302,-86.81414)); // (558 of 1207.0) 2005-04-30T14:01:35Z 6991 01:56:31 13.6001209278781  Gooby 1.1.0 
         | 
| 581 | 
            +
                        // points.push(new GLatLng(36.19291,-86.81457)); // (559 of 1207.0) 2005-04-30T14:01:48Z 7004 01:56:44 13.6252725284158  Gooby 1.1.0 
         | 
| 582 | 
            +
                        // points.push(new GLatLng(36.19281,-86.81484)); // (560 of 1207.0) 2005-04-30T14:01:57Z 7013 01:56:53 13.6418369131681  Gooby 1.1.0 
         | 
| 583 | 
            +
                        points.push(new GLatLng(36.19272,-86.8151)); // (561 of 1207.0) 2005-04-30T14:02:05Z 7021 01:57:01 13.6576113358199  Gooby 1.1.0 
         | 
| 584 | 
            +
                        // points.push(new GLatLng(36.19263,-86.81542)); // (562 of 1207.0) 2005-04-30T14:02:15Z 7031 01:57:11 13.6765064077318  Gooby 1.1.0 
         | 
| 585 | 
            +
                        // points.push(new GLatLng(36.19261,-86.81568)); // (563 of 1207.0) 2005-04-30T14:02:22Z 7038 01:57:18 13.691069324101  Gooby 1.1.0 
         | 
| 586 | 
            +
                        // points.push(new GLatLng(36.19266,-86.81577)); // (564 of 1207.0) 2005-04-30T14:02:25Z 7041 01:57:21 13.6971613077289  Gooby 1.1.0 
         | 
| 587 | 
            +
                        // points.push(new GLatLng(36.19285,-86.81594)); // (565 of 1207.0) 2005-04-30T14:02:33Z 7049 01:57:29 13.7133529507541  Gooby 1.1.0 
         | 
| 588 | 
            +
                        // points.push(new GLatLng(36.19306,-86.81607)); // (566 of 1207.0) 2005-04-30T14:02:41Z 7057 01:57:37 13.7295717551306  Gooby 1.1.0 
         | 
| 589 | 
            +
                        points.push(new GLatLng(36.19323,-86.81626)); // (567 of 1207.0) 2005-04-30T14:02:49Z 7065 01:57:45 13.7453889120494  Gooby 1.1.0 
         | 
| 590 | 
            +
                        // points.push(new GLatLng(36.19339,-86.8165)); // (568 of 1207.0) 2005-04-30T14:02:58Z 7074 01:57:54 13.7627461963258  Gooby 1.1.0 
         | 
| 591 | 
            +
                        // points.push(new GLatLng(36.19366,-86.81682)); // (569 of 1207.0) 2005-04-30T14:03:12Z 7088 01:58:08 13.7885596944835  Gooby 1.1.0 
         | 
| 592 | 
            +
                        // points.push(new GLatLng(36.19388,-86.81708)); // (570 of 1207.0) 2005-04-30T14:03:23Z 7099 01:58:19 13.8095644467906  Gooby 1.1.0 
         | 
| 593 | 
            +
                        // points.push(new GLatLng(36.19403,-86.81723)); // (571 of 1207.0) 2005-04-30T14:03:30Z 7106 01:58:26 13.8228817183152  Gooby 1.1.0 
         | 
| 594 | 
            +
                        // points.push(new GLatLng(36.19426,-86.81742)); // (572 of 1207.0) 2005-04-30T14:03:40Z 7116 01:58:36 13.8419799186598  Gooby 1.1.0 
         | 
| 595 | 
            +
                        points.push(new GLatLng(36.1945,-86.81755)); // (573 of 1207.0) 2005-04-30T14:03:49Z 7125 01:58:45 13.8600765982499  Gooby 1.1.0 
         | 
| 596 | 
            +
                        // points.push(new GLatLng(36.19476,-86.81766)); // (574 of 1207.0) 2005-04-30T14:03:59Z 7135 01:58:55 13.8790581141214  Gooby 1.1.0 
         | 
| 597 | 
            +
                        // points.push(new GLatLng(36.19497,-86.81774)); // (575 of 1207.0) 2005-04-30T14:04:07Z 7143 01:59:03 13.8942372122154  Gooby 1.1.0 
         | 
| 598 | 
            +
                        // points.push(new GLatLng(36.1951,-86.81787)); // (576 of 1207.0) 2005-04-30T14:04:13Z 7149 01:59:09 13.9057791289082  Gooby 1.1.0 
         | 
| 599 | 
            +
                        // points.push(new GLatLng(36.1951,-86.818)); // (577 of 1207.0) 2005-04-30T14:04:17Z 7153 01:59:13 13.9130280800199  Gooby 1.1.0 
         | 
| 600 | 
            +
                        // points.push(new GLatLng(36.19502,-86.81834)); // (578 of 1207.0) 2005-04-30T14:04:27Z 7163 01:59:23 13.9327746194998  Gooby 1.1.0 
         | 
| 601 | 
            +
                        points.push(new GLatLng(36.19489,-86.8186)); // (579 of 1207.0) 2005-04-30T14:04:35Z 7171 01:59:31 13.9498282526074  Gooby 1.1.0 
         | 
| 602 | 
            +
                        // points.push(new GLatLng(36.19474,-86.81884)); // (580 of 1207.0) 2005-04-30T14:04:44Z 7180 01:59:40 13.9667535767804  Gooby 1.1.0 
         | 
| 603 | 
            +
                        // points.push(new GLatLng(36.19454,-86.81909)); // (581 of 1207.0) 2005-04-30T14:04:54Z 7190 01:59:50 13.9863809929592  Gooby 1.1.0 
         | 
| 604 | 
            +
                        points.push(new GLatLng(36.19433,-86.81937)); // (582 of 1207.0) 2005-04-30T14:05:05Z 7201 02:00:01 14.0076939175942 14.0 00:08:42 Gooby 1.1.0 
         | 
| 605 | 
            +
                        // points.push(new GLatLng(36.19409,-86.81967)); // (583 of 1207.0) 2005-04-30T14:05:17Z 7213 02:00:13 14.0312468879196  Gooby 1.1.0 
         | 
| 606 | 
            +
                        // points.push(new GLatLng(36.19388,-86.81997)); // (584 of 1207.0) 2005-04-30T14:05:28Z 7224 02:00:24 14.0533898139534  Gooby 1.1.0 
         | 
| 607 | 
            +
                        // points.push(new GLatLng(36.19377,-86.82021)); // (585 of 1207.0) 2005-04-30T14:05:36Z 7232 02:00:32 14.0687790362104  Gooby 1.1.0 
         | 
| 608 | 
            +
                        // points.push(new GLatLng(36.19364,-86.82053)); // (586 of 1207.0) 2005-04-30T14:05:46Z 7242 02:00:42 14.0887545515785  Gooby 1.1.0 
         | 
| 609 | 
            +
                        // points.push(new GLatLng(36.19351,-86.82081)); // (587 of 1207.0) 2005-04-30T14:05:56Z 7252 02:00:52 14.1067658530873  Gooby 1.1.0 
         | 
| 610 | 
            +
                        points.push(new GLatLng(36.19347,-86.82096)); // (588 of 1207.0) 2005-04-30T14:06:01Z 7257 02:00:57 14.1155741286605  Gooby 1.1.0 
         | 
| 611 | 
            +
                        // points.push(new GLatLng(36.19345,-86.82102)); // (589 of 1207.0) 2005-04-30T14:06:04Z 7260 02:01:00 14.1191940413498  Gooby 1.1.0 
         | 
| 612 | 
            +
                        // points.push(new GLatLng(36.19341,-86.82115)); // (590 of 1207.0) 2005-04-30T14:06:12Z 7268 02:01:08 14.1269517019671  Gooby 1.1.0 
         | 
| 613 | 
            +
                        // points.push(new GLatLng(36.19339,-86.82137)); // (591 of 1207.0) 2005-04-30T14:06:20Z 7276 02:01:16 14.1392959672085  Gooby 1.1.0 
         | 
| 614 | 
            +
                        // points.push(new GLatLng(36.19332,-86.82186)); // (592 of 1207.0) 2005-04-30T14:06:34Z 7290 02:01:30 14.1670419158159  Gooby 1.1.0 
         | 
| 615 | 
            +
                        // points.push(new GLatLng(36.19321,-86.82238)); // (593 of 1207.0) 2005-04-30T14:06:50Z 7306 02:01:46 14.1970154351685  Gooby 1.1.0 
         | 
| 616 | 
            +
                        points.push(new GLatLng(36.19313,-86.82291)); // (594 of 1207.0) 2005-04-30T14:07:06Z 7322 02:02:02 14.2270794806265  Gooby 1.1.0 
         | 
| 617 | 
            +
                        // points.push(new GLatLng(36.19304,-86.82332)); // (595 of 1207.0) 2005-04-30T14:07:18Z 7334 02:02:14 14.2507707637835  Gooby 1.1.0 
         | 
| 618 | 
            +
                        // points.push(new GLatLng(36.19289,-86.82362)); // (596 of 1207.0) 2005-04-30T14:07:28Z 7344 02:02:24 14.2704482854384  Gooby 1.1.0 
         | 
| 619 | 
            +
                        // points.push(new GLatLng(36.19266,-86.82409)); // (597 of 1207.0) 2005-04-30T14:07:44Z 7360 02:02:40 14.3010959929962  Gooby 1.1.0 
         | 
| 620 | 
            +
                        // points.push(new GLatLng(36.19251,-86.82456)); // (598 of 1207.0) 2005-04-30T14:07:59Z 7375 02:02:55 14.329277072341  Gooby 1.1.0 
         | 
| 621 | 
            +
                        // points.push(new GLatLng(36.19251,-86.82495)); // (599 of 1207.0) 2005-04-30T14:08:11Z 7387 02:03:07 14.3510228056486  Gooby 1.1.0 
         | 
| 622 | 
            +
                        points.push(new GLatLng(36.19253,-86.82502)); // (600 of 1207.0) 2005-04-30T14:08:13Z 7389 02:03:09 14.3551632716127  Gooby 1.1.0 
         | 
| 623 | 
            +
                        // points.push(new GLatLng(36.19266,-86.82497)); // (601 of 1207.0) 2005-04-30T14:08:18Z 7394 02:03:14 14.3645676181848  Gooby 1.1.0 
         | 
| 624 | 
            +
                        // points.push(new GLatLng(36.19272,-86.82495)); // (602 of 1207.0) 2005-04-30T14:08:20Z 7396 02:03:16 14.368861142382  Gooby 1.1.0 
         | 
| 625 | 
            +
                        // points.push(new GLatLng(36.19306,-86.82474)); // (603 of 1207.0) 2005-04-30T14:08:33Z 7409 02:03:29 14.3951083348502  Gooby 1.1.0 
         | 
| 626 | 
            +
                        // points.push(new GLatLng(36.19339,-86.82452)); // (604 of 1207.0) 2005-04-30T14:08:46Z 7422 02:03:42 14.4209985513098  Gooby 1.1.0 
         | 
| 627 | 
            +
                        // points.push(new GLatLng(36.19371,-86.82422)); // (605 of 1207.0) 2005-04-30T14:09:02Z 7438 02:03:58 14.4487221687663  Gooby 1.1.0 
         | 
| 628 | 
            +
                        points.push(new GLatLng(36.19399,-86.82392)); // (606 of 1207.0) 2005-04-30T14:09:16Z 7452 02:04:12 14.474296241623  Gooby 1.1.0 
         | 
| 629 | 
            +
                        // points.push(new GLatLng(36.19431,-86.82358)); // (607 of 1207.0) 2005-04-30T14:09:31Z 7467 02:04:27 14.5034198044547  Gooby 1.1.0 
         | 
| 630 | 
            +
                        // points.push(new GLatLng(36.19459,-86.82328)); // (608 of 1207.0) 2005-04-30T14:09:45Z 7481 02:04:41 14.5289937412557  Gooby 1.1.0 
         | 
| 631 | 
            +
                        // points.push(new GLatLng(36.19489,-86.82293)); // (609 of 1207.0) 2005-04-30T14:10:00Z 7496 02:04:56 14.5574619055782  Gooby 1.1.0 
         | 
| 632 | 
            +
                        // points.push(new GLatLng(36.19514,-86.82263)); // (610 of 1207.0) 2005-04-30T14:10:13Z 7509 02:05:09 14.5815061996763  Gooby 1.1.0 
         | 
| 633 | 
            +
                        // points.push(new GLatLng(36.1954,-86.82231)); // (611 of 1207.0) 2005-04-30T14:10:27Z 7523 02:05:23 14.6068245705047  Gooby 1.1.0 
         | 
| 634 | 
            +
                        points.push(new GLatLng(36.19564,-86.82203)); // (612 of 1207.0) 2005-04-30T14:10:39Z 7535 02:05:35 14.6295989858496  Gooby 1.1.0 
         | 
| 635 | 
            +
                        // points.push(new GLatLng(36.19583,-86.8218)); // (613 of 1207.0) 2005-04-30T14:10:50Z 7546 02:05:46 14.6479503644779  Gooby 1.1.0 
         | 
| 636 | 
            +
                        // points.push(new GLatLng(36.19609,-86.8215)); // (614 of 1207.0) 2005-04-30T14:11:02Z 7558 02:05:58 14.672495570264  Gooby 1.1.0 
         | 
| 637 | 
            +
                        // points.push(new GLatLng(36.1963,-86.82124)); // (615 of 1207.0) 2005-04-30T14:11:13Z 7569 02:06:09 14.6930054873076  Gooby 1.1.0 
         | 
| 638 | 
            +
                        // points.push(new GLatLng(36.19656,-86.82092)); // (616 of 1207.0) 2005-04-30T14:11:26Z 7582 02:06:22 14.7183237207061  Gooby 1.1.0 
         | 
| 639 | 
            +
                        // points.push(new GLatLng(36.19678,-86.82062)); // (617 of 1207.0) 2005-04-30T14:11:38Z 7594 02:06:34 14.7409248344349  Gooby 1.1.0 
         | 
| 640 | 
            +
                        points.push(new GLatLng(36.19703,-86.82027)); // (618 of 1207.0) 2005-04-30T14:11:52Z 7608 02:06:48 14.7669853059899  Gooby 1.1.0 
         | 
| 641 | 
            +
                        // points.push(new GLatLng(36.19723,-86.81997)); // (619 of 1207.0) 2005-04-30T14:12:04Z 7620 02:07:00 14.7886812197271  Gooby 1.1.0 
         | 
| 642 | 
            +
                        // points.push(new GLatLng(36.19746,-86.81965)); // (620 of 1207.0) 2005-04-30T14:12:16Z 7632 02:07:12 14.8125733745667  Gooby 1.1.0 
         | 
| 643 | 
            +
                        // points.push(new GLatLng(36.19766,-86.81931)); // (621 of 1207.0) 2005-04-30T14:12:29Z 7645 02:07:25 14.8360316068327  Gooby 1.1.0 
         | 
| 644 | 
            +
                        // points.push(new GLatLng(36.19785,-86.81901)); // (622 of 1207.0) 2005-04-30T14:12:41Z 7657 02:07:37 14.857294025093  Gooby 1.1.0 
         | 
| 645 | 
            +
                        // points.push(new GLatLng(36.19806,-86.81869)); // (623 of 1207.0) 2005-04-30T14:12:53Z 7669 02:07:49 14.8802901159294  Gooby 1.1.0 
         | 
| 646 | 
            +
                        points.push(new GLatLng(36.19823,-86.81841)); // (624 of 1207.0) 2005-04-30T14:13:03Z 7679 02:07:59 14.899826288208  Gooby 1.1.0 
         | 
| 647 | 
            +
                        // points.push(new GLatLng(36.19834,-86.81815)); // (625 of 1207.0) 2005-04-30T14:13:12Z 7688 02:08:08 14.9161937274896  Gooby 1.1.0 
         | 
| 648 | 
            +
                        // points.push(new GLatLng(36.19847,-86.81785)); // (626 of 1207.0) 2005-04-30T14:13:22Z 7698 02:08:18 14.9351789091971  Gooby 1.1.0 
         | 
| 649 | 
            +
                        // points.push(new GLatLng(36.19858,-86.81757)); // (627 of 1207.0) 2005-04-30T14:13:31Z 7707 02:08:27 14.9525416051292  Gooby 1.1.0 
         | 
| 650 | 
            +
                        // points.push(new GLatLng(36.19875,-86.81716)); // (628 of 1207.0) 2005-04-30T14:13:45Z 7721 02:08:41 14.9782414919217  Gooby 1.1.0 
         | 
| 651 | 
            +
                        // points.push(new GLatLng(36.19892,-86.81693)); // (629 of 1207.0) 2005-04-30T14:13:54Z 7730 02:08:50 14.9956308206889  Gooby 1.1.0 
         | 
| 652 | 
            +
                        points.push(new GLatLng(36.19914,-86.81663)); // (630 of 1207.0) 2005-04-30T14:14:05Z 7741 02:09:01 15.0182316265111 15.0 00:09:00 Gooby 1.1.0 
         | 
| 653 | 
            +
                        // points.push(new GLatLng(36.19926,-86.81641)); // (631 of 1207.0) 2005-04-30T14:14:13Z 7749 02:09:09 15.0330365964834  Gooby 1.1.0 
         | 
| 654 | 
            +
                        // points.push(new GLatLng(36.19939,-86.81617)); // (632 of 1207.0) 2005-04-30T14:14:21Z 7757 02:09:17 15.0491523112304  Gooby 1.1.0 
         | 
| 655 | 
            +
                        // points.push(new GLatLng(36.19952,-86.81594)); // (633 of 1207.0) 2005-04-30T14:14:29Z 7765 02:09:25 15.0648080575967  Gooby 1.1.0 
         | 
| 656 | 
            +
                        // points.push(new GLatLng(36.19965,-86.81566)); // (634 of 1207.0) 2005-04-30T14:14:38Z 7774 02:09:34 15.0828182965631  Gooby 1.1.0 
         | 
| 657 | 
            +
                        // points.push(new GLatLng(36.19976,-86.81527)); // (635 of 1207.0) 2005-04-30T14:14:51Z 7787 02:09:47 15.1058518812151  Gooby 1.1.0 
         | 
| 658 | 
            +
                        points.push(new GLatLng(36.19982,-86.8151)); // (636 of 1207.0) 2005-04-30T14:14:56Z 7792 02:09:52 15.1161966994431  Gooby 1.1.0 
         | 
| 659 | 
            +
                        // points.push(new GLatLng(36.19995,-86.81482)); // (637 of 1207.0) 2005-04-30T14:15:05Z 7801 02:10:01 15.1342069384095  Gooby 1.1.0 
         | 
| 660 | 
            +
                        // points.push(new GLatLng(36.20012,-86.8145)); // (638 of 1207.0) 2005-04-30T14:15:16Z 7812 02:10:12 15.1555668294215  Gooby 1.1.0 
         | 
| 661 | 
            +
                        // points.push(new GLatLng(36.20027,-86.81412)); // (639 of 1207.0) 2005-04-30T14:15:29Z 7825 02:10:25 15.1791516879499  Gooby 1.1.0 
         | 
| 662 | 
            +
                        // points.push(new GLatLng(36.2004,-86.81381)); // (640 of 1207.0) 2005-04-30T14:15:39Z 7835 02:10:35 15.1986294434639  Gooby 1.1.0 
         | 
| 663 | 
            +
                        // points.push(new GLatLng(36.20055,-86.81349)); // (641 of 1207.0) 2005-04-30T14:15:49Z 7845 02:10:45 15.2192618209793  Gooby 1.1.0 
         | 
| 664 | 
            +
                        points.push(new GLatLng(36.20062,-86.81311)); // (642 of 1207.0) 2005-04-30T14:16:01Z 7857 02:10:57 15.2409927485024  Gooby 1.1.0 
         | 
| 665 | 
            +
                        // points.push(new GLatLng(36.20066,-86.81274)); // (643 of 1207.0) 2005-04-30T14:16:12Z 7868 02:11:08 15.2618054597945  Gooby 1.1.0 
         | 
| 666 | 
            +
                        // points.push(new GLatLng(36.20072,-86.81244)); // (644 of 1207.0) 2005-04-30T14:16:21Z 7877 02:11:17 15.2790372011778  Gooby 1.1.0 
         | 
| 667 | 
            +
                        // points.push(new GLatLng(36.20079,-86.81216)); // (645 of 1207.0) 2005-04-30T14:16:30Z 7886 02:11:26 15.2953797489426  Gooby 1.1.0 
         | 
| 668 | 
            +
                        // points.push(new GLatLng(36.20081,-86.81195)); // (646 of 1207.0) 2005-04-30T14:16:37Z 7893 02:11:33 15.3071689320831  Gooby 1.1.0 
         | 
| 669 | 
            +
                        // points.push(new GLatLng(36.20085,-86.81169)); // (647 of 1207.0) 2005-04-30T14:16:45Z 7901 02:11:41 15.3219256439137  Gooby 1.1.0 
         | 
| 670 | 
            +
                        points.push(new GLatLng(36.20087,-86.81143)); // (648 of 1207.0) 2005-04-30T14:16:53Z 7909 02:11:49 15.3364867682108  Gooby 1.1.0 
         | 
| 671 | 
            +
                        // points.push(new GLatLng(36.20092,-86.81103)); // (649 of 1207.0) 2005-04-30T14:17:06Z 7922 02:12:02 15.3590536786598  Gooby 1.1.0 
         | 
| 672 | 
            +
                        // points.push(new GLatLng(36.20105,-86.81062)); // (650 of 1207.0) 2005-04-30T14:17:19Z 7935 02:12:15 15.3836133395594  Gooby 1.1.0 
         | 
| 673 | 
            +
                        // points.push(new GLatLng(36.20111,-86.81023)); // (651 of 1207.0) 2005-04-30T14:17:31Z 7947 02:12:27 15.4057484073053  Gooby 1.1.0 
         | 
| 674 | 
            +
                        // points.push(new GLatLng(36.2012,-86.80989)); // (652 of 1207.0) 2005-04-30T14:17:42Z 7958 02:12:38 15.4256979517995  Gooby 1.1.0 
         | 
| 675 | 
            +
                        // points.push(new GLatLng(36.20128,-86.80946)); // (653 of 1207.0) 2005-04-30T14:17:55Z 7971 02:12:51 15.4503001492289  Gooby 1.1.0 
         | 
| 676 | 
            +
                        points.push(new GLatLng(36.20128,-86.80914)); // (654 of 1207.0) 2005-04-30T14:18:04Z 7980 02:13:00 15.4681407365271  Gooby 1.1.0 
         | 
| 677 | 
            +
                        // points.push(new GLatLng(36.2013,-86.80877)); // (655 of 1207.0) 2005-04-30T14:18:15Z 7991 02:13:11 15.488815147488  Gooby 1.1.0 
         | 
| 678 | 
            +
                        // points.push(new GLatLng(36.20135,-86.80843)); // (656 of 1207.0) 2005-04-30T14:18:26Z 8002 02:13:22 15.5080829420411  Gooby 1.1.0 
         | 
| 679 | 
            +
                        // points.push(new GLatLng(36.20137,-86.80804)); // (657 of 1207.0) 2005-04-30T14:18:37Z 8013 02:13:33 15.529870078018  Gooby 1.1.0 
         | 
| 680 | 
            +
                        // points.push(new GLatLng(36.20139,-86.80781)); // (658 of 1207.0) 2005-04-30T14:18:44Z 8020 02:13:40 15.5427672532062  Gooby 1.1.0 
         | 
| 681 | 
            +
                        // points.push(new GLatLng(36.20143,-86.80746)); // (659 of 1207.0) 2005-04-30T14:18:54Z 8030 02:13:50 15.5624751654198  Gooby 1.1.0 
         | 
| 682 | 
            +
                        points.push(new GLatLng(36.20143,-86.80712)); // (660 of 1207.0) 2005-04-30T14:19:04Z 8040 02:14:00 15.5814308170297  Gooby 1.1.0 
         | 
| 683 | 
            +
                        // points.push(new GLatLng(36.2015,-86.80643)); // (661 of 1207.0) 2005-04-30T14:19:24Z 8060 02:14:20 15.6202024314561  Gooby 1.1.0 
         | 
| 684 | 
            +
                        // points.push(new GLatLng(36.20147,-86.80603)); // (662 of 1207.0) 2005-04-30T14:19:36Z 8072 02:14:32 15.6425992509448  Gooby 1.1.0 
         | 
| 685 | 
            +
                        // points.push(new GLatLng(36.20143,-86.80555)); // (663 of 1207.0) 2005-04-30T14:19:50Z 8086 02:14:46 15.6695024683077  Gooby 1.1.0 
         | 
| 686 | 
            +
                        // points.push(new GLatLng(36.20141,-86.80521)); // (664 of 1207.0) 2005-04-30T14:20:00Z 8096 02:14:56 15.6885084402432  Gooby 1.1.0 
         | 
| 687 | 
            +
                        // points.push(new GLatLng(36.20143,-86.80472)); // (665 of 1207.0) 2005-04-30T14:20:15Z 8111 02:15:11 15.715861788497  Gooby 1.1.0 
         | 
| 688 | 
            +
                        points.push(new GLatLng(36.20143,-86.80442)); // (666 of 1207.0) 2005-04-30T14:20:24Z 8120 02:15:20 15.7325873443711  Gooby 1.1.0 
         | 
| 689 | 
            +
                        // points.push(new GLatLng(36.20141,-86.80416)); // (667 of 1207.0) 2005-04-30T14:20:32Z 8128 02:15:28 15.7471485881465  Gooby 1.1.0 
         | 
| 690 | 
            +
                        // points.push(new GLatLng(36.20141,-86.80388)); // (668 of 1207.0) 2005-04-30T14:20:40Z 8136 02:15:36 15.7627591525318  Gooby 1.1.0 
         | 
| 691 | 
            +
                        // points.push(new GLatLng(36.20137,-86.80362)); // (669 of 1207.0) 2005-04-30T14:20:48Z 8144 02:15:44 15.7775157464666  Gooby 1.1.0 
         | 
| 692 | 
            +
                        // points.push(new GLatLng(36.20135,-86.80332)); // (670 of 1207.0) 2005-04-30T14:20:57Z 8153 02:15:53 15.7942982069853  Gooby 1.1.0 
         | 
| 693 | 
            +
                        // points.push(new GLatLng(36.20128,-86.803)); // (671 of 1207.0) 2005-04-30T14:21:07Z 8163 02:16:03 15.8127826789054  Gooby 1.1.0 
         | 
| 694 | 
            +
                        points.push(new GLatLng(36.20124,-86.80274)); // (672 of 1207.0) 2005-04-30T14:21:15Z 8171 02:16:11 15.8275391549436  Gooby 1.1.0 
         | 
| 695 | 
            +
                        // points.push(new GLatLng(36.2012,-86.80248)); // (673 of 1207.0) 2005-04-30T14:21:23Z 8179 02:16:19 15.8422956309818  Gooby 1.1.0 
         | 
| 696 | 
            +
                        // points.push(new GLatLng(36.20111,-86.80218)); // (674 of 1207.0) 2005-04-30T14:21:33Z 8189 02:16:29 15.8601398260143  Gooby 1.1.0 
         | 
| 697 | 
            +
                        // points.push(new GLatLng(36.20102,-86.80214)); // (675 of 1207.0) 2005-04-30T14:21:37Z 8193 02:16:33 15.8667458680982  Gooby 1.1.0 
         | 
| 698 | 
            +
                        // points.push(new GLatLng(36.20094,-86.80216)); // (676 of 1207.0) 2005-04-30T14:21:41Z 8197 02:16:37 15.872384009756  Gooby 1.1.0 
         | 
| 699 | 
            +
                        // points.push(new GLatLng(36.20083,-86.80221)); // (677 of 1207.0) 2005-04-30T14:21:45Z 8201 02:16:41 15.8804792402877  Gooby 1.1.0 
         | 
| 700 | 
            +
                        points.push(new GLatLng(36.20034,-86.80223)); // (678 of 1207.0) 2005-04-30T14:22:01Z 8217 02:16:57 15.9143516730046  Gooby 1.1.0 
         | 
| 701 | 
            +
                        // points.push(new GLatLng(36.20002,-86.80236)); // (679 of 1207.0) 2005-04-30T14:22:13Z 8229 02:17:09 15.9376182251331  Gooby 1.1.0 
         | 
| 702 | 
            +
                        // points.push(new GLatLng(36.19991,-86.80244)); // (680 of 1207.0) 2005-04-30T14:22:18Z 8234 02:17:14 15.9464300552174  Gooby 1.1.0 
         | 
| 703 | 
            +
                        // points.push(new GLatLng(36.19989,-86.80266)); // (681 of 1207.0) 2005-04-30T14:22:24Z 8240 02:17:20 15.9587731929227  Gooby 1.1.0 
         | 
| 704 | 
            +
                        // points.push(new GLatLng(36.19993,-86.80298)); // (682 of 1207.0) 2005-04-30T14:22:33Z 8249 02:17:29 15.9768269448496  Gooby 1.1.0 
         | 
| 705 | 
            +
                        // points.push(new GLatLng(36.19993,-86.80309)); // (683 of 1207.0) 2005-04-30T14:22:36Z 8252 02:17:32 15.9829593466975  Gooby 1.1.0 
         | 
| 706 | 
            +
                        points.push(new GLatLng(36.19997,-86.80328)); // (684 of 1207.0) 2005-04-30T14:22:41Z 8257 02:17:37 15.9939069999229  Gooby 1.1.0 
         | 
| 707 | 
            +
                        points.push(new GLatLng(36.20002,-86.80349)); // (685 of 1207.0) 2005-04-30T14:22:48Z 8264 02:17:44 16.0061140772076 16.0 00:08:43 Gooby 1.1.0 
         | 
| 708 | 
            +
                        // points.push(new GLatLng(36.20006,-86.80397)); // (686 of 1207.0) 2005-04-30T14:23:02Z 8278 02:17:58 16.0330178119002  Gooby 1.1.0 
         | 
| 709 | 
            +
                        // points.push(new GLatLng(36.20012,-86.80442)); // (687 of 1207.0) 2005-04-30T14:23:16Z 8292 02:18:12 16.0584467096927  Gooby 1.1.0 
         | 
| 710 | 
            +
                        // points.push(new GLatLng(36.20014,-86.80493)); // (688 of 1207.0) 2005-04-30T14:23:31Z 8307 02:18:27 16.0869141406619  Gooby 1.1.0 
         | 
| 711 | 
            +
                        // points.push(new GLatLng(36.20008,-86.80521)); // (689 of 1207.0) 2005-04-30T14:23:40Z 8316 02:18:36 16.1030658715978  Gooby 1.1.0 
         | 
| 712 | 
            +
                        // points.push(new GLatLng(36.20002,-86.8056)); // (690 of 1207.0) 2005-04-30T14:23:53Z 8329 02:18:49 16.1252010179404  Gooby 1.1.0 
         | 
| 713 | 
            +
                        points.push(new GLatLng(36.19995,-86.80585)); // (691 of 1207.0) 2005-04-30T14:24:01Z 8337 02:18:57 16.1399544283349  Gooby 1.1.0 
         | 
| 714 | 
            +
                        // points.push(new GLatLng(36.19989,-86.80605)); // (692 of 1207.0) 2005-04-30T14:24:08Z 8344 02:19:04 16.1518505583565  Gooby 1.1.0 
         | 
| 715 | 
            +
                        // points.push(new GLatLng(36.19987,-86.8062)); // (693 of 1207.0) 2005-04-30T14:24:15Z 8351 02:19:11 16.160326880426  Gooby 1.1.0 
         | 
| 716 | 
            +
                        // points.push(new GLatLng(36.19978,-86.80641)); // (694 of 1207.0) 2005-04-30T14:24:27Z 8363 02:19:23 16.1735839221177  Gooby 1.1.0 
         | 
| 717 | 
            +
                        // points.push(new GLatLng(36.19963,-86.80676)); // (695 of 1207.0) 2005-04-30T14:24:38Z 8374 02:19:34 16.1956787903809  Gooby 1.1.0 
         | 
| 718 | 
            +
                        // points.push(new GLatLng(36.19941,-86.80721)); // (696 of 1207.0) 2005-04-30T14:24:52Z 8388 02:19:48 16.2250128810632  Gooby 1.1.0 
         | 
| 719 | 
            +
                        points.push(new GLatLng(36.19924,-86.80755)); // (697 of 1207.0) 2005-04-30T14:25:04Z 8400 02:20:00 16.2473128594226  Gooby 1.1.0 
         | 
| 720 | 
            +
                        // points.push(new GLatLng(36.19901,-86.80802)); // (698 of 1207.0) 2005-04-30T14:25:20Z 8416 02:20:16 16.2779588071856  Gooby 1.1.0 
         | 
| 721 | 
            +
                        // points.push(new GLatLng(36.19879,-86.80843)); // (699 of 1207.0) 2005-04-30T14:25:34Z 8430 02:20:30 16.3054099921924  Gooby 1.1.0 
         | 
| 722 | 
            +
                        // points.push(new GLatLng(36.19862,-86.80862)); // (700 of 1207.0) 2005-04-30T14:25:43Z 8439 02:20:39 16.3212267091409  Gooby 1.1.0 
         | 
| 723 | 
            +
                        // points.push(new GLatLng(36.19841,-86.80879)); // (701 of 1207.0) 2005-04-30T14:25:52Z 8448 02:20:48 16.3385572109516  Gooby 1.1.0 
         | 
| 724 | 
            +
                        // points.push(new GLatLng(36.19808,-86.80899)); // (702 of 1207.0) 2005-04-30T14:26:05Z 8461 02:21:01 16.3639376239194  Gooby 1.1.0 
         | 
| 725 | 
            +
                        points.push(new GLatLng(36.19772,-86.80905)); // (703 of 1207.0) 2005-04-30T14:26:18Z 8474 02:21:14 16.3890338964571  Gooby 1.1.0 
         | 
| 726 | 
            +
                        // points.push(new GLatLng(36.19733,-86.80905)); // (704 of 1207.0) 2005-04-30T14:26:32Z 8488 02:21:28 16.4159789853503  Gooby 1.1.0 
         | 
| 727 | 
            +
                        // points.push(new GLatLng(36.19699,-86.80892)); // (705 of 1207.0) 2005-04-30T14:26:45Z 8501 02:21:41 16.4405622946052  Gooby 1.1.0 
         | 
| 728 | 
            +
                        // points.push(new GLatLng(36.19669,-86.80884)); // (706 of 1207.0) 2005-04-30T14:26:56Z 8512 02:21:52 16.4617637494617  Gooby 1.1.0 
         | 
| 729 | 
            +
                        // points.push(new GLatLng(36.19626,-86.80869)); // (707 of 1207.0) 2005-04-30T14:27:12Z 8528 02:22:08 16.492627090225  Gooby 1.1.0 
         | 
| 730 | 
            +
                        // points.push(new GLatLng(36.19596,-86.80851)); // (708 of 1207.0) 2005-04-30T14:27:23Z 8539 02:22:19 16.5156559159421  Gooby 1.1.0 
         | 
| 731 | 
            +
                        points.push(new GLatLng(36.19577,-86.80847)); // (709 of 1207.0) 2005-04-30T14:27:30Z 8546 02:22:26 16.5289710970893  Gooby 1.1.0 
         | 
| 732 | 
            +
                        // points.push(new GLatLng(36.1956,-86.80841)); // (710 of 1207.0) 2005-04-30T14:27:37Z 8553 02:22:33 16.5411838738221  Gooby 1.1.0 
         | 
| 733 | 
            +
                        // points.push(new GLatLng(36.19529,-86.80821)); // (711 of 1207.0) 2005-04-30T14:27:50Z 8566 02:22:46 16.5653309108282  Gooby 1.1.0 
         | 
| 734 | 
            +
                        // points.push(new GLatLng(36.19506,-86.80794)); // (712 of 1207.0) 2005-04-30T14:28:03Z 8579 02:22:59 16.5872201776767  Gooby 1.1.0 
         | 
| 735 | 
            +
                        // points.push(new GLatLng(36.19491,-86.80774)); // (713 of 1207.0) 2005-04-30T14:28:11Z 8587 02:23:07 16.6024435669989  Gooby 1.1.0 
         | 
| 736 | 
            +
                        // points.push(new GLatLng(36.19472,-86.80753)); // (714 of 1207.0) 2005-04-30T14:28:21Z 8597 02:23:17 16.6200338293436  Gooby 1.1.0 
         | 
| 737 | 
            +
                        points.push(new GLatLng(36.19448,-86.80733)); // (715 of 1207.0) 2005-04-30T14:28:31Z 8607 02:23:27 16.6400163110113  Gooby 1.1.0 
         | 
| 738 | 
            +
                        // points.push(new GLatLng(36.19431,-86.80723)); // (716 of 1207.0) 2005-04-30T14:28:39Z 8615 02:23:35 16.653017876045  Gooby 1.1.0 
         | 
| 739 | 
            +
                        // points.push(new GLatLng(36.19403,-86.80706)); // (717 of 1207.0) 2005-04-30T14:28:50Z 8626 02:23:46 16.6745603290422  Gooby 1.1.0 
         | 
| 740 | 
            +
                        // points.push(new GLatLng(36.19369,-86.80678)); // (718 of 1207.0) 2005-04-30T14:29:05Z 8641 02:24:01 16.7027657213102  Gooby 1.1.0 
         | 
| 741 | 
            +
                        // points.push(new GLatLng(36.19366,-86.8065)); // (719 of 1207.0) 2005-04-30T14:29:13Z 8649 02:24:09 16.7185149779835  Gooby 1.1.0 
         | 
| 742 | 
            +
                        // points.push(new GLatLng(36.19366,-86.80615)); // (720 of 1207.0) 2005-04-30T14:29:23Z 8659 02:24:19 16.7380302116899  Gooby 1.1.0 
         | 
| 743 | 
            +
                        points.push(new GLatLng(36.19364,-86.80585)); // (721 of 1207.0) 2005-04-30T14:29:32Z 8668 02:24:28 16.7548144344133  Gooby 1.1.0 
         | 
| 744 | 
            +
                        // points.push(new GLatLng(36.1936,-86.80557)); // (722 of 1207.0) 2005-04-30T14:29:40Z 8676 02:24:36 16.7706693831151  Gooby 1.1.0 
         | 
| 745 | 
            +
                        // points.push(new GLatLng(36.19356,-86.8053)); // (723 of 1207.0) 2005-04-30T14:29:49Z 8685 02:24:45 16.7859756293347  Gooby 1.1.0 
         | 
| 746 | 
            +
                        // points.push(new GLatLng(36.19351,-86.80493)); // (724 of 1207.0) 2005-04-30T14:30:00Z 8696 02:24:56 16.8068930668837  Gooby 1.1.0 
         | 
| 747 | 
            +
                        // points.push(new GLatLng(36.19349,-86.80476)); // (725 of 1207.0) 2005-04-30T14:30:05Z 8701 02:25:01 16.8164720903506  Gooby 1.1.0 
         | 
| 748 | 
            +
                        // points.push(new GLatLng(36.19343,-86.80442)); // (726 of 1207.0) 2005-04-30T14:30:16Z 8712 02:25:12 16.835877631044  Gooby 1.1.0 
         | 
| 749 | 
            +
                        points.push(new GLatLng(36.19339,-86.80409)); // (727 of 1207.0) 2005-04-30T14:30:26Z 8722 02:25:22 16.8544839622949  Gooby 1.1.0 
         | 
| 750 | 
            +
                        // points.push(new GLatLng(36.19334,-86.80362)); // (728 of 1207.0) 2005-04-30T14:30:40Z 8736 02:25:36 16.8809166883412  Gooby 1.1.0 
         | 
| 751 | 
            +
                        // points.push(new GLatLng(36.19328,-86.80324)); // (729 of 1207.0) 2005-04-30T14:30:52Z 8748 02:25:48 16.9025062530571  Gooby 1.1.0 
         | 
| 752 | 
            +
                        // points.push(new GLatLng(36.19323,-86.80289)); // (730 of 1207.0) 2005-04-30T14:31:03Z 8759 02:25:59 16.9223249060157  Gooby 1.1.0 
         | 
| 753 | 
            +
                        // points.push(new GLatLng(36.19319,-86.80244)); // (731 of 1207.0) 2005-04-30T14:31:17Z 8773 02:26:13 16.9475675774256  Gooby 1.1.0 
         | 
| 754 | 
            +
                        // points.push(new GLatLng(36.19311,-86.80193)); // (732 of 1207.0) 2005-04-30T14:31:33Z 8789 02:26:29 16.976536249211  Gooby 1.1.0 
         | 
| 755 | 
            +
                        points.push(new GLatLng(36.19302,-86.80154)); // (733 of 1207.0) 2005-04-30T14:31:45Z 8801 02:26:41 16.9991533683063  Gooby 1.1.0 
         | 
| 756 | 
            +
                        points.push(new GLatLng(36.19293,-86.80122)); // (734 of 1207.0) 2005-04-30T14:31:55Z 8811 02:26:51 17.0180483481438 17.0 00:09:07 Gooby 1.1.0 
         | 
| 757 | 
            +
                        // points.push(new GLatLng(36.19281,-86.80096)); // (735 of 1207.0) 2005-04-30T14:32:04Z 8820 02:27:00 17.0347487128755  Gooby 1.1.0 
         | 
| 758 | 
            +
                        // points.push(new GLatLng(36.19272,-86.80077)); // (736 of 1207.0) 2005-04-30T14:32:11Z 8827 02:27:07 17.0470329344681  Gooby 1.1.0 
         | 
| 759 | 
            +
                        // points.push(new GLatLng(36.19257,-86.80045)); // (737 of 1207.0) 2005-04-30T14:32:23Z 8839 02:27:19 17.0676669983379  Gooby 1.1.0 
         | 
| 760 | 
            +
                        // points.push(new GLatLng(36.19238,-86.80012)); // (738 of 1207.0) 2005-04-30T14:32:35Z 8851 02:27:31 17.0902698824482  Gooby 1.1.0 
         | 
| 761 | 
            +
                        // points.push(new GLatLng(36.19223,-86.79993)); // (739 of 1207.0) 2005-04-30T14:32:43Z 8859 02:27:39 17.1050898861895  Gooby 1.1.0 
         | 
| 762 | 
            +
                        points.push(new GLatLng(36.1921,-86.7998)); // (740 of 1207.0) 2005-04-30T14:32:50Z 8866 02:27:46 17.1166318028822  Gooby 1.1.0 
         | 
| 763 | 
            +
                        // points.push(new GLatLng(36.19197,-86.79963)); // (741 of 1207.0) 2005-04-30T14:32:57Z 8873 02:27:53 17.12969024678  Gooby 1.1.0 
         | 
| 764 | 
            +
                        // points.push(new GLatLng(36.19186,-86.7995)); // (742 of 1207.0) 2005-04-30T14:33:03Z 8879 02:27:59 17.1401926229335  Gooby 1.1.0 
         | 
| 765 | 
            +
                        // points.push(new GLatLng(36.19184,-86.79948)); // (743 of 1207.0) 2005-04-30T14:33:04Z 8880 02:28:00 17.1419681284936  Gooby 1.1.0 
         | 
| 766 | 
            +
                        // points.push(new GLatLng(36.1916,-86.79929)); // (744 of 1207.0) 2005-04-30T14:33:15Z 8891 02:28:11 17.1616452080792  Gooby 1.1.0 
         | 
| 767 | 
            +
                        // points.push(new GLatLng(36.19139,-86.79912)); // (745 of 1207.0) 2005-04-30T14:33:26Z 8902 02:28:22 17.1789760110465  Gooby 1.1.0 
         | 
| 768 | 
            +
                        points.push(new GLatLng(36.19115,-86.79901)); // (746 of 1207.0) 2005-04-30T14:33:36Z 8912 02:28:32 17.1966556532756  Gooby 1.1.0 
         | 
| 769 | 
            +
                        // points.push(new GLatLng(36.19094,-86.7989)); // (747 of 1207.0) 2005-04-30T14:33:46Z 8922 02:28:42 17.2124077817844  Gooby 1.1.0 
         | 
| 770 | 
            +
                        // points.push(new GLatLng(36.19072,-86.79882)); // (748 of 1207.0) 2005-04-30T14:33:56Z 8932 02:28:52 17.22824867896  Gooby 1.1.0 
         | 
| 771 | 
            +
                        // points.push(new GLatLng(36.19051,-86.79871)); // (749 of 1207.0) 2005-04-30T14:34:06Z 8942 02:29:02 17.2440008074688  Gooby 1.1.0 
         | 
| 772 | 
            +
                        // points.push(new GLatLng(36.19038,-86.79867)); // (750 of 1207.0) 2005-04-30T14:34:12Z 8948 02:29:08 17.2532552238558  Gooby 1.1.0 
         | 
| 773 | 
            +
                        // points.push(new GLatLng(36.19025,-86.79862)); // (751 of 1207.0) 2005-04-30T14:34:21Z 8957 02:29:17 17.2626595704279  Gooby 1.1.0 
         | 
| 774 | 
            +
                        points.push(new GLatLng(36.19006,-86.79858)); // (752 of 1207.0) 2005-04-30T14:34:32Z 8968 02:29:28 17.2759747515751  Gooby 1.1.0 
         | 
| 775 | 
            +
                        // points.push(new GLatLng(36.18989,-86.79856)); // (753 of 1207.0) 2005-04-30T14:34:40Z 8976 02:29:36 17.2877729331363  Gooby 1.1.0 
         | 
| 776 | 
            +
                        // points.push(new GLatLng(36.18965,-86.79854)); // (754 of 1207.0) 2005-04-30T14:34:50Z 8986 02:29:46 17.3043920527636  Gooby 1.1.0 
         | 
| 777 | 
            +
                        // points.push(new GLatLng(36.18944,-86.79856)); // (755 of 1207.0) 2005-04-30T14:34:58Z 8994 02:29:54 17.3189438547275  Gooby 1.1.0 
         | 
| 778 | 
            +
                        // points.push(new GLatLng(36.18922,-86.79852)); // (756 of 1207.0) 2005-04-30T14:35:07Z 9003 02:30:03 17.3343064873467  Gooby 1.1.0 
         | 
| 779 | 
            +
                        // points.push(new GLatLng(36.18901,-86.79849)); // (757 of 1207.0) 2005-04-30T14:35:15Z 9011 02:30:11 17.3489113945513  Gooby 1.1.0 
         | 
| 780 | 
            +
                        points.push(new GLatLng(36.18881,-86.79847)); // (758 of 1207.0) 2005-04-30T14:35:23Z 9019 02:30:19 17.3627742700432  Gooby 1.1.0 
         | 
| 781 | 
            +
                        // points.push(new GLatLng(36.18862,-86.79843)); // (759 of 1207.0) 2005-04-30T14:35:31Z 9027 02:30:27 17.3760894511904  Gooby 1.1.0 
         | 
| 782 | 
            +
                        // points.push(new GLatLng(36.18845,-86.79843)); // (760 of 1207.0) 2005-04-30T14:35:38Z 9034 02:30:34 17.3878345757289  Gooby 1.1.0 
         | 
| 783 | 
            +
                        // points.push(new GLatLng(36.18819,-86.79843)); // (761 of 1207.0) 2005-04-30T14:35:48Z 9044 02:30:44 17.4057979037579  Gooby 1.1.0 
         | 
| 784 | 
            +
                        // points.push(new GLatLng(36.18798,-86.79837)); // (762 of 1207.0) 2005-04-30T14:35:56Z 9052 02:30:52 17.4206874749168  Gooby 1.1.0 
         | 
| 785 | 
            +
                        // points.push(new GLatLng(36.18761,-86.79837)); // (763 of 1207.0) 2005-04-30T14:36:11Z 9067 02:31:07 17.4462507971326  Gooby 1.1.0 
         | 
| 786 | 
            +
                        points.push(new GLatLng(36.18729,-86.79832)); // (764 of 1207.0) 2005-04-30T14:36:22Z 9078 02:31:18 17.4685346984836  Gooby 1.1.0 
         | 
| 787 | 
            +
                        // points.push(new GLatLng(36.18671,-86.79828)); // (765 of 1207.0) 2005-04-30T14:36:46Z 9102 02:31:42 17.5086689466487  Gooby 1.1.0 
         | 
| 788 | 
            +
                        // points.push(new GLatLng(36.18648,-86.79828)); // (766 of 1207.0) 2005-04-30T14:36:55Z 9111 02:31:51 17.5245596267101  Gooby 1.1.0 
         | 
| 789 | 
            +
                        // points.push(new GLatLng(36.18626,-86.79828)); // (767 of 1207.0) 2005-04-30T14:37:03Z 9119 02:31:59 17.5397593414298  Gooby 1.1.0 
         | 
| 790 | 
            +
                        // points.push(new GLatLng(36.18607,-86.79824)); // (768 of 1207.0) 2005-04-30T14:37:11Z 9127 02:32:07 17.553074522577  Gooby 1.1.0 
         | 
| 791 | 
            +
                        // points.push(new GLatLng(36.18583,-86.79821)); // (769 of 1207.0) 2005-04-30T14:37:20Z 9136 02:32:16 17.5697402656068  Gooby 1.1.0 
         | 
| 792 | 
            +
                        points.push(new GLatLng(36.18566,-86.79819)); // (770 of 1207.0) 2005-04-30T14:37:26Z 9142 02:32:22 17.5815382997082  Gooby 1.1.0 
         | 
| 793 | 
            +
                        // points.push(new GLatLng(36.18542,-86.79813)); // (771 of 1207.0) 2005-04-30T14:37:35Z 9151 02:32:31 17.598454164601  Gooby 1.1.0 
         | 
| 794 | 
            +
                        // points.push(new GLatLng(36.18525,-86.79811)); // (772 of 1207.0) 2005-04-30T14:37:42Z 9158 02:32:38 17.61025249362  Gooby 1.1.0 
         | 
| 795 | 
            +
                        // points.push(new GLatLng(36.18506,-86.79806)); // (773 of 1207.0) 2005-04-30T14:37:49Z 9165 02:32:45 17.6236725725971  Gooby 1.1.0 
         | 
| 796 | 
            +
                        // points.push(new GLatLng(36.18482,-86.79804)); // (774 of 1207.0) 2005-04-30T14:37:58Z 9174 02:32:54 17.6402916922244  Gooby 1.1.0 
         | 
| 797 | 
            +
                        // points.push(new GLatLng(36.18459,-86.79798)); // (775 of 1207.0) 2005-04-30T14:38:07Z 9183 02:33:03 17.6565306503174  Gooby 1.1.0 
         | 
| 798 | 
            +
                        points.push(new GLatLng(36.18439,-86.79794)); // (776 of 1207.0) 2005-04-30T14:38:15Z 9191 02:33:11 17.6705274118219  Gooby 1.1.0 
         | 
| 799 | 
            +
                        // points.push(new GLatLng(36.18418,-86.79791)); // (777 of 1207.0) 2005-04-30T14:38:23Z 9199 02:33:19 17.6851324381467  Gooby 1.1.0 
         | 
| 800 | 
            +
                        // points.push(new GLatLng(36.18394,-86.79785)); // (778 of 1207.0) 2005-04-30T14:38:32Z 9208 02:33:28 17.7020482001921  Gooby 1.1.0 
         | 
| 801 | 
            +
                        // points.push(new GLatLng(36.18373,-86.79779)); // (779 of 1207.0) 2005-04-30T14:38:41Z 9217 02:33:37 17.7169380050358  Gooby 1.1.0 
         | 
| 802 | 
            +
                        // points.push(new GLatLng(36.18343,-86.79776)); // (780 of 1207.0) 2005-04-30T14:38:52Z 9228 02:33:48 17.7377324856019  Gooby 1.1.0 
         | 
| 803 | 
            +
                        // points.push(new GLatLng(36.18324,-86.79776)); // (781 of 1207.0) 2005-04-30T14:39:00Z 9236 02:33:56 17.7508594949735  Gooby 1.1.0 
         | 
| 804 | 
            +
                        points.push(new GLatLng(36.18289,-86.7977)); // (782 of 1207.0) 2005-04-30T14:39:13Z 9249 02:34:09 17.7752714403913  Gooby 1.1.0 
         | 
| 805 | 
            +
                        // points.push(new GLatLng(36.18266,-86.79759)); // (783 of 1207.0) 2005-04-30T14:39:22Z 9258 02:34:18 17.7923049644598  Gooby 1.1.0 
         | 
| 806 | 
            +
                        // points.push(new GLatLng(36.18229,-86.79736)); // (784 of 1207.0) 2005-04-30T14:39:37Z 9273 02:34:33 17.8209054343531  Gooby 1.1.0 
         | 
| 807 | 
            +
                        // points.push(new GLatLng(36.1821,-86.79725)); // (785 of 1207.0) 2005-04-30T14:39:46Z 9282 02:34:42 17.8353951742887  Gooby 1.1.0 
         | 
| 808 | 
            +
                        // points.push(new GLatLng(36.18191,-86.79714)); // (786 of 1207.0) 2005-04-30T14:39:54Z 9290 02:34:50 17.8498849142244  Gooby 1.1.0 
         | 
| 809 | 
            +
                        // points.push(new GLatLng(36.18169,-86.79699)); // (787 of 1207.0) 2005-04-30T14:40:04Z 9300 02:35:00 17.8672343786845  Gooby 1.1.0 
         | 
| 810 | 
            +
                        points.push(new GLatLng(36.18135,-86.79678)); // (788 of 1207.0) 2005-04-30T14:40:19Z 9315 02:35:15 17.893482300257  Gooby 1.1.0 
         | 
| 811 | 
            +
                        // points.push(new GLatLng(36.18107,-86.79658)); // (789 of 1207.0) 2005-04-30T14:40:31Z 9327 02:35:27 17.9158123723313  Gooby 1.1.0 
         | 
| 812 | 
            +
                        // points.push(new GLatLng(36.18075,-86.79635)); // (790 of 1207.0) 2005-04-30T14:40:45Z 9341 02:35:41 17.9413723595689  Gooby 1.1.0 
         | 
| 813 | 
            +
                        // points.push(new GLatLng(36.1804,-86.79615)); // (791 of 1207.0) 2005-04-30T14:40:59Z 9355 02:35:55 17.9680020685611  Gooby 1.1.0 
         | 
| 814 | 
            +
                        // points.push(new GLatLng(36.18015,-86.79594)); // (792 of 1207.0) 2005-04-30T14:41:10Z 9366 02:36:06 17.9888704602738  Gooby 1.1.0 
         | 
| 815 | 
            +
                        points.push(new GLatLng(36.17987,-86.79575)); // (793 of 1207.0) 2005-04-30T14:41:21Z 9377 02:36:17 18.0109273432878 18.0 00:09:26 Gooby 1.1.0 
         | 
| 816 | 
            +
                        // points.push(new GLatLng(36.17954,-86.79555)); // (794 of 1207.0) 2005-04-30T14:41:35Z 9391 02:36:31 18.0363089215244  Gooby 1.1.0 
         | 
| 817 | 
            +
                        // points.push(new GLatLng(36.17933,-86.79538)); // (795 of 1207.0) 2005-04-30T14:41:44Z 9400 02:36:40 18.05364052755  Gooby 1.1.0 
         | 
| 818 | 
            +
                        // points.push(new GLatLng(36.17909,-86.79521)); // (796 of 1207.0) 2005-04-30T14:41:54Z 9410 02:36:50 18.0727410962118  Gooby 1.1.0 
         | 
| 819 | 
            +
                        // points.push(new GLatLng(36.17879,-86.79497)); // (797 of 1207.0) 2005-04-30T14:42:07Z 9423 02:37:03 18.0974139073736  Gooby 1.1.0 
         | 
| 820 | 
            +
                        // points.push(new GLatLng(36.17821,-86.79459)); // (798 of 1207.0) 2005-04-30T14:42:33Z 9449 02:37:29 18.1427446562012  Gooby 1.1.0 
         | 
| 821 | 
            +
                        points.push(new GLatLng(36.17819,-86.79457)); // (799 of 1207.0) 2005-04-30T14:42:34Z 9450 02:37:30 18.1445201617614  Gooby 1.1.0 
         | 
| 822 | 
            +
                        // points.push(new GLatLng(36.17783,-86.79435)); // (800 of 1207.0) 2005-04-30T14:42:48Z 9464 02:37:44 18.1722539433755  Gooby 1.1.0 
         | 
| 823 | 
            +
                        // points.push(new GLatLng(36.17733,-86.79403)); // (801 of 1207.0) 2005-04-30T14:43:09Z 9485 02:38:05 18.211136277547  Gooby 1.1.0 
         | 
| 824 | 
            +
                        // points.push(new GLatLng(36.17688,-86.79377)); // (802 of 1207.0) 2005-04-30T14:43:27Z 9503 02:38:23 18.245441797067  Gooby 1.1.0 
         | 
| 825 | 
            +
                        // points.push(new GLatLng(36.17658,-86.79356)); // (803 of 1207.0) 2005-04-30T14:43:41Z 9517 02:38:37 18.2692486770899  Gooby 1.1.0 
         | 
| 826 | 
            +
                        // points.push(new GLatLng(36.17613,-86.79324)); // (804 of 1207.0) 2005-04-30T14:44:00Z 9536 02:38:56 18.3050970900951  Gooby 1.1.0 
         | 
| 827 | 
            +
                        points.push(new GLatLng(36.17575,-86.79296)); // (805 of 1207.0) 2005-04-30T14:44:17Z 9553 02:39:13 18.3356442136377  Gooby 1.1.0 
         | 
| 828 | 
            +
                        // points.push(new GLatLng(36.17536,-86.79266)); // (806 of 1207.0) 2005-04-30T14:44:34Z 9570 02:39:30 18.3673611329138  Gooby 1.1.0 
         | 
| 829 | 
            +
                        // points.push(new GLatLng(36.17502,-86.79242)); // (807 of 1207.0) 2005-04-30T14:44:49Z 9585 02:39:45 18.3943974288327  Gooby 1.1.0 
         | 
| 830 | 
            +
                        // points.push(new GLatLng(36.17472,-86.79225)); // (808 of 1207.0) 2005-04-30T14:45:02Z 9598 02:39:58 18.4171898651764  Gooby 1.1.0 
         | 
| 831 | 
            +
                        // points.push(new GLatLng(36.17444,-86.79206)); // (809 of 1207.0) 2005-04-30T14:45:14Z 9610 02:40:10 18.439247142564  Gooby 1.1.0 
         | 
| 832 | 
            +
                        // points.push(new GLatLng(36.17412,-86.79186)); // (810 of 1207.0) 2005-04-30T14:45:27Z 9623 02:40:23 18.4640103967563  Gooby 1.1.0 
         | 
| 833 | 
            +
                        points.push(new GLatLng(36.17382,-86.79165)); // (811 of 1207.0) 2005-04-30T14:45:40Z 9636 02:40:36 18.4878175690871  Gooby 1.1.0 
         | 
| 834 | 
            +
                        // points.push(new GLatLng(36.17354,-86.79148)); // (812 of 1207.0) 2005-04-30T14:45:51Z 9647 02:40:47 18.5093612334347  Gooby 1.1.0 
         | 
| 835 | 
            +
                        // points.push(new GLatLng(36.17332,-86.79131)); // (813 of 1207.0) 2005-04-30T14:46:00Z 9656 02:40:56 18.5272756826245  Gooby 1.1.0 
         | 
| 836 | 
            +
                        // points.push(new GLatLng(36.17334,-86.79113)); // (814 of 1207.0) 2005-04-30T14:46:05Z 9661 02:41:01 18.5374093026727  Gooby 1.1.0 
         | 
| 837 | 
            +
                        // points.push(new GLatLng(36.17341,-86.79088)); // (815 of 1207.0) 2005-04-30T14:46:13Z 9669 02:41:09 18.5521671934087  Gooby 1.1.0 
         | 
| 838 | 
            +
                        // points.push(new GLatLng(36.17349,-86.79064)); // (816 of 1207.0) 2005-04-30T14:46:20Z 9676 02:41:16 18.5666487664561  Gooby 1.1.0 
         | 
| 839 | 
            +
                        points.push(new GLatLng(36.17358,-86.79025)); // (817 of 1207.0) 2005-04-30T14:46:32Z 9688 02:41:28 18.5892709618107  Gooby 1.1.0 
         | 
| 840 | 
            +
                        // points.push(new GLatLng(36.17367,-86.78982)); // (818 of 1207.0) 2005-04-30T14:46:45Z 9701 02:41:41 18.6140458053907  Gooby 1.1.0 
         | 
| 841 | 
            +
                        // points.push(new GLatLng(36.17382,-86.78931)); // (819 of 1207.0) 2005-04-30T14:47:01Z 9717 02:41:57 18.6443184932847  Gooby 1.1.0 
         | 
| 842 | 
            +
                        // points.push(new GLatLng(36.17388,-86.78914)); // (820 of 1207.0) 2005-04-30T14:47:07Z 9723 02:42:03 18.6546663382309  Gooby 1.1.0 
         | 
| 843 | 
            +
                        // points.push(new GLatLng(36.17394,-86.78903)); // (821 of 1207.0) 2005-04-30T14:47:11Z 9727 02:42:07 18.6620705856715  Gooby 1.1.0 
         | 
| 844 | 
            +
                        // points.push(new GLatLng(36.17394,-86.78888)); // (822 of 1207.0) 2005-04-30T14:47:15Z 9731 02:42:11 18.6704363795646  Gooby 1.1.0 
         | 
| 845 | 
            +
                        points.push(new GLatLng(36.17377,-86.78854)); // (823 of 1207.0) 2005-04-30T14:47:27Z 9743 02:42:23 18.6927416623538  Gooby 1.1.0 
         | 
| 846 | 
            +
                        // points.push(new GLatLng(36.17341,-86.78832)); // (824 of 1207.0) 2005-04-30T14:47:40Z 9756 02:42:36 18.7204758203467  Gooby 1.1.0 
         | 
| 847 | 
            +
                        // points.push(new GLatLng(36.17306,-86.78819)); // (825 of 1207.0) 2005-04-30T14:47:53Z 9769 02:42:49 18.7457208349565  Gooby 1.1.0 
         | 
| 848 | 
            +
                        // points.push(new GLatLng(36.17279,-86.78798)); // (826 of 1207.0) 2005-04-30T14:48:05Z 9781 02:43:01 18.7677471720279  Gooby 1.1.0 
         | 
| 849 | 
            +
                        // points.push(new GLatLng(36.17261,-86.78785)); // (827 of 1207.0) 2005-04-30T14:48:13Z 9789 02:43:09 18.7821425921662  Gooby 1.1.0 
         | 
| 850 | 
            +
                        // points.push(new GLatLng(36.17253,-86.78777)); // (828 of 1207.0) 2005-04-30T14:48:22Z 9798 02:43:18 18.7892455941988  Gooby 1.1.0 
         | 
| 851 | 
            +
                        points.push(new GLatLng(36.1724,-86.7877)); // (829 of 1207.0) 2005-04-30T14:48:34Z 9810 02:43:30 18.7990388941969  Gooby 1.1.0 
         | 
| 852 | 
            +
                        // points.push(new GLatLng(36.17225,-86.78757)); // (830 of 1207.0) 2005-04-30T14:48:45Z 9821 02:43:41 18.811686942919  Gooby 1.1.0 
         | 
| 853 | 
            +
                        // points.push(new GLatLng(36.17212,-86.78749)); // (831 of 1207.0) 2005-04-30T14:48:55Z 9831 02:43:51 18.8217158114233  Gooby 1.1.0 
         | 
| 854 | 
            +
                        // points.push(new GLatLng(36.17199,-86.78742)); // (832 of 1207.0) 2005-04-30T14:49:06Z 9842 02:44:02 18.8315092890663  Gooby 1.1.0 
         | 
| 855 | 
            +
                        // points.push(new GLatLng(36.17182,-86.78727)); // (833 of 1207.0) 2005-04-30T14:49:17Z 9853 02:44:13 18.8459294630206  Gooby 1.1.0 
         | 
| 856 | 
            +
                        // points.push(new GLatLng(36.17152,-86.78712)); // (834 of 1207.0) 2005-04-30T14:49:30Z 9866 02:44:26 18.8682811837082  Gooby 1.1.0 
         | 
| 857 | 
            +
                        points.push(new GLatLng(36.17118,-86.78693)); // (835 of 1207.0) 2005-04-30T14:49:43Z 9879 02:44:39 18.8940513768217  Gooby 1.1.0 
         | 
| 858 | 
            +
                        // points.push(new GLatLng(36.17081,-86.78671)); // (836 of 1207.0) 2005-04-30T14:49:58Z 9894 02:44:54 18.9224069948384  Gooby 1.1.0 
         | 
| 859 | 
            +
                        // points.push(new GLatLng(36.17049,-86.78648)); // (837 of 1207.0) 2005-04-30T14:50:12Z 9908 02:45:08 18.9479678669085  Gooby 1.1.0 
         | 
| 860 | 
            +
                        points.push(new GLatLng(36.1698,-86.78603)); // (838 of 1207.0) 2005-04-30T14:50:40Z 9936 02:45:36 19.0018432569713 19.0 00:09:19 Gooby 1.1.0 
         | 
| 861 | 
            +
                        // points.push(new GLatLng(36.16965,-86.78581)); // (839 of 1207.0) 2005-04-30T14:50:50Z 9946 02:45:46 19.0179044710507  Gooby 1.1.0 
         | 
| 862 | 
            +
                        // points.push(new GLatLng(36.1697,-86.78568)); // (840 of 1207.0) 2005-04-30T14:50:54Z 9950 02:45:50 19.0259360529087  Gooby 1.1.0 
         | 
| 863 | 
            +
                        // points.push(new GLatLng(36.16985,-86.78536)); // (841 of 1207.0) 2005-04-30T14:51:04Z 9960 02:46:00 19.0465745006552  Gooby 1.1.0 
         | 
| 864 | 
            +
                        // points.push(new GLatLng(36.16995,-86.78508)); // (842 of 1207.0) 2005-04-30T14:51:13Z 9969 02:46:09 19.0636512757288  Gooby 1.1.0 
         | 
| 865 | 
            +
                        // points.push(new GLatLng(36.17004,-86.78476)); // (843 of 1207.0) 2005-04-30T14:51:23Z 9979 02:46:19 19.0825513189863  Gooby 1.1.0 
         | 
| 866 | 
            +
                        points.push(new GLatLng(36.16982,-86.78446)); // (844 of 1207.0) 2005-04-30T14:51:35Z 9991 02:46:31 19.105156742967  Gooby 1.1.0 
         | 
| 867 | 
            +
                        // points.push(new GLatLng(36.16942,-86.78405)); // (845 of 1207.0) 2005-04-30T14:51:55Z 10011 02:46:51 19.1410270366096  Gooby 1.1.0 
         | 
| 868 | 
            +
                        // points.push(new GLatLng(36.1694,-86.78403)); // (846 of 1207.0) 2005-04-30T14:51:56Z 10012 02:46:52 19.1428045008085  Gooby 1.1.0 
         | 
| 869 | 
            +
                        // points.push(new GLatLng(36.1689,-86.78375)); // (847 of 1207.0) 2005-04-30T14:52:17Z 10033 02:47:13 19.1807155286881  Gooby 1.1.0 
         | 
| 870 | 
            +
                        // points.push(new GLatLng(36.16875,-86.78367)); // (848 of 1207.0) 2005-04-30T14:52:24Z 10040 02:47:20 19.1919987526319  Gooby 1.1.0 
         | 
| 871 | 
            +
                        // points.push(new GLatLng(36.16879,-86.78356)); // (849 of 1207.0) 2005-04-30T14:52:29Z 10045 02:47:25 19.1987276925835  Gooby 1.1.0 
         | 
| 872 | 
            +
                        points.push(new GLatLng(36.16882,-86.78349)); // (850 of 1207.0) 2005-04-30T14:52:31Z 10047 02:47:27 19.2031481935249  Gooby 1.1.0 
         | 
| 873 | 
            +
                        // points.push(new GLatLng(36.16877,-86.78337)); // (851 of 1207.0) 2005-04-30T14:52:35Z 10051 02:47:31 19.2106801017774  Gooby 1.1.0 
         | 
| 874 | 
            +
                        // points.push(new GLatLng(36.16871,-86.78326)); // (852 of 1207.0) 2005-04-30T14:52:39Z 10055 02:47:35 19.218084819135  Gooby 1.1.0 
         | 
| 875 | 
            +
                        // points.push(new GLatLng(36.16854,-86.78268)); // (853 of 1207.0) 2005-04-30T14:53:00Z 10076 02:47:56 19.2525006655316  Gooby 1.1.0 
         | 
| 876 | 
            +
                        // points.push(new GLatLng(36.16839,-86.78236)); // (854 of 1207.0) 2005-04-30T14:53:12Z 10088 02:48:08 19.2731393661656  Gooby 1.1.0 
         | 
| 877 | 
            +
                        // points.push(new GLatLng(36.16819,-86.78201)); // (855 of 1207.0) 2005-04-30T14:53:24Z 10100 02:48:20 19.2970564840674  Gooby 1.1.0 
         | 
| 878 | 
            +
                        points.push(new GLatLng(36.16789,-86.78165)); // (856 of 1207.0) 2005-04-30T14:53:40Z 10116 02:48:36 19.3259144410158  Gooby 1.1.0 
         | 
| 879 | 
            +
                        // points.push(new GLatLng(36.16766,-86.78137)); // (857 of 1207.0) 2005-04-30T14:53:52Z 10128 02:48:48 19.3481947507708  Gooby 1.1.0 
         | 
| 880 | 
            +
                        // points.push(new GLatLng(36.16731,-86.78109)); // (858 of 1207.0) 2005-04-30T14:54:07Z 10143 02:49:03 19.3769808773501  Gooby 1.1.0 
         | 
| 881 | 
            +
                        // points.push(new GLatLng(36.16704,-86.78083)); // (859 of 1207.0) 2005-04-30T14:54:21Z 10157 02:49:17 19.4006089228527  Gooby 1.1.0 
         | 
| 882 | 
            +
                        // points.push(new GLatLng(36.16712,-86.78053)); // (860 of 1207.0) 2005-04-30T14:54:29Z 10165 02:49:25 19.4182310034865  Gooby 1.1.0 
         | 
| 883 | 
            +
                        // points.push(new GLatLng(36.16699,-86.78019)); // (861 of 1207.0) 2005-04-30T14:54:40Z 10176 02:49:36 19.4392143757245  Gooby 1.1.0 
         | 
| 884 | 
            +
                        points.push(new GLatLng(36.16701,-86.77987)); // (862 of 1207.0) 2005-04-30T14:54:50Z 10186 02:49:46 19.4571162928081  Gooby 1.1.0 
         | 
| 885 | 
            +
                        // points.push(new GLatLng(36.16697,-86.77959)); // (863 of 1207.0) 2005-04-30T14:54:59Z 10195 02:49:55 19.4729762882363  Gooby 1.1.0 
         | 
| 886 | 
            +
                        // points.push(new GLatLng(36.16682,-86.77938)); // (864 of 1207.0) 2005-04-30T14:55:08Z 10204 02:50:04 19.4886158019249  Gooby 1.1.0 
         | 
| 887 | 
            +
                        // points.push(new GLatLng(36.16654,-86.77914)); // (865 of 1207.0) 2005-04-30T14:55:23Z 10219 02:50:19 19.512140834615  Gooby 1.1.0 
         | 
| 888 | 
            +
                        // points.push(new GLatLng(36.16616,-86.77886)); // (866 of 1207.0) 2005-04-30T14:55:41Z 10237 02:50:37 19.5426889263409  Gooby 1.1.0 
         | 
| 889 | 
            +
                        // points.push(new GLatLng(36.16575,-86.7786)); // (867 of 1207.0) 2005-04-30T14:56:00Z 10256 02:50:56 19.5745121905095  Gooby 1.1.0 
         | 
| 890 | 
            +
                        points.push(new GLatLng(36.16575,-86.77858)); // (868 of 1207.0) 2005-04-30T14:56:01Z 10257 02:50:57 19.5756282811114  Gooby 1.1.0 
         | 
| 891 | 
            +
                        // points.push(new GLatLng(36.16577,-86.77847)); // (869 of 1207.0) 2005-04-30T14:56:05Z 10261 02:51:01 19.5819175472128  Gooby 1.1.0 
         | 
| 892 | 
            +
                        // points.push(new GLatLng(36.16594,-86.77817)); // (870 of 1207.0) 2005-04-30T14:56:14Z 10270 02:51:10 19.6023614492778  Gooby 1.1.0 
         | 
| 893 | 
            +
                        // points.push(new GLatLng(36.16616,-86.77768)); // (871 of 1207.0) 2005-04-30T14:56:30Z 10286 02:51:26 19.6336345803568  Gooby 1.1.0 
         | 
| 894 | 
            +
                        // points.push(new GLatLng(36.16635,-86.77734)); // (872 of 1207.0) 2005-04-30T14:56:43Z 10299 02:51:39 19.6566988855766  Gooby 1.1.0 
         | 
| 895 | 
            +
                        // points.push(new GLatLng(36.16658,-86.77723)); // (873 of 1207.0) 2005-04-30T14:56:53Z 10309 02:51:49 19.6737328181866  Gooby 1.1.0 
         | 
| 896 | 
            +
                        points.push(new GLatLng(36.16701,-86.77719)); // (874 of 1207.0) 2005-04-30T14:57:08Z 10324 02:52:04 19.703525160868  Gooby 1.1.0 
         | 
| 897 | 
            +
                        // points.push(new GLatLng(36.16714,-86.77697)); // (875 of 1207.0) 2005-04-30T14:57:16Z 10332 02:52:12 19.7187319703979  Gooby 1.1.0 
         | 
| 898 | 
            +
                        // points.push(new GLatLng(36.16725,-86.77678)); // (876 of 1207.0) 2005-04-30T14:57:23Z 10339 02:52:19 19.7317729497915  Gooby 1.1.0 
         | 
| 899 | 
            +
                        // points.push(new GLatLng(36.16736,-86.77652)); // (877 of 1207.0) 2005-04-30T14:57:32Z 10348 02:52:28 19.7481454903477  Gooby 1.1.0 
         | 
| 900 | 
            +
                        // points.push(new GLatLng(36.16746,-86.77631)); // (878 of 1207.0) 2005-04-30T14:57:39Z 10355 02:52:35 19.7617443158491  Gooby 1.1.0 
         | 
| 901 | 
            +
                        // points.push(new GLatLng(36.16755,-86.77607)); // (879 of 1207.0) 2005-04-30T14:57:47Z 10363 02:52:43 19.776504210508  Gooby 1.1.0 
         | 
| 902 | 
            +
                        points.push(new GLatLng(36.16764,-86.77586)); // (880 of 1207.0) 2005-04-30T14:57:55Z 10371 02:52:51 19.7897651885709  Gooby 1.1.0 
         | 
| 903 | 
            +
                        // points.push(new GLatLng(36.16774,-86.7756)); // (881 of 1207.0) 2005-04-30T14:58:04Z 10380 02:53:00 19.8058286772033  Gooby 1.1.0 
         | 
| 904 | 
            +
                        // points.push(new GLatLng(36.16785,-86.77534)); // (882 of 1207.0) 2005-04-30T14:58:13Z 10389 02:53:09 19.8222012177596  Gooby 1.1.0 
         | 
| 905 | 
            +
                        // points.push(new GLatLng(36.16796,-86.7751)); // (883 of 1207.0) 2005-04-30T14:58:21Z 10397 02:53:17 19.8375943962457  Gooby 1.1.0 
         | 
| 906 | 
            +
                        // points.push(new GLatLng(36.16807,-86.77487)); // (884 of 1207.0) 2005-04-30T14:58:29Z 10405 02:53:25 19.8525049843597  Gooby 1.1.0 
         | 
| 907 | 
            +
                        // points.push(new GLatLng(36.16824,-86.77446)); // (885 of 1207.0) 2005-04-30T14:58:43Z 10419 02:53:39 19.8782128578858  Gooby 1.1.0 
         | 
| 908 | 
            +
                        points.push(new GLatLng(36.16839,-86.77414)); // (886 of 1207.0) 2005-04-30T14:58:54Z 10430 02:53:50 19.8988516428149  Gooby 1.1.0 
         | 
| 909 | 
            +
                        // points.push(new GLatLng(36.16854,-86.77373)); // (887 of 1207.0) 2005-04-30T14:59:08Z 10444 02:54:04 19.9239582423385  Gooby 1.1.0 
         | 
| 910 | 
            +
                        // points.push(new GLatLng(36.16869,-86.77335)); // (888 of 1207.0) 2005-04-30T14:59:21Z 10457 02:54:17 19.9475508449608  Gooby 1.1.0 
         | 
| 911 | 
            +
                        // points.push(new GLatLng(36.16877,-86.77309)); // (889 of 1207.0) 2005-04-30T14:59:29Z 10465 02:54:25 19.963069978176  Gooby 1.1.0 
         | 
| 912 | 
            +
                        // points.push(new GLatLng(36.1689,-86.77279)); // (890 of 1207.0) 2005-04-30T14:59:39Z 10475 02:54:35 19.9820607489212  Gooby 1.1.0 
         | 
| 913 | 
            +
                        points.push(new GLatLng(36.16903,-86.77244)); // (891 of 1207.0) 2005-04-30T14:59:51Z 10487 02:54:47 20.0035491062528 20.0 00:09:11 Gooby 1.1.0 
         | 
| 914 | 
            +
                        // points.push(new GLatLng(36.16914,-86.77217)); // (892 of 1207.0) 2005-04-30T15:00:00Z 10496 02:54:56 20.0204173889053  Gooby 1.1.0 
         | 
| 915 | 
            +
                        // points.push(new GLatLng(36.16929,-86.77178)); // (893 of 1207.0) 2005-04-30T15:00:13Z 10509 02:55:09 20.0445120622748  Gooby 1.1.0 
         | 
| 916 | 
            +
                        // points.push(new GLatLng(36.16942,-86.77146)); // (894 of 1207.0) 2005-04-30T15:00:24Z 10520 02:55:20 20.0644924543076  Gooby 1.1.0 
         | 
| 917 | 
            +
                        // points.push(new GLatLng(36.16952,-86.77111)); // (895 of 1207.0) 2005-04-30T15:00:36Z 10532 02:55:32 20.08520016175  Gooby 1.1.0 
         | 
| 918 | 
            +
                        // points.push(new GLatLng(36.16965,-86.77079)); // (896 of 1207.0) 2005-04-30T15:00:47Z 10543 02:55:43 20.1051806408553  Gooby 1.1.0 
         | 
| 919 | 
            +
                        points.push(new GLatLng(36.1698,-86.77045)); // (897 of 1207.0) 2005-04-30T15:00:59Z 10555 02:55:55 20.1267910664208  Gooby 1.1.0 
         | 
| 920 | 
            +
                        // points.push(new GLatLng(36.16987,-86.77019)); // (898 of 1207.0) 2005-04-30T15:01:08Z 10564 02:56:04 20.1420775225726  Gooby 1.1.0 
         | 
| 921 | 
            +
                        // points.push(new GLatLng(36.16989,-86.77015)); // (899 of 1207.0) 2005-04-30T15:01:10Z 10566 02:56:06 20.1447016253138  Gooby 1.1.0 
         | 
| 922 | 
            +
                        // points.push(new GLatLng(36.16997,-86.76989)); // (900 of 1207.0) 2005-04-30T15:01:19Z 10575 02:56:15 20.1602206464253  Gooby 1.1.0 
         | 
| 923 | 
            +
                        // points.push(new GLatLng(36.17008,-86.76963)); // (901 of 1207.0) 2005-04-30T15:01:28Z 10584 02:56:24 20.1765925494092  Gooby 1.1.0 
         | 
| 924 | 
            +
                        // points.push(new GLatLng(36.17015,-86.76942)); // (902 of 1207.0) 2005-04-30T15:01:35Z 10591 02:56:31 20.1892645093259  Gooby 1.1.0 
         | 
| 925 | 
            +
                        points.push(new GLatLng(36.17021,-86.76918)); // (903 of 1207.0) 2005-04-30T15:01:43Z 10599 02:56:39 20.2032775441899  Gooby 1.1.0 
         | 
| 926 | 
            +
                        // points.push(new GLatLng(36.1703,-86.76897)); // (904 of 1207.0) 2005-04-30T15:01:51Z 10607 02:56:47 20.2165383910593  Gooby 1.1.0 
         | 
| 927 | 
            +
                        // points.push(new GLatLng(36.17038,-86.76869)); // (905 of 1207.0) 2005-04-30T15:02:00Z 10616 02:56:56 20.2331043511765  Gooby 1.1.0 
         | 
| 928 | 
            +
                        // points.push(new GLatLng(36.17051,-86.76832)); // (906 of 1207.0) 2005-04-30T15:02:12Z 10628 02:57:08 20.2556105851194  Gooby 1.1.0 
         | 
| 929 | 
            +
                        // points.push(new GLatLng(36.17066,-86.76802)); // (907 of 1207.0) 2005-04-30T15:02:22Z 10638 02:57:18 20.2752921733461  Gooby 1.1.0 
         | 
| 930 | 
            +
                        // points.push(new GLatLng(36.17096,-86.76734)); // (908 of 1207.0) 2005-04-30T15:02:47Z 10663 02:57:43 20.3185124609388  Gooby 1.1.0 
         | 
| 931 | 
            +
                        points.push(new GLatLng(36.17109,-86.76695)); // (909 of 1207.0) 2005-04-30T15:03:01Z 10677 02:57:57 20.3420455531225  Gooby 1.1.0 
         | 
| 932 | 
            +
                        // points.push(new GLatLng(36.17113,-86.76672)); // (910 of 1207.0) 2005-04-30T15:03:09Z 10685 02:58:05 20.3551677904821  Gooby 1.1.0 
         | 
| 933 | 
            +
                        // points.push(new GLatLng(36.1712,-86.76648)); // (911 of 1207.0) 2005-04-30T15:03:17Z 10693 02:58:13 20.3694003447616  Gooby 1.1.0 
         | 
| 934 | 
            +
                        // points.push(new GLatLng(36.17128,-86.7662)); // (912 of 1207.0) 2005-04-30T15:03:27Z 10703 02:58:23 20.3859661998592  Gooby 1.1.0 
         | 
| 935 | 
            +
                        // points.push(new GLatLng(36.17139,-86.7659)); // (913 of 1207.0) 2005-04-30T15:03:38Z 10714 02:58:34 20.4043434411904  Gooby 1.1.0 
         | 
| 936 | 
            +
                        // points.push(new GLatLng(36.17148,-86.76566)); // (914 of 1207.0) 2005-04-30T15:03:46Z 10722 02:58:42 20.4191027464885  Gooby 1.1.0 
         | 
| 937 | 
            +
                        points.push(new GLatLng(36.17154,-86.76545)); // (915 of 1207.0) 2005-04-30T15:03:54Z 10730 02:58:50 20.4315269452735  Gooby 1.1.0 
         | 
| 938 | 
            +
                        // points.push(new GLatLng(36.17163,-86.76526)); // (916 of 1207.0) 2005-04-30T15:04:01Z 10737 02:58:57 20.4438132910492  Gooby 1.1.0 
         | 
| 939 | 
            +
                        // points.push(new GLatLng(36.17173,-86.76498)); // (917 of 1207.0) 2005-04-30T15:04:11Z 10747 02:59:07 20.4608897604864  Gooby 1.1.0 
         | 
| 940 | 
            +
                        // points.push(new GLatLng(36.17176,-86.76489)); // (918 of 1207.0) 2005-04-30T15:04:14Z 10750 02:59:10 20.4663204304687  Gooby 1.1.0 
         | 
| 941 | 
            +
                        // points.push(new GLatLng(36.17163,-86.76463)); // (919 of 1207.0) 2005-04-30T15:04:24Z 10760 02:59:20 20.4833776337681  Gooby 1.1.0 
         | 
| 942 | 
            +
                        // points.push(new GLatLng(36.17124,-86.76442)); // (920 of 1207.0) 2005-04-30T15:04:40Z 10776 02:59:36 20.5127581259118  Gooby 1.1.0 
         | 
| 943 | 
            +
                        points.push(new GLatLng(36.17094,-86.76423)); // (921 of 1207.0) 2005-04-30T15:04:53Z 10789 02:59:49 20.5360369378377  Gooby 1.1.0 
         | 
| 944 | 
            +
                        // points.push(new GLatLng(36.17066,-86.7641)); // (922 of 1207.0) 2005-04-30T15:05:04Z 10800 03:00:00 20.5566961962942  Gooby 1.1.0 
         | 
| 945 | 
            +
                        // points.push(new GLatLng(36.17055,-86.76401)); // (923 of 1207.0) 2005-04-30T15:05:11Z 10807 03:00:07 20.5658037544828  Gooby 1.1.0 
         | 
| 946 | 
            +
                        // points.push(new GLatLng(36.17047,-86.76397)); // (924 of 1207.0) 2005-04-30T15:05:14Z 10810 03:00:10 20.57176409139  Gooby 1.1.0 
         | 
| 947 | 
            +
                        // points.push(new GLatLng(36.17028,-86.76388)); // (925 of 1207.0) 2005-04-30T15:05:22Z 10818 03:00:18 20.5858181604819  Gooby 1.1.0 
         | 
| 948 | 
            +
                        // points.push(new GLatLng(36.17019,-86.76384)); // (926 of 1207.0) 2005-04-30T15:05:29Z 10825 03:00:25 20.5924242025659  Gooby 1.1.0 
         | 
| 949 | 
            +
                        points.push(new GLatLng(36.16995,-86.76367)); // (927 of 1207.0) 2005-04-30T15:05:43Z 10839 03:00:39 20.6115253177207  Gooby 1.1.0 
         | 
| 950 | 
            +
                        // points.push(new GLatLng(36.16961,-86.76345)); // (928 of 1207.0) 2005-04-30T15:05:58Z 10854 03:00:54 20.6380275876057  Gooby 1.1.0 
         | 
| 951 | 
            +
                        // points.push(new GLatLng(36.1692,-86.7632)); // (929 of 1207.0) 2005-04-30T15:06:14Z 10870 03:01:10 20.6696003014603  Gooby 1.1.0 
         | 
| 952 | 
            +
                        // points.push(new GLatLng(36.16873,-86.7629)); // (930 of 1207.0) 2005-04-30T15:06:33Z 10889 03:01:29 20.7061301117306  Gooby 1.1.0 
         | 
| 953 | 
            +
                        // points.push(new GLatLng(36.16826,-86.7626)); // (931 of 1207.0) 2005-04-30T15:06:52Z 10908 03:01:48 20.742659922001  Gooby 1.1.0 
         | 
| 954 | 
            +
                        // points.push(new GLatLng(36.16783,-86.76234)); // (932 of 1207.0) 2005-04-30T15:07:10Z 10926 03:02:06 20.7757190889768  Gooby 1.1.0 
         | 
| 955 | 
            +
                        points.push(new GLatLng(36.16751,-86.76217)); // (933 of 1207.0) 2005-04-30T15:07:24Z 10940 03:02:20 20.7997754634726  Gooby 1.1.0 
         | 
| 956 | 
            +
                        // points.push(new GLatLng(36.16708,-86.76195)); // (934 of 1207.0) 2005-04-30T15:07:41Z 10957 03:02:37 20.8319185740389  Gooby 1.1.0 
         | 
| 957 | 
            +
                        // points.push(new GLatLng(36.16665,-86.76174)); // (935 of 1207.0) 2005-04-30T15:07:59Z 10975 03:02:55 20.8638528413643  Gooby 1.1.0 
         | 
| 958 | 
            +
                        // points.push(new GLatLng(36.16626,-86.76152)); // (936 of 1207.0) 2005-04-30T15:08:15Z 10991 03:03:11 20.8934604897567  Gooby 1.1.0 
         | 
| 959 | 
            +
                        // points.push(new GLatLng(36.16579,-86.76122)); // (937 of 1207.0) 2005-04-30T15:08:36Z 11012 03:03:32 20.9299905857782  Gooby 1.1.0 
         | 
| 960 | 
            +
                        // points.push(new GLatLng(36.16545,-86.76103)); // (938 of 1207.0) 2005-04-30T15:08:53Z 11029 03:03:49 20.9557610489303  Gooby 1.1.0 
         | 
| 961 | 
            +
                        points.push(new GLatLng(36.16513,-86.76084)); // (939 of 1207.0) 2005-04-30T15:09:07Z 11043 03:04:03 20.98027859622  Gooby 1.1.0 
         | 
| 962 | 
            +
                        // points.push(new GLatLng(36.16489,-86.76071)); // (940 of 1207.0) 2005-04-30T15:09:17Z 11053 03:04:13 20.9983762371467  Gooby 1.1.0 
         | 
| 963 | 
            +
                        points.push(new GLatLng(36.16463,-86.76058)); // (941 of 1207.0) 2005-04-30T15:09:28Z 11064 03:04:24 21.0177478597304 21.0 00:09:37 Gooby 1.1.0 
         | 
| 964 | 
            +
                        // points.push(new GLatLng(36.16433,-86.76041)); // (942 of 1207.0) 2005-04-30T15:09:41Z 11077 03:04:37 21.0405408303776  Gooby 1.1.0 
         | 
| 965 | 
            +
                        // points.push(new GLatLng(36.16414,-86.7603)); // (943 of 1207.0) 2005-04-30T15:09:49Z 11085 03:04:45 21.0550311706381  Gooby 1.1.0 
         | 
| 966 | 
            +
                        // points.push(new GLatLng(36.16397,-86.76021)); // (944 of 1207.0) 2005-04-30T15:09:56Z 11092 03:04:52 21.0678044580733  Gooby 1.1.0 
         | 
| 967 | 
            +
                        // points.push(new GLatLng(36.16362,-86.76)); // (945 of 1207.0) 2005-04-30T15:10:10Z 11106 03:05:06 21.0946736391464  Gooby 1.1.0 
         | 
| 968 | 
            +
                        // points.push(new GLatLng(36.16328,-86.75981)); // (946 of 1207.0) 2005-04-30T15:10:24Z 11120 03:05:20 21.1204442373167  Gooby 1.1.0 
         | 
| 969 | 
            +
                        points.push(new GLatLng(36.16298,-86.75963)); // (947 of 1207.0) 2005-04-30T15:10:37Z 11133 03:05:33 21.1434750271579  Gooby 1.1.0 
         | 
| 970 | 
            +
                        // points.push(new GLatLng(36.16279,-86.75953)); // (948 of 1207.0) 2005-04-30T15:10:45Z 11141 03:05:41 21.1577381079747  Gooby 1.1.0 
         | 
| 971 | 
            +
                        // points.push(new GLatLng(36.16251,-86.75931)); // (949 of 1207.0) 2005-04-30T15:10:58Z 11154 03:05:54 21.1806471833954  Gooby 1.1.0 
         | 
| 972 | 
            +
                        // points.push(new GLatLng(36.16216,-86.75914)); // (950 of 1207.0) 2005-04-30T15:11:12Z 11168 03:06:08 21.2066213943101  Gooby 1.1.0 
         | 
| 973 | 
            +
                        // points.push(new GLatLng(36.16184,-86.75893)); // (951 of 1207.0) 2005-04-30T15:11:27Z 11183 03:06:23 21.2316416431349  Gooby 1.1.0 
         | 
| 974 | 
            +
                        // points.push(new GLatLng(36.16154,-86.75873)); // (952 of 1207.0) 2005-04-30T15:11:41Z 11197 03:06:37 21.2551802053288  Gooby 1.1.0 
         | 
| 975 | 
            +
                        points.push(new GLatLng(36.16124,-86.75854)); // (953 of 1207.0) 2005-04-30T15:11:54Z 11210 03:06:50 21.2784596151284  Gooby 1.1.0 
         | 
| 976 | 
            +
                        // points.push(new GLatLng(36.16109,-86.75839)); // (954 of 1207.0) 2005-04-30T15:12:01Z 11217 03:06:57 21.2917791073195  Gooby 1.1.0 
         | 
| 977 | 
            +
                        // points.push(new GLatLng(36.16109,-86.75826)); // (955 of 1207.0) 2005-04-30T15:12:05Z 11221 03:07:01 21.299030458031  Gooby 1.1.0 
         | 
| 978 | 
            +
                        // points.push(new GLatLng(36.16109,-86.75802)); // (956 of 1207.0) 2005-04-30T15:12:12Z 11228 03:07:08 21.3124176985311  Gooby 1.1.0 
         | 
| 979 | 
            +
                        // points.push(new GLatLng(36.16113,-86.75772)); // (957 of 1207.0) 2005-04-30T15:12:22Z 11238 03:07:18 21.3293785505935  Gooby 1.1.0 
         | 
| 980 | 
            +
                        // points.push(new GLatLng(36.1612,-86.75736)); // (958 of 1207.0) 2005-04-30T15:12:34Z 11250 03:07:30 21.3500336822768  Gooby 1.1.0 
         | 
| 981 | 
            +
                        points.push(new GLatLng(36.16128,-86.75691)); // (959 of 1207.0) 2005-04-30T15:12:48Z 11264 03:07:44 21.3757362767146  Gooby 1.1.0 
         | 
| 982 | 
            +
                        // points.push(new GLatLng(36.16133,-86.7565)); // (960 of 1207.0) 2005-04-30T15:13:00Z 11276 03:07:56 21.3988655866287  Gooby 1.1.0 
         | 
| 983 | 
            +
                        // points.push(new GLatLng(36.16135,-86.75614)); // (961 of 1207.0) 2005-04-30T15:13:11Z 11287 03:08:07 21.4189939765194  Gooby 1.1.0 
         | 
| 984 | 
            +
                        // points.push(new GLatLng(36.16137,-86.75592)); // (962 of 1207.0) 2005-04-30T15:13:18Z 11294 03:08:14 21.4313433143993  Gooby 1.1.0 
         | 
| 985 | 
            +
                        // points.push(new GLatLng(36.16156,-86.75556)); // (963 of 1207.0) 2005-04-30T15:13:30Z 11306 03:08:26 21.4553342229455  Gooby 1.1.0 
         | 
| 986 | 
            +
                        // points.push(new GLatLng(36.16148,-86.75519)); // (964 of 1207.0) 2005-04-30T15:13:41Z 11317 03:08:37 21.4767001403485  Gooby 1.1.0 
         | 
| 987 | 
            +
                        points.push(new GLatLng(36.1615,-86.75491)); // (965 of 1207.0) 2005-04-30T15:13:50Z 11326 03:08:46 21.492379649449  Gooby 1.1.0 
         | 
| 988 | 
            +
                        // points.push(new GLatLng(36.16152,-86.75468)); // (966 of 1207.0) 2005-04-30T15:13:57Z 11333 03:08:53 21.5052831630779  Gooby 1.1.0 
         | 
| 989 | 
            +
                        // points.push(new GLatLng(36.16156,-86.75431)); // (967 of 1207.0) 2005-04-30T15:14:09Z 11345 03:09:05 21.5261060699207  Gooby 1.1.0 
         | 
| 990 | 
            +
                        // points.push(new GLatLng(36.16161,-86.75397)); // (968 of 1207.0) 2005-04-30T15:14:20Z 11356 03:09:16 21.5453834331513  Gooby 1.1.0 
         | 
| 991 | 
            +
                        // points.push(new GLatLng(36.16165,-86.75369)); // (969 of 1207.0) 2005-04-30T15:14:29Z 11365 03:09:25 21.5612444157946  Gooby 1.1.0 
         | 
| 992 | 
            +
                        // points.push(new GLatLng(36.16169,-86.75341)); // (970 of 1207.0) 2005-04-30T15:14:38Z 11374 03:09:34 21.5771055081246  Gooby 1.1.0 
         | 
| 993 | 
            +
                        points.push(new GLatLng(36.16174,-86.75315)); // (971 of 1207.0) 2005-04-30T15:14:46Z 11382 03:09:42 21.5920139958764  Gooby 1.1.0 
         | 
| 994 | 
            +
                        // points.push(new GLatLng(36.1618,-86.7529)); // (972 of 1207.0) 2005-04-30T15:14:55Z 11391 03:09:51 21.6065619715653  Gooby 1.1.0 
         | 
| 995 | 
            +
                        // points.push(new GLatLng(36.16184,-86.75264)); // (973 of 1207.0) 2005-04-30T15:15:03Z 11399 03:09:59 21.6213257554159  Gooby 1.1.0 
         | 
| 996 | 
            +
                        // points.push(new GLatLng(36.16191,-86.75234)); // (974 of 1207.0) 2005-04-30T15:15:13Z 11409 03:10:09 21.6387444730983  Gooby 1.1.0 
         | 
| 997 | 
            +
                        // points.push(new GLatLng(36.16199,-86.752)); // (975 of 1207.0) 2005-04-30T15:15:24Z 11420 03:10:20 21.6584985880562  Gooby 1.1.0 
         | 
| 998 | 
            +
                        // points.push(new GLatLng(36.16206,-86.75167)); // (976 of 1207.0) 2005-04-30T15:15:35Z 11431 03:10:31 21.6775305386923  Gooby 1.1.0 
         | 
| 999 | 
            +
                        points.push(new GLatLng(36.1621,-86.75133)); // (977 of 1207.0) 2005-04-30T15:15:47Z 11443 03:10:43 21.6966958490654  Gooby 1.1.0 
         | 
| 1000 | 
            +
                        // points.push(new GLatLng(36.16216,-86.75105)); // (978 of 1207.0) 2005-04-30T15:15:56Z 11452 03:10:52 21.7128549028031  Gooby 1.1.0 
         | 
| 1001 | 
            +
                        // points.push(new GLatLng(36.16223,-86.75081)); // (979 of 1207.0) 2005-04-30T15:16:04Z 11460 03:11:00 21.7270889238523  Gooby 1.1.0 
         | 
| 1002 | 
            +
                        // points.push(new GLatLng(36.16229,-86.75049)); // (980 of 1207.0) 2005-04-30T15:16:15Z 11471 03:11:11 21.7454135488345  Gooby 1.1.0 
         | 
| 1003 | 
            +
                        // points.push(new GLatLng(36.16238,-86.75017)); // (981 of 1207.0) 2005-04-30T15:16:26Z 11482 03:11:22 21.7643150648322  Gooby 1.1.0 
         | 
| 1004 | 
            +
                        // points.push(new GLatLng(36.16244,-86.74985)); // (982 of 1207.0) 2005-04-30T15:16:37Z 11493 03:11:33 21.7826394999328  Gooby 1.1.0 
         | 
| 1005 | 
            +
                        points.push(new GLatLng(36.16251,-86.74948)); // (983 of 1207.0) 2005-04-30T15:16:49Z 11505 03:11:45 21.8038370156458  Gooby 1.1.0 
         | 
| 1006 | 
            +
                        // points.push(new GLatLng(36.16257,-86.74912)); // (984 of 1207.0) 2005-04-30T15:17:02Z 11518 03:11:58 21.8243409941055  Gooby 1.1.0 
         | 
| 1007 | 
            +
                        // points.push(new GLatLng(36.16257,-86.7491)); // (985 of 1207.0) 2005-04-30T15:17:03Z 11519 03:11:59 21.8254570847074  Gooby 1.1.0 
         | 
| 1008 | 
            +
                        // points.push(new GLatLng(36.16259,-86.74901)); // (986 of 1207.0) 2005-04-30T15:17:09Z 11525 03:12:05 21.8306640227468  Gooby 1.1.0 
         | 
| 1009 | 
            +
                        // points.push(new GLatLng(36.16264,-86.74884)); // (987 of 1207.0) 2005-04-30T15:17:18Z 11534 03:12:14 21.8407561829539  Gooby 1.1.0 
         | 
| 1010 | 
            +
                        // points.push(new GLatLng(36.16264,-86.74867)); // (988 of 1207.0) 2005-04-30T15:17:24Z 11540 03:12:20 21.8502386425066  Gooby 1.1.0 
         | 
| 1011 | 
            +
                        points.push(new GLatLng(36.16268,-86.74841)); // (989 of 1207.0) 2005-04-30T15:17:33Z 11549 03:12:29 21.8650024263572  Gooby 1.1.0 
         | 
| 1012 | 
            +
                        // points.push(new GLatLng(36.16279,-86.74805)); // (990 of 1207.0) 2005-04-30T15:17:45Z 11561 03:12:41 21.8864731266601  Gooby 1.1.0 
         | 
| 1013 | 
            +
                        // points.push(new GLatLng(36.16285,-86.7477)); // (991 of 1207.0) 2005-04-30T15:17:56Z 11572 03:12:52 21.9064312156409  Gooby 1.1.0 
         | 
| 1014 | 
            +
                        // points.push(new GLatLng(36.16294,-86.74736)); // (992 of 1207.0) 2005-04-30T15:18:07Z 11583 03:13:03 21.9263894789609  Gooby 1.1.0 
         | 
| 1015 | 
            +
                        // points.push(new GLatLng(36.163,-86.7471)); // (993 of 1207.0) 2005-04-30T15:18:15Z 11591 03:13:11 21.9414729162808  Gooby 1.1.0 
         | 
| 1016 | 
            +
                        // points.push(new GLatLng(36.16304,-86.7468)); // (994 of 1207.0) 2005-04-30T15:18:25Z 11601 03:13:21 21.9584333580414  Gooby 1.1.0 
         | 
| 1017 | 
            +
                        points.push(new GLatLng(36.16313,-86.74652)); // (995 of 1207.0) 2005-04-30T15:18:34Z 11610 03:13:30 21.975243784686  Gooby 1.1.0 
         | 
| 1018 | 
            +
                        // points.push(new GLatLng(36.16319,-86.74612)); // (996 of 1207.0) 2005-04-30T15:18:47Z 11623 03:13:43 21.9979372350954  Gooby 1.1.0 
         | 
| 1019 | 
            +
                        points.push(new GLatLng(36.16326,-86.74571)); // (997 of 1207.0) 2005-04-30T15:19:00Z 11636 03:13:56 22.0213124798681 22.0 00:09:32 Gooby 1.1.0 
         | 
| 1020 | 
            +
                        // points.push(new GLatLng(36.16324,-86.74536)); // (998 of 1207.0) 2005-04-30T15:19:11Z 11647 03:14:07 22.0408840629727  Gooby 1.1.0 
         | 
| 1021 | 
            +
                        // points.push(new GLatLng(36.16319,-86.74519)); // (999 of 1207.0) 2005-04-30T15:19:17Z 11653 03:14:13 22.0509762231798  Gooby 1.1.0 
         | 
| 1022 | 
            +
                        // points.push(new GLatLng(36.16313,-86.74496)); // (1000 of 1207.0) 2005-04-30T15:19:25Z 11661 03:14:21 22.0644583845806  Gooby 1.1.0 
         | 
| 1023 | 
            +
                        // points.push(new GLatLng(36.16311,-86.74464)); // (1001 of 1207.0) 2005-04-30T15:19:36Z 11672 03:14:32 22.082361176282  Gooby 1.1.0 
         | 
| 1024 | 
            +
                        // points.push(new GLatLng(36.16319,-86.74429)); // (1002 of 1207.0) 2005-04-30T15:19:47Z 11683 03:14:43 22.1026512370525  Gooby 1.1.0 
         | 
| 1025 | 
            +
                        points.push(new GLatLng(36.16337,-86.74393)); // (1003 of 1207.0) 2005-04-30T15:20:01Z 11697 03:14:57 22.1262707398663  Gooby 1.1.0 
         | 
| 1026 | 
            +
                        // points.push(new GLatLng(36.16345,-86.74358)); // (1004 of 1207.0) 2005-04-30T15:20:12Z 11708 03:15:08 22.1465606291486  Gooby 1.1.0 
         | 
| 1027 | 
            +
                        // points.push(new GLatLng(36.16354,-86.7433)); // (1005 of 1207.0) 2005-04-30T15:20:22Z 11718 03:15:18 22.1633710557932  Gooby 1.1.0 
         | 
| 1028 | 
            +
                        // points.push(new GLatLng(36.1636,-86.74298)); // (1006 of 1207.0) 2005-04-30T15:20:32Z 11728 03:15:28 22.1816953010101  Gooby 1.1.0 
         | 
| 1029 | 
            +
                        // points.push(new GLatLng(36.16364,-86.74266)); // (1007 of 1207.0) 2005-04-30T15:20:43Z 11739 03:15:39 22.1997569531218  Gooby 1.1.0 
         | 
| 1030 | 
            +
                        // points.push(new GLatLng(36.16371,-86.74225)); // (1008 of 1207.0) 2005-04-30T15:20:56Z 11752 03:15:52 22.2231319746128  Gooby 1.1.0 
         | 
| 1031 | 
            +
                        points.push(new GLatLng(36.16371,-86.74206)); // (1009 of 1207.0) 2005-04-30T15:21:02Z 11758 03:15:58 22.2337301579419  Gooby 1.1.0 
         | 
| 1032 | 
            +
                        // points.push(new GLatLng(36.16377,-86.7418)); // (1010 of 1207.0) 2005-04-30T15:21:11Z 11767 03:16:07 22.2488134799199  Gooby 1.1.0 
         | 
| 1033 | 
            +
                        // points.push(new GLatLng(36.16382,-86.74152)); // (1011 of 1207.0) 2005-04-30T15:21:20Z 11776 03:16:16 22.2648089175629  Gooby 1.1.0 
         | 
| 1034 | 
            +
                        // points.push(new GLatLng(36.16388,-86.74131)); // (1012 of 1207.0) 2005-04-30T15:21:27Z 11783 03:16:23 22.2772343765436  Gooby 1.1.0 
         | 
| 1035 | 
            +
                        // points.push(new GLatLng(36.16395,-86.74094)); // (1013 of 1207.0) 2005-04-30T15:21:39Z 11795 03:16:35 22.2984314818871  Gooby 1.1.0 
         | 
| 1036 | 
            +
                        // points.push(new GLatLng(36.16399,-86.74071)); // (1014 of 1207.0) 2005-04-30T15:21:47Z 11803 03:16:43 22.3115547798436  Gooby 1.1.0 
         | 
| 1037 | 
            +
                        points.push(new GLatLng(36.16403,-86.74049)); // (1015 of 1207.0) 2005-04-30T15:21:54Z 11810 03:16:50 22.3241333120463  Gooby 1.1.0 
         | 
| 1038 | 
            +
                        // points.push(new GLatLng(36.1641,-86.74026)); // (1016 of 1207.0) 2005-04-30T15:22:02Z 11818 03:16:58 22.3378437493203  Gooby 1.1.0 
         | 
| 1039 | 
            +
                        // points.push(new GLatLng(36.16418,-86.73994)); // (1017 of 1207.0) 2005-04-30T15:22:13Z 11829 03:17:09 22.3565291097013  Gooby 1.1.0 
         | 
| 1040 | 
            +
                        // points.push(new GLatLng(36.16425,-86.73966)); // (1018 of 1207.0) 2005-04-30T15:22:22Z 11838 03:17:18 22.3728787883963  Gooby 1.1.0 
         | 
| 1041 | 
            +
                        // points.push(new GLatLng(36.16431,-86.73927)); // (1019 of 1207.0) 2005-04-30T15:22:35Z 11851 03:17:31 22.3950237571283  Gooby 1.1.0 
         | 
| 1042 | 
            +
                        // points.push(new GLatLng(36.16433,-86.73895)); // (1020 of 1207.0) 2005-04-30T15:22:45Z 11861 03:17:41 22.4129262572951  Gooby 1.1.0 
         | 
| 1043 | 
            +
                        points.push(new GLatLng(36.16437,-86.73843)); // (1021 of 1207.0) 2005-04-30T15:23:02Z 11878 03:17:58 22.4420623024264  Gooby 1.1.0 
         | 
| 1044 | 
            +
                        // points.push(new GLatLng(36.1644,-86.73813)); // (1022 of 1207.0) 2005-04-30T15:23:11Z 11887 03:18:07 22.458923570296  Gooby 1.1.0 
         | 
| 1045 | 
            +
                        // points.push(new GLatLng(36.1644,-86.73792)); // (1023 of 1207.0) 2005-04-30T15:23:18Z 11894 03:18:14 22.4706369532011  Gooby 1.1.0 
         | 
| 1046 | 
            +
                        // points.push(new GLatLng(36.16435,-86.7376)); // (1024 of 1207.0) 2005-04-30T15:23:29Z 11905 03:18:25 22.4888172702898  Gooby 1.1.0 
         | 
| 1047 | 
            +
                        // points.push(new GLatLng(36.16435,-86.73736)); // (1025 of 1207.0) 2005-04-30T15:23:36Z 11912 03:18:32 22.5022039909576  Gooby 1.1.0 
         | 
| 1048 | 
            +
                        // points.push(new GLatLng(36.1644,-86.73706)); // (1026 of 1207.0) 2005-04-30T15:23:46Z 11922 03:18:42 22.5192903398709  Gooby 1.1.0 
         | 
| 1049 | 
            +
                        points.push(new GLatLng(36.16444,-86.73672)); // (1027 of 1207.0) 2005-04-30T15:23:57Z 11933 03:18:53 22.5384552871374  Gooby 1.1.0 
         | 
| 1050 | 
            +
                        // points.push(new GLatLng(36.16448,-86.73631)); // (1028 of 1207.0) 2005-04-30T15:24:10Z 11946 03:19:06 22.5614906844583  Gooby 1.1.0 
         | 
| 1051 | 
            +
                        // points.push(new GLatLng(36.16455,-86.73605)); // (1029 of 1207.0) 2005-04-30T15:24:19Z 11955 03:19:15 22.5767780510602  Gooby 1.1.0 
         | 
| 1052 | 
            +
                        // points.push(new GLatLng(36.16461,-86.73584)); // (1030 of 1207.0) 2005-04-30T15:24:27Z 11963 03:19:23 22.5892033700254  Gooby 1.1.0 
         | 
| 1053 | 
            +
                        // points.push(new GLatLng(36.16472,-86.73554)); // (1031 of 1207.0) 2005-04-30T15:24:37Z 11973 03:19:33 22.6075818420061  Gooby 1.1.0 
         | 
| 1054 | 
            +
                        // points.push(new GLatLng(36.1648,-86.73513)); // (1032 of 1207.0) 2005-04-30T15:24:51Z 11987 03:19:47 22.6311092410724  Gooby 1.1.0 
         | 
| 1055 | 
            +
                        points.push(new GLatLng(36.1648,-86.73479)); // (1033 of 1207.0) 2005-04-30T15:25:03Z 11999 03:19:59 22.6500737932344  Gooby 1.1.0 
         | 
| 1056 | 
            +
                        // points.push(new GLatLng(36.16491,-86.73444)); // (1034 of 1207.0) 2005-04-30T15:25:14Z 12010 03:20:10 22.6710231445048  Gooby 1.1.0 
         | 
| 1057 | 
            +
                        // points.push(new GLatLng(36.16495,-86.73412)); // (1035 of 1207.0) 2005-04-30T15:25:25Z 12021 03:20:21 22.6890847966165  Gooby 1.1.0 
         | 
| 1058 | 
            +
                        // points.push(new GLatLng(36.16504,-86.73373)); // (1036 of 1207.0) 2005-04-30T15:25:38Z 12034 03:20:34 22.7117094527777  Gooby 1.1.0 
         | 
| 1059 | 
            +
                        // points.push(new GLatLng(36.16519,-86.73339)); // (1037 of 1207.0) 2005-04-30T15:25:51Z 12047 03:20:47 22.7333208443809  Gooby 1.1.0 
         | 
| 1060 | 
            +
                        // points.push(new GLatLng(36.1656,-86.73346)); // (1038 of 1207.0) 2005-04-30T15:26:04Z 12060 03:21:00 22.7619155349082  Gooby 1.1.0 
         | 
| 1061 | 
            +
                        points.push(new GLatLng(36.16588,-86.7335)); // (1039 of 1207.0) 2005-04-30T15:26:15Z 12071 03:21:11 22.7813890026074  Gooby 1.1.0 
         | 
| 1062 | 
            +
                        // points.push(new GLatLng(36.1662,-86.73341)); // (1040 of 1207.0) 2005-04-30T15:26:28Z 12084 03:21:24 22.8040605168201  Gooby 1.1.0 
         | 
| 1063 | 
            +
                        // points.push(new GLatLng(36.16639,-86.73326)); // (1041 of 1207.0) 2005-04-30T15:26:38Z 12094 03:21:34 22.8196269975072  Gooby 1.1.0 
         | 
| 1064 | 
            +
                        // points.push(new GLatLng(36.16661,-86.73296)); // (1042 of 1207.0) 2005-04-30T15:26:52Z 12108 03:21:48 22.8422329602116  Gooby 1.1.0 
         | 
| 1065 | 
            +
                        // points.push(new GLatLng(36.16682,-86.73266)); // (1043 of 1207.0) 2005-04-30T15:27:05Z 12121 03:22:01 22.8643802856688  Gooby 1.1.0 
         | 
| 1066 | 
            +
                        // points.push(new GLatLng(36.16704,-86.73238)); // (1044 of 1207.0) 2005-04-30T15:27:17Z 12133 03:22:13 22.8861732500613  Gooby 1.1.0 
         | 
| 1067 | 
            +
                        points.push(new GLatLng(36.16729,-86.73204)); // (1045 of 1207.0) 2005-04-30T15:27:32Z 12148 03:22:28 22.9118242147163  Gooby 1.1.0 
         | 
| 1068 | 
            +
                        // points.push(new GLatLng(36.16761,-86.73172)); // (1046 of 1207.0) 2005-04-30T15:27:48Z 12164 03:22:44 22.940238427141  Gooby 1.1.0 
         | 
| 1069 | 
            +
                        // points.push(new GLatLng(36.16804,-86.7315)); // (1047 of 1207.0) 2005-04-30T15:28:09Z 12185 03:23:05 22.9723815377072  Gooby 1.1.0 
         | 
| 1070 | 
            +
                        // points.push(new GLatLng(36.16811,-86.73146)); // (1048 of 1207.0) 2005-04-30T15:28:13Z 12189 03:23:09 22.9777077277578  Gooby 1.1.0 
         | 
| 1071 | 
            +
                        points.push(new GLatLng(36.16858,-86.73268)); // (1049 of 1207.0) 2005-04-30T15:28:34Z 12210 03:23:30 23.0531047499703 23.0 00:09:34 Gooby 1.1.0 
         | 
| 1072 | 
            +
                        // points.push(new GLatLng(36.16862,-86.73273)); // (1050 of 1207.0) 2005-04-30T15:28:36Z 12212 03:23:32 23.0570303927522  Gooby 1.1.0 
         | 
| 1073 | 
            +
                        // points.push(new GLatLng(36.16886,-86.73273)); // (1051 of 1207.0) 2005-04-30T15:28:46Z 12222 03:23:42 23.0736118884466  Gooby 1.1.0 
         | 
| 1074 | 
            +
                        // points.push(new GLatLng(36.16899,-86.73249)); // (1052 of 1207.0) 2005-04-30T15:28:55Z 12231 03:23:51 23.0897317049007  Gooby 1.1.0 
         | 
| 1075 | 
            +
                        // points.push(new GLatLng(36.16907,-86.7318)); // (1053 of 1207.0) 2005-04-30T15:29:08Z 12244 03:24:04 23.1286113096002  Gooby 1.1.0 
         | 
| 1076 | 
            +
                        // points.push(new GLatLng(36.16937,-86.73152)); // (1054 of 1207.0) 2005-04-30T15:29:23Z 12259 03:24:19 23.1545632066738  Gooby 1.1.0 
         | 
| 1077 | 
            +
                        points.push(new GLatLng(36.16972,-86.73137)); // (1055 of 1207.0) 2005-04-30T15:29:38Z 12274 03:24:34 23.1801511534243  Gooby 1.1.0 
         | 
| 1078 | 
            +
                        // points.push(new GLatLng(36.17019,-86.73129)); // (1056 of 1207.0) 2005-04-30T15:29:56Z 12292 03:24:52 23.2129286278138  Gooby 1.1.0 
         | 
| 1079 | 
            +
                        // points.push(new GLatLng(36.17066,-86.73116)); // (1057 of 1207.0) 2005-04-30T15:30:14Z 12310 03:25:10 23.2462005580519  Gooby 1.1.0 
         | 
| 1080 | 
            +
                        // points.push(new GLatLng(36.17109,-86.73101)); // (1058 of 1207.0) 2005-04-30T15:30:31Z 12327 03:25:27 23.2770646879759  Gooby 1.1.0 
         | 
| 1081 | 
            +
                        // points.push(new GLatLng(36.17141,-86.73107)); // (1059 of 1207.0) 2005-04-30T15:30:44Z 12340 03:25:40 23.2994252800927  Gooby 1.1.0 
         | 
| 1082 | 
            +
                        // points.push(new GLatLng(36.17178,-86.73127)); // (1060 of 1207.0) 2005-04-30T15:30:59Z 12355 03:25:55 23.3273161948714  Gooby 1.1.0 
         | 
| 1083 | 
            +
                        points.push(new GLatLng(36.17208,-86.7315)); // (1061 of 1207.0) 2005-04-30T15:31:14Z 12370 03:26:10 23.3516915533211  Gooby 1.1.0 
         | 
| 1084 | 
            +
                        // points.push(new GLatLng(36.17246,-86.73189)); // (1062 of 1207.0) 2005-04-30T15:31:36Z 12392 03:26:32 23.3857855548565  Gooby 1.1.0 
         | 
| 1085 | 
            +
                        // points.push(new GLatLng(36.17276,-86.73198)); // (1063 of 1207.0) 2005-04-30T15:31:50Z 12406 03:26:46 23.4071116176613  Gooby 1.1.0 
         | 
| 1086 | 
            +
                        // points.push(new GLatLng(36.17289,-86.73187)); // (1064 of 1207.0) 2005-04-30T15:31:57Z 12413 03:26:53 23.4179886437286  Gooby 1.1.0 
         | 
| 1087 | 
            +
                        // points.push(new GLatLng(36.17259,-86.73045)); // (1065 of 1207.0) 2005-04-30T15:32:26Z 12442 03:27:22 23.4998526853762  Gooby 1.1.0 
         | 
| 1088 | 
            +
                        // points.push(new GLatLng(36.16875,-86.72951)); // (1066 of 1207.0) 2005-04-30T15:35:09Z 12605 03:30:05 23.7702887990097  Gooby 1.1.0 
         | 
| 1089 | 
            +
                        points.push(new GLatLng(36.1686,-86.7291)); // (1067 of 1207.0) 2005-04-30T15:35:21Z 12617 03:30:17 23.7953952599442  Gooby 1.1.0 
         | 
| 1090 | 
            +
                        // points.push(new GLatLng(36.16847,-86.72863)); // (1068 of 1207.0) 2005-04-30T15:35:41Z 12637 03:30:37 23.8231055705255  Gooby 1.1.0 
         | 
| 1091 | 
            +
                        // points.push(new GLatLng(36.16824,-86.72826)); // (1069 of 1207.0) 2005-04-30T15:35:57Z 12653 03:30:53 23.8491516183512  Gooby 1.1.0 
         | 
| 1092 | 
            +
                        // points.push(new GLatLng(36.16787,-86.72801)); // (1070 of 1207.0) 2005-04-30T15:36:13Z 12669 03:31:09 23.8782705810921  Gooby 1.1.0 
         | 
| 1093 | 
            +
                        // points.push(new GLatLng(36.16749,-86.72792)); // (1071 of 1207.0) 2005-04-30T15:36:27Z 12683 03:31:23 23.905000450174  Gooby 1.1.0 
         | 
| 1094 | 
            +
                        // points.push(new GLatLng(36.16719,-86.72798)); // (1072 of 1207.0) 2005-04-30T15:36:36Z 12692 03:31:32 23.9259959238849  Gooby 1.1.0 
         | 
| 1095 | 
            +
                        points.push(new GLatLng(36.16663,-86.72811)); // (1073 of 1207.0) 2005-04-30T15:36:55Z 12711 03:31:51 23.9653598516853  Gooby 1.1.0 
         | 
| 1096 | 
            +
                        // points.push(new GLatLng(36.16622,-86.72818)); // (1074 of 1207.0) 2005-04-30T15:37:10Z 12726 03:32:06 23.9939544813709  Gooby 1.1.0 
         | 
| 1097 | 
            +
                        points.push(new GLatLng(36.16588,-86.72841)); // (1075 of 1207.0) 2005-04-30T15:37:26Z 12742 03:32:22 24.0207198639371 24.0 00:08:52 Gooby 1.1.0 
         | 
| 1098 | 
            +
                        // points.push(new GLatLng(36.16566,-86.72876)); // (1076 of 1207.0) 2005-04-30T15:37:40Z 12756 03:32:36 24.0454614700808  Gooby 1.1.0 
         | 
| 1099 | 
            +
                        // points.push(new GLatLng(36.16558,-86.72891)); // (1077 of 1207.0) 2005-04-30T15:37:45Z 12761 03:32:41 24.0554889506984  Gooby 1.1.0 
         | 
| 1100 | 
            +
                        // points.push(new GLatLng(36.16547,-86.72912)); // (1078 of 1207.0) 2005-04-30T15:37:52Z 12768 03:32:48 24.0694517380715  Gooby 1.1.0 
         | 
| 1101 | 
            +
                        // points.push(new GLatLng(36.16534,-86.72946)); // (1079 of 1207.0) 2005-04-30T15:38:04Z 12780 03:33:00 24.0904354419496  Gooby 1.1.0 
         | 
| 1102 | 
            +
                        // points.push(new GLatLng(36.1653,-86.72976)); // (1080 of 1207.0) 2005-04-30T15:38:15Z 12791 03:33:11 24.1073953708189  Gooby 1.1.0 
         | 
| 1103 | 
            +
                        points.push(new GLatLng(36.16532,-86.73019)); // (1081 of 1207.0) 2005-04-30T15:38:28Z 12804 03:33:24 24.131419469144  Gooby 1.1.0 
         | 
| 1104 | 
            +
                        // points.push(new GLatLng(36.16521,-86.73062)); // (1082 of 1207.0) 2005-04-30T15:38:42Z 12818 03:33:38 24.1565791613163  Gooby 1.1.0 
         | 
| 1105 | 
            +
                        // points.push(new GLatLng(36.16513,-86.73105)); // (1083 of 1207.0) 2005-04-30T15:38:56Z 12832 03:33:52 24.1811922464575  Gooby 1.1.0 
         | 
| 1106 | 
            +
                        // points.push(new GLatLng(36.16508,-86.73163)); // (1084 of 1207.0) 2005-04-30T15:39:14Z 12850 03:34:10 24.2137272150075  Gooby 1.1.0 
         | 
| 1107 | 
            +
                        // points.push(new GLatLng(36.16506,-86.73206)); // (1085 of 1207.0) 2005-04-30T15:39:29Z 12865 03:34:25 24.2377514581655  Gooby 1.1.0 
         | 
| 1108 | 
            +
                        // points.push(new GLatLng(36.16506,-86.73213)); // (1086 of 1207.0) 2005-04-30T15:39:31Z 12867 03:34:27 24.2416553249832  Gooby 1.1.0 
         | 
| 1109 | 
            +
                        points.push(new GLatLng(36.16504,-86.73236)); // (1087 of 1207.0) 2005-04-30T15:39:39Z 12875 03:34:35 24.2545582992915  Gooby 1.1.0 
         | 
| 1110 | 
            +
                        // points.push(new GLatLng(36.16502,-86.73262)); // (1088 of 1207.0) 2005-04-30T15:39:47Z 12883 03:34:43 24.2691261128667  Gooby 1.1.0 
         | 
| 1111 | 
            +
                        // points.push(new GLatLng(36.16502,-86.7329)); // (1089 of 1207.0) 2005-04-30T15:39:57Z 12893 03:34:53 24.2847438082131  Gooby 1.1.0 
         | 
| 1112 | 
            +
                        // points.push(new GLatLng(36.16504,-86.73341)); // (1090 of 1207.0) 2005-04-30T15:40:13Z 12909 03:35:09 24.3132240090528  Gooby 1.1.0 
         | 
| 1113 | 
            +
                        // points.push(new GLatLng(36.16498,-86.73401)); // (1091 of 1207.0) 2005-04-30T15:40:31Z 12927 03:35:27 24.3469463384313  Gooby 1.1.0 
         | 
| 1114 | 
            +
                        // points.push(new GLatLng(36.16491,-86.73449)); // (1092 of 1207.0) 2005-04-30T15:40:47Z 12943 03:35:43 24.374153007255  Gooby 1.1.0 
         | 
| 1115 | 
            +
                        points.push(new GLatLng(36.1648,-86.73485)); // (1093 of 1207.0) 2005-04-30T15:41:00Z 12956 03:35:56 24.3956230593173  Gooby 1.1.0 
         | 
| 1116 | 
            +
                        // points.push(new GLatLng(36.16472,-86.73528)); // (1094 of 1207.0) 2005-04-30T15:41:15Z 12971 03:36:11 24.4202362151422  Gooby 1.1.0 
         | 
| 1117 | 
            +
                        // points.push(new GLatLng(36.16463,-86.73567)); // (1095 of 1207.0) 2005-04-30T15:41:28Z 12984 03:36:24 24.4428608713034  Gooby 1.1.0 
         | 
| 1118 | 
            +
                        // points.push(new GLatLng(36.1645,-86.73612)); // (1096 of 1207.0) 2005-04-30T15:41:42Z 12998 03:36:38 24.4695195714889  Gooby 1.1.0 
         | 
| 1119 | 
            +
                        // points.push(new GLatLng(36.16437,-86.73667)); // (1097 of 1207.0) 2005-04-30T15:42:02Z 13018 03:36:58 24.5014853121521  Gooby 1.1.0 
         | 
| 1120 | 
            +
                        // points.push(new GLatLng(36.16433,-86.73725)); // (1098 of 1207.0) 2005-04-30T15:42:21Z 13037 03:37:17 24.5339545493166  Gooby 1.1.0 
         | 
| 1121 | 
            +
                        points.push(new GLatLng(36.16433,-86.73768)); // (1099 of 1207.0) 2005-04-30T15:42:34Z 13050 03:37:30 24.5579392205993  Gooby 1.1.0 
         | 
| 1122 | 
            +
                        // points.push(new GLatLng(36.16435,-86.738)); // (1100 of 1207.0) 2005-04-30T15:42:44Z 13060 03:37:40 24.5758416235869  Gooby 1.1.0 
         | 
| 1123 | 
            +
                        // points.push(new GLatLng(36.16437,-86.7385)); // (1101 of 1207.0) 2005-04-30T15:43:01Z 13077 03:37:57 24.6037650177694  Gooby 1.1.0 
         | 
| 1124 | 
            +
                        // points.push(new GLatLng(36.16431,-86.7388)); // (1102 of 1207.0) 2005-04-30T15:43:11Z 13087 03:38:07 24.6210042287004  Gooby 1.1.0 
         | 
| 1125 | 
            +
                        // points.push(new GLatLng(36.16427,-86.73921)); // (1103 of 1207.0) 2005-04-30T15:43:25Z 13101 03:38:21 24.6440397015462  Gooby 1.1.0 
         | 
| 1126 | 
            +
                        // points.push(new GLatLng(36.1642,-86.73976)); // (1104 of 1207.0) 2005-04-30T15:43:42Z 13118 03:38:38 24.6750966275682  Gooby 1.1.0 
         | 
| 1127 | 
            +
                        points.push(new GLatLng(36.1641,-86.74015)); // (1105 of 1207.0) 2005-04-30T15:43:54Z 13130 03:38:50 24.6979209475415  Gooby 1.1.0 
         | 
| 1128 | 
            +
                        // points.push(new GLatLng(36.16399,-86.74052)); // (1106 of 1207.0) 2005-04-30T15:44:07Z 13143 03:39:03 24.7199138486589  Gooby 1.1.0 
         | 
| 1129 | 
            +
                        // points.push(new GLatLng(36.1639,-86.7409)); // (1107 of 1207.0) 2005-04-30T15:44:20Z 13156 03:39:16 24.7420029681667  Gooby 1.1.0 
         | 
| 1130 | 
            +
                        // points.push(new GLatLng(36.16384,-86.74137)); // (1108 of 1207.0) 2005-04-30T15:44:35Z 13171 03:39:31 24.7685445959318  Gooby 1.1.0 
         | 
| 1131 | 
            +
                        // points.push(new GLatLng(36.16375,-86.7418)); // (1109 of 1207.0) 2005-04-30T15:44:50Z 13186 03:39:46 24.7933223184582  Gooby 1.1.0 
         | 
| 1132 | 
            +
                        // points.push(new GLatLng(36.16369,-86.74225)); // (1110 of 1207.0) 2005-04-30T15:45:05Z 13201 03:40:01 24.8187627075598  Gooby 1.1.0 
         | 
| 1133 | 
            +
                        points.push(new GLatLng(36.1636,-86.74266)); // (1111 of 1207.0) 2005-04-30T15:45:19Z 13215 03:40:15 24.8424622138997  Gooby 1.1.0 
         | 
| 1134 | 
            +
                        // points.push(new GLatLng(36.16354,-86.74303)); // (1112 of 1207.0) 2005-04-30T15:45:31Z 13227 03:40:27 24.8635125540329  Gooby 1.1.0 
         | 
| 1135 | 
            +
                        // points.push(new GLatLng(36.16343,-86.74341)); // (1113 of 1207.0) 2005-04-30T15:45:44Z 13240 03:40:40 24.8860297619902  Gooby 1.1.0 
         | 
| 1136 | 
            +
                        // points.push(new GLatLng(36.16332,-86.74382)); // (1114 of 1207.0) 2005-04-30T15:45:58Z 13254 03:40:54 24.9101289116288  Gooby 1.1.0 
         | 
| 1137 | 
            +
                        // points.push(new GLatLng(36.16317,-86.74425)); // (1115 of 1207.0) 2005-04-30T15:46:13Z 13269 03:41:09 24.9362571213228  Gooby 1.1.0 
         | 
| 1138 | 
            +
                        // points.push(new GLatLng(36.16307,-86.74457)); // (1116 of 1207.0) 2005-04-30T15:46:25Z 13281 03:41:21 24.9553969975988  Gooby 1.1.0 
         | 
| 1139 | 
            +
                        points.push(new GLatLng(36.163,-86.74496)); // (1117 of 1207.0) 2005-04-30T15:46:37Z 13293 03:41:33 24.9776819919294  Gooby 1.1.0 
         | 
| 1140 | 
            +
                        // points.push(new GLatLng(36.16309,-86.74528)); // (1118 of 1207.0) 2005-04-30T15:46:48Z 13304 03:41:44 24.9965834158842  Gooby 1.1.0 
         | 
| 1141 | 
            +
                        points.push(new GLatLng(36.16317,-86.74551)); // (1119 of 1207.0) 2005-04-30T15:46:56Z 13312 03:41:52 25.0105524318065 25.0 00:09:30 Gooby 1.1.0 
         | 
| 1142 | 
            +
                        // points.push(new GLatLng(36.16322,-86.74564)); // (1120 of 1207.0) 2005-04-30T15:47:01Z 13317 03:41:57 25.0185846634776  Gooby 1.1.0 
         | 
| 1143 | 
            +
                        // points.push(new GLatLng(36.16313,-86.74622)); // (1121 of 1207.0) 2005-04-30T15:47:19Z 13335 03:42:15 25.0515286964733  Gooby 1.1.0 
         | 
| 1144 | 
            +
                        // points.push(new GLatLng(36.16311,-86.74629)); // (1122 of 1207.0) 2005-04-30T15:47:21Z 13337 03:42:17 25.0556704227894  Gooby 1.1.0 
         | 
| 1145 | 
            +
                        // points.push(new GLatLng(36.16304,-86.74657)); // (1123 of 1207.0) 2005-04-30T15:47:32Z 13348 03:42:28 25.0720202078926  Gooby 1.1.0 
         | 
| 1146 | 
            +
                        // points.push(new GLatLng(36.16296,-86.74689)); // (1124 of 1207.0) 2005-04-30T15:47:44Z 13360 03:42:40 25.0907056613808  Gooby 1.1.0 
         | 
| 1147 | 
            +
                        points.push(new GLatLng(36.16294,-86.74717)); // (1125 of 1207.0) 2005-04-30T15:47:54Z 13370 03:42:50 25.1063847266483  Gooby 1.1.0 
         | 
| 1148 | 
            +
                        // points.push(new GLatLng(36.16292,-86.74734)); // (1126 of 1207.0) 2005-04-30T15:48:01Z 13377 03:42:57 25.1159672002815  Gooby 1.1.0 
         | 
| 1149 | 
            +
                        // points.push(new GLatLng(36.16283,-86.7477)); // (1127 of 1207.0) 2005-04-30T15:48:14Z 13390 03:43:10 25.136988345801  Gooby 1.1.0 
         | 
| 1150 | 
            +
                        // points.push(new GLatLng(36.16272,-86.74813)); // (1128 of 1207.0) 2005-04-30T15:48:30Z 13406 03:43:26 25.1621487294453  Gooby 1.1.0 
         | 
| 1151 | 
            +
                        // points.push(new GLatLng(36.16261,-86.74848)); // (1129 of 1207.0) 2005-04-30T15:48:43Z 13419 03:43:39 25.1830985789818  Gooby 1.1.0 
         | 
| 1152 | 
            +
                        // points.push(new GLatLng(36.16255,-86.74878)); // (1130 of 1207.0) 2005-04-30T15:48:56Z 13432 03:43:52 25.20033819358  Gooby 1.1.0 
         | 
| 1153 | 
            +
                        points.push(new GLatLng(36.16249,-86.7491)); // (1131 of 1207.0) 2005-04-30T15:49:06Z 13442 03:44:02 25.2186626286806  Gooby 1.1.0 
         | 
| 1154 | 
            +
                        // points.push(new GLatLng(36.16244,-86.74942)); // (1132 of 1207.0) 2005-04-30T15:49:16Z 13452 03:44:12 25.2368432328488  Gooby 1.1.0 
         | 
| 1155 | 
            +
                        // points.push(new GLatLng(36.16238,-86.74978)); // (1133 of 1207.0) 2005-04-30T15:49:27Z 13463 03:44:23 25.2573473810063  Gooby 1.1.0 
         | 
| 1156 | 
            +
                        // points.push(new GLatLng(36.16227,-86.75024)); // (1134 of 1207.0) 2005-04-30T15:49:41Z 13477 03:44:37 25.2841079531505  Gooby 1.1.0 
         | 
| 1157 | 
            +
                        // points.push(new GLatLng(36.16216,-86.75066)); // (1135 of 1207.0) 2005-04-30T15:49:55Z 13491 03:44:51 25.3087373608348  Gooby 1.1.0 
         | 
| 1158 | 
            +
                        // points.push(new GLatLng(36.1621,-86.75092)); // (1136 of 1207.0) 2005-04-30T15:50:03Z 13499 03:44:59 25.3238210288359  Gooby 1.1.0 
         | 
| 1159 | 
            +
                        points.push(new GLatLng(36.16206,-86.75116)); // (1137 of 1207.0) 2005-04-30T15:50:11Z 13507 03:45:07 25.3374902912428  Gooby 1.1.0 
         | 
| 1160 | 
            +
                        // points.push(new GLatLng(36.16199,-86.7515)); // (1138 of 1207.0) 2005-04-30T15:50:23Z 13519 03:45:19 25.3570623187996  Gooby 1.1.0 
         | 
| 1161 | 
            +
                        // points.push(new GLatLng(36.16193,-86.75195)); // (1139 of 1207.0) 2005-04-30T15:50:37Z 13533 03:45:33 25.382503391744  Gooby 1.1.0 
         | 
| 1162 | 
            +
                        // points.push(new GLatLng(36.16186,-86.75227)); // (1140 of 1207.0) 2005-04-30T15:50:48Z 13544 03:45:44 25.4009966146903  Gooby 1.1.0 
         | 
| 1163 | 
            +
                        // points.push(new GLatLng(36.16176,-86.75277)); // (1141 of 1207.0) 2005-04-30T15:51:04Z 13560 03:46:00 25.4297296286155  Gooby 1.1.0 
         | 
| 1164 | 
            +
                        // points.push(new GLatLng(36.16167,-86.75318)); // (1142 of 1207.0) 2005-04-30T15:51:18Z 13574 03:46:14 25.4534297222165  Gooby 1.1.0 
         | 
| 1165 | 
            +
                        points.push(new GLatLng(36.16156,-86.75365)); // (1143 of 1207.0) 2005-04-30T15:51:33Z 13589 03:46:29 25.4807257680411  Gooby 1.1.0 
         | 
| 1166 | 
            +
                        // points.push(new GLatLng(36.16154,-86.75386)); // (1144 of 1207.0) 2005-04-30T15:51:40Z 13596 03:46:36 25.4925207050617  Gooby 1.1.0 
         | 
| 1167 | 
            +
                        // points.push(new GLatLng(36.16152,-86.75408)); // (1145 of 1207.0) 2005-04-30T15:51:47Z 13603 03:46:43 25.5048700429416  Gooby 1.1.0 
         | 
| 1168 | 
            +
                        // points.push(new GLatLng(36.16148,-86.75431)); // (1146 of 1207.0) 2005-04-30T15:51:55Z 13611 03:46:51 25.517993606034  Gooby 1.1.0 
         | 
| 1169 | 
            +
                        // points.push(new GLatLng(36.16146,-86.75461)); // (1147 of 1207.0) 2005-04-30T15:52:05Z 13621 03:47:01 25.5347845648937  Gooby 1.1.0 
         | 
| 1170 | 
            +
                        // points.push(new GLatLng(36.16143,-86.75485)); // (1148 of 1207.0) 2005-04-30T15:52:13Z 13629 03:47:09 25.5483312213692  Gooby 1.1.0 
         | 
| 1171 | 
            +
                        points.push(new GLatLng(36.16141,-86.75508)); // (1149 of 1207.0) 2005-04-30T15:52:21Z 13637 03:47:17 25.561234734998  Gooby 1.1.0 
         | 
| 1172 | 
            +
                        // points.push(new GLatLng(36.16135,-86.75551)); // (1150 of 1207.0) 2005-04-30T15:52:35Z 13651 03:47:31 25.5855758816997  Gooby 1.1.0 
         | 
| 1173 | 
            +
                        // points.push(new GLatLng(36.16131,-86.75579)); // (1151 of 1207.0) 2005-04-30T15:52:44Z 13660 03:47:40 25.6014369740298  Gooby 1.1.0 
         | 
| 1174 | 
            +
                        // points.push(new GLatLng(36.16128,-86.75609)); // (1152 of 1207.0) 2005-04-30T15:52:54Z 13670 03:47:50 25.6182990673194  Gooby 1.1.0 
         | 
| 1175 | 
            +
                        // points.push(new GLatLng(36.16122,-86.75648)); // (1153 of 1207.0) 2005-04-30T15:53:07Z 13683 03:48:03 25.6404448216543  Gooby 1.1.0 
         | 
| 1176 | 
            +
                        // points.push(new GLatLng(36.16118,-86.75684)); // (1154 of 1207.0) 2005-04-30T15:53:19Z 13695 03:48:15 25.6607151517664  Gooby 1.1.0 
         | 
| 1177 | 
            +
                        points.push(new GLatLng(36.16113,-86.75717)); // (1155 of 1207.0) 2005-04-30T15:53:30Z 13706 03:48:26 25.6794441286322  Gooby 1.1.0 
         | 
| 1178 | 
            +
                        // points.push(new GLatLng(36.16107,-86.75762)); // (1156 of 1207.0) 2005-04-30T15:53:44Z 13720 03:48:40 25.704885338343  Gooby 1.1.0 
         | 
| 1179 | 
            +
                        // points.push(new GLatLng(36.16103,-86.75809)); // (1157 of 1207.0) 2005-04-30T15:53:59Z 13735 03:48:55 25.7312474131955  Gooby 1.1.0 
         | 
| 1180 | 
            +
                        // points.push(new GLatLng(36.16096,-86.75856)); // (1158 of 1207.0) 2005-04-30T15:54:14Z 13750 03:49:10 25.7579066354557  Gooby 1.1.0 
         | 
| 1181 | 
            +
                        // points.push(new GLatLng(36.16094,-86.75888)); // (1159 of 1207.0) 2005-04-30T15:54:24Z 13760 03:49:20 25.7758098158622  Gooby 1.1.0 
         | 
| 1182 | 
            +
                        // points.push(new GLatLng(36.16098,-86.75938)); // (1160 of 1207.0) 2005-04-30T15:54:40Z 13776 03:49:36 25.8038366925666  Gooby 1.1.0 
         | 
| 1183 | 
            +
                        points.push(new GLatLng(36.16103,-86.76006)); // (1161 of 1207.0) 2005-04-30T15:55:02Z 13798 03:49:58 25.8419244448636  Gooby 1.1.0 
         | 
| 1184 | 
            +
                        // points.push(new GLatLng(36.16107,-86.76075)); // (1162 of 1207.0) 2005-04-30T15:55:24Z 13820 03:50:20 25.8805121880062  Gooby 1.1.0 
         | 
| 1185 | 
            +
                        // points.push(new GLatLng(36.16107,-86.76111)); // (1163 of 1207.0) 2005-04-30T15:55:35Z 13831 03:50:31 25.9005931570523  Gooby 1.1.0 
         | 
| 1186 | 
            +
                        // points.push(new GLatLng(36.16109,-86.76137)); // (1164 of 1207.0) 2005-04-30T15:55:43Z 13839 03:50:39 25.9151616871537  Gooby 1.1.0 
         | 
| 1187 | 
            +
                        // points.push(new GLatLng(36.16111,-86.76163)); // (1165 of 1207.0) 2005-04-30T15:55:51Z 13847 03:50:47 25.9297302172551  Gooby 1.1.0 
         | 
| 1188 | 
            +
                        // points.push(new GLatLng(36.16116,-86.76204)); // (1166 of 1207.0) 2005-04-30T15:56:04Z 13860 03:51:00 25.9528596776051  Gooby 1.1.0 
         | 
| 1189 | 
            +
                        points.push(new GLatLng(36.16116,-86.76242)); // (1167 of 1207.0) 2005-04-30T15:56:16Z 13872 03:51:12 25.9740562084178  Gooby 1.1.0 
         | 
| 1190 | 
            +
                        // points.push(new GLatLng(36.1612,-86.76287)); // (1168 of 1207.0) 2005-04-30T15:56:31Z 13887 03:51:27 25.999309146945  Gooby 1.1.0 
         | 
| 1191 | 
            +
                        points.push(new GLatLng(36.1612,-86.76335)); // (1169 of 1207.0) 2005-04-30T15:56:45Z 13901 03:51:41 26.0260837579004 26.0 00:09:49 Gooby 1.1.0 
         | 
| 1192 | 
            +
                        // points.push(new GLatLng(36.16124,-86.76375)); // (1170 of 1207.0) 2005-04-30T15:56:58Z 13914 03:51:54 26.0485664801698  Gooby 1.1.0 
         | 
| 1193 | 
            +
                        // points.push(new GLatLng(36.16126,-86.76382)); // (1171 of 1207.0) 2005-04-30T15:57:00Z 13916 03:51:56 26.0527082064859  Gooby 1.1.0 
         | 
| 1194 | 
            +
                        // points.push(new GLatLng(36.16128,-86.76408)); // (1172 of 1207.0) 2005-04-30T15:57:08Z 13924 03:52:04 26.0672767365873  Gooby 1.1.0 
         | 
| 1195 | 
            +
                        // points.push(new GLatLng(36.16131,-86.76429)); // (1173 of 1207.0) 2005-04-30T15:57:15Z 13931 03:52:11 26.0791727203633  Gooby 1.1.0 
         | 
| 1196 | 
            +
                        // points.push(new GLatLng(36.16135,-86.76459)); // (1174 of 1207.0) 2005-04-30T15:57:25Z 13941 03:52:21 26.0961335724257  Gooby 1.1.0 
         | 
| 1197 | 
            +
                        points.push(new GLatLng(36.16139,-86.76491)); // (1175 of 1207.0) 2005-04-30T15:57:35Z 13951 03:52:31 26.1141959951022  Gooby 1.1.0 
         | 
| 1198 | 
            +
                        // points.push(new GLatLng(36.16143,-86.76526)); // (1176 of 1207.0) 2005-04-30T15:57:46Z 13962 03:52:42 26.1339137918085  Gooby 1.1.0 
         | 
| 1199 | 
            +
                        // points.push(new GLatLng(36.16148,-86.76551)); // (1177 of 1207.0) 2005-04-30T15:57:55Z 13971 03:52:51 26.1482802987711  Gooby 1.1.0 
         | 
| 1200 | 
            +
                        // points.push(new GLatLng(36.16152,-86.76586)); // (1178 of 1207.0) 2005-04-30T15:58:06Z 13982 03:53:02 26.167998007245  Gooby 1.1.0 
         | 
| 1201 | 
            +
                        // points.push(new GLatLng(36.16154,-86.76611)); // (1179 of 1207.0) 2005-04-30T15:58:14Z 13990 03:53:10 26.18201141456  Gooby 1.1.0 
         | 
| 1202 | 
            +
                        // points.push(new GLatLng(36.16161,-86.76644)); // (1180 of 1207.0) 2005-04-30T15:58:24Z 14000 03:53:20 26.201043548019  Gooby 1.1.0 
         | 
| 1203 | 
            +
                        points.push(new GLatLng(36.16165,-86.76667)); // (1181 of 1207.0) 2005-04-30T15:58:31Z 14007 03:53:27 26.2141671111115  Gooby 1.1.0 
         | 
| 1204 | 
            +
                        // points.push(new GLatLng(36.16171,-86.76708)); // (1182 of 1207.0) 2005-04-30T15:58:43Z 14019 03:53:39 26.2374095733614  Gooby 1.1.0 
         | 
| 1205 | 
            +
                        // points.push(new GLatLng(36.1618,-86.76732)); // (1183 of 1207.0) 2005-04-30T15:58:51Z 14027 03:53:47 26.2521704109487  Gooby 1.1.0 
         | 
| 1206 | 
            +
                        // points.push(new GLatLng(36.16186,-86.76757)); // (1184 of 1207.0) 2005-04-30T15:58:59Z 14035 03:53:55 26.2667183866377  Gooby 1.1.0 
         | 
| 1207 | 
            +
                        // points.push(new GLatLng(36.16193,-86.76783)); // (1185 of 1207.0) 2005-04-30T15:59:07Z 14043 03:54:03 26.2820064360414  Gooby 1.1.0 
         | 
| 1208 | 
            +
                        // points.push(new GLatLng(36.16206,-86.76809)); // (1186 of 1207.0) 2005-04-30T15:59:16Z 14052 03:54:12 26.2990652711797  Gooby 1.1.0 
         | 
| 1209 | 
            +
                        points.push(new GLatLng(36.16227,-86.76832)); // (1187 of 1207.0) 2005-04-30T15:59:27Z 14063 03:54:23 26.3184326722803  Gooby 1.1.0 
         | 
| 1210 | 
            +
                        // points.push(new GLatLng(36.16246,-86.76845)); // (1188 of 1207.0) 2005-04-30T15:59:35Z 14071 03:54:31 26.3334295860017  Gooby 1.1.0 
         | 
| 1211 | 
            +
                        // points.push(new GLatLng(36.16272,-86.7686)); // (1189 of 1207.0) 2005-04-30T15:59:45Z 14081 03:54:41 26.3532459564638  Gooby 1.1.0 
         | 
| 1212 | 
            +
                        // points.push(new GLatLng(36.16309,-86.76893)); // (1190 of 1207.0) 2005-04-30T16:00:01Z 14097 03:54:57 26.384746789496  Gooby 1.1.0 
         | 
| 1213 | 
            +
                        // points.push(new GLatLng(36.16345,-86.76908)); // (1191 of 1207.0) 2005-04-30T16:00:13Z 14109 03:55:09 26.4109887450743  Gooby 1.1.0 
         | 
| 1214 | 
            +
                        // points.push(new GLatLng(36.16364,-86.76918)); // (1192 of 1207.0) 2005-04-30T16:00:19Z 14115 03:55:15 26.4252517039151  Gooby 1.1.0 
         | 
| 1215 | 
            +
                        points.push(new GLatLng(36.1639,-86.76933)); // (1193 of 1207.0) 2005-04-30T16:00:27Z 14123 03:55:23 26.4450679865836  Gooby 1.1.0 
         | 
| 1216 | 
            +
                        // points.push(new GLatLng(36.1642,-86.7695)); // (1194 of 1207.0) 2005-04-30T16:00:37Z 14133 03:55:33 26.4678610335589  Gooby 1.1.0 
         | 
| 1217 | 
            +
                        // points.push(new GLatLng(36.16461,-86.76972)); // (1195 of 1207.0) 2005-04-30T16:00:51Z 14147 03:55:47 26.4987317014666  Gooby 1.1.0 
         | 
| 1218 | 
            +
                        // points.push(new GLatLng(36.16491,-86.76996)); // (1196 of 1207.0) 2005-04-30T16:01:02Z 14158 03:55:58 26.5234058523331  Gooby 1.1.0 
         | 
| 1219 | 
            +
                        // points.push(new GLatLng(36.16495,-86.77004)); // (1197 of 1207.0) 2005-04-30T16:01:05Z 14161 03:56:01 26.5286547207608  Gooby 1.1.0 
         | 
| 1220 | 
            +
                        // points.push(new GLatLng(36.16491,-86.77023)); // (1198 of 1207.0) 2005-04-30T16:01:11Z 14167 03:56:07 26.5396069815511  Gooby 1.1.0 
         | 
| 1221 | 
            +
                        points.push(new GLatLng(36.16476,-86.77051)); // (1199 of 1207.0) 2005-04-30T16:01:19Z 14175 03:56:15 26.5583504437509  Gooby 1.1.0 
         | 
| 1222 | 
            +
                        // points.push(new GLatLng(36.16461,-86.7709)); // (1200 of 1207.0) 2005-04-30T16:01:29Z 14185 03:56:25 26.5824464167681  Gooby 1.1.0 
         | 
| 1223 | 
            +
                        // points.push(new GLatLng(36.16444,-86.77137)); // (1201 of 1207.0) 2005-04-30T16:01:41Z 14197 03:56:37 26.6111729512538  Gooby 1.1.0 
         | 
| 1224 | 
            +
                        // points.push(new GLatLng(36.16425,-86.77182)); // (1202 of 1207.0) 2005-04-30T16:01:53Z 14209 03:56:49 26.6394986124267  Gooby 1.1.0 
         | 
| 1225 | 
            +
                        // points.push(new GLatLng(36.16422,-86.77191)); // (1203 of 1207.0) 2005-04-30T16:01:59Z 14215 03:56:55 26.6449299230826  Gooby 1.1.0 
         | 
| 1226 | 
            +
                        // points.push(new GLatLng(36.1642,-86.77195)); // (1204 of 1207.0) 2005-04-30T16:02:03Z 14219 03:56:59 26.6475546887272  Gooby 1.1.0 
         | 
| 1227 | 
            +
                        points.push(new GLatLng(36.16416,-86.77202)); // (1205 of 1207.0) 2005-04-30T16:02:12Z 14228 03:57:08 26.652337384846  Gooby 1.1.0 
         | 
| 1228 | 
            +
                        // points.push(new GLatLng(36.16416,-86.77204)); // (1206 of 1207.0) 2005-04-30T16:02:22Z 14238 03:57:18 26.65345035351  Gooby 1.1.0 
         | 
| 1229 | 
            +
                        points.push(new GLatLng(36.16416,-86.7721)); // (1207 of 1207.0) 2005-04-30T16:02:31Z 14247 03:57:27 26.6567960263308  Gooby 1.1.0 
         | 
| 1230 1230 |  | 
| 1231 1231 | 
             
                        var routePolyline = new GPolyline(points); 
         | 
| 1232 1232 | 
             
                        map.addOverlay(routePolyline);   
         | 
| @@ -1246,7 +1246,7 @@ | |
| 1246 1246 | 
             
                        var pStart = new GPoint(-86.80903, 36.14661);
         | 
| 1247 1247 | 
             
                        var mStart = new GMarker(pStart, iconStart);
         | 
| 1248 1248 | 
             
                        GEvent.addListener(mStart, "click", function() { 
         | 
| 1249 | 
            -
                            mStart.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Start!</b></td></tr><tr><td>Distance: </td><td>0.0</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:05:04Z </td></tr><tr><td>Elapsed Time: </td><td>00:00:00 </td></tr><tr><td>Average Pace: </td><td> </td></tr><tr><td>Lat/Lng: </td><td>36.14661 , -86.80903 </td></tr | 
| 1249 | 
            +
                            mStart.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Start!</b></td></tr><tr><td>Distance: </td><td>0.0</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:05:04Z </td></tr><tr><td>Elapsed Time: </td><td>00:00:00 </td></tr><tr><td>Average Pace: </td><td> </td></tr><tr><td>Lat/Lng: </td><td>36.14661 , -86.80903 </td></tr></table>");
         | 
| 1250 1250 | 
             
                        }); 
         | 
| 1251 1251 | 
             
                        map.addOverlay(mStart);
         | 
| 1252 1252 |  | 
| @@ -1255,7 +1255,7 @@ | |
| 1255 1255 | 
             
                        var p1 = new GPoint(-86.79358, 36.15399);
         | 
| 1256 1256 | 
             
                        var m1 = new GMarker(p1, icon1);
         | 
| 1257 1257 | 
             
                        GEvent.addListener(m1, "click", function() { 
         | 
| 1258 | 
            -
                            m1.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 1</b></td></tr><tr><td>Distance: </td><td>1.00498592624051</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:13:29Z </td></tr><tr><td>Elapsed Time: </td><td>00:08:25 </td></tr><tr><td>Average Pace: </td><td>8:22.5 </td></tr><tr><td>Lat/Lng: </td><td>36.15399 , -86.79358 </td></tr | 
| 1258 | 
            +
                            m1.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 1</b></td></tr><tr><td>Distance: </td><td>1.00498592624051</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:13:29Z </td></tr><tr><td>Elapsed Time: </td><td>00:08:25 </td></tr><tr><td>Average Pace: </td><td>8:22.5 </td></tr><tr><td>Lat/Lng: </td><td>36.15399 , -86.79358 </td></tr></table>");
         | 
| 1259 1259 | 
             
                        }); 
         | 
| 1260 1260 | 
             
                        map.addOverlay(m1);
         | 
| 1261 1261 |  | 
| @@ -1264,7 +1264,7 @@ | |
| 1264 1264 | 
             
                        var p2 = new GPoint(-86.79341, 36.15116);
         | 
| 1265 1265 | 
             
                        var m2 = new GMarker(p2, icon2);
         | 
| 1266 1266 | 
             
                        GEvent.addListener(m2, "click", function() { 
         | 
| 1267 | 
            -
                            m2.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 2</b></td></tr><tr><td>Distance: </td><td>2.01957931424511</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:22:18Z </td></tr><tr><td>Elapsed Time: </td><td>00:17:14 </td></tr><tr><td>Average Pace: </td><td>8:32.0 </td></tr><tr><td>Lat/Lng: </td><td>36.15116 , -86.79341 </td></tr | 
| 1267 | 
            +
                            m2.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 2</b></td></tr><tr><td>Distance: </td><td>2.01957931424511</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:22:18Z </td></tr><tr><td>Elapsed Time: </td><td>00:17:14 </td></tr><tr><td>Average Pace: </td><td>8:32.0 </td></tr><tr><td>Lat/Lng: </td><td>36.15116 , -86.79341 </td></tr></table>");
         | 
| 1268 1268 | 
             
                        }); 
         | 
| 1269 1269 | 
             
                        map.addOverlay(m2);
         | 
| 1270 1270 |  | 
| @@ -1273,7 +1273,7 @@ | |
| 1273 1273 | 
             
                        var p3 = new GPoint(-86.79568, 36.13714);
         | 
| 1274 1274 | 
             
                        var m3 = new GMarker(p3, icon3);
         | 
| 1275 1275 | 
             
                        GEvent.addListener(m3, "click", function() { 
         | 
| 1276 | 
            -
                            m3.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 3</b></td></tr><tr><td>Distance: </td><td>3.00791828850043</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:30:48Z </td></tr><tr><td>Elapsed Time: </td><td>00:25:44 </td></tr><tr><td>Average Pace: </td><td>8:33.3 </td></tr><tr><td>Lat/Lng: </td><td>36.13714 , -86.79568 </td></tr | 
| 1276 | 
            +
                            m3.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 3</b></td></tr><tr><td>Distance: </td><td>3.00791828850043</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:30:48Z </td></tr><tr><td>Elapsed Time: </td><td>00:25:44 </td></tr><tr><td>Average Pace: </td><td>8:33.3 </td></tr><tr><td>Lat/Lng: </td><td>36.13714 , -86.79568 </td></tr></table>");
         | 
| 1277 1277 | 
             
                        }); 
         | 
| 1278 1278 | 
             
                        map.addOverlay(m3);
         | 
| 1279 1279 |  | 
| @@ -1282,7 +1282,7 @@ | |
| 1282 1282 | 
             
                        var p4 = new GPoint(-86.7942, 36.12476);
         | 
| 1283 1283 | 
             
                        var m4 = new GMarker(p4, icon4);
         | 
| 1284 1284 | 
             
                        GEvent.addListener(m4, "click", function() { 
         | 
| 1285 | 
            -
                            m4.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 4</b></td></tr><tr><td>Distance: </td><td>4.00885170892019</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:39:24Z </td></tr><tr><td>Elapsed Time: </td><td>00:34:20 </td></tr><tr><td>Average Pace: </td><td>8:33.9 </td></tr><tr><td>Lat/Lng: </td><td>36.12476 , -86.7942 </td></tr | 
| 1285 | 
            +
                            m4.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 4</b></td></tr><tr><td>Distance: </td><td>4.00885170892019</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:39:24Z </td></tr><tr><td>Elapsed Time: </td><td>00:34:20 </td></tr><tr><td>Average Pace: </td><td>8:33.9 </td></tr><tr><td>Lat/Lng: </td><td>36.12476 , -86.7942 </td></tr></table>");
         | 
| 1286 1286 | 
             
                        }); 
         | 
| 1287 1287 | 
             
                        map.addOverlay(m4);
         | 
| 1288 1288 |  | 
| @@ -1291,7 +1291,7 @@ | |
| 1291 1291 | 
             
                        var p5 = new GPoint(-86.79568, 36.11384);
         | 
| 1292 1292 | 
             
                        var m5 = new GMarker(p5, icon5);
         | 
| 1293 1293 | 
             
                        GEvent.addListener(m5, "click", function() { 
         | 
| 1294 | 
            -
                            m5.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 5</b></td></tr><tr><td>Distance: </td><td>5.02397148781549</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:47:56Z </td></tr><tr><td>Elapsed Time: </td><td>00:42:52 </td></tr><tr><td>Average Pace: </td><td>8:31.9 </td></tr><tr><td>Lat/Lng: </td><td>36.11384 , -86.79568 </td></tr | 
| 1294 | 
            +
                            m5.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 5</b></td></tr><tr><td>Distance: </td><td>5.02397148781549</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:47:56Z </td></tr><tr><td>Elapsed Time: </td><td>00:42:52 </td></tr><tr><td>Average Pace: </td><td>8:31.9 </td></tr><tr><td>Lat/Lng: </td><td>36.11384 , -86.79568 </td></tr></table>");
         | 
| 1295 1295 | 
             
                        }); 
         | 
| 1296 1296 | 
             
                        map.addOverlay(m5);
         | 
| 1297 1297 |  | 
| @@ -1300,7 +1300,7 @@ | |
| 1300 1300 | 
             
                        var p6 = new GPoint(-86.79386, 36.11519);
         | 
| 1301 1301 | 
             
                        var m6 = new GMarker(p6, icon6);
         | 
| 1302 1302 | 
             
                        GEvent.addListener(m6, "click", function() { 
         | 
| 1303 | 
            -
                            m6.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 6</b></td></tr><tr><td>Distance: </td><td>6.01512032846275</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:56:23Z </td></tr><tr><td>Elapsed Time: </td><td>00:51:19 </td></tr><tr><td>Average Pace: </td><td>8:31.9 </td></tr><tr><td>Lat/Lng: </td><td>36.11519 , -86.79386 </td></tr | 
| 1303 | 
            +
                            m6.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 6</b></td></tr><tr><td>Distance: </td><td>6.01512032846275</td></tr><tr><td>Time of Day: </td><td>2005-04-30T12:56:23Z </td></tr><tr><td>Elapsed Time: </td><td>00:51:19 </td></tr><tr><td>Average Pace: </td><td>8:31.9 </td></tr><tr><td>Lat/Lng: </td><td>36.11519 , -86.79386 </td></tr></table>");
         | 
| 1304 1304 | 
             
                        }); 
         | 
| 1305 1305 | 
             
                        map.addOverlay(m6);
         | 
| 1306 1306 |  | 
| @@ -1309,7 +1309,7 @@ | |
| 1309 1309 | 
             
                        var p7 = new GPoint(-86.79399, 36.12579);
         | 
| 1310 1310 | 
             
                        var m7 = new GMarker(p7, icon7);
         | 
| 1311 1311 | 
             
                        GEvent.addListener(m7, "click", function() { 
         | 
| 1312 | 
            -
                            m7.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 7</b></td></tr><tr><td>Distance: </td><td>7.0284176822163</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:05:15Z </td></tr><tr><td>Elapsed Time: </td><td>01:00:11 </td></tr><tr><td>Average Pace: </td><td>8:33.8 </td></tr><tr><td>Lat/Lng: </td><td>36.12579 , -86.79399 </td></tr | 
| 1312 | 
            +
                            m7.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 7</b></td></tr><tr><td>Distance: </td><td>7.0284176822163</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:05:15Z </td></tr><tr><td>Elapsed Time: </td><td>01:00:11 </td></tr><tr><td>Average Pace: </td><td>8:33.8 </td></tr><tr><td>Lat/Lng: </td><td>36.12579 , -86.79399 </td></tr></table>");
         | 
| 1313 1313 | 
             
                        }); 
         | 
| 1314 1314 | 
             
                        map.addOverlay(m7);
         | 
| 1315 1315 |  | 
| @@ -1318,7 +1318,7 @@ | |
| 1318 1318 | 
             
                        var p8 = new GPoint(-86.79433, 36.13751);
         | 
| 1319 1319 | 
             
                        var m8 = new GMarker(p8, icon8);
         | 
| 1320 1320 | 
             
                        GEvent.addListener(m8, "click", function() { 
         | 
| 1321 | 
            -
                            m8.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 8</b></td></tr><tr><td>Distance: </td><td>8.00488790553936</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:13:40Z </td></tr><tr><td>Elapsed Time: </td><td>01:08:36 </td></tr><tr><td>Average Pace: </td><td>8:34.2 </td></tr><tr><td>Lat/Lng: </td><td>36.13751 , -86.79433 </td></tr | 
| 1321 | 
            +
                            m8.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 8</b></td></tr><tr><td>Distance: </td><td>8.00488790553936</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:13:40Z </td></tr><tr><td>Elapsed Time: </td><td>01:08:36 </td></tr><tr><td>Average Pace: </td><td>8:34.2 </td></tr><tr><td>Lat/Lng: </td><td>36.13751 , -86.79433 </td></tr></table>");
         | 
| 1322 1322 | 
             
                        }); 
         | 
| 1323 1323 | 
             
                        map.addOverlay(m8);
         | 
| 1324 1324 |  | 
| @@ -1327,7 +1327,7 @@ | |
| 1327 1327 | 
             
                        var p9 = new GPoint(-86.79165, 36.15189);
         | 
| 1328 1328 | 
             
                        var m9 = new GMarker(p9, icon9);
         | 
| 1329 1329 | 
             
                        GEvent.addListener(m9, "click", function() { 
         | 
| 1330 | 
            -
                            m9.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 9</b></td></tr><tr><td>Distance: </td><td>9.0114380649405</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:22:15Z </td></tr><tr><td>Elapsed Time: </td><td>01:17:11 </td></tr><tr><td>Average Pace: </td><td>8:33.9 </td></tr><tr><td>Lat/Lng: </td><td>36.15189 , -86.79165 </td></tr | 
| 1330 | 
            +
                            m9.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 9</b></td></tr><tr><td>Distance: </td><td>9.0114380649405</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:22:15Z </td></tr><tr><td>Elapsed Time: </td><td>01:17:11 </td></tr><tr><td>Average Pace: </td><td>8:33.9 </td></tr><tr><td>Lat/Lng: </td><td>36.15189 , -86.79165 </td></tr></table>");
         | 
| 1331 1331 | 
             
                        }); 
         | 
| 1332 1332 | 
             
                        map.addOverlay(m9);
         | 
| 1333 1333 |  | 
| @@ -1336,7 +1336,7 @@ | |
| 1336 1336 | 
             
                        var p10 = new GPoint(-86.78753, 36.15858);
         | 
| 1337 1337 | 
             
                        var m10 = new GMarker(p10, icon10);
         | 
| 1338 1338 | 
             
                        GEvent.addListener(m10, "click", function() { 
         | 
| 1339 | 
            -
                            m10.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 10</b></td></tr><tr><td>Distance: </td><td>10.0017113732322</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:30:29Z </td></tr><tr><td>Elapsed Time: </td><td>01:25:25 </td></tr><tr><td>Average Pace: </td><td>8:32.4 </td></tr><tr><td>Lat/Lng: </td><td>36.15858 , -86.78753 </td></tr | 
| 1339 | 
            +
                            m10.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 10</b></td></tr><tr><td>Distance: </td><td>10.0017113732322</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:30:29Z </td></tr><tr><td>Elapsed Time: </td><td>01:25:25 </td></tr><tr><td>Average Pace: </td><td>8:32.4 </td></tr><tr><td>Lat/Lng: </td><td>36.15858 , -86.78753 </td></tr></table>");
         | 
| 1340 1340 | 
             
                        }); 
         | 
| 1341 1341 | 
             
                        map.addOverlay(m10);
         | 
| 1342 1342 |  | 
| @@ -1345,7 +1345,7 @@ | |
| 1345 1345 | 
             
                        var p11 = new GPoint(-86.78976, 36.17045);
         | 
| 1346 1346 | 
             
                        var m11 = new GMarker(p11, icon11);
         | 
| 1347 1347 | 
             
                        GEvent.addListener(m11, "click", function() { 
         | 
| 1348 | 
            -
                            m11.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 11</b></td></tr><tr><td>Distance: </td><td>11.0104962060892</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:39:14Z </td></tr><tr><td>Elapsed Time: </td><td>01:34:10 </td></tr><tr><td>Average Pace: </td><td>8:33.1 </td></tr><tr><td>Lat/Lng: </td><td>36.17045 , -86.78976 </td></tr | 
| 1348 | 
            +
                            m11.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 11</b></td></tr><tr><td>Distance: </td><td>11.0104962060892</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:39:14Z </td></tr><tr><td>Elapsed Time: </td><td>01:34:10 </td></tr><tr><td>Average Pace: </td><td>8:33.1 </td></tr><tr><td>Lat/Lng: </td><td>36.17045 , -86.78976 </td></tr></table>");
         | 
| 1349 1349 | 
             
                        }); 
         | 
| 1350 1350 | 
             
                        map.addOverlay(m11);
         | 
| 1351 1351 |  | 
| @@ -1354,7 +1354,7 @@ | |
| 1354 1354 | 
             
                        var p12 = new GPoint(-86.79791, 36.18324);
         | 
| 1355 1355 | 
             
                        var m12 = new GMarker(p12, icon12);
         | 
| 1356 1356 | 
             
                        GEvent.addListener(m12, "click", function() { 
         | 
| 1357 | 
            -
                            m12.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 12</b></td></tr><tr><td>Distance: </td><td>12.0179760066749</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:48:00Z </td></tr><tr><td>Elapsed Time: </td><td>01:42:56 </td></tr><tr><td>Average Pace: </td><td>8:33.9 </td></tr><tr><td>Lat/Lng: </td><td>36.18324 , -86.79791 </td></tr | 
| 1357 | 
            +
                            m12.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 12</b></td></tr><tr><td>Distance: </td><td>12.0179760066749</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:48:00Z </td></tr><tr><td>Elapsed Time: </td><td>01:42:56 </td></tr><tr><td>Average Pace: </td><td>8:33.9 </td></tr><tr><td>Lat/Lng: </td><td>36.18324 , -86.79791 </td></tr></table>");
         | 
| 1358 1358 | 
             
                        }); 
         | 
| 1359 1359 | 
             
                        map.addOverlay(m12);
         | 
| 1360 1360 |  | 
| @@ -1363,7 +1363,7 @@ | |
| 1363 1363 | 
             
                        var p13 = new GPoint(-86.8063, 36.19096);
         | 
| 1364 1364 | 
             
                        var m13 = new GMarker(p13, icon13);
         | 
| 1365 1365 | 
             
                        GEvent.addListener(m13, "click", function() { 
         | 
| 1366 | 
            -
                            m13.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 13</b></td></tr><tr><td>Distance: </td><td>13.0026203935526</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:56:23Z </td></tr><tr><td>Elapsed Time: </td><td>01:51:19 </td></tr><tr><td>Average Pace: </td><td>8:33.7 </td></tr><tr><td>Lat/Lng: </td><td>36.19096 , -86.8063 </td></tr | 
| 1366 | 
            +
                            m13.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 13</b></td></tr><tr><td>Distance: </td><td>13.0026203935526</td></tr><tr><td>Time of Day: </td><td>2005-04-30T13:56:23Z </td></tr><tr><td>Elapsed Time: </td><td>01:51:19 </td></tr><tr><td>Average Pace: </td><td>8:33.7 </td></tr><tr><td>Lat/Lng: </td><td>36.19096 , -86.8063 </td></tr></table>");
         | 
| 1367 1367 | 
             
                        }); 
         | 
| 1368 1368 | 
             
                        map.addOverlay(m13);
         | 
| 1369 1369 |  | 
| @@ -1372,7 +1372,7 @@ | |
| 1372 1372 | 
             
                        var p14 = new GPoint(-86.81937, 36.19433);
         | 
| 1373 1373 | 
             
                        var m14 = new GMarker(p14, icon14);
         | 
| 1374 1374 | 
             
                        GEvent.addListener(m14, "click", function() { 
         | 
| 1375 | 
            -
                            m14.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 14</b></td></tr><tr><td>Distance: </td><td>14.0076939175942</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:05:05Z </td></tr><tr><td>Elapsed Time: </td><td>02:00:01 </td></tr><tr><td>Average Pace: </td><td>8:34.1 </td></tr><tr><td>Lat/Lng: </td><td>36.19433 , -86.81937 </td></tr | 
| 1375 | 
            +
                            m14.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 14</b></td></tr><tr><td>Distance: </td><td>14.0076939175942</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:05:05Z </td></tr><tr><td>Elapsed Time: </td><td>02:00:01 </td></tr><tr><td>Average Pace: </td><td>8:34.1 </td></tr><tr><td>Lat/Lng: </td><td>36.19433 , -86.81937 </td></tr></table>");
         | 
| 1376 1376 | 
             
                        }); 
         | 
| 1377 1377 | 
             
                        map.addOverlay(m14);
         | 
| 1378 1378 |  | 
| @@ -1381,7 +1381,7 @@ | |
| 1381 1381 | 
             
                        var p15 = new GPoint(-86.81663, 36.19914);
         | 
| 1382 1382 | 
             
                        var m15 = new GMarker(p15, icon15);
         | 
| 1383 1383 | 
             
                        GEvent.addListener(m15, "click", function() { 
         | 
| 1384 | 
            -
                            m15.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 15</b></td></tr><tr><td>Distance: </td><td>15.0182316265111</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:14:05Z </td></tr><tr><td>Elapsed Time: </td><td>02:09:01 </td></tr><tr><td>Average Pace: </td><td>8:35.4 </td></tr><tr><td>Lat/Lng: </td><td>36.19914 , -86.81663 </td></tr | 
| 1384 | 
            +
                            m15.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 15</b></td></tr><tr><td>Distance: </td><td>15.0182316265111</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:14:05Z </td></tr><tr><td>Elapsed Time: </td><td>02:09:01 </td></tr><tr><td>Average Pace: </td><td>8:35.4 </td></tr><tr><td>Lat/Lng: </td><td>36.19914 , -86.81663 </td></tr></table>");
         | 
| 1385 1385 | 
             
                        }); 
         | 
| 1386 1386 | 
             
                        map.addOverlay(m15);
         | 
| 1387 1387 |  | 
| @@ -1390,7 +1390,7 @@ | |
| 1390 1390 | 
             
                        var p16 = new GPoint(-86.80349, 36.20002);
         | 
| 1391 1391 | 
             
                        var m16 = new GMarker(p16, icon16);
         | 
| 1392 1392 | 
             
                        GEvent.addListener(m16, "click", function() { 
         | 
| 1393 | 
            -
                            m16.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 16</b></td></tr><tr><td>Distance: </td><td>16.0061140772076</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:22:48Z </td></tr><tr><td>Elapsed Time: </td><td>02:17:44 </td></tr><tr><td>Average Pace: </td><td>8:36.3 </td></tr><tr><td>Lat/Lng: </td><td>36.20002 , -86.80349 </td></tr | 
| 1393 | 
            +
                            m16.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 16</b></td></tr><tr><td>Distance: </td><td>16.0061140772076</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:22:48Z </td></tr><tr><td>Elapsed Time: </td><td>02:17:44 </td></tr><tr><td>Average Pace: </td><td>8:36.3 </td></tr><tr><td>Lat/Lng: </td><td>36.20002 , -86.80349 </td></tr></table>");
         | 
| 1394 1394 | 
             
                        }); 
         | 
| 1395 1395 | 
             
                        map.addOverlay(m16);
         | 
| 1396 1396 |  | 
| @@ -1399,7 +1399,7 @@ | |
| 1399 1399 | 
             
                        var p17 = new GPoint(-86.80122, 36.19293);
         | 
| 1400 1400 | 
             
                        var m17 = new GMarker(p17, icon17);
         | 
| 1401 1401 | 
             
                        GEvent.addListener(m17, "click", function() { 
         | 
| 1402 | 
            -
                            m17.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 17</b></td></tr><tr><td>Distance: </td><td>17.0180483481438</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:31:55Z </td></tr><tr><td>Elapsed Time: </td><td>02:26:51 </td></tr><tr><td>Average Pace: </td><td>8:37.7 </td></tr><tr><td>Lat/Lng: </td><td>36.19293 , -86.80122 </td></tr | 
| 1402 | 
            +
                            m17.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 17</b></td></tr><tr><td>Distance: </td><td>17.0180483481438</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:31:55Z </td></tr><tr><td>Elapsed Time: </td><td>02:26:51 </td></tr><tr><td>Average Pace: </td><td>8:37.7 </td></tr><tr><td>Lat/Lng: </td><td>36.19293 , -86.80122 </td></tr></table>");
         | 
| 1403 1403 | 
             
                        }); 
         | 
| 1404 1404 | 
             
                        map.addOverlay(m17);
         | 
| 1405 1405 |  | 
| @@ -1408,7 +1408,7 @@ | |
| 1408 1408 | 
             
                        var p18 = new GPoint(-86.79575, 36.17987);
         | 
| 1409 1409 | 
             
                        var m18 = new GMarker(p18, icon18);
         | 
| 1410 1410 | 
             
                        GEvent.addListener(m18, "click", function() { 
         | 
| 1411 | 
            -
                            m18.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 18</b></td></tr><tr><td>Distance: </td><td>18.0109273432878</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:41:21Z </td></tr><tr><td>Elapsed Time: </td><td>02:36:17 </td></tr><tr><td>Average Pace: </td><td>8:40.6 </td></tr><tr><td>Lat/Lng: </td><td>36.17987 , -86.79575 </td></tr | 
| 1411 | 
            +
                            m18.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 18</b></td></tr><tr><td>Distance: </td><td>18.0109273432878</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:41:21Z </td></tr><tr><td>Elapsed Time: </td><td>02:36:17 </td></tr><tr><td>Average Pace: </td><td>8:40.6 </td></tr><tr><td>Lat/Lng: </td><td>36.17987 , -86.79575 </td></tr></table>");
         | 
| 1412 1412 | 
             
                        }); 
         | 
| 1413 1413 | 
             
                        map.addOverlay(m18);
         | 
| 1414 1414 |  | 
| @@ -1417,7 +1417,7 @@ | |
| 1417 1417 | 
             
                        var p19 = new GPoint(-86.78603, 36.1698);
         | 
| 1418 1418 | 
             
                        var m19 = new GMarker(p19, icon19);
         | 
| 1419 1419 | 
             
                        GEvent.addListener(m19, "click", function() { 
         | 
| 1420 | 
            -
                            m19.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 19</b></td></tr><tr><td>Distance: </td><td>19.0018432569713</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:50:40Z </td></tr><tr><td>Elapsed Time: </td><td>02:45:36 </td></tr><tr><td>Average Pace: </td><td>8:42.9 </td></tr><tr><td>Lat/Lng: </td><td>36.1698 , -86.78603 </td></tr | 
| 1420 | 
            +
                            m19.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 19</b></td></tr><tr><td>Distance: </td><td>19.0018432569713</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:50:40Z </td></tr><tr><td>Elapsed Time: </td><td>02:45:36 </td></tr><tr><td>Average Pace: </td><td>8:42.9 </td></tr><tr><td>Lat/Lng: </td><td>36.1698 , -86.78603 </td></tr></table>");
         | 
| 1421 1421 | 
             
                        }); 
         | 
| 1422 1422 | 
             
                        map.addOverlay(m19);
         | 
| 1423 1423 |  | 
| @@ -1426,7 +1426,7 @@ | |
| 1426 1426 | 
             
                        var p20 = new GPoint(-86.77244, 36.16903);
         | 
| 1427 1427 | 
             
                        var m20 = new GMarker(p20, icon20);
         | 
| 1428 1428 | 
             
                        GEvent.addListener(m20, "click", function() { 
         | 
| 1429 | 
            -
                            m20.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 20</b></td></tr><tr><td>Distance: </td><td>20.0035491062528</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:59:51Z </td></tr><tr><td>Elapsed Time: </td><td>02:54:47 </td></tr><tr><td>Average Pace: </td><td>8:44.3 </td></tr><tr><td>Lat/Lng: </td><td>36.16903 , -86.77244 </td></tr | 
| 1429 | 
            +
                            m20.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 20</b></td></tr><tr><td>Distance: </td><td>20.0035491062528</td></tr><tr><td>Time of Day: </td><td>2005-04-30T14:59:51Z </td></tr><tr><td>Elapsed Time: </td><td>02:54:47 </td></tr><tr><td>Average Pace: </td><td>8:44.3 </td></tr><tr><td>Lat/Lng: </td><td>36.16903 , -86.77244 </td></tr></table>");
         | 
| 1430 1430 | 
             
                        }); 
         | 
| 1431 1431 | 
             
                        map.addOverlay(m20);
         | 
| 1432 1432 |  | 
| @@ -1435,7 +1435,7 @@ | |
| 1435 1435 | 
             
                        var p21 = new GPoint(-86.76058, 36.16463);
         | 
| 1436 1436 | 
             
                        var m21 = new GMarker(p21, icon21);
         | 
| 1437 1437 | 
             
                        GEvent.addListener(m21, "click", function() { 
         | 
| 1438 | 
            -
                            m21.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 21</b></td></tr><tr><td>Distance: </td><td>21.0177478597304</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:09:28Z </td></tr><tr><td>Elapsed Time: </td><td>03:04:24 </td></tr><tr><td>Average Pace: </td><td>8:46.4 </td></tr><tr><td>Lat/Lng: </td><td>36.16463 , -86.76058 </td></tr | 
| 1438 | 
            +
                            m21.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 21</b></td></tr><tr><td>Distance: </td><td>21.0177478597304</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:09:28Z </td></tr><tr><td>Elapsed Time: </td><td>03:04:24 </td></tr><tr><td>Average Pace: </td><td>8:46.4 </td></tr><tr><td>Lat/Lng: </td><td>36.16463 , -86.76058 </td></tr></table>");
         | 
| 1439 1439 | 
             
                        }); 
         | 
| 1440 1440 | 
             
                        map.addOverlay(m21);
         | 
| 1441 1441 |  | 
| @@ -1444,7 +1444,7 @@ | |
| 1444 1444 | 
             
                        var p22 = new GPoint(-86.74571, 36.16326);
         | 
| 1445 1445 | 
             
                        var m22 = new GMarker(p22, icon22);
         | 
| 1446 1446 | 
             
                        GEvent.addListener(m22, "click", function() { 
         | 
| 1447 | 
            -
                            m22.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 22</b></td></tr><tr><td>Distance: </td><td>22.0213124798681</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:19:00Z </td></tr><tr><td>Elapsed Time: </td><td>03:13:56 </td></tr><tr><td>Average Pace: </td><td>8:48.4 </td></tr><tr><td>Lat/Lng: </td><td>36.16326 , -86.74571 </td></tr | 
| 1447 | 
            +
                            m22.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 22</b></td></tr><tr><td>Distance: </td><td>22.0213124798681</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:19:00Z </td></tr><tr><td>Elapsed Time: </td><td>03:13:56 </td></tr><tr><td>Average Pace: </td><td>8:48.4 </td></tr><tr><td>Lat/Lng: </td><td>36.16326 , -86.74571 </td></tr></table>");
         | 
| 1448 1448 | 
             
                        }); 
         | 
| 1449 1449 | 
             
                        map.addOverlay(m22);
         | 
| 1450 1450 |  | 
| @@ -1453,7 +1453,7 @@ | |
| 1453 1453 | 
             
                        var p23 = new GPoint(-86.73268, 36.16858);
         | 
| 1454 1454 | 
             
                        var m23 = new GMarker(p23, icon23);
         | 
| 1455 1455 | 
             
                        GEvent.addListener(m23, "click", function() { 
         | 
| 1456 | 
            -
                            m23.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 23</b></td></tr><tr><td>Distance: </td><td>23.0531047499703</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:28:34Z </td></tr><tr><td>Elapsed Time: </td><td>03:23:30 </td></tr><tr><td>Average Pace: </td><td>8:49.6 </td></tr><tr><td>Lat/Lng: </td><td>36.16858 , -86.73268 </td></tr | 
| 1456 | 
            +
                            m23.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 23</b></td></tr><tr><td>Distance: </td><td>23.0531047499703</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:28:34Z </td></tr><tr><td>Elapsed Time: </td><td>03:23:30 </td></tr><tr><td>Average Pace: </td><td>8:49.6 </td></tr><tr><td>Lat/Lng: </td><td>36.16858 , -86.73268 </td></tr></table>");
         | 
| 1457 1457 | 
             
                        }); 
         | 
| 1458 1458 | 
             
                        map.addOverlay(m23);
         | 
| 1459 1459 |  | 
| @@ -1462,7 +1462,7 @@ | |
| 1462 1462 | 
             
                        var p24 = new GPoint(-86.72841, 36.16588);
         | 
| 1463 1463 | 
             
                        var m24 = new GMarker(p24, icon24);
         | 
| 1464 1464 | 
             
                        GEvent.addListener(m24, "click", function() { 
         | 
| 1465 | 
            -
                            m24.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 24</b></td></tr><tr><td>Distance: </td><td>24.0207198639371</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:37:26Z </td></tr><tr><td>Elapsed Time: </td><td>03:32:22 </td></tr><tr><td>Average Pace: </td><td>8:50.5 </td></tr><tr><td>Lat/Lng: </td><td>36.16588 , -86.72841 </td></tr | 
| 1465 | 
            +
                            m24.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 24</b></td></tr><tr><td>Distance: </td><td>24.0207198639371</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:37:26Z </td></tr><tr><td>Elapsed Time: </td><td>03:32:22 </td></tr><tr><td>Average Pace: </td><td>8:50.5 </td></tr><tr><td>Lat/Lng: </td><td>36.16588 , -86.72841 </td></tr></table>");
         | 
| 1466 1466 | 
             
                        }); 
         | 
| 1467 1467 | 
             
                        map.addOverlay(m24);
         | 
| 1468 1468 |  | 
| @@ -1471,7 +1471,7 @@ | |
| 1471 1471 | 
             
                        var p25 = new GPoint(-86.74551, 36.16317);
         | 
| 1472 1472 | 
             
                        var m25 = new GMarker(p25, icon25);
         | 
| 1473 1473 | 
             
                        GEvent.addListener(m25, "click", function() { 
         | 
| 1474 | 
            -
                            m25.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 25</b></td></tr><tr><td>Distance: </td><td>25.0105524318065</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:46:56Z </td></tr><tr><td>Elapsed Time: </td><td>03:41:52 </td></tr><tr><td>Average Pace: </td><td>8:52.3 </td></tr><tr><td>Lat/Lng: </td><td>36.16317 , -86.74551 </td></tr | 
| 1474 | 
            +
                            m25.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 25</b></td></tr><tr><td>Distance: </td><td>25.0105524318065</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:46:56Z </td></tr><tr><td>Elapsed Time: </td><td>03:41:52 </td></tr><tr><td>Average Pace: </td><td>8:52.3 </td></tr><tr><td>Lat/Lng: </td><td>36.16317 , -86.74551 </td></tr></table>");
         | 
| 1475 1475 | 
             
                        }); 
         | 
| 1476 1476 | 
             
                        map.addOverlay(m25);
         | 
| 1477 1477 |  | 
| @@ -1480,7 +1480,7 @@ | |
| 1480 1480 | 
             
                        var p26 = new GPoint(-86.76335, 36.1612);
         | 
| 1481 1481 | 
             
                        var m26 = new GMarker(p26, icon26);
         | 
| 1482 1482 | 
             
                        GEvent.addListener(m26, "click", function() { 
         | 
| 1483 | 
            -
                            m26.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 26</b></td></tr><tr><td>Distance: </td><td>26.0260837579004</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:56:45Z </td></tr><tr><td>Elapsed Time: </td><td>03:51:41 </td></tr><tr><td>Average Pace: </td><td>8:54.1 </td></tr><tr><td>Lat/Lng: </td><td>36.1612 , -86.76335 </td></tr | 
| 1483 | 
            +
                            m26.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Checkpoint 26</b></td></tr><tr><td>Distance: </td><td>26.0260837579004</td></tr><tr><td>Time of Day: </td><td>2005-04-30T15:56:45Z </td></tr><tr><td>Elapsed Time: </td><td>03:51:41 </td></tr><tr><td>Average Pace: </td><td>8:54.1 </td></tr><tr><td>Lat/Lng: </td><td>36.1612 , -86.76335 </td></tr></table>");
         | 
| 1484 1484 | 
             
                        }); 
         | 
| 1485 1485 | 
             
                        map.addOverlay(m26);
         | 
| 1486 1486 |  | 
| @@ -1489,7 +1489,7 @@ | |
| 1489 1489 | 
             
                        var pFinish = new GPoint(-86.7721, 36.16416);
         | 
| 1490 1490 | 
             
                        var mFinish = new GMarker(pFinish, iconFinish);
         | 
| 1491 1491 | 
             
                        GEvent.addListener(mFinish, "click", function() { 
         | 
| 1492 | 
            -
                            mFinish.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Finish!</b></td></tr><tr><td>Distance: </td><td>26.6567960263308</td></tr><tr><td>Time of Day: </td><td>2005-04-30T16:02:31Z </td></tr><tr><td>Elapsed Time: </td><td>03:57:27 </td></tr><tr><td>Average Pace: </td><td>8:54.5 </td></tr><tr><td>Lat/Lng: </td><td>36.16416 , -86.7721 </td></tr | 
| 1492 | 
            +
                            mFinish.openInfoWindowHtml("<table align='left'><tr><td colspan='2'><b>Finish!</b></td></tr><tr><td>Distance: </td><td>26.6567960263308</td></tr><tr><td>Time of Day: </td><td>2005-04-30T16:02:31Z </td></tr><tr><td>Elapsed Time: </td><td>03:57:27 </td></tr><tr><td>Average Pace: </td><td>8:54.5 </td></tr><tr><td>Lat/Lng: </td><td>36.16416 , -86.7721 </td></tr></table>");
         | 
| 1493 1493 | 
             
                        }); 
         | 
| 1494 1494 | 
             
                        map.addOverlay(mFinish);
         | 
| 1495 1495 |  | 
| @@ -1516,7 +1516,7 @@ | |
| 1516 1516 | 
             
              <body onload="load()" onunload="GUnload()">
         | 
| 1517 1517 | 
             
                <center>
         | 
| 1518 1518 | 
             
                <h3> 2005/04/30 Nashville Marathon </h3>
         | 
| 1519 | 
            -
                <h5> Generated by Gooby  | 
| 1519 | 
            +
                <h5> Generated by Gooby Sun Jun 10 16:16:29 EDT 2007 <br> Gooby = Google APIs + Ruby </h5>    
         | 
| 1520 1520 | 
             
                <div id="map" style="width: 900px; height: 600px"></div>    
         | 
| 1521 1521 | 
             
                <div id="messages"></div>   
         | 
| 1522 1522 | 
             
                </center>
         |